diff options
author | Yu Kuai <yukuai3@huawei.com> | 2024-08-26 09:44:31 +0200 |
---|---|---|
committer | Song Liu <song@kernel.org> | 2024-08-27 19:14:16 +0200 |
commit | b26313cb96f1b3fd6f07d3243f6cd426c5cbaf39 (patch) | |
tree | 37a0acad4c6bc56cb661eac395b9b907886b0d43 /drivers/md/md-bitmap.h | |
parent | md/md-bitmap: remove md_bitmap_setallbits() (diff) | |
download | linux-b26313cb96f1b3fd6f07d3243f6cd426c5cbaf39.tar.xz linux-b26313cb96f1b3fd6f07d3243f6cd426c5cbaf39.zip |
md/md-bitmap: merge bitmap_write_all() 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-22-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
Diffstat (limited to 'drivers/md/md-bitmap.h')
-rw-r--r-- | drivers/md/md-bitmap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/md/md-bitmap.h b/drivers/md/md-bitmap.h index 0bf16f0143ad..89cd60a7bb07 100644 --- a/drivers/md/md-bitmap.h +++ b/drivers/md/md-bitmap.h @@ -251,6 +251,7 @@ struct bitmap_operations { int (*load)(struct mddev *mddev); void (*destroy)(struct mddev *mddev); void (*flush)(struct mddev *mddev); + void (*write_all)(struct mddev *mddev); void (*update_sb)(struct bitmap *bitmap); int (*get_stats)(struct bitmap *bitmap, struct md_bitmap_stats *stats); @@ -261,8 +262,6 @@ void mddev_set_bitmap_ops(struct mddev *mddev); /* these are used only by md/bitmap */ -void md_bitmap_write_all(struct bitmap *bitmap); - void md_bitmap_dirty_bits(struct bitmap *bitmap, unsigned long s, unsigned long e); /* these are exported */ |