diff options
author | Jaswinder Singh Rajput <jaswinder@kernel.org> | 2009-03-11 19:13:49 +0530 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-11 14:52:03 +0100 |
commit | 8229d754383e8cd905c38b56bd7365c7fc10dfc1 (patch) | |
tree | bb218cce365a0f8d230414b350cf150eb0c784d3 /arch/x86/kernel/cpu | |
parent | 9b779edf4b97798d037bb44fca2719ac184d0f14 (diff) |
x86: cpu architecture debug code, build fix, cleanup
move store_ldt outside the CONFIG_PARAVIRT section and
also clean up the code a bit.
Signed-off-by: Jaswinder Singh Rajput <jaswinder@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu')
-rwxr-xr-x | arch/x86/kernel/cpu/cpu_debug.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/cpu_debug.c b/arch/x86/kernel/cpu/cpu_debug.c index 0bdf4daba205..9abbcbd933cc 100755 --- a/arch/x86/kernel/cpu/cpu_debug.c +++ b/arch/x86/kernel/cpu/cpu_debug.c @@ -23,6 +23,7 @@ #include <linux/smp.h> #include <asm/cpu_debug.h> +#include <asm/paravirt.h> #include <asm/system.h> #include <asm/traps.h> #include <asm/apic.h> @@ -427,7 +428,7 @@ static void print_tss(void *arg) seq_printf(seq, " CS\t: %04x\n", seg); asm("movl %%ds,%0" : "=r" (seg)); seq_printf(seq, " DS\t: %04x\n", seg); - seq_printf(seq, " SS\t: %04lx\n", regs->ss); + seq_printf(seq, " SS\t: %04lx\n", regs->ss & 0xffff); asm("movl %%es,%0" : "=r" (seg)); seq_printf(seq, " ES\t: %04x\n", seg); asm("movl %%fs,%0" : "=r" (seg)); |