diff options
Diffstat (limited to 'arch/i386/kernel/traps.c')
-rw-r--r-- | arch/i386/kernel/traps.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/i386/kernel/traps.c b/arch/i386/kernel/traps.c index df9d210626ac..dcc14477af1f 100644 --- a/arch/i386/kernel/traps.c +++ b/arch/i386/kernel/traps.c | |||
@@ -274,8 +274,9 @@ void show_registers(struct pt_regs *regs) | |||
274 | regs->esi, regs->edi, regs->ebp, esp); | 274 | regs->esi, regs->edi, regs->ebp, esp); |
275 | printk(KERN_EMERG "ds: %04x es: %04x ss: %04x\n", | 275 | printk(KERN_EMERG "ds: %04x es: %04x ss: %04x\n", |
276 | regs->xds & 0xffff, regs->xes & 0xffff, ss); | 276 | regs->xds & 0xffff, regs->xes & 0xffff, ss); |
277 | printk(KERN_EMERG "Process %s (pid: %d, threadinfo=%p task=%p)", | 277 | printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)", |
278 | current->comm, current->pid, current_thread_info(), current); | 278 | TASK_COMM_LEN, current->comm, current->pid, |
279 | current_thread_info(), current, current->thread_info); | ||
279 | /* | 280 | /* |
280 | * When in-kernel, we also print out the stack and code at the | 281 | * When in-kernel, we also print out the stack and code at the |
281 | * time of the fault.. | 282 | * time of the fault.. |