diff options
author | Yu Kuai <yukuai3@huawei.com> | 2024-08-26 15:44:39 +0800 |
---|---|---|
committer | Song Liu <song@kernel.org> | 2024-08-27 12:42:42 -0700 |
commit | 15db1eca63bd954997058edc1563223d7b525003 (patch) | |
tree | c1c99a29a2ca635dd4497fbb394c79dadcc1538a /drivers/md/raid5.c | |
parent | 077b18abde12f27da9776563413bbad4918ecb52 (diff) | |
download | linux-15db1eca63bd954997058edc1563223d7b525003.tar.gz linux-15db1eca63bd954997058edc1563223d7b525003.tar.bz2 linux-15db1eca63bd954997058edc1563223d7b525003.zip |
md/md-bitmap: merge md_bitmap_cond_end_sync() into bitmap_operations
So that the implementation won't be exposed, and it'll be possible
to invent a new bitmap by replacing bitmap_operations.
Also change the parameter from bitmap to mddev, to avoid access
bitmap outside md-bitmap.c as much as possible.
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Link: https://lore.kernel.org/r/20240826074452.1490072-30-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
Diffstat (limited to 'drivers/md/raid5.c')
-rw-r--r-- | drivers/md/raid5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index d2b8d2517abf..87b8d19ab601 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c @@ -6540,7 +6540,7 @@ static inline sector_t raid5_sync_request(struct mddev *mddev, sector_t sector_n return sync_blocks * RAID5_STRIPE_SECTORS(conf); } - md_bitmap_cond_end_sync(mddev->bitmap, sector_nr, false); + mddev->bitmap_ops->cond_end_sync(mddev, sector_nr, false); sh = raid5_get_active_stripe(conf, NULL, sector_nr, R5_GAS_NOBLOCK); |