md/md-bitmap: make md_bitmap_print_sb() internal
md_bitmap_print_sb() is only used inside md-bitmap.c, hence make it static, also rename it to bitmap_print_sb. Signed-off-by: Yu Kuai <yukuai3@huawei.com> Link: https://lore.kernel.org/r/20240826074452.1490072-18-yukuai1@huaweicloud.com Signed-off-by: Song Liu <song@kernel.org>
This commit is contained in:
@@ -512,8 +512,7 @@ void md_bitmap_update_sb(struct bitmap *bitmap)
|
||||
}
|
||||
EXPORT_SYMBOL(md_bitmap_update_sb);
|
||||
|
||||
/* print out the bitmap file superblock */
|
||||
void md_bitmap_print_sb(struct bitmap *bitmap)
|
||||
static void bitmap_print_sb(struct bitmap *bitmap)
|
||||
{
|
||||
bitmap_super_t *sb;
|
||||
|
||||
@@ -760,7 +759,7 @@ out_no_sb:
|
||||
bitmap->mddev->bitmap_info.space > sectors_reserved)
|
||||
bitmap->mddev->bitmap_info.space = sectors_reserved;
|
||||
} else {
|
||||
md_bitmap_print_sb(bitmap);
|
||||
bitmap_print_sb(bitmap);
|
||||
if (bitmap->cluster_slot < 0)
|
||||
md_cluster_stop(bitmap->mddev);
|
||||
}
|
||||
|
||||
@@ -258,7 +258,6 @@ void mddev_set_bitmap_ops(struct mddev *mddev);
|
||||
|
||||
/* these are used only by md/bitmap */
|
||||
|
||||
void md_bitmap_print_sb(struct bitmap *bitmap);
|
||||
void md_bitmap_update_sb(struct bitmap *bitmap);
|
||||
int md_bitmap_get_stats(struct bitmap *bitmap, struct md_bitmap_stats *stats);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user