On Wed, 2005-Dec-14 08:28:26 -0400, fredthetree wrote:
>i've only used the generic 6.0 kernel
>
># kgdb kernel.debug /var/crash/vmcore.1
...
>#6  0xc07f6dca in calltrap () at /usr/src/sys/i386/i386/exception.s:139
>#7  0xc0a7cf08 in ?? ()

Unfortunately, it's frame 7 and below that is crucial.  Was #7 the
last line or did you cut the backtrace off?  The top frames are the
kernel handling the trap.  It looks like the trap occurred in a KLD -
in this case, try running:
  # cd /usr/obj/usr/src/sys/GENERIC  (or name of kernel config)
  # make gdbinit    [this just copies a few config files for kgdb]
  # gdb kernel.debug /var/crash/vmcore.1
  (kgdb) kldsyms
  (kgdb) where

Hopefully this will decode #7 and you can provide a few more frames.

-- 
Peter Jeremy
_______________________________________________
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to