diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2013-06-11 04:49:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-28 19:30:12 -0400 |
commit | 3c19c4f9b4eeabe75eddbec1a0e8599c940e8ec8 (patch) | |
tree | 72ada05ff46208d7c347707c4a1c77a0353730a9 | |
parent | 4ac697c53bf856ef1c8d32f8fd903987e0494311 (diff) |
lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS
commit 25c87eae1725ed77a8b44d782a86abdc279b4ede upstream.
FAULT_INJECTION_STACKTRACE_FILTER selects FRAME_POINTER but
that symbol is not available for MIPS.
Fixes the following problem on a randconfig:
warning: (LOCKDEP && FAULT_INJECTION_STACKTRACE_FILTER && LATENCYTOP &&
KMEMCHECK) selects FRAME_POINTER which has unmet direct dependencies
(DEBUG_KERNEL && (CRIS || M68K || FRV || UML || AVR32 || SUPERH || BLACKFIN ||
MN10300 || METAG) || ARCH_WANT_FRAME_POINTERS)
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5441/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-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 566cf2bc08ea..74fdc5cf4adc 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -1272,7 +1272,7 @@ config FAULT_INJECTION_STACKTRACE_FILTER | |||
1272 | depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT | 1272 | depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT |
1273 | depends on !X86_64 | 1273 | depends on !X86_64 |
1274 | select STACKTRACE | 1274 | select STACKTRACE |
1275 | select FRAME_POINTER if !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND | 1275 | select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND |
1276 | help | 1276 | help |
1277 | Provide stacktrace filter for fault-injection capabilities | 1277 | Provide stacktrace filter for fault-injection capabilities |
1278 | 1278 | ||