Before commit 12a6caf27324 ("md: only delete entries from all_mddevs when the disk is freed") MD_CLOSING is cleared in ioctl path. Now MD_CLOSING will keep until mddev is freed. So MD_CLOSING can be used to check if the array is stopping. This patch also removes the ->hold_active check in md_clean function. ->hold_active is used to avoid mddev is released on the last close before adding disks to mddev. udev rule will open/close array once it's created. The array can be closed without ->hold_active support. But it should not work again when stopping an array. So remove the check ->hold_active in md_clean function. Signed-off-by: Xiao Ni <xni@xxxxxxxxxx> --- v2 removes ->hold_active check in md_clean drivers/md/md.c | 24 +++++++----------------- drivers/md/md.h | 2 -- 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/drivers/md/md.c b/drivers/md/md.c index 9daa78c5fe33..e14253433c49 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -599,7 +599,7 @@ static inline struct mddev *mddev_get(struct mddev *mddev) { lockdep_assert_held(&all_mddevs_lock); - if (test_bit(MD_DELETED, &mddev->flags)) + if (test_bit(MD_CLOSING, &mddev->flags)) return NULL; atomic_inc(&mddev->active); return mddev; @@ -613,9 +613,6 @@ static void __mddev_put(struct mddev *mddev) mddev->ctime || mddev->hold_active) return; - /* Array is not configured at all, and not held active, so destroy it */ - set_bit(MD_DELETED, &mddev->flags); - /* * Call queue_work inside the spinlock so that flush_workqueue() after * mddev_find will succeed in waiting for the work to be done. @@ -3312,7 +3309,7 @@ static bool md_rdev_overlaps(struct md_rdev *rdev) spin_lock(&all_mddevs_lock); list_for_each_entry(mddev, &all_mddevs, all_mddevs) { - if (test_bit(MD_DELETED, &mddev->flags)) + if (test_bit(MD_CLOSING, &mddev->flags)) continue; rdev_for_each(rdev2, mddev) { if (rdev != rdev2 && rdev->bdev == rdev2->bdev && @@ -6360,15 +6357,10 @@ static void md_clean(struct mddev *mddev) mddev->persistent = 0; mddev->level = LEVEL_NONE; mddev->clevel[0] = 0; - /* - * Don't clear MD_CLOSING, or mddev can be opened again. - * 'hold_active != 0' means mddev is still in the creation - * process and will be used later. - */ - if (mddev->hold_active) - mddev->flags = 0; - else - mddev->flags &= BIT_ULL_MASK(MD_CLOSING); + /* UNTIL_STOP is cleared here */ + mddev->hold_active = 0; + /* Don't clear MD_CLOSING, or mddev can be opened again. */ + mddev->flags &= BIT_ULL_MASK(MD_CLOSING); mddev->sb_flags = 0; mddev->ro = MD_RDWR; mddev->metadata_type[0] = 0; @@ -6595,8 +6587,6 @@ static int do_md_stop(struct mddev *mddev, int mode) export_array(mddev); md_clean(mddev); - if (mddev->hold_active == UNTIL_STOP) - mddev->hold_active = 0; } md_new_event(); sysfs_notify_dirent_safe(mddev->sysfs_state); @@ -8999,7 +8989,7 @@ void md_do_sync(struct md_thread *thread) goto skip; spin_lock(&all_mddevs_lock); list_for_each_entry(mddev2, &all_mddevs, all_mddevs) { - if (test_bit(MD_DELETED, &mddev2->flags)) + if (test_bit(MD_CLOSING, &mddev2->flags)) continue; if (mddev2 == mddev) continue; diff --git a/drivers/md/md.h b/drivers/md/md.h index 1cf00a04bcdd..a9dccb3d84ed 100644 --- a/drivers/md/md.h +++ b/drivers/md/md.h @@ -338,7 +338,6 @@ struct md_cluster_operations; * @MD_NOT_READY: do_md_run() is active, so 'array_state', ust not report that * array is ready yet. * @MD_BROKEN: This is used to stop writes and mark array as failed. - * @MD_DELETED: This device is being deleted * * change UNSUPPORTED_MDDEV_FLAGS for each array type if new flag is added */ @@ -353,7 +352,6 @@ enum mddev_flags { MD_HAS_MULTIPLE_PPLS, MD_NOT_READY, MD_BROKEN, - MD_DELETED, }; enum mddev_sb_flags { -- 2.32.0 (Apple Git-132)