diff options
author | Helge Deller <deller@gmx.de> | 2018-10-07 22:29:29 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-10-17 08:18:01 +0200 |
commit | e98bc5ee9793742eca1129366109603010dc9389 (patch) | |
tree | 5d979231310a262e5faa654053590d2f28ac1533 /arch/parisc | |
parent | 8dbac7746e55e0c83fe818c137b1235c9fa1bd75 (diff) | |
download | talos-op-linux-e98bc5ee9793742eca1129366109603010dc9389.tar.gz talos-op-linux-e98bc5ee9793742eca1129366109603010dc9389.zip |
parisc: Clean up crash header output
On kernel crash, this is the current output:
Kernel Fault: Code=26 (Data memory access rights trap) regs=(ptrval) (Addr=00000004)
Drop the address of regs, it's of no use for debugging, and show the
faulty address without parenthesis.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/traps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/traps.c b/arch/parisc/kernel/traps.c index 68f10f87073d..bb65676dc41c 100644 --- a/arch/parisc/kernel/traps.c +++ b/arch/parisc/kernel/traps.c @@ -430,8 +430,8 @@ void parisc_terminate(char *msg, struct pt_regs *regs, int code, unsigned long o } printk("\n"); - pr_crit("%s: Code=%d (%s) regs=%p (Addr=" RFMT ")\n", - msg, code, trap_name(code), regs, offset); + pr_crit("%s: Code=%d (%s) at addr " RFMT "\n", + msg, code, trap_name(code), offset); show_regs(regs); spin_unlock(&terminate_lock); |