Lines Matching refs:table
3485 int numa_zonelist_order_handler(struct ctl_table *table, int write, in numa_zonelist_order_handler() argument
3495 if (strlen((char *)table->data) >= NUMA_ZONELIST_ORDER_LEN) { in numa_zonelist_order_handler()
3499 strcpy(saved_string, (char *)table->data); in numa_zonelist_order_handler()
3501 ret = proc_dostring(table, write, buffer, length, ppos); in numa_zonelist_order_handler()
3507 ret = __parse_numa_zonelist_order((char *)table->data); in numa_zonelist_order_handler()
3512 strncpy((char *)table->data, saved_string, in numa_zonelist_order_handler()
5874 int min_free_kbytes_sysctl_handler(struct ctl_table *table, int write, in module_init()
5879 rc = proc_dointvec_minmax(table, write, buffer, length, ppos); in module_init()
5891 int sysctl_min_unmapped_ratio_sysctl_handler(struct ctl_table *table, int write, in sysctl_min_unmapped_ratio_sysctl_handler() argument
5897 rc = proc_dointvec_minmax(table, write, buffer, length, ppos); in sysctl_min_unmapped_ratio_sysctl_handler()
5907 int sysctl_min_slab_ratio_sysctl_handler(struct ctl_table *table, int write, in sysctl_min_slab_ratio_sysctl_handler() argument
5913 rc = proc_dointvec_minmax(table, write, buffer, length, ppos); in sysctl_min_slab_ratio_sysctl_handler()
5933 int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *table, int write, in lowmem_reserve_ratio_sysctl_handler() argument
5936 proc_dointvec_minmax(table, write, buffer, length, ppos); in lowmem_reserve_ratio_sysctl_handler()
5946 int percpu_pagelist_fraction_sysctl_handler(struct ctl_table *table, int write, in percpu_pagelist_fraction_sysctl_handler() argument
5956 ret = proc_dointvec_minmax(table, write, buffer, length, ppos); in percpu_pagelist_fraction_sysctl_handler()
6015 void *table = NULL; in alloc_large_system_hash() local
6062 table = memblock_virt_alloc_nopanic(size, 0); in alloc_large_system_hash()
6064 table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL); in alloc_large_system_hash()
6072 table = alloc_pages_exact(size, GFP_ATOMIC); in alloc_large_system_hash()
6073 kmemleak_alloc(table, size, 1, GFP_ATOMIC); in alloc_large_system_hash()
6076 } while (!table && size > PAGE_SIZE && --log2qty); in alloc_large_system_hash()
6078 if (!table) in alloc_large_system_hash()
6092 return table; in alloc_large_system_hash()