> Julian Elischer wrote:
> >
> > Pete Carah wrote:
> > >
> > > I got a panic today on a fresh kernel...
> > >
> > > Compiled with netgraph but non of the netgraph modules.
> > >
> > > Immediately after the memory probe, a message about sequencers 0-15,
> > > then:
> > > Panic: spinlock ng_worklist not in order list
> >
The problem is probably that you put them inside of an ifdef SMP.
The ifdef is there for locks that only exist for SMP.
Move them after the #endif, like:
/*
* leaf locks
*/
#ifdef SMP
#ifdef __i386__
"ap boot",
"imen",
#endif
"smp rendezvous",
#endif
"ng_node",
"ng_worklist",
NULL
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message