Lines Matching refs:pgdat
42 extern unsigned long init_bootmem_node(pg_data_t *pgdat,
49 extern void reset_node_managed_pages(pg_data_t *pgdat);
52 extern void free_bootmem_node(pg_data_t *pgdat,
72 extern int reserve_bootmem_node(pg_data_t *pgdat,
83 extern void *__alloc_bootmem_node(pg_data_t *pgdat,
87 void *__alloc_bootmem_node_high(pg_data_t *pgdat,
91 extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat,
95 void *___alloc_bootmem_node_nopanic(pg_data_t *pgdat,
106 extern void *__alloc_bootmem_low_node(pg_data_t *pgdat,
128 #define alloc_bootmem_node(pgdat, x) \ argument
129 __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
130 #define alloc_bootmem_node_nopanic(pgdat, x) \ argument
131 __alloc_bootmem_node_nopanic(pgdat, x, SMP_CACHE_BYTES, BOOTMEM_LOW_LIMIT)
132 #define alloc_bootmem_pages_node(pgdat, x) \ argument
133 __alloc_bootmem_node(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
134 #define alloc_bootmem_pages_node_nopanic(pgdat, x) \ argument
135 __alloc_bootmem_node_nopanic(pgdat, x, PAGE_SIZE, BOOTMEM_LOW_LIMIT)
143 #define alloc_bootmem_low_pages_node(pgdat, x) \ argument
144 __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)