Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | menu "Kernel hacking" |
| 2 | |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 3 | config TRACE_IRQFLAGS_SUPPORT |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 4 | def_bool y |
Ingo Molnar | 55f327f | 2006-07-03 00:24:43 -0700 | [diff] [blame] | 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | source "lib/Kconfig.debug" |
| 7 | |
| 8 | config EARLY_PRINTK |
Adrian Bunk | 1b8a8e9 | 2007-10-29 13:49:36 +0100 | [diff] [blame] | 9 | bool "Early printk" if EMBEDDED && DEBUG_KERNEL && X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | default y |
| 11 | help |
| 12 | Write kernel log output directly into the VGA buffer or to a serial |
| 13 | port. |
| 14 | |
| 15 | This is useful for kernel debugging when your machine crashes very |
| 16 | early before the console code is initialized. For normal operation |
| 17 | it is not recommended because it looks ugly and doesn't cooperate |
| 18 | with klogd/syslogd or the X server. You should normally N here, |
| 19 | unless you want to debug such a crash. |
| 20 | |
| 21 | config DEBUG_STACKOVERFLOW |
| 22 | bool "Check for stack overflows" |
| 23 | depends on DEBUG_KERNEL |
Adrian Bunk | dab175f | 2005-07-27 11:44:23 -0700 | [diff] [blame] | 24 | help |
| 25 | This option will cause messages to be printed if free stack space |
| 26 | drops below a certain limit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | config DEBUG_STACK_USAGE |
| 29 | bool "Stack utilization instrumentation" |
| 30 | depends on DEBUG_KERNEL |
| 31 | help |
| 32 | Enables the display of the minimum amount of free stack which each |
| 33 | task has ever had available in the sysrq-T and sysrq-P debug output. |
| 34 | |
| 35 | This option will slow down process creation somewhat. |
| 36 | |
| 37 | comment "Page alloc debug is incompatible with Software Suspend on i386" |
Rafael J. Wysocki | b0cb1a1 | 2007-07-29 23:24:36 +0200 | [diff] [blame] | 38 | depends on DEBUG_KERNEL && HIBERNATION |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 39 | depends on X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | config DEBUG_PAGEALLOC |
Andrew Morton | 4a2f0ac | 2006-03-25 03:07:22 -0800 | [diff] [blame] | 42 | bool "Debug page memory allocations" |
Rafael J. Wysocki | b0cb1a1 | 2007-07-29 23:24:36 +0200 | [diff] [blame] | 43 | depends on DEBUG_KERNEL && !HIBERNATION && !HUGETLBFS |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 44 | depends on X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | help |
| 46 | Unmap pages from the kernel linear mapping after free_pages(). |
| 47 | This results in a large slowdown, but helps to find certain types |
| 48 | of memory corruptions. |
| 49 | |
Arjan van de Ven | 63aaf30 | 2006-01-06 00:12:02 -0800 | [diff] [blame] | 50 | config DEBUG_RODATA |
| 51 | bool "Write protect kernel read-only data structures" |
| 52 | depends on DEBUG_KERNEL |
| 53 | help |
| 54 | Mark the kernel read-only data as write-protected in the pagetables, |
| 55 | in order to catch accidental (and incorrect) writes to such const |
| 56 | data. This option may have a slight performance impact because a |
| 57 | portion of the kernel code won't be covered by a 2MB TLB anymore. |
| 58 | If in doubt, say "N". |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | config 4KSTACKS |
| 61 | bool "Use 4Kb for kernel stacks instead of 8Kb" |
| 62 | depends on DEBUG_KERNEL |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 63 | depends on X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | help |
| 65 | If you say Y here the kernel will use a 4Kb stacksize for the |
| 66 | kernel stack attached to each process/thread. This facilitates |
| 67 | running more threads on a system and also reduces the pressure |
| 68 | on the VM subsystem for higher order allocations. This option |
| 69 | will also use IRQ stacks to compensate for the reduced stackspace. |
| 70 | |
| 71 | config X86_FIND_SMP_CONFIG |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 72 | def_bool y |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | depends on X86_LOCAL_APIC || X86_VOYAGER |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 74 | depends on X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | config X86_MPPARSE |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 77 | def_bool y |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | depends on X86_LOCAL_APIC && !X86_VISWS |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 79 | depends on X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Andi Kleen | 102e41f | 2006-04-18 12:35:22 +0200 | [diff] [blame] | 81 | config DOUBLEFAULT |
| 82 | default y |
| 83 | bool "Enable doublefault exception handler" if EMBEDDED |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 84 | depends on X86_32 |
Andi Kleen | 102e41f | 2006-04-18 12:35:22 +0200 | [diff] [blame] | 85 | help |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 86 | This option allows trapping of rare doublefault exceptions that |
| 87 | would otherwise cause a system to silently reboot. Disabling this |
| 88 | option saves about 4k and might cause you much additional grey |
| 89 | hair. |
| 90 | |
| 91 | config IOMMU_DEBUG |
| 92 | bool "Enable IOMMU debugging" |
Joerg Roedel | 966396d | 2007-10-24 12:49:48 +0200 | [diff] [blame] | 93 | depends on GART_IOMMU && DEBUG_KERNEL |
Randy Dunlap | d013a27 | 2007-10-24 15:50:43 -0700 | [diff] [blame] | 94 | depends on X86_64 |
| 95 | help |
| 96 | Force the IOMMU to on even when you have less than 4GB of |
| 97 | memory and add debugging code. On overflow always panic. And |
| 98 | allow to enable IOMMU leak tracing. Can be disabled at boot |
| 99 | time with iommu=noforce. This will also enable scatter gather |
| 100 | list merging. Currently not recommended for production |
| 101 | code. When you use it make sure you have a big enough |
| 102 | IOMMU/AGP aperture. Most of the options enabled by this can |
| 103 | be set more finegrained using the iommu= command line |
| 104 | options. See Documentation/x86_64/boot-options.txt for more |
| 105 | details. |
| 106 | |
| 107 | config IOMMU_LEAK |
| 108 | bool "IOMMU leak tracing" |
| 109 | depends on DEBUG_KERNEL |
| 110 | depends on IOMMU_DEBUG |
| 111 | help |
| 112 | Add a simple leak tracer to the IOMMU code. This is useful when you |
| 113 | are debugging a buggy device driver that leaks IOMMU mappings. |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | endmenu |