aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-03-28 07:33:52 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:33 -0400
commite937fcf2fa0c1d21f9c0008ab600d46c240a984c (patch)
tree11a2613794afc3e02f701924f5806d1c8628bcae /arch/x86/kernel
parent8be9ac850564a409c1238cd5f53776c340aea4dc (diff)
x86: mpparse: 64-bit fix
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/mpparse_64.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/x86/kernel/mpparse_64.c b/arch/x86/kernel/mpparse_64.c
index d62294003036..5e789bdb34fa 100644
--- a/arch/x86/kernel/mpparse_64.c
+++ b/arch/x86/kernel/mpparse_64.c
@@ -63,6 +63,20 @@ void *x86_bios_cpu_apicid_early_ptr;
63DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID; 63DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
64EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid); 64EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
65 65
66/* Make it easy to share the UP and SMP code: */
67#ifndef CONFIG_X86_SMP
68unsigned int num_processors;
69unsigned disabled_cpus __cpuinitdata;
70#ifndef CONFIG_X86_LOCAL_APIC
71unsigned int boot_cpu_physical_apicid = -1U;
72#endif
73#endif
74
75/* Make it easy to share the UP and SMP code: */
76#ifndef CONFIG_X86_SMP
77physid_mask_t phys_cpu_present_map;
78#endif
79
66/* 80/*
67 * Intel MP BIOS table parsing routines: 81 * Intel MP BIOS table parsing routines:
68 */ 82 */