diff options
Diffstat (limited to 'arch/x86/kernel/smpcommon.c')
-rw-r--r-- | arch/x86/kernel/smpcommon.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/smpcommon.c b/arch/x86/kernel/smpcommon.c index 397e309839dd..84395fabc410 100644 --- a/arch/x86/kernel/smpcommon.c +++ b/arch/x86/kernel/smpcommon.c | |||
@@ -4,10 +4,10 @@ | |||
4 | #include <linux/module.h> | 4 | #include <linux/module.h> |
5 | #include <asm/smp.h> | 5 | #include <asm/smp.h> |
6 | 6 | ||
7 | #ifdef CONFIG_X86_32 | ||
8 | DEFINE_PER_CPU(unsigned long, this_cpu_off); | 7 | DEFINE_PER_CPU(unsigned long, this_cpu_off); |
9 | EXPORT_PER_CPU_SYMBOL(this_cpu_off); | 8 | EXPORT_PER_CPU_SYMBOL(this_cpu_off); |
10 | 9 | ||
10 | #ifdef CONFIG_X86_32 | ||
11 | /* | 11 | /* |
12 | * Initialize the CPU's GDT. This is either the boot CPU doing itself | 12 | * Initialize the CPU's GDT. This is either the boot CPU doing itself |
13 | * (still using the master per-cpu area), or a CPU doing it for a | 13 | * (still using the master per-cpu area), or a CPU doing it for a |
@@ -24,7 +24,6 @@ __cpuinit void init_gdt(int cpu) | |||
24 | write_gdt_entry(get_cpu_gdt_table(cpu), | 24 | write_gdt_entry(get_cpu_gdt_table(cpu), |
25 | GDT_ENTRY_PERCPU, &gdt, DESCTYPE_S); | 25 | GDT_ENTRY_PERCPU, &gdt, DESCTYPE_S); |
26 | 26 | ||
27 | per_cpu(this_cpu_off, cpu) = __per_cpu_offset[cpu]; | ||
28 | per_cpu(cpu_number, cpu) = cpu; | 27 | per_cpu(cpu_number, cpu) = cpu; |
29 | } | 28 | } |
30 | #endif | 29 | #endif |