Commit b3f5dde15ebe984e178d4660b6354285931b20ff
Committed by
Thomas Gleixner
1 parent
95d1b8f981
Exists in
master
and in
7 other branches
x86: don't zero pad addresses in segfault message
don't zero pad addresses in segfault message. Matches the other trap messages. This leaves some more space for the new file name. [ mingo: arch/x86 adaptation ] Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
arch/x86/mm/fault_64.c
... | ... | @@ -483,7 +483,7 @@ |
483 | 483 | if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) && |
484 | 484 | printk_ratelimit()) { |
485 | 485 | printk( |
486 | - "%s%s[%d]: segfault at %016lx rip %016lx rsp %016lx error %lx\n", | |
486 | + "%s%s[%d]: segfault at %lx rip %lx rsp %lx error %lx\n", | |
487 | 487 | tsk->pid > 1 ? KERN_INFO : KERN_EMERG, |
488 | 488 | tsk->comm, tsk->pid, address, regs->rip, |
489 | 489 | regs->rsp, error_code); |