kernel trap 12 with interrupts disabled [bge0 on 7.2R]
John Baldwin
jhb at freebsd.org
Fri May 15 17:10:06 UTC 2009
On Friday 15 May 2009 11:38:00 am Martin wrote:
> Am Fri, 15 May 2009 11:09:20 -0400
> schrieb John Baldwin <jhb at freebsd.org>:
>
> > x/i please. The /i decodes it as an instruction so I can see which
> > registers it was attempting to dereference.
>
> Oh sorry...
>
> (kgdb) x/i 0xffffffff805bbc66
> 0xffffffff805bbc66 <rt_maskedcopy+6>: movzbl (%rdx),%edx
Hmm, your %rdx is garbage. :(
rdx 0xef3fdf377db53afa -1207000745686779142
That should at least be
0xffffff..........
Looks like r9 and r14 have the same odd value. Normally I would see a more
obvious breakage such as one of the 'f' nibbles being set to '0' or 'e', etc.
You could try looking for that odd pointer value in the route structure or as
arguments to other functions in the stack trace to see if you can find a
corrupted data structure.
--
John Baldwin
More information about the freebsd-stable
mailing list