diff options
-rw-r--r-- | arch/x86/mm/numa_64.c | 2 | ||||
-rw-r--r-- | include/asm-x86/topology.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/numa_64.c b/arch/x86/mm/numa_64.c index dca58fb39b08..7b03d2090c28 100644 --- a/arch/x86/mm/numa_64.c +++ b/arch/x86/mm/numa_64.c | |||
@@ -31,7 +31,7 @@ bootmem_data_t plat_node_bdata[MAX_NUMNODES]; | |||
31 | 31 | ||
32 | struct memnode memnode; | 32 | struct memnode memnode; |
33 | 33 | ||
34 | u16 x86_cpu_to_node_map_init[NR_CPUS] __initdata = { | 34 | u16 x86_cpu_to_node_map_init[NR_CPUS] = { |
35 | [0 ... NR_CPUS-1] = NUMA_NO_NODE | 35 | [0 ... NR_CPUS-1] = NUMA_NO_NODE |
36 | }; | 36 | }; |
37 | void *x86_cpu_to_node_map_early_ptr; | 37 | void *x86_cpu_to_node_map_early_ptr; |
diff --git a/include/asm-x86/topology.h b/include/asm-x86/topology.h index a89b46eb2526..2da1464ecbef 100644 --- a/include/asm-x86/topology.h +++ b/include/asm-x86/topology.h | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | /* Mappings between logical cpu number and node number */ | 32 | /* Mappings between logical cpu number and node number */ |
33 | DECLARE_PER_CPU(u16, x86_cpu_to_node_map); | 33 | DECLARE_PER_CPU(u16, x86_cpu_to_node_map); |
34 | extern u16 __initdata x86_cpu_to_node_map_init[]; | 34 | extern u16 x86_cpu_to_node_map_init[]; |
35 | extern void *x86_cpu_to_node_map_early_ptr; | 35 | extern void *x86_cpu_to_node_map_early_ptr; |
36 | extern cpumask_t node_to_cpumask_map[]; | 36 | extern cpumask_t node_to_cpumask_map[]; |
37 | 37 | ||