diff options
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r-- | arch/x86/kernel/smpboot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index ca3929b16049..424600e671bd 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -53,6 +53,7 @@ | |||
53 | #include <asm/nmi.h> | 53 | #include <asm/nmi.h> |
54 | #include <asm/irq.h> | 54 | #include <asm/irq.h> |
55 | #include <asm/smp.h> | 55 | #include <asm/smp.h> |
56 | #include <asm/trampoline.h> | ||
56 | #include <asm/cpu.h> | 57 | #include <asm/cpu.h> |
57 | #include <asm/numa.h> | 58 | #include <asm/numa.h> |
58 | #include <asm/pgtable.h> | 59 | #include <asm/pgtable.h> |
@@ -140,7 +141,7 @@ static atomic_t init_deasserted; | |||
140 | static int boot_cpu_logical_apicid; | 141 | static int boot_cpu_logical_apicid; |
141 | 142 | ||
142 | /* ready for x86_64, no harm for x86, since it will overwrite after alloc */ | 143 | /* ready for x86_64, no harm for x86, since it will overwrite after alloc */ |
143 | unsigned char *trampoline_base = __va(SMP_TRAMPOLINE_BASE); | 144 | unsigned char *trampoline_base = __va(TRAMPOLINE_BASE); |
144 | 145 | ||
145 | /* representing cpus for which sibling maps can be computed */ | 146 | /* representing cpus for which sibling maps can be computed */ |
146 | static cpumask_t cpu_sibling_setup_map; | 147 | static cpumask_t cpu_sibling_setup_map; |
@@ -554,8 +555,7 @@ cpumask_t cpu_coregroup_map(int cpu) | |||
554 | * bootstrap into the page concerned. The caller | 555 | * bootstrap into the page concerned. The caller |
555 | * has made sure it's suitably aligned. | 556 | * has made sure it's suitably aligned. |
556 | */ | 557 | */ |
557 | 558 | unsigned long setup_trampoline(void) | |
558 | unsigned long __cpuinit setup_trampoline(void) | ||
559 | { | 559 | { |
560 | memcpy(trampoline_base, trampoline_data, | 560 | memcpy(trampoline_base, trampoline_data, |
561 | trampoline_end - trampoline_data); | 561 | trampoline_end - trampoline_data); |