aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/smp.h
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-03-19 13:25:59 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:03 -0400
commitcb3c8b9003f15efa4a750a32d2d602d40cc45d5a (patch)
tree204a84d85c000f8453557d001557aaf4c0855434 /include/asm-x86/smp.h
parentc70dcb74309cedfa64f0060f4a84792e873ceb53 (diff)
x86: integrate do_boot_cpu
This is a very large patch, because it depends on a lot of auxiliary static functions. But they all have been modified to the point that they're sufficiently close now. So they're just merged in smpboot.c Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/smp.h')
-rw-r--r--include/asm-x86/smp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-x86/smp.h b/include/asm-x86/smp.h
index 2ad2f4ffe498..ef26911dc22a 100644
--- a/include/asm-x86/smp.h
+++ b/include/asm-x86/smp.h
@@ -9,6 +9,7 @@ extern cpumask_t cpu_callout_map;
9 9
10extern int smp_num_siblings; 10extern int smp_num_siblings;
11extern unsigned int num_processors; 11extern unsigned int num_processors;
12extern cpumask_t cpu_initialized;
12 13
13extern u16 x86_cpu_to_apicid_init[]; 14extern u16 x86_cpu_to_apicid_init[];
14extern u16 x86_bios_cpu_apicid_init[]; 15extern u16 x86_bios_cpu_apicid_init[];
@@ -34,6 +35,8 @@ extern struct {
34 unsigned short ss; 35 unsigned short ss;
35} stack_start; 36} stack_start;
36 37
38extern unsigned long init_rsp;
39extern unsigned long initial_code;
37 40
38struct smp_ops { 41struct smp_ops {
39 void (*smp_prepare_boot_cpu)(void); 42 void (*smp_prepare_boot_cpu)(void);