aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/process_32.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-02-08 15:09:56 -0500
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:40:45 -0400
commit92bc2056855b3250bf6fd5849f05f88d85839efa (patch)
tree2615f7f8e1168a59085a8b87a2aaf9e1e1e49084 /arch/x86/kernel/process_32.c
parent45de70791165ce7eac5232ed5a7c31152567f4da (diff)
x86: change most X86_32 pt_regs members to unsigned long
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: Roland McGrath <roland@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/process_32.c')
-rw-r--r--arch/x86/kernel/process_32.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c
index 43930e73f657..2cd89b8a7050 100644
--- a/arch/x86/kernel/process_32.c
+++ b/arch/x86/kernel/process_32.c
@@ -332,7 +332,7 @@ void __show_registers(struct pt_regs *regs, int all)
332 init_utsname()->version); 332 init_utsname()->version);
333 333
334 printk("EIP: %04x:[<%08lx>] EFLAGS: %08lx CPU: %d\n", 334 printk("EIP: %04x:[<%08lx>] EFLAGS: %08lx CPU: %d\n",
335 0xffff & regs->cs, regs->ip, regs->flags, 335 (u16)regs->cs, regs->ip, regs->flags,
336 smp_processor_id()); 336 smp_processor_id());
337 print_symbol("EIP is at %s\n", regs->ip); 337 print_symbol("EIP is at %s\n", regs->ip);
338 338
@@ -341,8 +341,7 @@ void __show_registers(struct pt_regs *regs, int all)
341 printk("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n", 341 printk("ESI: %08lx EDI: %08lx EBP: %08lx ESP: %08lx\n",
342 regs->si, regs->di, regs->bp, sp); 342 regs->si, regs->di, regs->bp, sp);
343 printk(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n", 343 printk(" DS: %04x ES: %04x FS: %04x GS: %04x SS: %04x\n",
344 regs->ds & 0xffff, regs->es & 0xffff, 344 (u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, ss);
345 regs->fs & 0xffff, gs, ss);
346 345
347 if (!all) 346 if (!all)
348 return; 347 return;