diff options
author | NeilBrown <neilb@suse.de> | 2005-09-10 03:24:00 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 03:39:14 +0400 |
commit | b325a32e5732d7aef70ca3c58acb3953ed20f66c (patch) | |
tree | 5ac799ede4268c49dcec604074ed148104717c09 /drivers/md | |
parent | 1cd6bf19bbe8098153d7a478d8fc551edbea9305 (diff) | |
download | linux-b325a32e5732d7aef70ca3c58acb3953ed20f66c.tar.xz |
[PATCH] md: report spare drives in /proc/mdstat
Just like failed drives have (F), so spare drives now have (S).
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/md.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 0a13016829da..f27e8f644dfe 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -3334,7 +3334,8 @@ static int md_seq_show(struct seq_file *seq, void *v) if (rdev->faulty) { seq_printf(seq, "(F)"); continue; - } + } else if (rdev->raid_disk < 0) + seq_printf(seq, "(S)"); /* spare */ size += rdev->size; } |