linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next v2 00/28] md: synchronize io with array reconfiguration
@ 2023-08-28  1:59 Yu Kuai
  2023-08-28  1:59 ` [PATCH -next v2 01/28] md: use READ_ONCE/WRITE_ONCE for 'suspend_lo' and 'suspend_hi' Yu Kuai
                   ` (28 more replies)
  0 siblings, 29 replies; 37+ messages in thread
From: Yu Kuai @ 2023-08-28  1:59 UTC (permalink / raw)
  To: agk, snitzer, dm-devel, song, xni
  Cc: linux-kernel, linux-raid, yukuai3, yukuai1, yi.zhang, yangerkun

From: Yu Kuai <yukuai3@huawei.com>

Changes in v2:
 - rebase with latest md-next
 - remove some follow up cleanup patches, these patches will be sent
 later after this patchset.

After previous four patchset of preparatory work, this patchset impelement
a new version of mddev_suspend(), the new apis:
 - reconfig_mutex is not required;
 - the weird logical that suspend array hold 'reconfig_mutex' for
   mddev_check_recovery() to update superblock is not needed;
 - the special handling, 'pers->prepare_suspend', for raid456 is not
   needed;
 - It's safe to be called at any time once mddev is allocated, and it's
   designed to be used from slow path where array configuration is changed;

And use the new api to replace:

mddev_lock
mddev_suspend or not
// array reconfiguration
mddev_resume or not
mddev_unlock

With:

mddev_suspend
mddev_lock
// array reconfiguration
mddev_unlock
mddev_resume

However, the above change is not possible for raid5 and raid-cluster in
some corner cases, and mddev_suspend/resume() is replaced with quiesce()
callback, which will suspend the array as well.

This patchset is tested in my VM with mdadm testsuite with loop device
except for 10ddf tests(they always fail before this patchset).

A lot of cleanups will be started after this patchset.

Yu Kuai (28):
  md: use READ_ONCE/WRITE_ONCE for 'suspend_lo' and 'suspend_hi'
  md: use 'mddev->suspended' for is_md_suspended()
  md: add new helpers to suspend/resume array
  md: add new helpers to suspend/resume and lock/unlock array
  md: use new apis to suspend array for suspend_lo/hi_store()
  md: use new apis to suspend array for level_store()
  md: use new apis to suspend array for serialize_policy_store()
  md/dm-raid: use new apis to suspend array
  md/md-bitmap: use new apis to suspend array for location_store()
  md/raid5-cache: use READ_ONCE/WRITE_ONCE for 'conf->log'
  md/raid5-cache: use new apis to suspend array for
    r5c_disable_writeback_async()
  md/raid5-cache: use new apis to suspend array for
    r5c_journal_mode_store()
  md/raid5: use new apis to suspend array for raid5_store_stripe_size()
  md/raid5: use new apis to suspend array for raid5_store_skip_copy()
  md/raid5: use new apis to suspend array for
    raid5_store_group_thread_cnt()
  md/raid5: use new apis to suspend array for
    raid5_change_consistency_policy()
  md/raid5: replace suspend with quiesce() callback
  md: quiesce before md_kick_rdev_from_array() for md-cluster
  md: use new apis to suspend array for ioctls involed array
    reconfiguration
  md: use new apis to suspend array for adding/removing rdev from
    state_store()
  md: use new apis to suspend array for bind_rdev_to_array()
  md: use new apis to suspend array related to serial pool in
    state_store()
  md: use new apis to suspend array in backlog_store()
  md: suspend array in md_start_sync() if array need reconfiguration
  md: cleanup mddev_create/destroy_serial_pool()
  md/md-linear: cleanup linear_add()
  md: remove old apis to suspend the array
  md: rename __mddev_suspend/resume() back to mddev_suspend/resume()

 drivers/md/dm-raid.c       |   8 +-
 drivers/md/md-autodetect.c |   4 +-
 drivers/md/md-bitmap.c     |  18 ++-
 drivers/md/md-linear.c     |   2 -
 drivers/md/md.c            | 250 ++++++++++++++++++++++---------------
 drivers/md/md.h            |  52 ++++++--
 drivers/md/raid5-cache.c   |  61 +++++----
 drivers/md/raid5.c         |  56 ++++-----
 8 files changed, 253 insertions(+), 198 deletions(-)

-- 
2.39.2


^ permalink raw reply	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2023-09-26  0:56 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-28  1:59 [PATCH -next v2 00/28] md: synchronize io with array reconfiguration Yu Kuai
2023-08-28  1:59 ` [PATCH -next v2 01/28] md: use READ_ONCE/WRITE_ONCE for 'suspend_lo' and 'suspend_hi' Yu Kuai
2023-09-14  2:53   ` Xiao Ni
2023-09-25  1:18     ` Yu Kuai
2023-08-28  1:59 ` [PATCH -next v2 02/28] md: use 'mddev->suspended' for is_md_suspended() Yu Kuai
2023-09-20  8:46   ` Xiao Ni
2023-09-25  1:34     ` Yu Kuai
2023-08-28  1:59 ` [PATCH -next v2 03/28] md: add new helpers to suspend/resume array Yu Kuai
2023-09-25  7:21   ` Xiao Ni
2023-09-25  7:23     ` Xiao Ni
2023-08-28  1:59 ` [PATCH -next v2 04/28] md: add new helpers to suspend/resume and lock/unlock array Yu Kuai
2023-08-28  1:59 ` [PATCH -next v2 05/28] md: use new apis to suspend array for suspend_lo/hi_store() Yu Kuai
2023-08-28  1:59 ` [PATCH -next v2 06/28] md: use new apis to suspend array for level_store() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 07/28] md: use new apis to suspend array for serialize_policy_store() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 08/28] md/dm-raid: use new apis to suspend array Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 09/28] md/md-bitmap: use new apis to suspend array for location_store() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 10/28] md/raid5-cache: use READ_ONCE/WRITE_ONCE for 'conf->log' Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 11/28] md/raid5-cache: use new apis to suspend array for r5c_disable_writeback_async() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 12/28] md/raid5-cache: use new apis to suspend array for r5c_journal_mode_store() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 13/28] md/raid5: use new apis to suspend array for raid5_store_stripe_size() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 14/28] md/raid5: use new apis to suspend array for raid5_store_skip_copy() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 15/28] md/raid5: use new apis to suspend array for raid5_store_group_thread_cnt() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 16/28] md/raid5: use new apis to suspend array for raid5_change_consistency_policy() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 17/28] md/raid5: replace suspend with quiesce() callback Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 18/28] md: quiesce before md_kick_rdev_from_array() for md-cluster Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 19/28] md: use new apis to suspend array for ioctls involed array reconfiguration Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 20/28] md: use new apis to suspend array for adding/removing rdev from state_store() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 21/28] md: use new apis to suspend array for bind_rdev_to_array() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 22/28] md: use new apis to suspend array related to serial pool in state_store() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 23/28] md: use new apis to suspend array in backlog_store() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 24/28] md: suspend array in md_start_sync() if array need reconfiguration Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 25/28] md: cleanup mddev_create/destroy_serial_pool() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 26/28] md/md-linear: cleanup linear_add() Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 27/28] md: remove old apis to suspend the array Yu Kuai
2023-08-28  2:00 ` [PATCH -next v2 28/28] md: rename __mddev_suspend/resume() back to mddev_suspend/resume() Yu Kuai
2023-09-25 15:45 ` [PATCH -next v2 00/28] md: synchronize io with array reconfiguration Song Liu
2023-09-26  0:55   ` Yu Kuai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).