Lines Matching refs:numentries
8068 unsigned long numentries, in alloc_large_system_hash() argument
8083 if (!numentries) { in alloc_large_system_hash()
8085 numentries = nr_kernel_pages; in alloc_large_system_hash()
8086 numentries -= arch_reserved_kernel_pages(); in alloc_large_system_hash()
8090 numentries = round_up(numentries, (1<<20)/PAGE_SIZE); in alloc_large_system_hash()
8096 for (adapt = ADAPT_SCALE_NPAGES; adapt < numentries; in alloc_large_system_hash()
8104 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
8106 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
8112 if (!(numentries >> *_hash_shift)) { in alloc_large_system_hash()
8113 numentries = 1UL << *_hash_shift; in alloc_large_system_hash()
8114 BUG_ON(!numentries); in alloc_large_system_hash()
8116 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
8117 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
8119 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
8128 if (numentries < low_limit) in alloc_large_system_hash()
8129 numentries = low_limit; in alloc_large_system_hash()
8130 if (numentries > max) in alloc_large_system_hash()
8131 numentries = max; in alloc_large_system_hash()
8133 log2qty = ilog2(numentries); in alloc_large_system_hash()