Subject: Re: uvm_fault with 1-9-2002 sources
To: Brian Stark <bpstark@pacbell.net>
From: Christopher SEKIYA <wileyc@rezrov.net>
List: current-users
Date: 01/10/2002 22:29:08
On Thu, Jan 10, 2002 at 12:04:14AM -0800, Brian Stark wrote:
> stopped in pid0 (swapper) at sbdsp_probe+0x26 movi 0x10(xedx),%eax
Seeing this on my alpha as well. The problem is in sbdsp.c:
/* if flags set, go and probe the jazz16 stuff */
if (sc->sc_dev.dv_cfdata->cf_flags & 1)
sbdsp_jazz16_probe(sc);
else
...
dv_cfdata seems to be null. A quick look at the relevent CVS logs does not
reveal anything obvious, so my quick fix was to comment out the comparison and
the jazz probe -- resulted in a working kernel.
-- Chris