diff options
author | Tejun Heo <tj@kernel.org> | 2011-01-23 08:37:39 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-01-28 08:54:09 -0500 |
commit | bbc9e2f452d9c4b166d1f9a78d941d80173312fe (patch) | |
tree | d75d41187b296235f833e942ed8c1dd938a7bae4 /arch/x86/include/asm/numa.h | |
parent | 89e5dc218e084e13a3996db6693b01478912f4ee (diff) |
x86: Unify cpu/apicid <-> NUMA node mapping between 32 and 64bit
The mapping between cpu/apicid and node is done via
apicid_to_node[] on 64bit and apicid_2_node[] +
apic->x86_32_numa_cpu_node() on 32bit. This difference makes it
difficult to further unify 32 and 64bit NUMA handling.
This patch unifies it by replacing both apicid_to_node[] and
apicid_2_node[] with __apicid_to_node[] array, which is accessed
by two accessors - set_apicid_to_node() and numa_cpu_node(). On
64bit, numa_cpu_node() always consults __apicid_to_node[]
directly while 32bit goes through apic->numa_cpu_node() method
to allow apic implementations to override it.
srat_detect_node() for amd cpus contains workaround for broken
NUMA configuration which assumes relationship between APIC ID,
HT node ID and NUMA topology. Leave it to access
__apicid_to_node[] directly as mapping through CPU might result
in undesirable behavior change. The comment is reformatted and
updated to note the ugliness.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reviewed-by: Pekka Enberg <penberg@kernel.org>
Cc: eric.dumazet@gmail.com
Cc: yinghai@kernel.org
Cc: brgerst@gmail.com
Cc: gorcunov@gmail.com
Cc: shaohui.zheng@intel.com
Cc: rientjes@google.com
LKML-Reference: <1295789862-25482-14-git-send-email-tj@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: David Rientjes <rientjes@google.com>
Diffstat (limited to 'arch/x86/include/asm/numa.h')
-rw-r--r-- | arch/x86/include/asm/numa.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/x86/include/asm/numa.h b/arch/x86/include/asm/numa.h index 27da400d3138..5e01c768a575 100644 --- a/arch/x86/include/asm/numa.h +++ b/arch/x86/include/asm/numa.h | |||
@@ -1,5 +1,33 @@ | |||
1 | #ifndef _ASM_X86_NUMA_H | ||
2 | #define _ASM_X86_NUMA_H | ||
3 | |||
4 | #include <asm/apicdef.h> | ||
5 | |||
6 | #ifdef CONFIG_NUMA | ||
7 | /* | ||
8 | * __apicid_to_node[] stores the raw mapping between physical apicid and | ||
9 | * node and is used to initialize cpu_to_node mapping. | ||
10 | * | ||
11 | * The mapping may be overridden by apic->numa_cpu_node() on 32bit and thus | ||
12 | * should be accessed by the accessors - set_apicid_to_node() and | ||
13 | * numa_cpu_node(). | ||
14 | */ | ||
15 | extern s16 __apicid_to_node[MAX_LOCAL_APIC]; | ||
16 | |||
17 | static inline void set_apicid_to_node(int apicid, s16 node) | ||
18 | { | ||
19 | __apicid_to_node[apicid] = node; | ||
20 | } | ||
21 | #else /* CONFIG_NUMA */ | ||
22 | static inline void set_apicid_to_node(int apicid, s16 node) | ||
23 | { | ||
24 | } | ||
25 | #endif /* CONFIG_NUMA */ | ||
26 | |||
1 | #ifdef CONFIG_X86_32 | 27 | #ifdef CONFIG_X86_32 |
2 | # include "numa_32.h" | 28 | # include "numa_32.h" |
3 | #else | 29 | #else |
4 | # include "numa_64.h" | 30 | # include "numa_64.h" |
5 | #endif | 31 | #endif |
32 | |||
33 | #endif /* _ASM_X86_NUMA_H */ | ||