From: Peter Zijlstra Date: Wed, 4 Mar 2009 11:27:27 +0000 (+0100) Subject: lockdep: require framepointers for x86 X-Git-Tag: v2.6.30-rc1~216^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1075414b06109a99b0e87601e84c74a95bd45681;p=karo-tx-linux.git lockdep: require framepointers for x86 Require framepointers for x86, because otherwise we'll be having empty stack traces, which is useless. Signed-off-by: Peter Zijlstra LKML-Reference: <1236167295.5330.7240.camel@laptop> Signed-off-by: Ingo Molnar --- diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 29044f500269..9b4efb14a497 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -402,7 +402,7 @@ config LOCKDEP bool depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT select STACKTRACE - select FRAME_POINTER if !X86 && !MIPS && !PPC + select FRAME_POINTER if !MIPS && !PPC select KALLSYMS select KALLSYMS_ALL