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.c126 unsigned nr_buckets; member in struct:bio_prison
151 uint32_t nr_buckets = calc_nr_buckets(nr_cells); local
153 (sizeof(struct hlist_head) * nr_buckets);
167 prison->nr_buckets = nr_buckets;
168 prison->hash_mask = nr_buckets - 1;
170 for (i = 0; i < nr_buckets; i++)
224 BUG_ON(hash > prison->nr_buckets);

Completed in 54 milliseconds