blob: a5faa3683bd6142fced745574163df555a63e2f5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001menu "Kernel hacking"
2
David S. Miller10e26722006-11-16 13:38:57 -08003config TRACE_IRQFLAGS_SUPPORT
4 bool
5 default y
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007source "lib/Kconfig.debug"
8
9config DEBUG_STACK_USAGE
10 bool "Enable stack utilization instrumentation"
11 depends on DEBUG_KERNEL
12 help
13 Enables the display of the minimum amount of free stack which each
14 task has ever had available in the sysrq-T and sysrq-P debug output.
15
16 This option will slow down process creation somewhat.
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018config DEBUG_DCFLUSH
19 bool "D-cache flush debugging"
20 depends on DEBUG_KERNEL
21
22config STACK_DEBUG
23 depends on DEBUG_KERNEL
24 bool "Stack Overflow Detection Support"
25
26config DEBUG_BOOTMEM
27 depends on DEBUG_KERNEL
28 bool "Debug BOOTMEM initialization"
29
David S. Miller56425302005-09-25 16:46:57 -070030config DEBUG_PAGEALLOC
Andrew Morton4a2f0ac2006-03-25 03:07:22 -080031 bool "Debug page memory allocations"
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +020032 depends on DEBUG_KERNEL && !HIBERNATION
David S. Miller56425302005-09-25 16:46:57 -070033 help
34 Unmap pages from the kernel linear mapping after free_pages().
35 This results in a large slowdown, but helps to find certain types
36 of memory corruptions.
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038config MCOUNT
39 bool
40 depends on STACK_DEBUG
41 default y
42
43config FRAME_POINTER
44 bool
45 depends on MCOUNT
46 default y
47
48endmenu