[dm-devel] [PATCH 1 of 2] dm log userspace, fix table status output

Jonathan Brassow jbrassow at redhat.com
Tue Jul 28 15:30:11 UTC 2009


'dmsetup table' is not coming out right.  This patch and the following
patch fix that.

 brassow

The missing ' ' at the end of the status output causes mirror
status output arguments to run together.  Adding the space at
the end makes this log module consistent with the other two
existing log modules, "disk" and "core".

Signed-off-by: Jonathan Brassow <jbrassow at redhat.com>
 
Index: linux-2.6/drivers/md/dm-log-userspace-base.c
===================================================================
--- linux-2.6.orig/drivers/md/dm-log-userspace-base.c
+++ linux-2.6/drivers/md/dm-log-userspace-base.c
@@ -577,7 +577,7 @@ static int userspace_status(struct dm_di
 		break;
 	case STATUSTYPE_TABLE:
 		sz = 0;
-		DMEMIT("%s %u %s %s", log->type->name, lc->usr_argc + 1,
+		DMEMIT("%s %u %s %s ", log->type->name, lc->usr_argc + 1,
 		       lc->uuid, lc->usr_argv_str);
 		break;
 	}





More information about the dm-devel mailing list