Re: make kernel failure: pecoff: machine/lock.h

2001-02-28 Thread Bruce Evans
On Tue, 27 Feb 2001, Julian Elischer wrote: Bruce Evans wrote: Most of the pcb actually has the same persistence as the kernel stack (both mainly store the process's context while the process is in the kernel). But it is silly to put the pcb below the stack instead of above it.

Re: make kernel failure: pecoff: machine/lock.h

2001-02-28 Thread Julian Elischer
Bruce Evans wrote: On Tue, 27 Feb 2001, Julian Elischer wrote: Bruce Evans wrote: Most of the pcb actually has the same persistence as the kernel stack (both mainly store the process's context while the process is in the kernel). But it is silly to put the pcb below the stack

Re: make kernel failure: pecoff: machine/lock.h

2001-02-28 Thread John Baldwin
On 28-Feb-01 Bruce Evans wrote: On Tue, 27 Feb 2001, John Baldwin wrote: Ok. It may be that we are overflowing the kernel stack and corrupting the pcb in the process. One idea atm is to move the pcb off of the stack (since it stores persistent data it's a bad place for it anyways) and

Re: make kernel failure: pecoff: machine/lock.h

2001-02-28 Thread Warner Losh
In message [EMAIL PROTECTED] Leif Neland writes: : === pecoff : make: don't know how to make machine/lock.h. Stop If you are making from pure, clean sources, like I think you said you were, you may need to rm src/sys/modules/pecoff/.depend. I had a few of these kicking around and it caused me

Re: make kernel failure: pecoff: machine/lock.h

2001-02-28 Thread Warner Losh
In message [EMAIL PROTECTED] "David O'Brien" writes: : On Tue, Feb 27, 2001 at 11:28:37AM -0800, John Baldwin wrote: : Have you tried running make depend? : : I've got the same problem about a bogus dependancy on machine/lock.h. : And yes, this is after a `make depend' on a /sys I *just*

Re: make kernel failure: pecoff: machine/lock.h

2001-02-28 Thread Warner Losh
In message [EMAIL PROTECTED] Edwin Culp writes: : I had that, and many other problems, about a week ago and I am not : sure but i think that I ended up doing an rm -rf /usr/sys/modules/* : , cvsuped made world and built new kernel with no problem. I : remember that I had to erase all the modules

Re: make kernel failure: pecoff: machine/lock.h

2001-02-28 Thread Bruce Evans
On Wed, 28 Feb 2001, John Baldwin wrote: On 28-Feb-01 Bruce Evans wrote: Most of the pcb actually has the same persistence as the kernel stack (both mainly store the process's context while the process is in the kernel). But it is silly to put the pcb below the stack instead of above

RE: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread John Baldwin
On 27-Feb-01 Leif Neland wrote: This happens with both my custom and GENERIC kernel. It has failed for some days, and also with source cvsup'ed today. A kernel built with "make buildkernel -k" works... Leif Have you tried running make depend? -- John Baldwin [EMAIL PROTECTED] --

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread Gary Jennejohn
John Baldwin writes: On 27-Feb-01 Leif Neland wrote: This happens with both my custom and GENERIC kernel. It has failed for some days, and also with source cvsup'ed today. A kernel built with "make buildkernel -k" works... Leif Have you tried running make depend? Failing

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread Leif Neland
On Tue, 27 Feb 2001, Gary Jennejohn wrote: John Baldwin writes: On 27-Feb-01 Leif Neland wrote: This happens with both my custom and GENERIC kernel. It has failed for some days, and also with source cvsup'ed today. A kernel built with "make buildkernel -k" works...

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread John Baldwin
On 27-Feb-01 Leif Neland wrote: On Tue, 27 Feb 2001, Gary Jennejohn wrote: John Baldwin writes: On 27-Feb-01 Leif Neland wrote: This happens with both my custom and GENERIC kernel. It has failed for some days, and also with source cvsup'ed today. A kernel built with

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread Leif Neland
On Tue, 27 Feb 2001, John Baldwin wrote: On 27-Feb-01 Leif Neland wrote: On Tue, 27 Feb 2001, Gary Jennejohn wrote: John Baldwin writes: On 27-Feb-01 Leif Neland wrote: This happens with both my custom and GENERIC kernel. It has failed for some days, and

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread John Baldwin
On 27-Feb-01 Leif Neland wrote: On Tue, 27 Feb 2001, John Baldwin wrote: On 27-Feb-01 Leif Neland wrote: On Tue, 27 Feb 2001, Gary Jennejohn wrote: John Baldwin writes: On 27-Feb-01 Leif Neland wrote: This happens with both my custom and GENERIC kernel.

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread David O'Brien
On Tue, Feb 27, 2001 at 11:28:37AM -0800, John Baldwin wrote: Have you tried running make depend? I've got the same problem about a bogus dependancy on machine/lock.h. And yes, this is after a `make depend' on a /sys I *just* CVSup'ed. :-( -- -- David ([EMAIL PROTECTED]) GNU is

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread Bruce Evans
On Tue, 27 Feb 2001, John Baldwin wrote: Ok. It may be that we are overflowing the kernel stack and corrupting the pcb in the process. One idea atm is to move the pcb off of the stack (since it stores persistent data it's a bad place for it anyways) and to add a red zone at the bottom of

Re: make kernel failure: pecoff: machine/lock.h

2001-02-27 Thread Julian Elischer
Bruce Evans wrote: On Tue, 27 Feb 2001, John Baldwin wrote: Ok. It may be that we are overflowing the kernel stack and corrupting the pcb in the process. One idea atm is to move the pcb off of the stack (since it stores persistent data it's a bad place for it anyways) and to add a