diff options
Diffstat (limited to 'arch/x86/kernel/acpi')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index b3a71137983a..a7bca59ec595 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -589,11 +589,10 @@ static void acpi_map_cpu2node(acpi_handle handle, int cpu, int physid) | |||
589 | nid = acpi_get_node(handle); | 589 | nid = acpi_get_node(handle); |
590 | if (nid == -1 || !node_online(nid)) | 590 | if (nid == -1 || !node_online(nid)) |
591 | return; | 591 | return; |
592 | set_apicid_to_node(physid, nid); | ||
592 | #ifdef CONFIG_X86_64 | 593 | #ifdef CONFIG_X86_64 |
593 | apicid_to_node[physid] = nid; | ||
594 | numa_set_node(cpu, nid); | 594 | numa_set_node(cpu, nid); |
595 | #else /* CONFIG_X86_32 */ | 595 | #else /* CONFIG_X86_32 */ |
596 | apicid_2_node[physid] = nid; | ||
597 | cpu_to_node_map[cpu] = nid; | 596 | cpu_to_node_map[cpu] = nid; |
598 | #endif | 597 | #endif |
599 | 598 | ||