Re: GEOM panic in current kernel

2002-09-28 Thread Juli Mallett
* De: Terry Lambert <[EMAIL PROTECTED]> [ Data: 2002-09-28 ] [ Subjecte: Re: GEOM panic in current kernel ] > Juli Mallett wrote: > > * De: Terry Lambert <[EMAIL PROTECTED]> [ Data: 2002-09-28 ] > > > Poul-Henning Kamp wrote: > > > &

Re: GEOM panic in current kernel

2002-09-28 Thread Terry Lambert
Juli Mallett wrote: > * De: Terry Lambert <[EMAIL PROTECTED]> [ Data: 2002-09-28 ] > > Poul-Henning Kamp wrote: > > > + bzero(&mymutex, sizeof mymutex); > > > mtx_init(&mymutex, "g_up", MTX_DEF, 0); > > > > > > Too bad mtx_init() doesn't really initialize the mutex, or > > this would

Re: GEOM panic in current kernel

2002-09-28 Thread Terry Lambert
Poul-Henning Kamp wrote: > + bzero(&mymutex, sizeof mymutex); > mtx_init(&mymutex, "g_up", MTX_DEF, 0); Too bad mtx_init() doesn't really initialize the mutex, or this would not be necessary. 8-(. -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-

Re: GEOM panic in current kernel

2002-09-28 Thread Juli Mallett
* De: Terry Lambert <[EMAIL PROTECTED]> [ Data: 2002-09-28 ] [ Subjecte: Re: GEOM panic in current kernel ] > Poul-Henning Kamp wrote: > > + bzero(&mymutex, sizeof mymutex); > > mtx_init(&mymutex, "g_up", MTX_DEF, 0); > > >

Re: GEOM panic in current kernel

2002-09-28 Thread Marc Recht
> >> Uhm, what was the actual panic message ? > >mutex g_up 0xe0499cb8 already initialized > > Can you try this patch ? Works great! Thanks! Marc msg43552/pgp0.pgp Description: PGP signature

Re: GEOM panic in current kernel

2002-09-28 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Marc Recht writes: >--=./s+MTW'WA?QFc= >Content-Type: text/plain; charset=US-ASCII >Content-Transfer-Encoding: 7bit > >> >After the latest geom_* commits I get a panic while booting. The panic occurs >before mounting the disks, so I had to hand-write it down.. >>

Re: GEOM panic in current kernel

2002-09-28 Thread Marc Recht
> >After the latest geom_* commits I get a panic while booting. The panic occurs >before mounting the disks, so I had to hand-write it down.. > >panic.. > >mtx_init(e0499ce8, e0396b85, 0, 0, 748f6273) at mtx_init + 0x5f > >... g_up_procbody + 0x34 > >... Wow! That was a fast reply. :-) > Uhm, w

Re: GEOM panic in current kernel

2002-09-28 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Marc Recht writes: >--=.8yCGZQ.c,FaLiI >Content-Type: text/plain; charset=US-ASCII >Content-Transfer-Encoding: 7bit > >Hi! > >After the latest geom_* commits I get a panic while booting. The panic occurs before >mounting the disks, so I had to hand-write it down..

GEOM panic in current kernel

2002-09-28 Thread Marc Recht
Hi! After the latest geom_* commits I get a panic while booting. The panic occurs before mounting the disks, so I had to hand-write it down.. panic.. mtx_init(e0499ce8, e0396b85, 0, 0, 748f6273) at mtx_init + 0x5f ... g_up_procbody + 0x34 ... Please let me know if/how I could provide more info.