[Bug 229222] 11.2-PRERELEASE panic-General Protection Fault, aesni_encrypt_cbc implicated

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun Jun 24 09:48:20 UTC 2018


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=229222

--- Comment #20 from Konstantin Belousov <kib at FreeBSD.org> ---
(In reply to dewayne from comment #19)
Now the URL gives 'unauthorized'.

tf_rbp referred to the value from the struct trapframe printout.
You should do
(kgdb) p/x *(long *)0xfffffe06892d9138
<value> <- this is the next rbp to deref
(kgdb) p/x *(long *)(0xfffffe06892d9138 + 8)
<value> <- this is return pc
(kgdb) list *<value from the previous line>

now repeat with the 'next rbp' and so on until finished the unwind.
Sanity check is that the lines printed by the 'list' command should
match the lines from the 'bt' output.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-bugs mailing list