NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: kern/46221: Kernel panic in NFS server code
The following reply was made to PR kern/46221; it has been noted by GNATS.
From: David Holland <dholland-bugs%netbsd.org@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc:
Subject: Re: kern/46221: Kernel panic in NFS server code
Date: Sun, 18 Mar 2012 18:38:07 +0000
On Sun, Mar 18, 2012 at 05:45:02PM +0000, Matthias Scheler wrote:
>> It would be interesting to see where ffs_fhtovp+0x55 points to in sources.
>
> If you pleae tell me how to find that out in gdb(?) I will happily provide
> the information.
If you have debug info you can do
(gdb) list *(ffs_fhtovp + 0x55)
...
If not, you can do "disassemble ffs_fhtovp" and work it out by
comparing the asm to the source, although that's a pain. ffs_fhtovp is
not large though.
In my kernel 0x55 is right before the end and is the return point of
the call to ufs_fhtovp; it is quite likely the same for yours.
--
David A. Holland
dholland%netbsd.org@localhost
Home |
Main Index |
Thread Index |
Old Index