]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: don't use gdt_page openly.
authorGlauber Costa <gcosta@redhat.com>
Wed, 28 May 2008 03:14:51 +0000 (20:14 -0700)
committerIngo Molnar <mingo@elte.hu>
Tue, 8 Jul 2008 10:48:15 +0000 (12:48 +0200)
There's a macro available for that.

Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/traps_32.c

index cf37d20b1ba747d47989923d62baeedf1e7c9b84..dc7c05e5cfe7be479452dac18133583364afefef 100644 (file)
@@ -1119,7 +1119,7 @@ void do_spurious_interrupt_bug(struct pt_regs *regs, long error_code)
 
 unsigned long patch_espfix_desc(unsigned long uesp, unsigned long kesp)
 {
-       struct desc_struct *gdt = __get_cpu_var(gdt_page).gdt;
+       struct desc_struct *gdt = get_cpu_gdt_table(smp_processor_id());
        unsigned long base = (kesp - uesp) & -THREAD_SIZE;
        unsigned long new_kesp = kesp - base;
        unsigned long lim_pages = (new_kesp | (THREAD_SIZE - 1)) >> PAGE_SHIFT;