mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
Most arches define CONFIG_DEBUG_STACK_USAGE exactly the same way. Move it to lib/Kconfig.debug so each arch doesn't have to define it. This obviously makes the option generic, but that's fine because the config is already used in generic code. It's not obvious to me that sysrq-P actually does anything caution by keeping the most inclusive wording. Signed-off-by: Stephen Boyd <[email protected]> Cc: Chris Metcalf <[email protected]> Acked-by: David S. Miller <[email protected]> Acked-by: Richard Weinberger <[email protected]> Acked-by: Mike Frysinger <[email protected]> Cc: Russell King <[email protected]> Cc: Hirokazu Takata <[email protected]> Acked-by: Ralf Baechle <[email protected]> Cc: Paul Mackerras <[email protected]> Acked-by: Benjamin Herrenschmidt <[email protected]> Cc: Chen Liqin <[email protected]> Cc: Lennox Wu <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: "H. Peter Anvin" <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
25 lines
335 B
Plaintext
25 lines
335 B
Plaintext
menu "Kernel hacking"
|
|
|
|
config TRACE_IRQFLAGS_SUPPORT
|
|
bool
|
|
default y
|
|
|
|
source "lib/Kconfig.debug"
|
|
|
|
config DEBUG_DCFLUSH
|
|
bool "D-cache flush debugging"
|
|
depends on SPARC64 && DEBUG_KERNEL
|
|
|
|
config MCOUNT
|
|
bool
|
|
depends on SPARC64
|
|
depends on FUNCTION_TRACER
|
|
default y
|
|
|
|
config FRAME_POINTER
|
|
bool
|
|
depends on MCOUNT
|
|
default y
|
|
|
|
endmenu
|