diff options
author | Keith Mannthey <kmannth@us.ibm.com> | 2006-10-03 18:25:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 18:46:10 -0700 |
commit | 78b656b8bf933101b42409b4492734b23427bfc3 (patch) | |
tree | 35b91bbaee4a3140ba9a8e2f49b1a86c22856748 /include/asm-i386 | |
parent | 708e16892e1646594a29eaa7ac7b209b600b9fd2 (diff) | |
download | op-kernel-dev-78b656b8bf933101b42409b4492734b23427bfc3.zip op-kernel-dev-78b656b8bf933101b42409b4492734b23427bfc3.tar.gz |
[PATCH] i383 numa: fix numaq/summit apicid conflict
This allows numaq to properly align cpus to their given node during
boot. Pass logical apicid to apicid_to_node and allow the summit
sub-arch to use physical apicid (hard_smp_processor_id()).
Tested against numaq and summit based systems with no issues.
Signed-off-by: Keith Mannthey <kmannth@us.ibm.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-i386')
-rw-r--r-- | include/asm-i386/mach-summit/mach_apic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-i386/mach-summit/mach_apic.h b/include/asm-i386/mach-summit/mach_apic.h index 254a0fe..ef0671e 100644 --- a/include/asm-i386/mach-summit/mach_apic.h +++ b/include/asm-i386/mach-summit/mach_apic.h @@ -88,7 +88,7 @@ static inline void clustered_apic_check(void) static inline int apicid_to_node(int logical_apicid) { - return apicid_2_node[logical_apicid]; + return apicid_2_node[hard_smp_processor_id()]; } /* Mapping from cpu number to logical apicid */ |