diff options
Diffstat (limited to 'arch/x86/include/asm/numa.h')
-rw-r--r-- | arch/x86/include/asm/numa.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/x86/include/asm/numa.h b/arch/x86/include/asm/numa.h index db449c7d89b..74540865dd8 100644 --- a/arch/x86/include/asm/numa.h +++ b/arch/x86/include/asm/numa.h | |||
@@ -9,6 +9,16 @@ | |||
9 | #ifdef CONFIG_NUMA | 9 | #ifdef CONFIG_NUMA |
10 | 10 | ||
11 | #define NR_NODE_MEMBLKS (MAX_NUMNODES*2) | 11 | #define NR_NODE_MEMBLKS (MAX_NUMNODES*2) |
12 | #define ZONE_ALIGN (1UL << (MAX_ORDER+PAGE_SHIFT)) | ||
13 | |||
14 | /* | ||
15 | * Too small node sizes may confuse the VM badly. Usually they | ||
16 | * result from BIOS bugs. So dont recognize nodes as standalone | ||
17 | * NUMA entities that have less than this amount of RAM listed: | ||
18 | */ | ||
19 | #define NODE_MIN_SIZE (4*1024*1024) | ||
20 | |||
21 | extern int numa_off; | ||
12 | 22 | ||
13 | /* | 23 | /* |
14 | * __apicid_to_node[] stores the raw mapping between physical apicid and | 24 | * __apicid_to_node[] stores the raw mapping between physical apicid and |
@@ -68,4 +78,10 @@ static inline void numa_remove_cpu(int cpu) { } | |||
68 | void debug_cpumask_set_cpu(int cpu, int node, bool enable); | 78 | void debug_cpumask_set_cpu(int cpu, int node, bool enable); |
69 | #endif | 79 | #endif |
70 | 80 | ||
81 | #ifdef CONFIG_NUMA_EMU | ||
82 | #define FAKE_NODE_MIN_SIZE ((u64)32 << 20) | ||
83 | #define FAKE_NODE_MIN_HASH_MASK (~(FAKE_NODE_MIN_SIZE - 1UL)) | ||
84 | void numa_emu_cmdline(char *); | ||
85 | #endif /* CONFIG_NUMA_EMU */ | ||
86 | |||
71 | #endif /* _ASM_X86_NUMA_H */ | 87 | #endif /* _ASM_X86_NUMA_H */ |