Commit 753260ed authored by Yu Kuai's avatar Yu Kuai Committed by Song Liu

md: wake up 'resync_wait' at last in md_reap_sync_thread()

md_reap_sync_thread() is just replaced with wait_event(resync_wait, ...)
from action_store(), just make sure action_store() will still wait for
everything to be done in md_reap_sync_thread().
Signed-off-by: default avatarYu Kuai <yukuai3@huawei.com>
Reviewd-by: default avatarXiao Ni <xni@redhat.com>
Signed-off-by: default avatarSong Liu <song@kernel.org>
Link: https://lore.kernel.org/r/20230529132037.2124527-6-yukuai1@huaweicloud.com
parent 130443d6
...@@ -9522,7 +9522,6 @@ void md_reap_sync_thread(struct mddev *mddev) ...@@ -9522,7 +9522,6 @@ void md_reap_sync_thread(struct mddev *mddev)
if (mddev_is_clustered(mddev) && is_reshaped if (mddev_is_clustered(mddev) && is_reshaped
&& !test_bit(MD_CLOSING, &mddev->flags)) && !test_bit(MD_CLOSING, &mddev->flags))
md_cluster_ops->update_size(mddev, old_dev_sectors); md_cluster_ops->update_size(mddev, old_dev_sectors);
wake_up(&resync_wait);
/* flag recovery needed just to double check */ /* flag recovery needed just to double check */
set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
sysfs_notify_dirent_safe(mddev->sysfs_completed); sysfs_notify_dirent_safe(mddev->sysfs_completed);
...@@ -9530,6 +9529,7 @@ void md_reap_sync_thread(struct mddev *mddev) ...@@ -9530,6 +9529,7 @@ void md_reap_sync_thread(struct mddev *mddev)
md_new_event(); md_new_event();
if (mddev->event_work.func) if (mddev->event_work.func)
queue_work(md_misc_wq, &mddev->event_work); queue_work(md_misc_wq, &mddev->event_work);
wake_up(&resync_wait);
} }
EXPORT_SYMBOL(md_reap_sync_thread); EXPORT_SYMBOL(md_reap_sync_thread);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment