Skip to content

Commit

Permalink
md/md-bitmap: merge md_bitmap_free() into bitmap_operations
Browse files Browse the repository at this point in the history
So that the implementation won't be exposed, and it'll be possible
o invent a new bitmap by replacing bitmap_operations.

Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Link: https://lore.kernel.org/r/20240826074452.1490072-40-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
  • Loading branch information
Yu Kuai authored and Song Liu committed Aug 27, 2024
1 parent ef1c400 commit c65c20d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
7 changes: 2 additions & 5 deletions drivers/md/md-bitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1828,10 +1828,7 @@ static void bitmap_flush(struct mddev *mddev)
bitmap_update_sb(bitmap);
}

/*
* free memory that was allocated
*/
void md_bitmap_free(struct bitmap *bitmap)
static void md_bitmap_free(struct bitmap *bitmap)
{
unsigned long k, pages;
struct bitmap_page *bp;
Expand Down Expand Up @@ -1865,7 +1862,6 @@ void md_bitmap_free(struct bitmap *bitmap)
kfree(bp);
kfree(bitmap);
}
EXPORT_SYMBOL(md_bitmap_free);

void md_bitmap_wait_behind_writes(struct mddev *mddev)
{
Expand Down Expand Up @@ -2782,6 +2778,7 @@ static struct bitmap_operations bitmap_ops = {
.get_from_slot = bitmap_get_from_slot,
.copy_from_slot = bitmap_copy_from_slot,
.set_pages = bitmap_set_pages,
.free = md_bitmap_free,
};

void mddev_set_bitmap_ops(struct mddev *mddev)
Expand Down
3 changes: 1 addition & 2 deletions drivers/md/md-bitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -280,14 +280,13 @@ struct bitmap_operations {
int (*copy_from_slot)(struct mddev *mddev, int slot, sector_t *lo,
sector_t *hi, bool clear_bits);
void (*set_pages)(struct bitmap *bitmap, unsigned long pages);
void (*free)(struct bitmap *bitmap);
};

/* the bitmap API */
void mddev_set_bitmap_ops(struct mddev *mddev);

/* these are exported */

void md_bitmap_free(struct bitmap *bitmap);
void md_bitmap_wait_behind_writes(struct mddev *mddev);

static inline bool md_bitmap_enabled(struct bitmap *bitmap)
Expand Down
12 changes: 6 additions & 6 deletions drivers/md/md-cluster.c
Original file line number Diff line number Diff line change
Expand Up @@ -1201,12 +1201,12 @@ static int resize_bitmaps(struct mddev *mddev, sector_t newsize, sector_t oldsiz
* can't resize bitmap
*/
goto out;
md_bitmap_free(bitmap);
mddev->bitmap_ops->free(bitmap);
}

return 0;
out:
md_bitmap_free(bitmap);
mddev->bitmap_ops->free(bitmap);
update_bitmap_size(mddev, oldsize);
return -1;
}
Expand Down Expand Up @@ -1250,7 +1250,7 @@ static int cluster_check_sync_size(struct mddev *mddev)
bm_lockres = lockres_init(mddev, str, NULL, 1);
if (!bm_lockres) {
pr_err("md-cluster: Cannot initialize %s\n", str);
md_bitmap_free(bitmap);
mddev->bitmap_ops->free(bitmap);
return -1;
}
bm_lockres->flags |= DLM_LKF_NOQUEUE;
Expand All @@ -1261,17 +1261,17 @@ static int cluster_check_sync_size(struct mddev *mddev)

rv = mddev->bitmap_ops->get_stats(bitmap, &stats);
if (rv) {
md_bitmap_free(bitmap);
mddev->bitmap_ops->free(bitmap);
return rv;
}

if (sync_size == 0) {
sync_size = stats.sync_size;
} else if (sync_size != stats.sync_size) {
md_bitmap_free(bitmap);
mddev->bitmap_ops->free(bitmap);
return -1;
}
md_bitmap_free(bitmap);
mddev->bitmap_ops->free(bitmap);
}

return (my_sync_size == sync_size) ? 0 : -1;
Expand Down

0 comments on commit c65c20d

Please sign in to comment.