Lines Matching refs:numentries
2367 unsigned long numentries, in alloc_large_system_hash() argument
2383 if (!numentries) { in alloc_large_system_hash()
2385 numentries = nr_kernel_pages; in alloc_large_system_hash()
2389 numentries = round_up(numentries, SZ_1M / PAGE_SIZE); in alloc_large_system_hash()
2395 for (adapt = ADAPT_SCALE_NPAGES; adapt < numentries; in alloc_large_system_hash()
2403 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
2405 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
2407 if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
2408 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
2410 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
2419 if (numentries < low_limit) in alloc_large_system_hash()
2420 numentries = low_limit; in alloc_large_system_hash()
2421 if (numentries > max) in alloc_large_system_hash()
2422 numentries = max; in alloc_large_system_hash()
2424 log2qty = ilog2(numentries); in alloc_large_system_hash()