Home
last modified time | relevance | path

Searched refs:nbuckets (Results 1 – 1 of 1) sorted by relevance

/lib/
Drhashtable.c178 size_t nbuckets, in nested_bucket_table_alloc() argument
185 if (nbuckets < (1 << (shift + 1))) in nested_bucket_table_alloc()
200 tbl->nest = (ilog2(nbuckets) - 1) % shift + 1; in nested_bucket_table_alloc()
206 size_t nbuckets, in bucket_table_alloc() argument
213 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
219 size = nbuckets; in bucket_table_alloc()
222 tbl = nested_bucket_table_alloc(ht, nbuckets, gfp); in bucket_table_alloc()
223 nbuckets = 0; in bucket_table_alloc()
239 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()