aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/md/md-cluster.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/md/md-cluster.c b/drivers/md/md-cluster.c
index 43b90485448d..2b13117fb918 100644
--- a/drivers/md/md-cluster.c
+++ b/drivers/md/md-cluster.c
@@ -161,7 +161,8 @@ static int dlm_lock_sync_interruptible(struct dlm_lock_resource *res, int mode,
161 return ret; 161 return ret;
162 162
163 wait_event(res->sync_locking, res->sync_locking_done 163 wait_event(res->sync_locking, res->sync_locking_done
164 || kthread_should_stop()); 164 || kthread_should_stop()
165 || test_bit(MD_CLOSING, &mddev->flags));
165 if (!res->sync_locking_done) { 166 if (!res->sync_locking_done) {
166 /* 167 /*
167 * the convert queue contains the lock request when request is 168 * the convert queue contains the lock request when request is
@@ -1045,7 +1046,7 @@ static void metadata_update_cancel(struct mddev *mddev)
1045static int resync_start(struct mddev *mddev) 1046static int resync_start(struct mddev *mddev)
1046{ 1047{
1047 struct md_cluster_info *cinfo = mddev->cluster_info; 1048 struct md_cluster_info *cinfo = mddev->cluster_info;
1048 return dlm_lock_sync(cinfo->resync_lockres, DLM_LOCK_EX); 1049 return dlm_lock_sync_interruptible(cinfo->resync_lockres, DLM_LOCK_EX, mddev);
1049} 1050}
1050 1051
1051static int resync_info_update(struct mddev *mddev, sector_t lo, sector_t hi) 1052static int resync_info_update(struct mddev *mddev, sector_t lo, sector_t hi)