[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20060914214559.GT3928@agk.surrey.redhat.com>
Date: Thu, 14 Sep 2006 22:45:59 +0100
From: Alasdair G Kergon <agk@...hat.com>
To: Andrew Morton <akpm@...l.org>
Cc: linux-kernel@...r.kernel.org,
Jonathan Brassow <jbrassow@...hat.com>
Subject: [PATCH 12/25] dm mirror: remove trailing space from table
From: Jonathan Brassow <jbrassow@...hat.com>
Remove trailing space from 'dmsetup table' output.
Signed-off-by: Jonathan Brassow <jbrassow@...hat.com>
Signed-off-by: Alasdair G Kergon <agk@...hat.com>
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists