The patch titled dm mirror: remove trailing space from table has been added to the -mm tree. Its filename is dm-mirror-remove-trailing-space-from-table.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: dm mirror: remove trailing space from table 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> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/md/dm-raid1.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/md/dm-raid1.c~dm-mirror-remove-trailing-space-from-table drivers/md/dm-raid1.c --- a/drivers/md/dm-raid1.c~dm-mirror-remove-trailing-space-from-table +++ a/drivers/md/dm-raid1.c @@ -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); } _ Patches currently in -mm which might be from jbrassow@xxxxxxxxxx are dm-mirror-remove-trailing-space-from-table.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html