Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Jun 2018 09:48:14 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 229222] 11.2-PRERELEASE panic-General Protection Fault, aesni_encrypt_cbc implicated
Message-ID:  <bug-229222-227-HmDLADRZTx@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-229222-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-229222-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help

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

--- Comment #20 from Konstantin Belousov <kib@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.


Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-229222-227-HmDLADRZTx>