diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-01-30 07:33:14 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:14 -0500 |
commit | 118c890961a2ca456947d72ebe0ce43de07907f0 (patch) | |
tree | 990760fd4207b5eed81838734a587b2851ebac56 /include/asm-x86/topology.h | |
parent | 693e3c560317577a29c625d89f6745d5c7cfd918 (diff) |
arch/x86/mm/numa_64.c: section fix
WARNING: vmlinux.o(__ksymtab+0x670): Section mismatch: reference to .init.data:x86_cpu_to_node_map_init (between '__ksymtab_x86_cpu_to_node_map_init' and '__ksymtab_node_data')
Cc: Matthew Dobson <colpatch@us.ibm.com>
Cc: Mike Travis <travis@sgi.com>
Cc: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/topology.h')
-rw-r--r-- | include/asm-x86/topology.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ||