Lines Matching refs:numentries
6067 unsigned long numentries, in alloc_large_system_hash() argument
6080 if (!numentries) { in alloc_large_system_hash()
6082 numentries = nr_kernel_pages; in alloc_large_system_hash()
6086 numentries = round_up(numentries, (1<<20)/PAGE_SIZE); in alloc_large_system_hash()
6090 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
6092 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
6098 if (!(numentries >> *_hash_shift)) { in alloc_large_system_hash()
6099 numentries = 1UL << *_hash_shift; in alloc_large_system_hash()
6100 BUG_ON(!numentries); in alloc_large_system_hash()
6102 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
6103 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
6105 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
6114 if (numentries < low_limit) in alloc_large_system_hash()
6115 numentries = low_limit; in alloc_large_system_hash()
6116 if (numentries > max) in alloc_large_system_hash()
6117 numentries = max; in alloc_large_system_hash()
6119 log2qty = ilog2(numentries); in alloc_large_system_hash()