summaryrefslogtreecommitdiffstats
path: root/drivers/md/md.c
diff options
context:
space:
mode:
authorNeilBrown2009-12-30 05:25:23 +0100
committerNeilBrown2009-12-30 05:25:23 +0100
commit404e4b43fdd6daa7b4a9f81bc7e4358281d763fa (patch)
tree7a013e233db56b7c90cf0857d6c3bc74c19cf07f /drivers/md/md.c
parentmd: remove unnecessary code from do_md_run (diff)
downloadkernel-qcow2-linux-404e4b43fdd6daa7b4a9f81bc7e4358281d763fa.tar.gz
kernel-qcow2-linux-404e4b43fdd6daa7b4a9f81bc7e4358281d763fa.tar.xz
kernel-qcow2-linux-404e4b43fdd6daa7b4a9f81bc7e4358281d763fa.zip
md: allow a resync that is waiting for other resync to complete, to be aborted.
If two arrays share a device, then they will not both resync at the same time. One will wait for the other to complete. While waiting, the MD_RECOVERY_INTR flag is not checked so a device failure, which would make the resync pointless, does not cause the resync to abort, so the failed device cannot be removed (as it cannot be remove while a resync is happening). So add a test for MD_RECOVERY_INTR. Reported-by: Brett Russ <bruss@netezza.com> Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r--drivers/md/md.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index c4bdf0601757..dd3dfe42d5a9 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -6473,10 +6473,11 @@ void md_do_sync(mddev_t *mddev)
mddev->curr_resync = 2;
try_again:
- if (kthread_should_stop()) {
+ if (kthread_should_stop())
set_bit(MD_RECOVERY_INTR, &mddev->recovery);
+
+ if (test_bit(MD_RECOVERY_INTR, &mddev->recovery))
goto skip;
- }
for_each_mddev(mddev2, tmp) {
if (mddev2 == mddev)
continue;