Lines Matching defs:table

973  * The concept of a buddy system is to maintain direct-mapped table
975 * The bottom level table contains the map for the smallest allocatable
978 * At a high level, all that happens here is marking the table entry
2183 * Corresponding page table entries will not be touched,
5825 int numa_zonelist_order_handler(struct ctl_table *table, int write,
5830 return proc_dostring(table, write, buffer, length, ppos);
6038 * Boot pageset table. One per cpu which is going to be used for all
8153 int min_free_kbytes_sysctl_handler(struct ctl_table *table, int write,
8158 rc = proc_dointvec_minmax(table, write, buffer, length, ppos);
8169 int watermark_scale_factor_sysctl_handler(struct ctl_table *table, int write,
8174 rc = proc_dointvec_minmax(table, write, buffer, length, ppos);
8199 int sysctl_min_unmapped_ratio_sysctl_handler(struct ctl_table *table, int write,
8204 rc = proc_dointvec_minmax(table, write, buffer, length, ppos);
8226 int sysctl_min_slab_ratio_sysctl_handler(struct ctl_table *table, int write,
8231 rc = proc_dointvec_minmax(table, write, buffer, length, ppos);
8250 int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *table, int write,
8255 proc_dointvec_minmax(table, write, buffer, length, ppos);
8280 int percpu_pagelist_fraction_sysctl_handler(struct ctl_table *table, int write,
8290 ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
8328 * quadruples the scale is increased by one, which means the size of hash table
8340 * allocate a large system hash table from bootmem
8341 * - it is assumed that the hash table must contain an exact power-of-2
8357 void *table = NULL;
8420 table = memblock_alloc(size, SMP_CACHE_BYTES);
8422 table = memblock_alloc_raw(size,
8425 table = __vmalloc(size, gfp_flags);
8430 * some pages at the end of hash table which
8433 table = alloc_pages_exact(size, gfp_flags);
8434 kmemleak_alloc(table, size, 1, gfp_flags);
8436 } while (!table && size > PAGE_SIZE && --log2qty);
8438 if (!table)
8439 panic("Failed to allocate %s hash table\n", tablename);
8441 pr_info("%s hash table entries: %ld (order: %d, %lu bytes, %s)\n",
8450 return table;