Searched refs:nr_buckets (Results 1 - 2 of 2) sorted by relevance

/drivers/md/
H A Ddm-region-hash.c68 unsigned nr_buckets; member in struct:dm_region_hash
169 unsigned nr_buckets, max_buckets; local
177 for (nr_buckets = 128u; nr_buckets < max_buckets; nr_buckets <<= 1)
179 nr_buckets >>= 1;
197 rh->mask = nr_buckets - 1;
198 rh->nr_buckets = nr_buckets;
203 rh->buckets = vmalloc(nr_buckets * sizeo
[all...]
H A Ddm-thin.c135 unsigned nr_buckets; member in struct:bio_prison
160 uint32_t nr_buckets = calc_nr_buckets(nr_cells); local
162 (sizeof(struct hlist_head) * nr_buckets);
176 prison->nr_buckets = nr_buckets;
177 prison->hash_mask = nr_buckets - 1;
179 for (i = 0; i < nr_buckets; i++)
234 BUG_ON(hash > prison->nr_buckets);

Completed in 13 milliseconds