Lines Matching refs:numentries
8684 unsigned long numentries, in alloc_large_system_hash() argument
8700 if (!numentries) { in alloc_large_system_hash()
8702 numentries = nr_kernel_pages; in alloc_large_system_hash()
8703 numentries -= arch_reserved_kernel_pages(); in alloc_large_system_hash()
8707 numentries = round_up(numentries, (1<<20)/PAGE_SIZE); in alloc_large_system_hash()
8713 for (adapt = ADAPT_SCALE_NPAGES; adapt < numentries; in alloc_large_system_hash()
8721 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
8723 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
8729 if (!(numentries >> *_hash_shift)) { in alloc_large_system_hash()
8730 numentries = 1UL << *_hash_shift; in alloc_large_system_hash()
8731 BUG_ON(!numentries); in alloc_large_system_hash()
8733 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
8734 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
8736 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
8745 if (numentries < low_limit) in alloc_large_system_hash()
8746 numentries = low_limit; in alloc_large_system_hash()
8747 if (numentries > max) in alloc_large_system_hash()
8748 numentries = max; in alloc_large_system_hash()
8750 log2qty = ilog2(numentries); in alloc_large_system_hash()