diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-05-27 23:14:51 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 06:48:15 -0400 |
commit | 736f12bff9d9e7b4e895c64f73b190c8383fc2a1 (patch) | |
tree | 7b32e06211acc289637cb6792ff7c4b58c5809fa /arch/x86/kernel/traps_32.c | |
parent | 9cf4f298e29abba25c16679fe7be70898223167e (diff) |
x86: don't use gdt_page openly.
There's a macro available for that.
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/traps_32.c')
-rw-r--r-- | arch/x86/kernel/traps_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/traps_32.c b/arch/x86/kernel/traps_32.c index cf37d20b1ba7..dc7c05e5cfe7 100644 --- a/arch/x86/kernel/traps_32.c +++ b/arch/x86/kernel/traps_32.c | |||
@@ -1119,7 +1119,7 @@ void do_spurious_interrupt_bug(struct pt_regs *regs, long error_code) | |||
1119 | 1119 | ||
1120 | unsigned long patch_espfix_desc(unsigned long uesp, unsigned long kesp) | 1120 | unsigned long patch_espfix_desc(unsigned long uesp, unsigned long kesp) |
1121 | { | 1121 | { |
1122 | struct desc_struct *gdt = __get_cpu_var(gdt_page).gdt; | 1122 | struct desc_struct *gdt = get_cpu_gdt_table(smp_processor_id()); |
1123 | unsigned long base = (kesp - uesp) & -THREAD_SIZE; | 1123 | unsigned long base = (kesp - uesp) & -THREAD_SIZE; |
1124 | unsigned long new_kesp = kesp - base; | 1124 | unsigned long new_kesp = kesp - base; |
1125 | unsigned long lim_pages = (new_kesp | (THREAD_SIZE - 1)) >> PAGE_SHIFT; | 1125 | unsigned long lim_pages = (new_kesp | (THREAD_SIZE - 1)) >> PAGE_SHIFT; |