]> rtime.felk.cvut.cz Git - sojka/nv-tegra/linux-3.10.git/blob - lib/Kconfig.debug
media: tegra: nvavp: Fix reloc offset check
[sojka/nv-tegra/linux-3.10.git] / lib / Kconfig.debug
1
2 config PRINTK_TIME
3         bool "Show timing information on printks"
4         depends on PRINTK
5         help
6           Selecting this option causes time stamps of the printk()
7           messages to be added to the output of the syslog() system
8           call and at the console.
9
10           The timestamp is always recorded internally, and exported
11           to /dev/kmsg. This flag just specifies if the timestamp should
12           be included, not that the timestamp is recorded.
13
14           The behavior is also controlled by the kernel command line
15           parameter printk.time=1. See Documentation/kernel-parameters.txt
16
17 config DEFAULT_MESSAGE_LOGLEVEL
18         int "Default message log level (1-7)"
19         range 1 7
20         default "4"
21         help
22           Default log level for printk statements with no specified priority.
23
24           This was hard-coded to KERN_WARNING since at least 2.6.10 but folks
25           that are auditing their logs closely may want to set it to a lower
26           priority.
27
28 config ENABLE_WARN_DEPRECATED
29         bool "Enable __deprecated logic"
30         default y
31         help
32           Enable the __deprecated logic in the kernel build.
33           Disable this to suppress the "warning: 'foo' is deprecated
34           (declared at kernel/power/somefile.c:1234)" messages.
35
36 config ENABLE_MUST_CHECK
37         bool "Enable __must_check logic"
38         default y
39         help
40           Enable the __must_check logic in the kernel build.  Disable this to
41           suppress the "warning: ignoring return value of 'foo', declared with
42           attribute warn_unused_result" messages.
43
44 config FRAME_WARN
45         int "Warn for stack frames larger than (needs gcc 4.4)"
46         range 0 8192
47         default 1024 if !64BIT
48         default 2048 if 64BIT
49         help
50           Tell gcc to warn at build time for stack frames larger than this.
51           Setting this too low will cause a lot of warnings.
52           Setting it to 0 disables the warning.
53           Requires gcc 4.4
54
55 config MAGIC_SYSRQ
56         bool "Magic SysRq key"
57         depends on !UML
58         help
59           If you say Y here, you will have some control over the system even
60           if the system crashes for example during kernel debugging (e.g., you
61           will be able to flush the buffer cache to disk, reboot the system
62           immediately or dump some status information). This is accomplished
63           by pressing various keys while holding SysRq (Alt+PrintScreen). It
64           also works on a serial console (on PC hardware at least), if you
65           send a BREAK and then within 5 seconds a command keypress. The
66           keys are documented in <file:Documentation/sysrq.txt>. Don't say Y
67           unless you really know what this hack does.
68
69 config STRIP_ASM_SYMS
70         bool "Strip assembler-generated symbols during link"
71         default n
72         help
73           Strip internal assembler-generated symbols during a link (symbols
74           that look like '.Lxxx') so they don't pollute the output of
75           get_wchan() and suchlike.
76
77 config READABLE_ASM
78         bool "Generate readable assembler code"
79         depends on DEBUG_KERNEL
80         help
81           Disable some compiler optimizations that tend to generate human unreadable
82           assembler output. This may make the kernel slightly slower, but it helps
83           to keep kernel developers who have to stare a lot at assembler listings
84           sane.
85
86 config UNUSED_SYMBOLS
87         bool "Enable unused/obsolete exported symbols"
88         default y if X86
89         help
90           Unused but exported symbols make the kernel needlessly bigger.  For
91           that reason most of these unused exports will soon be removed.  This
92           option is provided temporarily to provide a transition period in case
93           some external kernel module needs one of these symbols anyway. If you
94           encounter such a case in your module, consider if you are actually
95           using the right API.  (rationale: since nobody in the kernel is using
96           this in a module, there is a pretty good chance it's actually the
97           wrong interface to use).  If you really need the symbol, please send a
98           mail to the linux kernel mailing list mentioning the symbol and why
99           you really need it, and what the merge plan to the mainline kernel for
100           your module is.
101
102 config DEBUG_FS
103         bool "Debug Filesystem"
104         help
105           debugfs is a virtual file system that kernel developers use to put
106           debugging files into.  Enable this option to be able to read and
107           write to these files.
108
109           For detailed documentation on the debugfs API, see
110           Documentation/DocBook/filesystems.
111
112           If unsure, say N.
113
114 config HEADERS_CHECK
115         bool "Run 'make headers_check' when building vmlinux"
116         depends on !UML
117         help
118           This option will extract the user-visible kernel headers whenever
119           building the kernel, and will run basic sanity checks on them to
120           ensure that exported files do not attempt to include files which
121           were not exported, etc.
122
123           If you're making modifications to header files which are
124           relevant for userspace, say 'Y', and check the headers
125           exported to $(INSTALL_HDR_PATH) (usually 'usr/include' in
126           your build tree), to make sure they're suitable.
127
128 config DEBUG_SECTION_MISMATCH
129         bool "Enable full Section mismatch analysis"
130         help
131           The section mismatch analysis checks if there are illegal
132           references from one section to another section.
133           During linktime or runtime, some sections are dropped;
134           any use of code/data previously in these sections would
135           most likely result in an oops.
136           In the code, functions and variables are annotated with
137           __init, __cpuinit, etc. (see the full list in include/linux/init.h),
138           which results in the code/data being placed in specific sections.
139           The section mismatch analysis is always performed after a full
140           kernel build, and enabling this option causes the following
141           additional steps to occur:
142           - Add the option -fno-inline-functions-called-once to gcc commands.
143             When inlining a function annotated with __init in a non-init
144             function, we would lose the section information and thus
145             the analysis would not catch the illegal reference.
146             This option tells gcc to inline less (but it does result in
147             a larger kernel).
148           - Run the section mismatch analysis for each module/built-in.o file.
149             When we run the section mismatch analysis on vmlinux.o, we
150             lose valueble information about where the mismatch was
151             introduced.
152             Running the analysis for each module/built-in.o file
153             tells where the mismatch happens much closer to the
154             source. The drawback is that the same mismatch is
155             reported at least twice.
156           - Enable verbose reporting from modpost in order to help resolve
157             the section mismatches that are reported.
158
159 config DEBUG_KERNEL
160         bool "Kernel debugging"
161         help
162           Say Y here if you are developing drivers or trying to debug and
163           identify kernel problems.
164
165 config LESS_GCC_OPT
166         bool "Compile with -O1 for debugging"
167         depends on DEBUG_KERNEL
168         default n
169         help
170           Enable this if you are using a source level debugger and
171           experience poor correlation between the program counter
172           and the source display.  This will reduce kernel peformance
173           and is only used when debugging.
174
175 config DEBUG_SHIRQ
176         bool "Debug shared IRQ handlers"
177         depends on DEBUG_KERNEL && GENERIC_HARDIRQS
178         help
179           Enable this to generate a spurious interrupt as soon as a shared
180           interrupt handler is registered, and just before one is deregistered.
181           Drivers ought to be able to handle interrupts coming in at those
182           points; some don't and need to be caught.
183
184 config LOCKUP_DETECTOR
185         bool "Detect Hard and Soft Lockups"
186         depends on DEBUG_KERNEL && !S390
187         help
188           Say Y here to enable the kernel to act as a watchdog to detect
189           hard and soft lockups.
190
191           Softlockups are bugs that cause the kernel to loop in kernel
192           mode for more than 20 seconds, without giving other tasks a
193           chance to run.  The current stack trace is displayed upon
194           detection and the system will stay locked up.
195
196           Hardlockups are bugs that cause the CPU to loop in kernel mode
197           for more than 10 seconds, without letting other interrupts have a
198           chance to run.  The current stack trace is displayed upon detection
199           and the system will stay locked up.
200
201           The overhead should be minimal.  A periodic hrtimer runs to
202           generate interrupts and kick the watchdog task every 4 seconds.
203           An NMI is generated every 10 seconds or so to check for hardlockups.
204           If NMIs are not available on the platform, every 12 seconds the
205           hrtimer interrupt on one cpu will be used to check for hardlockups
206           on the next cpu.
207
208           The frequency of hrtimer and NMI events and the soft and hard lockup
209           thresholds can be controlled through the sysctl watchdog_thresh.
210
211 config HARDLOCKUP_DETECTOR_NMI
212         def_bool y
213         depends on LOCKUP_DETECTOR && !HAVE_NMI_WATCHDOG
214         depends on PERF_EVENTS && HAVE_PERF_EVENTS_NMI
215
216 config HARDLOCKUP_DETECTOR_OTHER_CPU
217         def_bool y
218         depends on LOCKUP_DETECTOR && SMP
219         depends on !HARDLOCKUP_DETECTOR_NMI && !HAVE_NMI_WATCHDOG
220
221 config HARDLOCKUP_DETECTOR
222         def_bool y
223         depends on HARDLOCKUP_DETECTOR_NMI || HARDLOCKUP_DETECTOR_OTHER_CPU
224
225 config BOOTPARAM_HARDLOCKUP_PANIC
226         bool "Panic (Reboot) On Hard Lockups"
227         depends on HARDLOCKUP_DETECTOR
228         help
229           Say Y here to enable the kernel to panic on "hard lockups",
230           which are bugs that cause the kernel to loop in kernel
231           mode with interrupts disabled for more than 10 seconds (configurable
232           using the watchdog_thresh sysctl).
233
234           Say N if unsure.
235
236 config BOOTPARAM_HARDLOCKUP_PANIC_VALUE
237         int
238         depends on HARDLOCKUP_DETECTOR
239         range 0 1
240         default 0 if !BOOTPARAM_HARDLOCKUP_PANIC
241         default 1 if BOOTPARAM_HARDLOCKUP_PANIC
242
243 config BOOTPARAM_SOFTLOCKUP_PANIC
244         bool "Panic (Reboot) On Soft Lockups"
245         depends on LOCKUP_DETECTOR
246         help
247           Say Y here to enable the kernel to panic on "soft lockups",
248           which are bugs that cause the kernel to loop in kernel
249           mode for more than 20 seconds (configurable using the watchdog_thresh
250           sysctl), without giving other tasks a chance to run.
251
252           The panic can be used in combination with panic_timeout,
253           to cause the system to reboot automatically after a
254           lockup has been detected. This feature is useful for
255           high-availability systems that have uptime guarantees and
256           where a lockup must be resolved ASAP.
257
258           Say N if unsure.
259
260 config BOOTPARAM_SOFTLOCKUP_PANIC_VALUE
261         int
262         depends on LOCKUP_DETECTOR
263         range 0 1
264         default 0 if !BOOTPARAM_SOFTLOCKUP_PANIC
265         default 1 if BOOTPARAM_SOFTLOCKUP_PANIC
266
267 config PANIC_ON_OOPS
268         bool "Panic on Oops"
269         help
270           Say Y here to enable the kernel to panic when it oopses. This
271           has the same effect as setting oops=panic on the kernel command
272           line.
273
274           This feature is useful to ensure that the kernel does not do
275           anything erroneous after an oops which could result in data
276           corruption or other issues.
277
278           Say N if unsure.
279
280 config PANIC_ON_OOPS_VALUE
281         int
282         range 0 1
283         default 0 if !PANIC_ON_OOPS
284         default 1 if PANIC_ON_OOPS
285
286 config DETECT_HUNG_TASK
287         bool "Detect Hung Tasks"
288         depends on DEBUG_KERNEL
289         default LOCKUP_DETECTOR
290         help
291           Say Y here to enable the kernel to detect "hung tasks",
292           which are bugs that cause the task to be stuck in
293           uninterruptible "D" state indefinitiley.
294
295           When a hung task is detected, the kernel will print the
296           current stack trace (which you should report), but the
297           task will stay in uninterruptible state. If lockdep is
298           enabled then all held locks will also be reported. This
299           feature has negligible overhead.
300
301 config DEFAULT_HUNG_TASK_TIMEOUT
302         int "Default timeout for hung task detection (in seconds)"
303         depends on DETECT_HUNG_TASK
304         default 120
305         help
306           This option controls the default timeout (in seconds) used
307           to determine when a task has become non-responsive and should
308           be considered hung.
309
310           It can be adjusted at runtime via the kernel.hung_task_timeout_secs
311           sysctl or by writing a value to
312           /proc/sys/kernel/hung_task_timeout_secs.
313
314           A timeout of 0 disables the check.  The default is two minutes.
315           Keeping the default should be fine in most cases.
316
317 config BOOTPARAM_HUNG_TASK_PANIC
318         bool "Panic (Reboot) On Hung Tasks"
319         depends on DETECT_HUNG_TASK
320         help
321           Say Y here to enable the kernel to panic on "hung tasks",
322           which are bugs that cause the kernel to leave a task stuck
323           in uninterruptible "D" state.
324
325           The panic can be used in combination with panic_timeout,
326           to cause the system to reboot automatically after a
327           hung task has been detected. This feature is useful for
328           high-availability systems that have uptime guarantees and
329           where a hung tasks must be resolved ASAP.
330
331           Say N if unsure.
332
333 config BOOTPARAM_HUNG_TASK_PANIC_VALUE
334         int
335         depends on DETECT_HUNG_TASK
336         range 0 1
337         default 0 if !BOOTPARAM_HUNG_TASK_PANIC
338         default 1 if BOOTPARAM_HUNG_TASK_PANIC
339
340 config SCHED_DEBUG
341         bool "Collect scheduler debugging info"
342         depends on DEBUG_KERNEL && PROC_FS
343         default y
344         help
345           If you say Y here, the /proc/sched_debug file will be provided
346           that can help debug the scheduler. The runtime overhead of this
347           option is minimal.
348
349 config SCHEDSTATS
350         bool "Collect scheduler statistics"
351         depends on DEBUG_KERNEL && PROC_FS
352         help
353           If you say Y here, additional code will be inserted into the
354           scheduler and related routines to collect statistics about
355           scheduler behavior and provide them in /proc/schedstat.  These
356           stats may be useful for both tuning and debugging the scheduler
357           If you aren't debugging the scheduler or trying to tune a specific
358           application, you can say N to avoid the very slight overhead
359           this adds.
360
361 config TIMER_STATS
362         bool "Collect kernel timers statistics"
363         depends on DEBUG_KERNEL && PROC_FS
364         help
365           If you say Y here, additional code will be inserted into the
366           timer routines to collect statistics about kernel timers being
367           reprogrammed. The statistics can be read from /proc/timer_stats.
368           The statistics collection is started by writing 1 to /proc/timer_stats,
369           writing 0 stops it. This feature is useful to collect information
370           about timer usage patterns in kernel and userspace. This feature
371           is lightweight if enabled in the kernel config but not activated
372           (it defaults to deactivated on bootup and will only be activated
373           if some application like powertop activates it explicitly).
374
375 config DEBUG_OBJECTS
376         bool "Debug object operations"
377         depends on DEBUG_KERNEL
378         help
379           If you say Y here, additional code will be inserted into the
380           kernel to track the life time of various objects and validate
381           the operations on those objects.
382
383 config DEBUG_OBJECTS_SELFTEST
384         bool "Debug objects selftest"
385         depends on DEBUG_OBJECTS
386         help
387           This enables the selftest of the object debug code.
388
389 config DEBUG_OBJECTS_FREE
390         bool "Debug objects in freed memory"
391         depends on DEBUG_OBJECTS
392         help
393           This enables checks whether a k/v free operation frees an area
394           which contains an object which has not been deactivated
395           properly. This can make kmalloc/kfree-intensive workloads
396           much slower.
397
398 config DEBUG_OBJECTS_TIMERS
399         bool "Debug timer objects"
400         depends on DEBUG_OBJECTS
401         help
402           If you say Y here, additional code will be inserted into the
403           timer routines to track the life time of timer objects and
404           validate the timer operations.
405
406 config DEBUG_OBJECTS_WORK
407         bool "Debug work objects"
408         depends on DEBUG_OBJECTS
409         help
410           If you say Y here, additional code will be inserted into the
411           work queue routines to track the life time of work objects and
412           validate the work operations.
413
414 config DEBUG_OBJECTS_RCU_HEAD
415         bool "Debug RCU callbacks objects"
416         depends on DEBUG_OBJECTS
417         help
418           Enable this to turn on debugging of RCU list heads (call_rcu() usage).
419
420 config DEBUG_OBJECTS_PERCPU_COUNTER
421         bool "Debug percpu counter objects"
422         depends on DEBUG_OBJECTS
423         help
424           If you say Y here, additional code will be inserted into the
425           percpu counter routines to track the life time of percpu counter
426           objects and validate the percpu counter operations.
427
428 config DEBUG_OBJECTS_ENABLE_DEFAULT
429         int "debug_objects bootup default value (0-1)"
430         range 0 1
431         default "1"
432         depends on DEBUG_OBJECTS
433         help
434           Debug objects boot parameter default value
435
436 config DEBUG_SLAB
437         bool "Debug slab memory allocations"
438         depends on DEBUG_KERNEL && SLAB && !KMEMCHECK
439         help
440           Say Y here to have the kernel do limited verification on memory
441           allocation as well as poisoning memory on free to catch use of freed
442           memory. This can make kmalloc/kfree-intensive workloads much slower.
443
444 config DEBUG_SLAB_LEAK
445         bool "Memory leak debugging"
446         depends on DEBUG_SLAB
447
448 config SLUB_DEBUG_ON
449         bool "SLUB debugging on by default"
450         depends on SLUB && SLUB_DEBUG && !KMEMCHECK
451         default n
452         help
453           Boot with debugging on by default. SLUB boots by default with
454           the runtime debug capabilities switched off. Enabling this is
455           equivalent to specifying the "slub_debug" parameter on boot.
456           There is no support for more fine grained debug control like
457           possible with slub_debug=xxx. SLUB debugging may be switched
458           off in a kernel built with CONFIG_SLUB_DEBUG_ON by specifying
459           "slub_debug=-".
460
461 config SLUB_STATS
462         default n
463         bool "Enable SLUB performance statistics"
464         depends on SLUB && SYSFS
465         help
466           SLUB statistics are useful to debug SLUBs allocation behavior in
467           order find ways to optimize the allocator. This should never be
468           enabled for production use since keeping statistics slows down
469           the allocator by a few percentage points. The slabinfo command
470           supports the determination of the most active slabs to figure
471           out which slabs are relevant to a particular load.
472           Try running: slabinfo -DA
473
474 config HAVE_DEBUG_KMEMLEAK
475         bool
476
477 config DEBUG_KMEMLEAK
478         bool "Kernel memory leak detector"
479         depends on DEBUG_KERNEL && HAVE_DEBUG_KMEMLEAK
480         select DEBUG_FS
481         select STACKTRACE if STACKTRACE_SUPPORT
482         select KALLSYMS
483         select CRC32
484         help
485           Say Y here if you want to enable the memory leak
486           detector. The memory allocation/freeing is traced in a way
487           similar to the Boehm's conservative garbage collector, the
488           difference being that the orphan objects are not freed but
489           only shown in /sys/kernel/debug/kmemleak. Enabling this
490           feature will introduce an overhead to memory
491           allocations. See Documentation/kmemleak.txt for more
492           details.
493
494           Enabling DEBUG_SLAB or SLUB_DEBUG may increase the chances
495           of finding leaks due to the slab objects poisoning.
496
497           In order to access the kmemleak file, debugfs needs to be
498           mounted (usually at /sys/kernel/debug).
499
500 config DEBUG_KMEMLEAK_EARLY_LOG_SIZE
501         int "Maximum kmemleak early log entries"
502         depends on DEBUG_KMEMLEAK
503         range 200 40000
504         default 400
505         help
506           Kmemleak must track all the memory allocations to avoid
507           reporting false positives. Since memory may be allocated or
508           freed before kmemleak is initialised, an early log buffer is
509           used to store these actions. If kmemleak reports "early log
510           buffer exceeded", please increase this value.
511
512 config DEBUG_KMEMLEAK_TEST
513         tristate "Simple test for the kernel memory leak detector"
514         depends on DEBUG_KMEMLEAK && m
515         help
516           This option enables a module that explicitly leaks memory.
517
518           If unsure, say N.
519
520 config DEBUG_KMEMLEAK_DEFAULT_OFF
521         bool "Default kmemleak to off"
522         depends on DEBUG_KMEMLEAK
523         help
524           Say Y here to disable kmemleak by default. It can then be enabled
525           on the command line via kmemleak=on.
526
527 config DEBUG_KMEMLEAK_SCAN_ON
528         bool "Enable kmemleak auto scan thread on boot up"
529         default y
530         depends on DEBUG_KMEMLEAK
531         help
532           Kmemleak scan is cpu intensive and can stall user tasks at times.
533           Say N here to disable kmemleak auto scan thread at boot up.
534
535 config DEBUG_PREEMPT
536         bool "Debug preemptible kernel"
537         depends on DEBUG_KERNEL && PREEMPT && TRACE_IRQFLAGS_SUPPORT
538         default y
539         help
540           If you say Y here then the kernel will use a debug variant of the
541           commonly used smp_processor_id() function and will print warnings
542           if kernel code uses it in a preemption-unsafe way. Also, the kernel
543           will detect preemption count underflows.
544
545 config DEBUG_RT_MUTEXES
546         bool "RT Mutex debugging, deadlock detection"
547         depends on DEBUG_KERNEL && RT_MUTEXES
548         help
549          This allows rt mutex semantics violations and rt mutex related
550          deadlocks (lockups) to be detected and reported automatically.
551
552 config DEBUG_PI_LIST
553         bool
554         default y
555         depends on DEBUG_RT_MUTEXES
556
557 config RT_MUTEX_TESTER
558         bool "Built-in scriptable tester for rt-mutexes"
559         depends on DEBUG_KERNEL && RT_MUTEXES
560         help
561           This option enables a rt-mutex tester.
562
563 config DEBUG_SPINLOCK
564         bool "Spinlock and rw-lock debugging: basic checks"
565         depends on DEBUG_KERNEL
566         select UNINLINE_SPIN_UNLOCK
567         help
568           Say Y here and build SMP to catch missing spinlock initialization
569           and certain other kinds of spinlock errors commonly made.  This is
570           best used in conjunction with the NMI watchdog so that spinlock
571           deadlocks are also debuggable.
572
573 config DEBUG_MUTEXES
574         bool "Mutex debugging: basic checks"
575         depends on DEBUG_KERNEL
576         help
577          This feature allows mutex semantics violations to be detected and
578          reported.
579
580 config DEBUG_LOCK_ALLOC
581         bool "Lock debugging: detect incorrect freeing of live locks"
582         depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
583         select DEBUG_SPINLOCK
584         select DEBUG_MUTEXES
585         select LOCKDEP
586         help
587          This feature will check whether any held lock (spinlock, rwlock,
588          mutex or rwsem) is incorrectly freed by the kernel, via any of the
589          memory-freeing routines (kfree(), kmem_cache_free(), free_pages(),
590          vfree(), etc.), whether a live lock is incorrectly reinitialized via
591          spin_lock_init()/mutex_init()/etc., or whether there is any lock
592          held during task exit.
593
594 config PROVE_LOCKING
595         bool "Lock debugging: prove locking correctness"
596         depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
597         select LOCKDEP
598         select DEBUG_SPINLOCK
599         select DEBUG_MUTEXES
600         select DEBUG_LOCK_ALLOC
601         select TRACE_IRQFLAGS
602         default n
603         help
604          This feature enables the kernel to prove that all locking
605          that occurs in the kernel runtime is mathematically
606          correct: that under no circumstance could an arbitrary (and
607          not yet triggered) combination of observed locking
608          sequences (on an arbitrary number of CPUs, running an
609          arbitrary number of tasks and interrupt contexts) cause a
610          deadlock.
611
612          In short, this feature enables the kernel to report locking
613          related deadlocks before they actually occur.
614
615          The proof does not depend on how hard and complex a
616          deadlock scenario would be to trigger: how many
617          participant CPUs, tasks and irq-contexts would be needed
618          for it to trigger. The proof also does not depend on
619          timing: if a race and a resulting deadlock is possible
620          theoretically (no matter how unlikely the race scenario
621          is), it will be proven so and will immediately be
622          reported by the kernel (once the event is observed that
623          makes the deadlock theoretically possible).
624
625          If a deadlock is impossible (i.e. the locking rules, as
626          observed by the kernel, are mathematically correct), the
627          kernel reports nothing.
628
629          NOTE: this feature can also be enabled for rwlocks, mutexes
630          and rwsems - in which case all dependencies between these
631          different locking variants are observed and mapped too, and
632          the proof of observed correctness is also maintained for an
633          arbitrary combination of these separate locking variants.
634
635          For more details, see Documentation/lockdep-design.txt.
636
637 config LOCKDEP
638         bool
639         depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
640         select STACKTRACE
641         select FRAME_POINTER if !MIPS && !PPC && !ARM_UNWIND && !S390 && !MICROBLAZE
642         select KALLSYMS
643         select KALLSYMS_ALL
644
645 config LOCK_STAT
646         bool "Lock usage statistics"
647         depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
648         select LOCKDEP
649         select DEBUG_SPINLOCK
650         select DEBUG_MUTEXES
651         select DEBUG_LOCK_ALLOC
652         default n
653         help
654          This feature enables tracking lock contention points
655
656          For more details, see Documentation/lockstat.txt
657
658          This also enables lock events required by "perf lock",
659          subcommand of perf.
660          If you want to use "perf lock", you also need to turn on
661          CONFIG_EVENT_TRACING.
662
663          CONFIG_LOCK_STAT defines "contended" and "acquired" lock events.
664          (CONFIG_LOCKDEP defines "acquire" and "release" events.)
665
666 config DEBUG_LOCKDEP
667         bool "Lock dependency engine debugging"
668         depends on DEBUG_KERNEL && LOCKDEP
669         help
670           If you say Y here, the lock dependency engine will do
671           additional runtime checks to debug itself, at the price
672           of more runtime overhead.
673
674 config TRACE_IRQFLAGS
675         bool
676         help
677           Enables hooks to interrupt enabling and disabling for
678           either tracing or lock debugging.
679
680 config DEBUG_ATOMIC_SLEEP
681         bool "Sleep inside atomic section checking"
682         select PREEMPT_COUNT
683         depends on DEBUG_KERNEL
684         help
685           If you say Y here, various routines which may sleep will become very
686           noisy if they are called inside atomic sections: when a spinlock is
687           held, inside an rcu read side critical section, inside preempt disabled
688           sections, inside an interrupt, etc...
689
690 config DEBUG_LOCKING_API_SELFTESTS
691         bool "Locking API boot-time self-tests"
692         depends on DEBUG_KERNEL
693         help
694           Say Y here if you want the kernel to run a short self-test during
695           bootup. The self-test checks whether common types of locking bugs
696           are detected by debugging mechanisms or not. (if you disable
697           lock debugging then those bugs wont be detected of course.)
698           The following locking APIs are covered: spinlocks, rwlocks,
699           mutexes and rwsems.
700
701 config STACKTRACE
702         bool "Stacktrace"
703         depends on STACKTRACE_SUPPORT
704         default y
705
706 config DEBUG_STACK_USAGE
707         bool "Stack utilization instrumentation"
708         depends on DEBUG_KERNEL && !IA64 && !PARISC && !METAG
709         help
710           Enables the display of the minimum amount of free stack which each
711           task has ever had available in the sysrq-T and sysrq-P debug output.
712
713           This option will slow down process creation somewhat.
714
715 config DEBUG_KOBJECT
716         bool "kobject debugging"
717         depends on DEBUG_KERNEL
718         help
719           If you say Y here, some extra kobject debugging messages will be sent
720           to the syslog. 
721
722 config DEBUG_HIGHMEM
723         bool "Highmem debugging"
724         depends on DEBUG_KERNEL && HIGHMEM
725         help
726           This options enables addition error checking for high memory systems.
727           Disable for production systems.
728
729 config HAVE_DEBUG_BUGVERBOSE
730         bool
731
732 config DEBUG_BUGVERBOSE
733         bool "Verbose BUG() reporting (adds 70K)" if DEBUG_KERNEL && EXPERT
734         depends on BUG && (GENERIC_BUG || HAVE_DEBUG_BUGVERBOSE)
735         default y
736         help
737           Say Y here to make BUG() panics output the file name and line number
738           of the BUG call as well as the EIP and oops trace.  This aids
739           debugging but costs about 70-100K of memory.
740
741 config DEBUG_INFO
742         bool "Compile the kernel with debug info"
743         depends on DEBUG_KERNEL
744         help
745           If you say Y here the resulting kernel image will include
746           debugging info resulting in a larger kernel image.
747           This adds debug symbols to the kernel and modules (gcc -g), and
748           is needed if you intend to use kernel crashdump or binary object
749           tools like crash, kgdb, LKCD, gdb, etc on the kernel.
750           Say Y here only if you plan to debug the kernel.
751
752           If unsure, say N.
753
754 config DEBUG_INFO_REDUCED
755         bool "Reduce debugging information"
756         depends on DEBUG_INFO
757         help
758           If you say Y here gcc is instructed to generate less debugging
759           information for structure types. This means that tools that
760           need full debugging information (like kgdb or systemtap) won't
761           be happy. But if you merely need debugging information to
762           resolve line numbers there is no loss. Advantage is that
763           build directory object sizes shrink dramatically over a full
764           DEBUG_INFO build and compile times are reduced too.
765           Only works with newer gcc versions.
766
767 config DEBUG_VM
768         bool "Debug VM"
769         depends on DEBUG_KERNEL
770         help
771           Enable this to turn on extended checks in the virtual-memory system
772           that may impact performance.
773
774           If unsure, say N.
775
776 config DEBUG_VM_RB
777         bool "Debug VM red-black trees"
778         depends on DEBUG_VM
779         help
780           Enable this to turn on more extended checks in the virtual-memory
781           system that may impact performance.
782
783           If unsure, say N.
784
785 config DEBUG_VIRTUAL
786         bool "Debug VM translations"
787         depends on DEBUG_KERNEL && X86
788         help
789           Enable some costly sanity checks in virtual to page code. This can
790           catch mistakes with virt_to_page() and friends.
791
792           If unsure, say N.
793
794 config DEBUG_NOMMU_REGIONS
795         bool "Debug the global anon/private NOMMU mapping region tree"
796         depends on DEBUG_KERNEL && !MMU
797         help
798           This option causes the global tree of anonymous and private mapping
799           regions to be regularly checked for invalid topology.
800
801 config DEBUG_WRITECOUNT
802         bool "Debug filesystem writers count"
803         depends on DEBUG_KERNEL
804         help
805           Enable this to catch wrong use of the writers count in struct
806           vfsmount.  This will increase the size of each file struct by
807           32 bits.
808
809           If unsure, say N.
810
811 config DEBUG_MEMORY_INIT
812         bool "Debug memory initialisation" if EXPERT
813         default !EXPERT
814         help
815           Enable this for additional checks during memory initialisation.
816           The sanity checks verify aspects of the VM such as the memory model
817           and other information provided by the architecture. Verbose
818           information will be printed at KERN_DEBUG loglevel depending
819           on the mminit_loglevel= command-line option.
820
821           If unsure, say Y
822
823 config DEBUG_LIST
824         bool "Debug linked list manipulation"
825         depends on DEBUG_KERNEL
826         help
827           Enable this to turn on extended checks in the linked-list
828           walking routines.
829
830           If unsure, say N.
831
832 config TEST_LIST_SORT
833         bool "Linked list sorting test"
834         depends on DEBUG_KERNEL
835         help
836           Enable this to turn on 'list_sort()' function test. This test is
837           executed only once during system boot, so affects only boot time.
838
839           If unsure, say N.
840
841 config DEBUG_SG
842         bool "Debug SG table operations"
843         depends on DEBUG_KERNEL
844         help
845           Enable this to turn on checks on scatter-gather tables. This can
846           help find problems with drivers that do not properly initialize
847           their sg tables.
848
849           If unsure, say N.
850
851 config DEBUG_NOTIFIERS
852         bool "Debug notifier call chains"
853         depends on DEBUG_KERNEL
854         help
855           Enable this to turn on sanity checking for notifier call chains.
856           This is most useful for kernel developers to make sure that
857           modules properly unregister themselves from notifier chains.
858           This is a relatively cheap check but if you care about maximum
859           performance, say N.
860
861 config DEBUG_CREDENTIALS
862         bool "Debug credential management"
863         depends on DEBUG_KERNEL
864         help
865           Enable this to turn on some debug checking for credential
866           management.  The additional code keeps track of the number of
867           pointers from task_structs to any given cred struct, and checks to
868           see that this number never exceeds the usage count of the cred
869           struct.
870
871           Furthermore, if SELinux is enabled, this also checks that the
872           security pointer in the cred struct is never seen to be invalid.
873
874           If unsure, say N.
875
876 #
877 # Select this config option from the architecture Kconfig, if it
878 # is preferred to always offer frame pointers as a config
879 # option on the architecture (regardless of KERNEL_DEBUG):
880 #
881 config ARCH_WANT_FRAME_POINTERS
882         bool
883         help
884
885 config FRAME_POINTER
886         bool "Compile the kernel with frame pointers"
887         depends on DEBUG_KERNEL && \
888                 (CRIS || M68K || FRV || UML || \
889                  AVR32 || SUPERH || BLACKFIN || MN10300 || METAG) || \
890                 ARCH_WANT_FRAME_POINTERS
891         default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS
892         help
893           If you say Y here the resulting kernel image will be slightly
894           larger and slower, but it gives very useful debugging information
895           in case of kernel bugs. (precise oopses/stacktraces/warnings)
896
897 config BOOT_PRINTK_DELAY
898         bool "Delay each boot printk message by N milliseconds"
899         depends on DEBUG_KERNEL && PRINTK && GENERIC_CALIBRATE_DELAY
900         help
901           This build option allows you to read kernel boot messages
902           by inserting a short delay after each one.  The delay is
903           specified in milliseconds on the kernel command line,
904           using "boot_delay=N".
905
906           It is likely that you would also need to use "lpj=M" to preset
907           the "loops per jiffie" value.
908           See a previous boot log for the "lpj" value to use for your
909           system, and then set "lpj=M" before setting "boot_delay=N".
910           NOTE:  Using this option may adversely affect SMP systems.
911           I.e., processors other than the first one may not boot up.
912           BOOT_PRINTK_DELAY also may cause LOCKUP_DETECTOR to detect
913           what it believes to be lockup conditions.
914
915 menu "RCU Debugging"
916
917 config PROVE_RCU
918         bool "RCU debugging: prove RCU correctness"
919         depends on PROVE_LOCKING
920         default n
921         help
922          This feature enables lockdep extensions that check for correct
923          use of RCU APIs.  This is currently under development.  Say Y
924          if you want to debug RCU usage or help work on the PROVE_RCU
925          feature.
926
927          Say N if you are unsure.
928
929 config PROVE_RCU_REPEATEDLY
930         bool "RCU debugging: don't disable PROVE_RCU on first splat"
931         depends on PROVE_RCU
932         default n
933         help
934          By itself, PROVE_RCU will disable checking upon issuing the
935          first warning (or "splat").  This feature prevents such
936          disabling, allowing multiple RCU-lockdep warnings to be printed
937          on a single reboot.
938
939          Say Y to allow multiple RCU-lockdep warnings per boot.
940
941          Say N if you are unsure.
942
943 config PROVE_RCU_DELAY
944         bool "RCU debugging: preemptible RCU race provocation"
945         depends on DEBUG_KERNEL && PREEMPT_RCU
946         default n
947         help
948          There is a class of races that involve an unlikely preemption
949          of __rcu_read_unlock() just after ->rcu_read_lock_nesting has
950          been set to INT_MIN.  This feature inserts a delay at that
951          point to increase the probability of these races.
952
953          Say Y to increase probability of preemption of __rcu_read_unlock().
954
955          Say N if you are unsure.
956
957 config SPARSE_RCU_POINTER
958         bool "RCU debugging: sparse-based checks for pointer usage"
959         default n
960         help
961          This feature enables the __rcu sparse annotation for
962          RCU-protected pointers.  This annotation will cause sparse
963          to flag any non-RCU used of annotated pointers.  This can be
964          helpful when debugging RCU usage.  Please note that this feature
965          is not intended to enforce code cleanliness; it is instead merely
966          a debugging aid.
967
968          Say Y to make sparse flag questionable use of RCU-protected pointers
969
970          Say N if you are unsure.
971
972 config RCU_TORTURE_TEST
973         tristate "torture tests for RCU"
974         depends on DEBUG_KERNEL
975         default n
976         help
977           This option provides a kernel module that runs torture tests
978           on the RCU infrastructure.  The kernel module may be built
979           after the fact on the running kernel to be tested, if desired.
980
981           Say Y here if you want RCU torture tests to be built into
982           the kernel.
983           Say M if you want the RCU torture tests to build as a module.
984           Say N if you are unsure.
985
986 config RCU_TORTURE_TEST_RUNNABLE
987         bool "torture tests for RCU runnable by default"
988         depends on RCU_TORTURE_TEST = y
989         default n
990         help
991           This option provides a way to build the RCU torture tests
992           directly into the kernel without them starting up at boot
993           time.  You can use /proc/sys/kernel/rcutorture_runnable
994           to manually override this setting.  This /proc file is
995           available only when the RCU torture tests have been built
996           into the kernel.
997
998           Say Y here if you want the RCU torture tests to start during
999           boot (you probably don't).
1000           Say N here if you want the RCU torture tests to start only
1001           after being manually enabled via /proc.
1002
1003 config RCU_CPU_STALL_TIMEOUT
1004         int "RCU CPU stall timeout in seconds"
1005         depends on RCU_STALL_COMMON
1006         range 3 300
1007         default 21
1008         help
1009           If a given RCU grace period extends more than the specified
1010           number of seconds, a CPU stall warning is printed.  If the
1011           RCU grace period persists, additional CPU stall warnings are
1012           printed at more widely spaced intervals.
1013
1014 config RCU_CPU_STALL_VERBOSE
1015         bool "Print additional per-task information for RCU_CPU_STALL_DETECTOR"
1016         depends on TREE_PREEMPT_RCU
1017         default y
1018         help
1019           This option causes RCU to printk detailed per-task information
1020           for any tasks that are stalling the current RCU grace period.
1021
1022           Say N if you are unsure.
1023
1024           Say Y if you want to enable such checks.
1025
1026 config RCU_CPU_STALL_INFO
1027         bool "Print additional diagnostics on RCU CPU stall"
1028         depends on (TREE_RCU || TREE_PREEMPT_RCU) && DEBUG_KERNEL
1029         default n
1030         help
1031           For each stalled CPU that is aware of the current RCU grace
1032           period, print out additional per-CPU diagnostic information
1033           regarding scheduling-clock ticks, idle state, and,
1034           for RCU_FAST_NO_HZ kernels, idle-entry state.
1035
1036           Say N if you are unsure.
1037
1038           Say Y if you want to enable such diagnostics.
1039
1040 config RCU_TRACE
1041         bool "Enable tracing for RCU"
1042         depends on DEBUG_KERNEL
1043         select TRACE_CLOCK
1044         help
1045           This option provides tracing in RCU which presents stats
1046           in debugfs for debugging RCU implementation.
1047
1048           Say Y here if you want to enable RCU tracing
1049           Say N if you are unsure.
1050
1051 endmenu # "RCU Debugging"
1052
1053 config KPROBES_SANITY_TEST
1054         bool "Kprobes sanity tests"
1055         depends on DEBUG_KERNEL
1056         depends on KPROBES
1057         default n
1058         help
1059           This option provides for testing basic kprobes functionality on
1060           boot. A sample kprobe, jprobe and kretprobe are inserted and
1061           verified for functionality.
1062
1063           Say N if you are unsure.
1064
1065 config BACKTRACE_SELF_TEST
1066         tristate "Self test for the backtrace code"
1067         depends on DEBUG_KERNEL
1068         default n
1069         help
1070           This option provides a kernel module that can be used to test
1071           the kernel stack backtrace code. This option is not useful
1072           for distributions or general kernels, but only for kernel
1073           developers working on architecture code.
1074
1075           Note that if you want to also test saved backtraces, you will
1076           have to enable STACKTRACE as well.
1077
1078           Say N if you are unsure.
1079
1080 config DEBUG_BLOCK_EXT_DEVT
1081         bool "Force extended block device numbers and spread them"
1082         depends on DEBUG_KERNEL
1083         depends on BLOCK
1084         default n
1085         help
1086           BIG FAT WARNING: ENABLING THIS OPTION MIGHT BREAK BOOTING ON
1087           SOME DISTRIBUTIONS.  DO NOT ENABLE THIS UNLESS YOU KNOW WHAT
1088           YOU ARE DOING.  Distros, please enable this and fix whatever
1089           is broken.
1090
1091           Conventionally, block device numbers are allocated from
1092           predetermined contiguous area.  However, extended block area
1093           may introduce non-contiguous block device numbers.  This
1094           option forces most block device numbers to be allocated from
1095           the extended space and spreads them to discover kernel or
1096           userland code paths which assume predetermined contiguous
1097           device number allocation.
1098
1099           Note that turning on this debug option shuffles all the
1100           device numbers for all IDE and SCSI devices including libata
1101           ones, so root partition specified using device number
1102           directly (via rdev or root=MAJ:MIN) won't work anymore.
1103           Textual device names (root=/dev/sdXn) will continue to work.
1104
1105           Say N if you are unsure.
1106
1107 config DEBUG_FORCE_WEAK_PER_CPU
1108         bool "Force weak per-cpu definitions"
1109         depends on DEBUG_KERNEL
1110         help
1111           s390 and alpha require percpu variables in modules to be
1112           defined weak to work around addressing range issue which
1113           puts the following two restrictions on percpu variable
1114           definitions.
1115
1116           1. percpu symbols must be unique whether static or not
1117           2. percpu variables can't be defined inside a function
1118
1119           To ensure that generic code follows the above rules, this
1120           option forces all percpu variables to be defined as weak.
1121
1122 config DEBUG_PER_CPU_MAPS
1123         bool "Debug access to per_cpu maps"
1124         depends on DEBUG_KERNEL
1125         depends on SMP
1126         help
1127           Say Y to verify that the per_cpu map being accessed has
1128           been set up. This adds a fair amount of code to kernel memory
1129           and decreases performance.
1130
1131           Say N if unsure.
1132
1133 config LKDTM
1134         tristate "Linux Kernel Dump Test Tool Module"
1135         depends on DEBUG_FS
1136         depends on BLOCK
1137         default n
1138         help
1139         This module enables testing of the different dumping mechanisms by
1140         inducing system failures at predefined crash points.
1141         If you don't need it: say N
1142         Choose M here to compile this code as a module. The module will be
1143         called lkdtm.
1144
1145         Documentation on how to use the module can be found in
1146         Documentation/fault-injection/provoke-crashes.txt
1147
1148 config NOTIFIER_ERROR_INJECTION
1149         tristate "Notifier error injection"
1150         depends on DEBUG_KERNEL
1151         select DEBUG_FS
1152         help
1153           This option provides the ability to inject artificial errors to
1154           specified notifier chain callbacks. It is useful to test the error
1155           handling of notifier call chain failures.
1156
1157           Say N if unsure.
1158
1159 config CPU_NOTIFIER_ERROR_INJECT
1160         tristate "CPU notifier error injection module"
1161         depends on HOTPLUG_CPU && NOTIFIER_ERROR_INJECTION
1162         help
1163           This option provides a kernel module that can be used to test
1164           the error handling of the cpu notifiers by injecting artificial
1165           errors to CPU notifier chain callbacks.  It is controlled through
1166           debugfs interface under /sys/kernel/debug/notifier-error-inject/cpu
1167
1168           If the notifier call chain should be failed with some events
1169           notified, write the error code to "actions/<notifier event>/error".
1170
1171           Example: Inject CPU offline error (-1 == -EPERM)
1172
1173           # cd /sys/kernel/debug/notifier-error-inject/cpu
1174           # echo -1 > actions/CPU_DOWN_PREPARE/error
1175           # echo 0 > /sys/devices/system/cpu/cpu1/online
1176           bash: echo: write error: Operation not permitted
1177
1178           To compile this code as a module, choose M here: the module will
1179           be called cpu-notifier-error-inject.
1180
1181           If unsure, say N.
1182
1183 config PM_NOTIFIER_ERROR_INJECT
1184         tristate "PM notifier error injection module"
1185         depends on PM && NOTIFIER_ERROR_INJECTION
1186         default m if PM_DEBUG
1187         help
1188           This option provides the ability to inject artificial errors to
1189           PM notifier chain callbacks.  It is controlled through debugfs
1190           interface /sys/kernel/debug/notifier-error-inject/pm
1191
1192           If the notifier call chain should be failed with some events
1193           notified, write the error code to "actions/<notifier event>/error".
1194
1195           Example: Inject PM suspend error (-12 = -ENOMEM)
1196
1197           # cd /sys/kernel/debug/notifier-error-inject/pm/
1198           # echo -12 > actions/PM_SUSPEND_PREPARE/error
1199           # echo mem > /sys/power/state
1200           bash: echo: write error: Cannot allocate memory
1201
1202           To compile this code as a module, choose M here: the module will
1203           be called pm-notifier-error-inject.
1204
1205           If unsure, say N.
1206
1207 config MEMORY_NOTIFIER_ERROR_INJECT
1208         tristate "Memory hotplug notifier error injection module"
1209         depends on MEMORY_HOTPLUG_SPARSE && NOTIFIER_ERROR_INJECTION
1210         help
1211           This option provides the ability to inject artificial errors to
1212           memory hotplug notifier chain callbacks.  It is controlled through
1213           debugfs interface under /sys/kernel/debug/notifier-error-inject/memory
1214
1215           If the notifier call chain should be failed with some events
1216           notified, write the error code to "actions/<notifier event>/error".
1217
1218           Example: Inject memory hotplug offline error (-12 == -ENOMEM)
1219
1220           # cd /sys/kernel/debug/notifier-error-inject/memory
1221           # echo -12 > actions/MEM_GOING_OFFLINE/error
1222           # echo offline > /sys/devices/system/memory/memoryXXX/state
1223           bash: echo: write error: Cannot allocate memory
1224
1225           To compile this code as a module, choose M here: the module will
1226           be called memory-notifier-error-inject.
1227
1228           If unsure, say N.
1229
1230 config OF_RECONFIG_NOTIFIER_ERROR_INJECT
1231         tristate "OF reconfig notifier error injection module"
1232         depends on OF_DYNAMIC && NOTIFIER_ERROR_INJECTION
1233         help
1234           This option provides the ability to inject artificial errors to
1235           OF reconfig notifier chain callbacks.  It is controlled
1236           through debugfs interface under
1237           /sys/kernel/debug/notifier-error-inject/OF-reconfig/
1238
1239           If the notifier call chain should be failed with some events
1240           notified, write the error code to "actions/<notifier event>/error".
1241
1242           To compile this code as a module, choose M here: the module will
1243           be called of-reconfig-notifier-error-inject.
1244
1245           If unsure, say N.
1246
1247 config FAULT_INJECTION
1248         bool "Fault-injection framework"
1249         depends on DEBUG_KERNEL
1250         help
1251           Provide fault-injection framework.
1252           For more details, see Documentation/fault-injection/.
1253
1254 config FAILSLAB
1255         bool "Fault-injection capability for kmalloc"
1256         depends on FAULT_INJECTION
1257         depends on SLAB || SLUB
1258         help
1259           Provide fault-injection capability for kmalloc.
1260
1261 config FAIL_PAGE_ALLOC
1262         bool "Fault-injection capabilitiy for alloc_pages()"
1263         depends on FAULT_INJECTION
1264         help
1265           Provide fault-injection capability for alloc_pages().
1266
1267 config FAIL_MAKE_REQUEST
1268         bool "Fault-injection capability for disk IO"
1269         depends on FAULT_INJECTION && BLOCK
1270         help
1271           Provide fault-injection capability for disk IO.
1272
1273 config FAIL_IO_TIMEOUT
1274         bool "Fault-injection capability for faking disk interrupts"
1275         depends on FAULT_INJECTION && BLOCK
1276         help
1277           Provide fault-injection capability on end IO handling. This
1278           will make the block layer "forget" an interrupt as configured,
1279           thus exercising the error handling.
1280
1281           Only works with drivers that use the generic timeout handling,
1282           for others it wont do anything.
1283
1284 config FAIL_MMC_REQUEST
1285         bool "Fault-injection capability for MMC IO"
1286         select DEBUG_FS
1287         depends on FAULT_INJECTION && MMC
1288         help
1289           Provide fault-injection capability for MMC IO.
1290           This will make the mmc core return data errors. This is
1291           useful to test the error handling in the mmc block device
1292           and to test how the mmc host driver handles retries from
1293           the block device.
1294
1295 config FAULT_INJECTION_DEBUG_FS
1296         bool "Debugfs entries for fault-injection capabilities"
1297         depends on FAULT_INJECTION && SYSFS && DEBUG_FS
1298         help
1299           Enable configuration of fault-injection capabilities via debugfs.
1300
1301 config FAULT_INJECTION_STACKTRACE_FILTER
1302         bool "stacktrace filter for fault-injection capabilities"
1303         depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT
1304         depends on !X86_64
1305         select STACKTRACE
1306         select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
1307         help
1308           Provide stacktrace filter for fault-injection capabilities
1309
1310 config LATENCYTOP
1311         bool "Latency measuring infrastructure"
1312         depends on HAVE_LATENCYTOP_SUPPORT
1313         depends on DEBUG_KERNEL
1314         depends on STACKTRACE_SUPPORT
1315         depends on PROC_FS
1316         select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND
1317         select KALLSYMS
1318         select KALLSYMS_ALL
1319         select STACKTRACE
1320         select SCHEDSTATS
1321         select SCHED_DEBUG
1322         help
1323           Enable this option if you want to use the LatencyTOP tool
1324           to find out which userspace is blocking on what kernel operations.
1325
1326 config ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS
1327         bool
1328
1329 config DEBUG_STRICT_USER_COPY_CHECKS
1330         bool "Strict user copy size checks"
1331         depends on ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS
1332         depends on DEBUG_KERNEL && !TRACE_BRANCH_PROFILING
1333         help
1334           Enabling this option turns a certain set of sanity checks for user
1335           copy operations into compile time failures.
1336
1337           The copy_from_user() etc checks are there to help test if there
1338           are sufficient security checks on the length argument of
1339           the copy operation, by having gcc prove that the argument is
1340           within bounds.
1341
1342           If unsure, say N.
1343
1344 source mm/Kconfig.debug
1345 source kernel/trace/Kconfig
1346
1347 config RBTREE_TEST
1348         tristate "Red-Black tree test"
1349         depends on m && DEBUG_KERNEL
1350         help
1351           A benchmark measuring the performance of the rbtree library.
1352           Also includes rbtree invariant checks.
1353
1354 config INTERVAL_TREE_TEST
1355         tristate "Interval tree test"
1356         depends on m && DEBUG_KERNEL
1357         help
1358           A benchmark measuring the performance of the interval tree library
1359
1360 config PROVIDE_OHCI1394_DMA_INIT
1361         bool "Remote debugging over FireWire early on boot"
1362         depends on PCI && X86
1363         help
1364           If you want to debug problems which hang or crash the kernel early
1365           on boot and the crashing machine has a FireWire port, you can use
1366           this feature to remotely access the memory of the crashed machine
1367           over FireWire. This employs remote DMA as part of the OHCI1394
1368           specification which is now the standard for FireWire controllers.
1369
1370           With remote DMA, you can monitor the printk buffer remotely using
1371           firescope and access all memory below 4GB using fireproxy from gdb.
1372           Even controlling a kernel debugger is possible using remote DMA.
1373
1374           Usage:
1375
1376           If ohci1394_dma=early is used as boot parameter, it will initialize
1377           all OHCI1394 controllers which are found in the PCI config space.
1378
1379           As all changes to the FireWire bus such as enabling and disabling
1380           devices cause a bus reset and thereby disable remote DMA for all
1381           devices, be sure to have the cable plugged and FireWire enabled on
1382           the debugging host before booting the debug target for debugging.
1383
1384           This code (~1k) is freed after boot. By then, the firewire stack
1385           in charge of the OHCI-1394 controllers should be used instead.
1386
1387           See Documentation/debugging-via-ohci1394.txt for more information.
1388
1389 config FIREWIRE_OHCI_REMOTE_DMA
1390         bool "Remote debugging over FireWire with firewire-ohci"
1391         depends on FIREWIRE_OHCI
1392         help
1393           This option lets you use the FireWire bus for remote debugging
1394           with help of the firewire-ohci driver. It enables unfiltered
1395           remote DMA in firewire-ohci.
1396           See Documentation/debugging-via-ohci1394.txt for more information.
1397
1398           If unsure, say N.
1399
1400 config BUILD_DOCSRC
1401         bool "Build targets in Documentation/ tree"
1402         depends on HEADERS_CHECK
1403         help
1404           This option attempts to build objects from the source files in the
1405           kernel Documentation/ tree.
1406
1407           Say N if you are unsure.
1408
1409 config DYNAMIC_DEBUG
1410         bool "Enable dynamic printk() support"
1411         default n
1412         depends on PRINTK
1413         depends on DEBUG_FS
1414         help
1415
1416           Compiles debug level messages into the kernel, which would not
1417           otherwise be available at runtime. These messages can then be
1418           enabled/disabled based on various levels of scope - per source file,
1419           function, module, format string, and line number. This mechanism
1420           implicitly compiles in all pr_debug() and dev_dbg() calls, which
1421           enlarges the kernel text size by about 2%.
1422
1423           If a source file is compiled with DEBUG flag set, any
1424           pr_debug() calls in it are enabled by default, but can be
1425           disabled at runtime as below.  Note that DEBUG flag is
1426           turned on by many CONFIG_*DEBUG* options.
1427
1428           Usage:
1429
1430           Dynamic debugging is controlled via the 'dynamic_debug/control' file,
1431           which is contained in the 'debugfs' filesystem. Thus, the debugfs
1432           filesystem must first be mounted before making use of this feature.
1433           We refer the control file as: <debugfs>/dynamic_debug/control. This
1434           file contains a list of the debug statements that can be enabled. The
1435           format for each line of the file is:
1436
1437                 filename:lineno [module]function flags format
1438
1439           filename : source file of the debug statement
1440           lineno : line number of the debug statement
1441           module : module that contains the debug statement
1442           function : function that contains the debug statement
1443           flags : '=p' means the line is turned 'on' for printing
1444           format : the format used for the debug statement
1445
1446           From a live system:
1447
1448                 nullarbor:~ # cat <debugfs>/dynamic_debug/control
1449                 # filename:lineno [module]function flags format
1450                 fs/aio.c:222 [aio]__put_ioctx =_ "__put_ioctx:\040freeing\040%p\012"
1451                 fs/aio.c:248 [aio]ioctx_alloc =_ "ENOMEM:\040nr_events\040too\040high\012"
1452                 fs/aio.c:1770 [aio]sys_io_cancel =_ "calling\040cancel\012"
1453
1454           Example usage:
1455
1456                 // enable the message at line 1603 of file svcsock.c
1457                 nullarbor:~ # echo -n 'file svcsock.c line 1603 +p' >
1458                                                 <debugfs>/dynamic_debug/control
1459
1460                 // enable all the messages in file svcsock.c
1461                 nullarbor:~ # echo -n 'file svcsock.c +p' >
1462                                                 <debugfs>/dynamic_debug/control
1463
1464                 // enable all the messages in the NFS server module
1465                 nullarbor:~ # echo -n 'module nfsd +p' >
1466                                                 <debugfs>/dynamic_debug/control
1467
1468                 // enable all 12 messages in the function svc_process()
1469                 nullarbor:~ # echo -n 'func svc_process +p' >
1470                                                 <debugfs>/dynamic_debug/control
1471
1472                 // disable all 12 messages in the function svc_process()
1473                 nullarbor:~ # echo -n 'func svc_process -p' >
1474                                                 <debugfs>/dynamic_debug/control
1475
1476           See Documentation/dynamic-debug-howto.txt for additional information.
1477
1478 config DMA_API_DEBUG
1479         bool "Enable debugging of DMA-API usage"
1480         depends on HAVE_DMA_API_DEBUG
1481         help
1482           Enable this option to debug the use of the DMA API by device drivers.
1483           With this option you will be able to detect common bugs in device
1484           drivers like double-freeing of DMA mappings or freeing mappings that
1485           were never allocated.
1486           This option causes a performance degredation.  Use only if you want
1487           to debug device drivers. If unsure, say N.
1488
1489 config ATOMIC64_SELFTEST
1490         bool "Perform an atomic64_t self-test at boot"
1491         help
1492           Enable this option to test the atomic64_t functions at boot.
1493
1494           If unsure, say N.
1495
1496 config ASYNC_RAID6_TEST
1497         tristate "Self test for hardware accelerated raid6 recovery"
1498         depends on ASYNC_RAID6_RECOV
1499         select ASYNC_MEMCPY
1500         ---help---
1501           This is a one-shot self test that permutes through the
1502           recovery of all the possible two disk failure scenarios for a
1503           N-disk array.  Recovery is performed with the asynchronous
1504           raid6 recovery routines, and will optionally use an offload
1505           engine if one is available.
1506
1507           If unsure, say N.
1508
1509 source "samples/Kconfig"
1510
1511 source "lib/Kconfig.kgdb"
1512
1513 source "lib/Kconfig.kmemcheck"
1514
1515 config TEST_STRING_HELPERS
1516         tristate "Test functions located in the string_helpers module at runtime"
1517
1518 config TEST_KSTRTOX
1519         tristate "Test kstrto*() family of functions at runtime"