[PATCH 001 of 2] md: Fix formatting error in /proc/mdstat.

From: NeilBrown
Date: Fri Mar 07 2008 - 00:01:34 EST



If an md array is "auto-read-only", then this appears in /proc/mdstat
as

/dev/md0: active(auto-read-only)

whereas if it is truely readonly, it appears as

/dev/md0: active (read-only)

The difference being a space.

One program known to parse this file expects the space and gets badly
confused. It will be fixed, but it would be best if what the kernel
generates is more consistent too.

Signed-off-by: Neil Brown <neilb@xxxxxxx>

### Diffstat output
./drivers/md/md.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff .prev/drivers/md/md.c ./drivers/md/md.c
--- .prev/drivers/md/md.c 2008-03-07 15:51:24.000000000 +1100
+++ ./drivers/md/md.c 2008-03-07 15:52:21.000000000 +1100
@@ -5149,7 +5149,7 @@ static int md_seq_show(struct seq_file *
if (mddev->ro==1)
seq_printf(seq, " (read-only)");
if (mddev->ro==2)
- seq_printf(seq, "(auto-read-only)");
+ seq_printf(seq, " (auto-read-only)");
seq_printf(seq, " %s", mddev->pers->name);
}

--
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/