1 #ifndef _ASM_X86_NUMA_64_H
2 #define _ASM_X86_NUMA_64_H
4 #include <linux/nodemask.h>
11 extern int compute_hash_shift(struct bootnode
*nodes
, int numblks
,
14 #define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT))
16 extern void numa_init_array(void);
19 extern unsigned long numa_free_all_bootmem(void);
20 extern void setup_node_bootmem(int nodeid
, unsigned long start
,
25 * Too small node sizes may confuse the VM badly. Usually they
26 * result from BIOS bugs. So dont recognize nodes as standalone
27 * NUMA entities that have less than this amount of RAM listed:
29 #define NODE_MIN_SIZE (4*1024*1024)
31 extern void __init
init_cpu_to_node(void);
32 extern int __cpuinit
numa_cpu_node(int cpu
);
34 #ifdef CONFIG_NUMA_EMU
35 #define FAKE_NODE_MIN_SIZE ((u64)32 << 20)
36 #define FAKE_NODE_MIN_HASH_MASK (~(FAKE_NODE_MIN_SIZE - 1UL))
37 void numa_emu_cmdline(char *);
38 #endif /* CONFIG_NUMA_EMU */
40 static inline void init_cpu_to_node(void) { }
41 static inline int numa_cpu_node(int cpu
) { return NUMA_NO_NODE
; }
44 #endif /* _ASM_X86_NUMA_64_H */