Subject: Re: Getting information out of crash dump
To: <>
From: Chuck Silvers <chuq@chuq.com>
List: tech-kern
Date: 04/26/1999 22:25:49
Chuck Silvers writes:
> one way to find this would be to put in this bit where you have the vprint():

er, rather in vref() and vget(), not where you have the vprint().

-Chuck


> 	if (vp->v_usecount > 100) {
> 		Debugger();
> 	}
> 
> then do a backtrace and see where the refs are coming from.
> "c" and get a few more backtraces to make sure they're all the same.
> 
> -Chuck