Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Feb 2001 23:50:17 -0500
From:      Jake Burkholder <jburkholder0829@home.com>
To:        Julian Elischer <julian@elischer.org>
Cc:        Pete Carah <pete@ns.altadena.net>, current@FreeBSD.ORG
Subject:   Re: Panic in today current 
Message-ID:  <20010225045018.A6CEDBACA@cr66388-a.rchrd1.on.wave.home.com>
In-Reply-To: Message from Julian Elischer <julian@elischer.org>  of "Sat, 24 Feb 2001 20:38:05 PST." <3A988C2D.8E5377DA@elischer.org> 

next in thread | previous in thread | raw e-mail | index | archive | help
> 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 majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010225045018.A6CEDBACA>