Lines Matching refs:numentries
9055 unsigned long numentries, in alloc_large_system_hash() argument
9071 if (!numentries) { in alloc_large_system_hash()
9073 numentries = nr_kernel_pages; in alloc_large_system_hash()
9074 numentries -= arch_reserved_kernel_pages(); in alloc_large_system_hash()
9078 numentries = round_up(numentries, SZ_1M / PAGE_SIZE); in alloc_large_system_hash()
9084 for (adapt = ADAPT_SCALE_NPAGES; adapt < numentries; in alloc_large_system_hash()
9092 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
9094 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
9100 if (!(numentries >> *_hash_shift)) { in alloc_large_system_hash()
9101 numentries = 1UL << *_hash_shift; in alloc_large_system_hash()
9102 BUG_ON(!numentries); in alloc_large_system_hash()
9104 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
9105 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
9107 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
9116 if (numentries < low_limit) in alloc_large_system_hash()
9117 numentries = low_limit; in alloc_large_system_hash()
9118 if (numentries > max) in alloc_large_system_hash()
9119 numentries = max; in alloc_large_system_hash()
9121 log2qty = ilog2(numentries); in alloc_large_system_hash()