Re: [patch] Kconfig.debug DEBUG_PREEMPT dependency

2007-06-06 Thread Ingo Molnar
* maximilian attems <[EMAIL PROTECTED]> wrote: > allow to set DEBUG_PREEMPT on PREEMPT_BKL, but !PREEMPT purpose is to > get bonus of debug_smp_processor_id(). hm, have you tested this? In the case of !PREEMPT there will be _lots_ of places that use smp_processor_id() but where the preempt_cou

Re: [patch] Kconfig.debug DEBUG_PREEMPT dependency

2007-06-06 Thread maximilian attems
On Wed, 06 Jun 2007, maximilian attems wrote: > - depends on DEBUG_KERNEL && PREEMPT && TRACE_IRQFLAGS_SUPPORT > + depends on DEBUG_KERNEL && (PREEMPT || PREEMPT_BKL) && > TRACE_IRQFLAGS_SUPPORT upps please discard needs more work: arch/i386/kernel/built-in.o: In function `show_registers

[patch] Kconfig.debug DEBUG_PREEMPT dependency

2007-06-06 Thread maximilian attems
allow to set DEBUG_PREEMPT on PREEMPT_BKL, but !PREEMPT purpose is to get bonus of debug_smp_processor_id(). Signed-off-by: maximilian attems <[EMAIL PROTECTED]> diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index da95e10..1d4ab66 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -14