diff options
author | Yu Kuai <yukuai3@huawei.com> | 2024-08-26 15:44:38 +0800 |
---|---|---|
committer | Song Liu <song@kernel.org> | 2024-08-27 10:14:17 -0700 |
commit | 077b18abde12f27da9776563413bbad4918ecb52 (patch) | |
tree | 34ed83a3149b5c3fcb617e9d40b0eeb69670e8c5 /drivers/md/raid10.c | |
parent | 1415f402e1a1e6054377ed15f249589204cfb8b7 (diff) | |
download | linux-077b18abde12f27da9776563413bbad4918ecb52.tar.gz linux-077b18abde12f27da9776563413bbad4918ecb52.tar.bz2 linux-077b18abde12f27da9776563413bbad4918ecb52.zip |
md/md-bitmap: merge md_bitmap_close_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-29-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
Diffstat (limited to 'drivers/md/raid10.c')
-rw-r--r-- | drivers/md/raid10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index 15299a7774a0..5b1c86c368b1 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c @@ -3222,7 +3222,7 @@ static sector_t raid10_sync_request(struct mddev *mddev, sector_t sector_nr, } conf->fullsync = 0; } - md_bitmap_close_sync(mddev->bitmap); + mddev->bitmap_ops->close_sync(mddev); close_sync(conf); *skipped = 1; return sectors_skipped; |