aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-12-08 05:39:49 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-08 11:29:03 -0500
commit83ba254688f0edd6fa29512e538c721f1f46a424 (patch)
tree16448ac535b3b12a03698dbf5e46561bfaf4a9d3
parent1ab8509a31187998615e6dd7f53cc02db5be594c (diff)
[PATCH] fault-injection: stacktrace filtering kconfig fix
`select' doesn't work very well. With alpha `make allmodconfig' we end up with CONFIG_STACKTRACE enabled, so we end up with undefined save_stacktrace() at link time. Cc: Akinobu Mita <akinobu.mita@gmail.com> Cc: Don Mullis <dwm@meer.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--lib/Kconfig.debug2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index c24db7221b55..6eccc643c32e 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -417,7 +417,7 @@ config LKDTM
417config FAULT_INJECTION 417config FAULT_INJECTION
418 bool "Fault-injection framework" 418 bool "Fault-injection framework"
419 depends on DEBUG_KERNEL 419 depends on DEBUG_KERNEL
420 select STACKTRACE 420 depends on STACKTRACE
421 select FRAME_POINTER 421 select FRAME_POINTER
422 help 422 help
423 Provide fault-injection framework. 423 Provide fault-injection framework.