diff options
author | NeilBrown <neilb@suse.de> | 2005-09-09 19:24:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 19:39:14 -0400 |
commit | b325a32e5732d7aef70ca3c58acb3953ed20f66c (patch) | |
tree | 5ac799ede4268c49dcec604074ed148104717c09 /drivers/md/md.c | |
parent | 1cd6bf19bbe8098153d7a478d8fc551edbea9305 (diff) |
[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/md.c')
-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) | |||
3334 | if (rdev->faulty) { | 3334 | if (rdev->faulty) { |
3335 | seq_printf(seq, "(F)"); | 3335 | seq_printf(seq, "(F)"); |
3336 | continue; | 3336 | continue; |
3337 | } | 3337 | } else if (rdev->raid_disk < 0) |
3338 | seq_printf(seq, "(S)"); /* spare */ | ||
3338 | size += rdev->size; | 3339 | size += rdev->size; |
3339 | } | 3340 | } |
3340 | 3341 | ||