aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86_64/numa.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86_64/numa.h')
-rw-r--r--include/asm-x86_64/numa.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/asm-x86_64/numa.h b/include/asm-x86_64/numa.h
new file mode 100644
index 000000000000..5c363a1482e4
--- /dev/null
+++ b/include/asm-x86_64/numa.h
@@ -0,0 +1,21 @@
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
7struct node {
8 u64 start,end;
9};
10
11extern int compute_hash_shift(struct node *nodes, int numnodes);
12
13#define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT))
14
15extern void numa_add_cpu(int cpu);
16extern void numa_init_array(void);
17extern int numa_off;
18
19#define NUMA_NO_NODE 0xff
20
21#endif