diff options
Diffstat (limited to 'include/asm-x86/topology.h')
-rw-r--r-- | include/asm-x86/topology.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-x86/topology.h b/include/asm-x86/topology.h index 8af05a93f097..dada89e5b152 100644 --- a/include/asm-x86/topology.h +++ b/include/asm-x86/topology.h | |||
@@ -32,15 +32,15 @@ | |||
32 | /* Mappings between logical cpu number and node number */ | 32 | /* Mappings between logical cpu number and node number */ |
33 | #ifdef CONFIG_X86_32 | 33 | #ifdef CONFIG_X86_32 |
34 | extern int cpu_to_node_map[]; | 34 | extern int cpu_to_node_map[]; |
35 | |||
36 | #else | 35 | #else |
37 | DECLARE_PER_CPU(int, x86_cpu_to_node_map); | ||
38 | extern int x86_cpu_to_node_map_init[]; | ||
39 | extern void *x86_cpu_to_node_map_early_ptr; | ||
40 | /* Returns the number of the current Node. */ | 36 | /* Returns the number of the current Node. */ |
41 | #define numa_node_id() (early_cpu_to_node(raw_smp_processor_id())) | 37 | #define numa_node_id() (early_cpu_to_node(raw_smp_processor_id())) |
42 | #endif | 38 | #endif |
43 | 39 | ||
40 | DECLARE_PER_CPU(int, x86_cpu_to_node_map); | ||
41 | extern int x86_cpu_to_node_map_init[]; | ||
42 | extern void *x86_cpu_to_node_map_early_ptr; | ||
43 | |||
44 | extern cpumask_t node_to_cpumask_map[]; | 44 | extern cpumask_t node_to_cpumask_map[]; |
45 | 45 | ||
46 | #define NUMA_NO_NODE (-1) | 46 | #define NUMA_NO_NODE (-1) |