git: 92b8ce704a09 - stable/14 - riscv: Tidy panic messages for exceptions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 24 Oct 2023 19:00:15 UTC
The branch stable/14 has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=92b8ce704a091719d8e0d2d4957bacf4b9882a63
commit 92b8ce704a091719d8e0d2d4957bacf4b9882a63
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2023-10-11 21:21:12 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-10-24 18:37:43 +0000
riscv: Tidy panic messages for exceptions
- Remove trailing newlines
- Be consistent about the format used to print pointer values
- Print the trap value for access faults (it is the faulting address
if non-zero) and illegal instructions (it is the first N bytes of
the decoded instruction if non-zero)
Reviewed by: markj
Sponsored by: DARPA
Differential Revision: https://reviews.freebsd.org/D41786
(cherry picked from commit ff79f35bdae5742f4e56e1dc18fffc5d9ea98876)
---
sys/riscv/riscv/trap.c | 21 ++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/sys/riscv/riscv/trap.c b/sys/riscv/riscv/trap.c
index ea48b02ba29b..f54efc324942 100644
--- a/sys/riscv/riscv/trap.c
+++ b/sys/riscv/riscv/trap.c
@@ -299,7 +299,7 @@ fatal:
return;
}
#endif
- panic("Fatal page fault at %#lx: %#016lx", frame->tf_sepc, stval);
+ panic("Fatal page fault at %#lx: %#lx", frame->tf_sepc, stval);
}
void
@@ -326,7 +326,7 @@ do_trap_supervisor(struct trapframe *frame)
return;
#endif
- CTR4(KTR_TRAP, "%s: exception=%lu, sepc=%lx, stval=%lx", __func__,
+ CTR4(KTR_TRAP, "%s: exception=%lu, sepc=%#lx, stval=%#lx", __func__,
exception, frame->tf_sepc, frame->tf_stval);
switch (exception) {
@@ -334,13 +334,14 @@ do_trap_supervisor(struct trapframe *frame)
case SCAUSE_STORE_ACCESS_FAULT:
case SCAUSE_INST_ACCESS_FAULT:
dump_regs(frame);
- panic("Memory access exception at 0x%016lx\n", frame->tf_sepc);
+ panic("Memory access exception at %#lx: %#lx",
+ frame->tf_sepc, frame->tf_stval);
break;
case SCAUSE_LOAD_MISALIGNED:
case SCAUSE_STORE_MISALIGNED:
case SCAUSE_INST_MISALIGNED:
dump_regs(frame);
- panic("Misaligned address exception at %#016lx: %#016lx\n",
+ panic("Misaligned address exception at %#lx: %#lx",
frame->tf_sepc, frame->tf_stval);
break;
case SCAUSE_STORE_PAGE_FAULT:
@@ -358,16 +359,18 @@ do_trap_supervisor(struct trapframe *frame)
kdb_trap(exception, 0, frame);
#else
dump_regs(frame);
- panic("No debugger in kernel.\n");
+ panic("No debugger in kernel.");
#endif
break;
case SCAUSE_ILLEGAL_INSTRUCTION:
dump_regs(frame);
- panic("Illegal instruction at 0x%016lx\n", frame->tf_sepc);
+ panic("Illegal instruction 0x%0*lx at %#lx",
+ (frame->tf_stval & 0x3) != 0x3 ? 4 : 8,
+ frame->tf_stval, frame->tf_sepc);
break;
default:
dump_regs(frame);
- panic("Unknown kernel exception %lx trap value %lx\n",
+ panic("Unknown kernel exception %#lx trap value %#lx",
exception, frame->tf_stval);
}
}
@@ -400,7 +403,7 @@ do_trap_user(struct trapframe *frame)
}
intr_enable();
- CTR4(KTR_TRAP, "%s: exception=%lu, sepc=%lx, stval=%lx", __func__,
+ CTR4(KTR_TRAP, "%s: exception=%lu, sepc=%#lx, stval=%#lx", __func__,
exception, frame->tf_sepc, frame->tf_stval);
switch (exception) {
@@ -450,7 +453,7 @@ do_trap_user(struct trapframe *frame)
break;
default:
dump_regs(frame);
- panic("Unknown userland exception %lx, trap value %lx\n",
+ panic("Unknown userland exception %#lx, trap value %#lx",
exception, frame->tf_stval);
}
}