git: cd082e3f8a61 - stable/13 - i386 double fault: %ebx printout was missed
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 21 Sep 2022 09:30:03 UTC
The branch stable/13 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=cd082e3f8a612aa2633e30cf90caab9ae3a779d6
commit cd082e3f8a612aa2633e30cf90caab9ae3a779d6
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2022-09-05 07:52:46 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2022-09-21 09:29:01 +0000
i386 double fault: %ebx printout was missed
(cherry picked from commit 7078e0e2c2b0a86020a8bc46a32437ea4cf859b2)
---
sys/i386/i386/trap.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c
index 5a09de409d26..b1cd3649e7bf 100644
--- a/sys/i386/i386/trap.c
+++ b/sys/i386/i386/trap.c
@@ -1001,10 +1001,12 @@ dblfault_handler(void)
printf(
"eip = %#08x esp = %#08x ebp = %#08x eax = %#08x\n"
"edx = %#08x ecx = %#08x edi = %#08x esi = %#08x\n"
+ "ebx = %#08x\n"
"psl = %#08x cs = %#08x ss = %#08x ds = %#08x\n"
"es = %#08x fs = %#08x gs = %#08x cr3 = %#08x\n",
t->tss_eip, t->tss_esp, t->tss_ebp, t->tss_eax,
t->tss_edx, t->tss_ecx, t->tss_edi, t->tss_esi,
+ t->tss_ebx,
t->tss_eflags, t->tss_cs, t->tss_ss, t->tss_ds,
t->tss_es, t->tss_fs, t->tss_gs, t->tss_cr3);
#ifdef SMP