diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-04-04 23:40:48 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 17:41:34 +0200 |
commit | 0fc0906e59df1427d194b78376d15ca48079f6bf (patch) | |
tree | b76f509e9028d7afd775d7e64fd6fbcfb733b068 /arch/x86/kernel/setup.c | |
parent | 76eb41319d6ab98d17c81a8001a6d7ed9f8359ee (diff) |
x86: move phys_cpu_present_map to setup.c
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r-- | arch/x86/kernel/setup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index 01119d9b013e..011fcdd213ff 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -9,11 +9,15 @@ #include <asm/processor.h> #include <asm/setup.h> #include <asm/topology.h> +#include <asm/mpspec.h> #include <asm/apicdef.h> DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID; EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid); +/* Bitmask of physically existing CPUs */ +physid_mask_t phys_cpu_present_map; + #if defined(CONFIG_HAVE_SETUP_PER_CPU_AREA) && defined(CONFIG_SMP) /* * Copy data used in early init routines from the initial arrays to the |