diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-08 05:14:58 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 05:14:58 -0400 |
commit | 3de352bbd86f890dd0c5e1c09a6a1b0b29e0f8ce (patch) | |
tree | d4c5eba8cd2abefd7c9f16d089393f0f5999cf63 /arch/x86/mm/k8topology_64.c | |
parent | 1b8ba39a3fad9c58532f6dad12c94d6e675be656 (diff) | |
parent | 9340e1ccdf7b9b22a2be7f51cd74e8b5e11961bf (diff) |
Merge branch 'x86/mpparse' into x86/devel
Conflicts:
arch/x86/Kconfig
arch/x86/kernel/io_apic_32.c
arch/x86/kernel/setup_64.c
arch/x86/mm/init_32.c
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/k8topology_64.c')
-rw-r--r-- | arch/x86/mm/k8topology_64.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/mm/k8topology_64.c b/arch/x86/mm/k8topology_64.c index 0ea66b532c35..317573ec9256 100644 --- a/arch/x86/mm/k8topology_64.c +++ b/arch/x86/mm/k8topology_64.c | |||
@@ -57,18 +57,22 @@ static __init void early_get_boot_cpu_id(void) | |||
57 | /* | 57 | /* |
58 | * Find possible boot-time SMP configuration: | 58 | * Find possible boot-time SMP configuration: |
59 | */ | 59 | */ |
60 | #ifdef CONFIG_X86_MPPARSE | ||
60 | early_find_smp_config(); | 61 | early_find_smp_config(); |
62 | #endif | ||
61 | #ifdef CONFIG_ACPI | 63 | #ifdef CONFIG_ACPI |
62 | /* | 64 | /* |
63 | * Read APIC information from ACPI tables. | 65 | * Read APIC information from ACPI tables. |
64 | */ | 66 | */ |
65 | early_acpi_boot_init(); | 67 | early_acpi_boot_init(); |
66 | #endif | 68 | #endif |
69 | #ifdef CONFIG_X86_MPPARSE | ||
67 | /* | 70 | /* |
68 | * get boot-time SMP configuration: | 71 | * get boot-time SMP configuration: |
69 | */ | 72 | */ |
70 | if (smp_found_config) | 73 | if (smp_found_config) |
71 | early_get_smp_config(); | 74 | early_get_smp_config(); |
75 | #endif | ||
72 | early_init_lapic_mapping(); | 76 | early_init_lapic_mapping(); |
73 | } | 77 | } |
74 | 78 | ||