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

--- Comment #20 from Konstantin Belousov <[email protected]> ---
(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.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to