diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-03-04 12:27:27 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-04 18:39:23 +0100 |
commit | 1075414b06109a99b0e87601e84c74a95bd45681 (patch) | |
tree | e1765999d14e5a70dbcd5e017dc5a024edeec6fe /lib | |
parent | 26575e28df5eb2050c02369843faba38cecb4d8c (diff) | |
download | op-kernel-dev-1075414b06109a99b0e87601e84c74a95bd45681.zip op-kernel-dev-1075414b06109a99b0e87601e84c74a95bd45681.tar.gz |
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 <a.p.zijlstra@chello.nl>
LKML-Reference: <1236167295.5330.7240.camel@laptop>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 29044f5..9b4efb1 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 |