summaryrefslogtreecommitdiffstats
path: root/include/asm-x86/topology.h
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa2008-03-19 18:25:21 +0100
committerIngo Molnar2008-04-17 17:41:00 +0200
commit04d1dd20f64f2b41baf5c01f57c574ca942ab4eb (patch)
treea2aa8a1b54b3db29f009cfdcfa88a231693701d0 /include/asm-x86/topology.h
parentx86: initialize map pointers in setup_32.c (diff)
downloadkernel-qcow2-linux-04d1dd20f64f2b41baf5c01f57c574ca942ab4eb.tar.gz
kernel-qcow2-linux-04d1dd20f64f2b41baf5c01f57c574ca942ab4eb.tar.xz
kernel-qcow2-linux-04d1dd20f64f2b41baf5c01f57c574ca942ab4eb.zip
x86: make node to apic mapping declarations unconditional
Instead of declaring them inside of X86_64 ifdef, do it unconditionally Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/topology.h')
-rw-r--r--include/asm-x86/topology.h8
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 @@
/* Mappings between logical cpu number and node number */
#ifdef CONFIG_X86_32
extern int cpu_to_node_map[];
-
#else
-DECLARE_PER_CPU(int, x86_cpu_to_node_map);
-extern int x86_cpu_to_node_map_init[];
-extern void *x86_cpu_to_node_map_early_ptr;
/* Returns the number of the current Node. */
#define numa_node_id() (early_cpu_to_node(raw_smp_processor_id()))
#endif
+DECLARE_PER_CPU(int, x86_cpu_to_node_map);
+extern int x86_cpu_to_node_map_init[];
+extern void *x86_cpu_to_node_map_early_ptr;
+
extern cpumask_t node_to_cpumask_map[];
#define NUMA_NO_NODE (-1)