[PATCH 12/25] dm mirror: remove trailing space from table

From: Alasdair G Kergon
Date: Thu Sep 14 2006 - 17:46:35 EST


From: Jonathan Brassow <jbrassow@xxxxxxxxxx>

Remove trailing space from 'dmsetup table' output.

Signed-off-by: Jonathan Brassow <jbrassow@xxxxxxxxxx>
Signed-off-by: Alasdair G Kergon <agk@xxxxxxxxxx>

Index: linux-2.6.18-rc7/drivers/md/dm-raid1.c
===================================================================
--- linux-2.6.18-rc7.orig/drivers/md/dm-raid1.c 2006-09-14 20:50:09.000000000 +0100
+++ linux-2.6.18-rc7/drivers/md/dm-raid1.c 2006-09-14 20:52:23.000000000 +0100
@@ -1213,9 +1213,9 @@ static int mirror_status(struct dm_targe
break;

case STATUSTYPE_TABLE:
- DMEMIT("%d ", ms->nr_mirrors);
+ DMEMIT("%d", ms->nr_mirrors);
for (m = 0; m < ms->nr_mirrors; m++)
- DMEMIT("%s %llu ", ms->mirror[m].dev->name,
+ DMEMIT(" %s %llu", ms->mirror[m].dev->name,
(unsigned long long)ms->mirror[m].offset);
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/