Subject: Re: PR 17107: NFS kernel panic
To: None <netbsd-help@netbsd.org>
From: Alan Post <apost@interwoven.com>
List: netbsd-help
Date: 02/08/2003 22:16:59
In article <HA02zI.4A7@tac.nyc.ny.us>, Christos Zoulas wrote:
> 
> Try changing:
> 
>         if ((nmp->nm_flag & NFSMNT_NQNFS) && np->n_timer.cqe_next != 0) {
> 
> to:
>         if (np->n_timer.cqe_next != 0 && (nmp->nm_flag & NFSMNT_NQNFS)) {
> 
> 
> [yes this looks stupid, but I have the suspicion that nmp is invalid somehow
>  and since you are not using leases, the timer will always be empty...]
> 

Thanks.  I'll give this a shot on Monday when I have physical access
to the box (panic on remote machine == bad :).

  Alan