Commit 1075414b06109a99b0e87601e84c74a95bd45681
Committed by
Ingo Molnar
1 parent
26575e28df
Exists in
master
and in
7 other branches
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>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
lib/Kconfig.debug
... | ... | @@ -402,7 +402,7 @@ |
402 | 402 | bool |
403 | 403 | depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT |
404 | 404 | select STACKTRACE |
405 | - select FRAME_POINTER if !X86 && !MIPS && !PPC | |
405 | + select FRAME_POINTER if !MIPS && !PPC | |
406 | 406 | select KALLSYMS |
407 | 407 | select KALLSYMS_ALL |
408 | 408 |