Lines Matching refs:numentries
2453 unsigned long numentries, in alloc_large_system_hash() argument
2469 if (!numentries) { in alloc_large_system_hash()
2471 numentries = nr_kernel_pages; in alloc_large_system_hash()
2472 numentries -= arch_reserved_kernel_pages(); in alloc_large_system_hash()
2476 numentries = round_up(numentries, SZ_1M / PAGE_SIZE); in alloc_large_system_hash()
2482 for (adapt = ADAPT_SCALE_NPAGES; adapt < numentries; in alloc_large_system_hash()
2490 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
2492 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
2494 if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
2495 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
2497 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
2506 if (numentries < low_limit) in alloc_large_system_hash()
2507 numentries = low_limit; in alloc_large_system_hash()
2508 if (numentries > max) in alloc_large_system_hash()
2509 numentries = max; in alloc_large_system_hash()
2511 log2qty = ilog2(numentries); in alloc_large_system_hash()