Re: CVS commit: src/sys/dev

2009-11-10 Thread Matthias Scheler
On Mon, Nov 09, 2009 at 07:04:41PM -0600, David Young wrote: Modified Files: src/sys/dev: cgd.c Log Message: Don't allocate block buffers on the stack. This can cause stack overflows in the kernel and breaks SSP builds. This is a step in the right direction, but now cgd(4) is

Re: CVS commit: src/sys/arch/ia64/stand/ia64/ski

2009-11-10 Thread Christoph Egger
Module Name: src Committed By: kiyohara Date: Tue Nov 10 11:14:48 UTC 2009 Modified Files: src/sys/arch/ia64/stand/ia64/ski: acpi_stub.c Log Message: Fix build failure. acpi.h moves to external/intel-public/acpica/dist/include/. Shouldn't this include

Re: CVS commit: src/sys/dev

2009-11-10 Thread haad
On Tue, Nov 10, 2009 at 2:35 PM, Matthias Scheler t...@netbsd.org wrote: On Tue, Nov 10, 2009 at 08:48:42AM +, Matthias Scheler wrote: A LOCKDEBUG kernel will panic.  How can we avoid the stack overflows and such in a different way? I'll try to rewrite the code to use M_NOWAIT. The

Re: CVS commit: src/sys/dev

2009-11-10 Thread Matthias Scheler
On Mon, Nov 09, 2009 at 07:04:41PM -0600, David Young wrote: Log Message: Don't allocate block buffers on the stack. This can cause stack overflows in the kernel and breaks SSP builds. This is a step in the right direction, but now cgd(4) is doing malloc(..., M_WAITOK) in (software)

Re: CVS commit: src/sys/dev

2009-11-10 Thread Matthias Scheler
On Tue, Nov 10, 2009 at 03:05:51PM -0500, Christos Zoulas wrote: Module Name: src Committed By: christos Date: Tue Nov 10 20:05:51 UTC 2009 Modified Files: src/sys/dev: cgd.c cgdvar.h Log Message: avoid variable array stack allocation by enforcing and allocating always

Re: CVS commit: src/sys/dev

2009-11-10 Thread Christos Zoulas
On Nov 10, 8:22pm, t...@netbsd.org (Matthias Scheler) wrote: -- Subject: Re: CVS commit: src/sys/dev | On Tue, Nov 10, 2009 at 03:05:51PM -0500, Christos Zoulas wrote: | Module Name:src | Committed By: christos | Date: Tue Nov 10 20:05:51 UTC 2009 | | Modified

Re: CVS commit: src/sys/arch/ia64/stand/ia64/ski

2009-11-10 Thread KIYOHARA Takashi
Hi! From: Christoph Egger christoph_eg...@gmx.de Date: Tue, 10 Nov 2009 12:19:15 +0100 Module Name:src Committed By: kiyohara Date: Tue Nov 10 11:14:48 UTC 2009 Modified Files: src/sys/arch/ia64/stand/ia64/ski: acpi_stub.c Log Message: Fix