git: 9c1f5e270eb3 - stable/13 - amd64 uprintf_signal: add space between %rax value and code bytes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 14 Feb 2024 04:05:33 UTC
The branch stable/13 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=9c1f5e270eb3e30dba62baf0b4d42a0b643207c3
commit 9c1f5e270eb3e30dba62baf0b4d42a0b643207c3
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-02-10 05:06:00 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-02-14 03:54:00 +0000
amd64 uprintf_signal: add space between %rax value and code bytes
(cherry picked from commit 130bad217bd8bbd7531539e4f5eb83d3c284e991)
---
sys/amd64/amd64/trap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c
index 9f50de795ca5..9b01ecbc2d53 100644
--- a/sys/amd64/amd64/trap.c
+++ b/sys/amd64/amd64/trap.c
@@ -625,7 +625,7 @@ trap(struct trapframe *frame)
ksi.ksi_addr = (void *)addr;
if (uprintf_signal) {
uprintf("pid %d comm %s: signal %d err %#lx code %d type %d "
- "addr %#lx rsp %#lx rip %#lx rax %#lx"
+ "addr %#lx rsp %#lx rip %#lx rax %#lx "
"<%02x %02x %02x %02x %02x %02x %02x %02x>\n",
p->p_pid, p->p_comm, signo, frame->tf_err, ucode, type,
addr, frame->tf_rsp, frame->tf_rip, frame->tf_rax,