Lines Matching refs:numentries
9090 unsigned long numentries, in alloc_large_system_hash() argument
9106 if (!numentries) { in alloc_large_system_hash()
9108 numentries = nr_kernel_pages; in alloc_large_system_hash()
9109 numentries -= arch_reserved_kernel_pages(); in alloc_large_system_hash()
9113 numentries = round_up(numentries, SZ_1M / PAGE_SIZE); in alloc_large_system_hash()
9119 for (adapt = ADAPT_SCALE_NPAGES; adapt < numentries; in alloc_large_system_hash()
9127 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
9129 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
9135 if (!(numentries >> *_hash_shift)) { in alloc_large_system_hash()
9136 numentries = 1UL << *_hash_shift; in alloc_large_system_hash()
9137 BUG_ON(!numentries); in alloc_large_system_hash()
9139 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
9140 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
9142 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
9151 if (numentries < low_limit) in alloc_large_system_hash()
9152 numentries = low_limit; in alloc_large_system_hash()
9153 if (numentries > max) in alloc_large_system_hash()
9154 numentries = max; in alloc_large_system_hash()
9156 log2qty = ilog2(numentries); in alloc_large_system_hash()