Lines Matching refs:numentries
8430 unsigned long numentries, in alloc_large_system_hash() argument
8445 if (!numentries) { in alloc_large_system_hash()
8447 numentries = nr_kernel_pages; in alloc_large_system_hash()
8448 numentries -= arch_reserved_kernel_pages(); in alloc_large_system_hash()
8452 numentries = round_up(numentries, (1<<20)/PAGE_SIZE); in alloc_large_system_hash()
8458 for (adapt = ADAPT_SCALE_NPAGES; adapt < numentries; in alloc_large_system_hash()
8466 numentries >>= (scale - PAGE_SHIFT); in alloc_large_system_hash()
8468 numentries <<= (PAGE_SHIFT - scale); in alloc_large_system_hash()
8474 if (!(numentries >> *_hash_shift)) { in alloc_large_system_hash()
8475 numentries = 1UL << *_hash_shift; in alloc_large_system_hash()
8476 BUG_ON(!numentries); in alloc_large_system_hash()
8478 } else if (unlikely((numentries * bucketsize) < PAGE_SIZE)) in alloc_large_system_hash()
8479 numentries = PAGE_SIZE / bucketsize; in alloc_large_system_hash()
8481 numentries = roundup_pow_of_two(numentries); in alloc_large_system_hash()
8490 if (numentries < low_limit) in alloc_large_system_hash()
8491 numentries = low_limit; in alloc_large_system_hash()
8492 if (numentries > max) in alloc_large_system_hash()
8493 numentries = max; in alloc_large_system_hash()
8495 log2qty = ilog2(numentries); in alloc_large_system_hash()