Skip to content

Commit

Permalink
dm bio prison v1: intelligently size dm_bio_prison's prison_regions
Browse files Browse the repository at this point in the history
Size the dm_bio_prison's number of prison_region structs using
dm_num_hash_locks().

Signed-off-by: Mike Snitzer <[email protected]>
  • Loading branch information
Mike Snitzer committed Mar 30, 2023
1 parent c627341 commit b6279f8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions drivers/md/dm-bio-prison-v1.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

/*----------------------------------------------------------------*/

#define NR_LOCKS 64
#define MIN_CELLS 1024

struct prison_region {
Expand All @@ -27,7 +26,7 @@ struct prison_region {
struct dm_bio_prison {
mempool_t cell_pool;
unsigned int num_locks;
struct prison_region regions[NR_LOCKS];
struct prison_region regions[];
};

static struct kmem_cache *_cell_cache;
Expand All @@ -41,12 +40,14 @@ static struct kmem_cache *_cell_cache;
struct dm_bio_prison *dm_bio_prison_create(void)
{
int ret;
unsigned i;
struct dm_bio_prison *prison = kzalloc(sizeof(*prison), GFP_KERNEL);
unsigned int i, num_locks;
struct dm_bio_prison *prison;

num_locks = dm_num_hash_locks();
prison = kzalloc(struct_size(prison, regions, num_locks), GFP_KERNEL);
if (!prison)
return NULL;
prison->num_locks = NR_LOCKS;
prison->num_locks = num_locks;

for (i = 0; i < prison->num_locks; i++) {
spin_lock_init(&prison->regions[i].lock);
Expand Down

0 comments on commit b6279f8

Please sign in to comment.