Lines Matching refs:numentries
6334 unsigned long numentries, in alloc_large_system_hash() argument
6347 if (!numentries) { in alloc_large_system_hash()
6349 numentries = nr_kernel_pages; in alloc_large_system_hash()
6353 numentries = round_up(numentries, (1<<20)/PAGE_SIZE); in alloc_large_system_hash()
6357 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
6359 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
6365 if (!(numentries >> *_hash_shift)) { in alloc_large_system_hash()
6366 numentries = 1UL << *_hash_shift; in alloc_large_system_hash()
6367 BUG_ON(!numentries); in alloc_large_system_hash()
6369 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
6370 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
6372 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
6381 if (numentries < low_limit) in alloc_large_system_hash()
6382 numentries = low_limit; in alloc_large_system_hash()
6383 if (numentries > max) in alloc_large_system_hash()
6384 numentries = max; in alloc_large_system_hash()
6386 log2qty = ilog2(numentries); in alloc_large_system_hash()