x86, acpi: Map hotadded cpu to correct node.

Previous thread: rcu: Integrate rcu_dereference_check() message into lockdep by Linux Kernel Mailing List on Sunday, February 28, 2010 - 11:59 am. (1 message)

Next thread: x86-64: Allow fbdev primary video code by Linux Kernel Mailing List on Sunday, February 28, 2010 - 11:59 am. (1 message)
From: Linux Kernel Mailing List
Date: Sunday, February 28, 2010 - 12:01 pm

Gitweb:     http://git.kernel.org/linus/0271f91003d3703675be13b8865618359a6caa1f
Commit:     0271f91003d3703675be13b8865618359a6caa1f
Parent:     e28cab42f384745c8a947a9ccd51e4aae52f5d51
Author:     Haicheng Li <haicheng.li@linux.intel.com>
AuthorDate: Thu Feb 4 19:06:33 2010 +0800
Committer:  H. Peter Anvin <hpa@zytor.com>
CommitDate: Wed Feb 10 11:00:43 2010 -0800

    x86, acpi: Map hotadded cpu to correct node.
    
    When hotadd new cpu to system, if its affinitive node is online,
    should map the cpu to its own node.  Otherwise, let kernel select one
    online node for the new cpu later.
    
    Signed-off-by: Haicheng Li <haicheng.li@linux.intel.com>
    LKML-Reference: <4B6AAA39.6000300@linux.intel.com>
    Tested-by: Thomas Renninger <trenn@suse.de>
    Signed-off-by: H. Peter Anvin <hpa@zytor.com>
---
 arch/x86/kernel/acpi/boot.c |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index 036d28a..7db15e1 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -49,6 +49,7 @@ EXPORT_SYMBOL(acpi_disabled);
 
 #ifdef	CONFIG_X86_64
 # include <asm/proto.h>
+# include <asm/numa_64.h>
 #endif				/* X86 */
 
 #define BAD_MADT_ENTRY(entry, end) (					    \
@@ -482,6 +483,25 @@ int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
  */
 #ifdef CONFIG_ACPI_HOTPLUG_CPU
 
+static void acpi_map_cpu2node(acpi_handle handle, int cpu, int physid)
+{
+#ifdef CONFIG_ACPI_NUMA
+	int nid;
+
+	nid = acpi_get_node(handle);
+	if (nid == -1 || !node_online(nid))
+		return;
+#ifdef CONFIG_X86_64
+	apicid_to_node[physid] = nid;
+	numa_set_node(cpu, nid);
+#else /* CONFIG_X86_32 */
+	apicid_2_node[physid] = nid;
+	cpu_to_node_map[cpu] = nid;
+#endif
+
+#endif
+}
+
 static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
 {
 	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
@@ -540,6 +560,7 @@ ...
Previous thread: rcu: Integrate rcu_dereference_check() message into lockdep by Linux Kernel Mailing List on Sunday, February 28, 2010 - 11:59 am. (1 message)

Next thread: x86-64: Allow fbdev primary video code by Linux Kernel Mailing List on Sunday, February 28, 2010 - 11:59 am. (1 message)