diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/sparc64/Kconfig.debug |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/sparc64/Kconfig.debug')
-rw-r--r-- | arch/sparc64/Kconfig.debug | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/arch/sparc64/Kconfig.debug b/arch/sparc64/Kconfig.debug new file mode 100644 index 000000000000..cd8d39fb954d --- /dev/null +++ b/arch/sparc64/Kconfig.debug | |||
@@ -0,0 +1,54 @@ | |||
1 | menu "Kernel hacking" | ||
2 | |||
3 | source "lib/Kconfig.debug" | ||
4 | |||
5 | config DEBUG_STACK_USAGE | ||
6 | bool "Enable stack utilization instrumentation" | ||
7 | depends on DEBUG_KERNEL | ||
8 | help | ||
9 | Enables the display of the minimum amount of free stack which each | ||
10 | task has ever had available in the sysrq-T and sysrq-P debug output. | ||
11 | |||
12 | This option will slow down process creation somewhat. | ||
13 | |||
14 | config KPROBES | ||
15 | bool "Kprobes" | ||
16 | depends on DEBUG_KERNEL | ||
17 | help | ||
18 | Kprobes allows you to trap at almost any kernel address and | ||
19 | execute a callback function. register_kprobe() establishes | ||
20 | a probepoint and specifies the callback. Kprobes is useful | ||
21 | for kernel debugging, non-intrusive instrumentation and testing. | ||
22 | If in doubt, say "N". | ||
23 | |||
24 | config DEBUG_DCFLUSH | ||
25 | bool "D-cache flush debugging" | ||
26 | depends on DEBUG_KERNEL | ||
27 | |||
28 | config STACK_DEBUG | ||
29 | depends on DEBUG_KERNEL | ||
30 | bool "Stack Overflow Detection Support" | ||
31 | |||
32 | config DEBUG_BOOTMEM | ||
33 | depends on DEBUG_KERNEL | ||
34 | bool "Debug BOOTMEM initialization" | ||
35 | |||
36 | # We have a custom atomic_dec_and_lock() implementation but it's not | ||
37 | # compatible with spinlock debugging so we need to fall back on | ||
38 | # the generic version in that case. | ||
39 | config HAVE_DEC_LOCK | ||
40 | bool | ||
41 | depends on SMP && !DEBUG_SPINLOCK | ||
42 | default y | ||
43 | |||
44 | config MCOUNT | ||
45 | bool | ||
46 | depends on STACK_DEBUG | ||
47 | default y | ||
48 | |||
49 | config FRAME_POINTER | ||
50 | bool | ||
51 | depends on MCOUNT | ||
52 | default y | ||
53 | |||
54 | endmenu | ||