Re: KASSERT in kernel module outside src/sys

2006-12-13 Thread Alexander Leidinger
Quoting Kevin Sanders <[EMAIL PROTECTED]> (from Tue, 12 Dec 2006 17:03:24 -0800): On 12/12/06, Joerg Sonnenberger <[EMAIL PROTECTED]> wrote: On Tue, Dec 12, 2006 at 02:30:41PM -0800, Kevin Sanders wrote: I'm trying to use KASSERT in my own kernel module and I can't get it to assert even with

Re: KASSERT in kernel module outside src/sys

2006-12-13 Thread Stefan Farfeleder
On Tue, Dec 12, 2006 at 05:03:24PM -0800, Kevin Sanders wrote: > On 12/12/06, Joerg Sonnenberger <[EMAIL PROTECTED]> wrote: > >On Tue, Dec 12, 2006 at 02:30:41PM -0800, Kevin Sanders wrote: > >> I'm trying to use KASSERT in my own kernel module and I can't get it > >> to assert even with a KASSERT(

Re: KASSERT in kernel module outside src/sys

2006-12-12 Thread Kevin Sanders
On 12/12/06, Joerg Sonnenberger <[EMAIL PROTECTED]> wrote: On Tue, Dec 12, 2006 at 02:30:41PM -0800, Kevin Sanders wrote: > I'm trying to use KASSERT in my own kernel module and I can't get it > to assert even with a KASSERT(0, "test panic"). Is there something > else I need to do besides add op

Re: KASSERT in kernel module outside src/sys

2006-12-12 Thread Duane Whitty
On Tue, Dec 12, 2006 at 02:30:41PM -0800, Kevin Sanders wrote: > I'm trying to use KASSERT in my own kernel module and I can't get it > to assert even with a KASSERT(0, "test panic"). Is there something > else I need to do besides add options INVARIANTS to my kernel config > file. Any clues would

Re: KASSERT in kernel module outside src/sys

2006-12-12 Thread Kris Kennaway
On Tue, Dec 12, 2006 at 02:30:41PM -0800, Kevin Sanders wrote: > I'm trying to use KASSERT in my own kernel module and I can't get it > to assert even with a KASSERT(0, "test panic"). Is there something > else I need to do besides add options INVARIANTS to my kernel config > file. Any clues would

Re: KASSERT in kernel module outside src/sys

2006-12-12 Thread Joerg Sonnenberger
On Tue, Dec 12, 2006 at 02:30:41PM -0800, Kevin Sanders wrote: > I'm trying to use KASSERT in my own kernel module and I can't get it > to assert even with a KASSERT(0, "test panic"). Is there something > else I need to do besides add options INVARIANTS to my kernel config > file. Any clues would

KASSERT in kernel module outside src/sys

2006-12-12 Thread Kevin Sanders
I'm trying to use KASSERT in my own kernel module and I can't get it to assert even with a KASSERT(0, "test panic"). Is there something else I need to do besides add options INVARIANTS to my kernel config file. Any clues would be appreciated. Kevin __