[PATCH] x86_64: Reserve SRAT hotadd memory on x86-64
[safe/jmp/linux-2.6] / include / asm-x86_64 / numa.h
1 #ifndef _ASM_X8664_NUMA_H 
2 #define _ASM_X8664_NUMA_H 1
3
4 #include <linux/nodemask.h>
5 #include <asm/numnodes.h>
6
7 struct bootnode {
8         u64 start,end; 
9 };
10
11 extern int compute_hash_shift(struct bootnode *nodes, int numnodes);
12 extern int pxm_to_node(int nid);
13
14 #define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT))
15
16 extern void numa_add_cpu(int cpu);
17 extern void numa_init_array(void);
18 extern int numa_off;
19
20 extern void numa_set_node(int cpu, int node);
21 extern void srat_reserve_add_area(int nodeid);
22 extern int hotadd_percent;
23
24 extern unsigned char apicid_to_node[256];
25 #ifdef CONFIG_NUMA
26 extern void __init init_cpu_to_node(void);
27
28 static inline void clear_node_cpumask(int cpu)
29 {
30         clear_bit(cpu, &node_to_cpumask[cpu_to_node(cpu)]);
31 }
32
33 #else
34 #define init_cpu_to_node() do {} while (0)
35 #define clear_node_cpumask(cpu) do {} while (0)
36 #endif
37
38 #define NUMA_NO_NODE 0xff
39
40 #endif