diff options
author | Namhyung Kim <namhyung@gmail.com> | 2011-07-27 11:00:36 +1000 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2011-07-27 11:00:36 +1000 |
commit | a478a069b6adf186373a6648c54fc5f1d3c2f8eb (patch) | |
tree | ac10604e2b0e3525c25c6fb23128ab1fc858a550 /drivers/md | |
parent | 36fad858a7404a9656122a9e560a224ae2a00979 (diff) | |
download | linux-a478a069b6adf186373a6648c54fc5f1d3c2f8eb.tar.gz linux-a478a069b6adf186373a6648c54fc5f1d3c2f8eb.tar.bz2 linux-a478a069b6adf186373a6648c54fc5f1d3c2f8eb.zip |
md: remove ro check in md_check_recovery()
Commit c89a8eee6154 ("Allow faulty devices to be removed from a
readonly array.") added some work on ro array in the function,
but it couldn't be done since we didn't allow the ro array to be
handled from the beginning. Fix it.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/md.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 0398dc42a956..77bd8d8708e4 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -7163,9 +7163,6 @@ void md_check_recovery(mddev_t *mddev) if (mddev->bitmap) bitmap_daemon_work(mddev); - if (mddev->ro) - return; - if (signal_pending(current)) { if (mddev->pers->sync_request && !mddev->external) { printk(KERN_INFO "md: %s in immediate safe mode\n", |