forked from Minki/linux
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>
This commit is contained in:
parent
ccf82085ee
commit
04d1dd20f6
@ -32,15 +32,15 @@
|
|||||||
/* Mappings between logical cpu number and node number */
|
/* Mappings between logical cpu number and node number */
|
||||||
#ifdef CONFIG_X86_32
|
#ifdef CONFIG_X86_32
|
||||||
extern int cpu_to_node_map[];
|
extern int cpu_to_node_map[];
|
||||||
|
|
||||||
#else
|
#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. */
|
/* Returns the number of the current Node. */
|
||||||
#define numa_node_id() (early_cpu_to_node(raw_smp_processor_id()))
|
#define numa_node_id() (early_cpu_to_node(raw_smp_processor_id()))
|
||||||
#endif
|
#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[];
|
extern cpumask_t node_to_cpumask_map[];
|
||||||
|
|
||||||
#define NUMA_NO_NODE (-1)
|
#define NUMA_NO_NODE (-1)
|
||||||
|
Loading…
Reference in New Issue
Block a user