remove libdss from Makefile
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / lib / Kconfig.debug
CommitLineData
604ff0dc 1menu "printk and dmesg options"
1da177e4
LT
2
3config PRINTK_TIME
4 bool "Show timing information on printks"
d3b8b6e5 5 depends on PRINTK
1da177e4 6 help
649e6ee3
KS
7 Selecting this option causes time stamps of the printk()
8 messages to be added to the output of the syslog() system
9 call and at the console.
10
11 The timestamp is always recorded internally, and exported
12 to /dev/kmsg. This flag just specifies if the timestamp should
13 be included, not that the timestamp is recorded.
14
15 The behavior is also controlled by the kernel command line
8c27ceff 16 parameter printk.time=1. See Documentation/admin-guide/kernel-parameters.rst
1da177e4 17
a8cfdc68
OJ
18config CONSOLE_LOGLEVEL_DEFAULT
19 int "Default console loglevel (1-15)"
20 range 1 15
21 default "7"
22 help
23 Default loglevel to determine what will be printed on the console.
24
25 Setting a default here is equivalent to passing in loglevel=<x> in
26 the kernel bootargs. loglevel=<x> continues to override whatever
27 value is specified here as well.
28
50f4d9bd 29 Note: This does not affect the log level of un-prefixed printk()
a8cfdc68
OJ
30 usage in the kernel. That is controlled by the MESSAGE_LOGLEVEL_DEFAULT
31 option.
32
3d28310a
HK
33config PRINTK_PROCESS
34 bool "Show process information on printks"
35 depends on PRINTK
36 help
37 Selecting this option causes process to be
38 included in printk output. Or add printk.process=1 at boot-time.
39
00901b25 40config PRINTK_UTC_TIME
41 bool "Show utc information on printks"
42 depends on PRINTK
43 help
44 Selecting this option causes utc to be
45 included in printk output.
46
42a9dc0b 47config MESSAGE_LOGLEVEL_DEFAULT
5af5bcb8
MSB
48 int "Default message log level (1-7)"
49 range 1 7
50 default "4"
51 help
52 Default log level for printk statements with no specified priority.
53
54 This was hard-coded to KERN_WARNING since at least 2.6.10 but folks
55 that are auditing their logs closely may want to set it to a lower
56 priority.
57
a8cfdc68
OJ
58 Note: This does not affect what message level gets printed on the console
59 by default. To change that, use loglevel=<x> in the kernel bootargs,
60 or pick a different CONSOLE_LOGLEVEL_DEFAULT configuration value.
61
604ff0dc
DH
62config BOOT_PRINTK_DELAY
63 bool "Delay each boot printk message by N milliseconds"
64 depends on DEBUG_KERNEL && PRINTK && GENERIC_CALIBRATE_DELAY
65 help
66 This build option allows you to read kernel boot messages
67 by inserting a short delay after each one. The delay is
68 specified in milliseconds on the kernel command line,
69 using "boot_delay=N".
70
71 It is likely that you would also need to use "lpj=M" to preset
72 the "loops per jiffie" value.
73 See a previous boot log for the "lpj" value to use for your
74 system, and then set "lpj=M" before setting "boot_delay=N".
75 NOTE: Using this option may adversely affect SMP systems.
76 I.e., processors other than the first one may not boot up.
77 BOOT_PRINTK_DELAY also may cause LOCKUP_DETECTOR to detect
78 what it believes to be lockup conditions.
79
80config DYNAMIC_DEBUG
81 bool "Enable dynamic printk() support"
82 default n
83 depends on PRINTK
84 depends on DEBUG_FS
85 help
86
87 Compiles debug level messages into the kernel, which would not
88 otherwise be available at runtime. These messages can then be
89 enabled/disabled based on various levels of scope - per source file,
90 function, module, format string, and line number. This mechanism
91 implicitly compiles in all pr_debug() and dev_dbg() calls, which
92 enlarges the kernel text size by about 2%.
93
94 If a source file is compiled with DEBUG flag set, any
95 pr_debug() calls in it are enabled by default, but can be
96 disabled at runtime as below. Note that DEBUG flag is
97 turned on by many CONFIG_*DEBUG* options.
98
99 Usage:
100
101 Dynamic debugging is controlled via the 'dynamic_debug/control' file,
102 which is contained in the 'debugfs' filesystem. Thus, the debugfs
103 filesystem must first be mounted before making use of this feature.
104 We refer the control file as: <debugfs>/dynamic_debug/control. This
105 file contains a list of the debug statements that can be enabled. The
106 format for each line of the file is:
107
108 filename:lineno [module]function flags format
109
110 filename : source file of the debug statement
111 lineno : line number of the debug statement
112 module : module that contains the debug statement
113 function : function that contains the debug statement
114 flags : '=p' means the line is turned 'on' for printing
115 format : the format used for the debug statement
116
117 From a live system:
118
119 nullarbor:~ # cat <debugfs>/dynamic_debug/control
120 # filename:lineno [module]function flags format
121 fs/aio.c:222 [aio]__put_ioctx =_ "__put_ioctx:\040freeing\040%p\012"
122 fs/aio.c:248 [aio]ioctx_alloc =_ "ENOMEM:\040nr_events\040too\040high\012"
123 fs/aio.c:1770 [aio]sys_io_cancel =_ "calling\040cancel\012"
124
125 Example usage:
126
127 // enable the message at line 1603 of file svcsock.c
128 nullarbor:~ # echo -n 'file svcsock.c line 1603 +p' >
129 <debugfs>/dynamic_debug/control
130
131 // enable all the messages in file svcsock.c
132 nullarbor:~ # echo -n 'file svcsock.c +p' >
133 <debugfs>/dynamic_debug/control
134
135 // enable all the messages in the NFS server module
136 nullarbor:~ # echo -n 'module nfsd +p' >
137 <debugfs>/dynamic_debug/control
138
139 // enable all 12 messages in the function svc_process()
140 nullarbor:~ # echo -n 'func svc_process +p' >
141 <debugfs>/dynamic_debug/control
142
143 // disable all 12 messages in the function svc_process()
144 nullarbor:~ # echo -n 'func svc_process -p' >
145 <debugfs>/dynamic_debug/control
146
f8998c22
HH
147 See Documentation/admin-guide/dynamic-debug-howto.rst for additional
148 information.
604ff0dc
DH
149
150endmenu # "printk and dmesg options"
151
6dfc0665
DH
152menu "Compile-time checks and compiler options"
153
154config DEBUG_INFO
155 bool "Compile the kernel with debug info"
12b13835 156 depends on DEBUG_KERNEL && !COMPILE_TEST
6dfc0665
DH
157 help
158 If you say Y here the resulting kernel image will include
159 debugging info resulting in a larger kernel image.
160 This adds debug symbols to the kernel and modules (gcc -g), and
161 is needed if you intend to use kernel crashdump or binary object
162 tools like crash, kgdb, LKCD, gdb, etc on the kernel.
163 Say Y here only if you plan to debug the kernel.
164
165 If unsure, say N.
166
167config DEBUG_INFO_REDUCED
168 bool "Reduce debugging information"
169 depends on DEBUG_INFO
170 help
171 If you say Y here gcc is instructed to generate less debugging
172 information for structure types. This means that tools that
173 need full debugging information (like kgdb or systemtap) won't
174 be happy. But if you merely need debugging information to
175 resolve line numbers there is no loss. Advantage is that
176 build directory object sizes shrink dramatically over a full
177 DEBUG_INFO build and compile times are reduced too.
178 Only works with newer gcc versions.
179
866ced95
AK
180config DEBUG_INFO_SPLIT
181 bool "Produce split debuginfo in .dwo files"
da0510c4 182 depends on DEBUG_INFO && !FRV
866ced95
AK
183 help
184 Generate debug info into separate .dwo files. This significantly
185 reduces the build directory size for builds with DEBUG_INFO,
186 because it stores the information only once on disk in .dwo
187 files instead of multiple times in object files and executables.
188 In addition the debug information is also compressed.
189
190 Requires recent gcc (4.7+) and recent gdb/binutils.
191 Any tool that packages or reads debug information would need
192 to know about the .dwo files and include them.
193 Incompatible with older versions of ccache.
194
bfaf2dd3
AK
195config DEBUG_INFO_DWARF4
196 bool "Generate dwarf4 debuginfo"
197 depends on DEBUG_INFO
198 help
199 Generate dwarf4 debug info. This requires recent versions
200 of gcc and gdb. It makes the debug information larger.
201 But it significantly improves the success of resolving
202 variables in gdb on optimized code.
203
3ee7b3fa
JK
204config GDB_SCRIPTS
205 bool "Provide GDB scripts for kernel debugging"
206 depends on DEBUG_INFO
207 help
208 This creates the required links to GDB helper scripts in the
209 build directory. If you load vmlinux into gdb, the helper
210 scripts will be automatically imported by gdb as well, and
211 additional functions are available to analyze a Linux kernel
700199b0
AP
212 instance. See Documentation/dev-tools/gdb-kernel-debugging.rst
213 for further details.
3ee7b3fa 214
de488443
JG
215config ENABLE_WARN_DEPRECATED
216 bool "Enable __deprecated logic"
217 default y
218 help
219 Enable the __deprecated logic in the kernel build.
220 Disable this to suppress the "warning: 'foo' is deprecated
221 (declared at kernel/power/somefile.c:1234)" messages.
222
cebc04ba
AM
223config ENABLE_MUST_CHECK
224 bool "Enable __must_check logic"
225 default y
226 help
227 Enable the __must_check logic in the kernel build. Disable this to
228 suppress the "warning: ignoring return value of 'foo', declared with
229 attribute warn_unused_result" messages.
1da177e4 230
35bb5b1e
AK
231config FRAME_WARN
232 int "Warn for stack frames larger than (needs gcc 4.4)"
233 range 0 8192
062cd346 234 default 3072 if KASAN_EXTRA
0e07f663 235 default 2048 if GCC_PLUGIN_LATENT_ENTROPY
432654df
HD
236 default 1280 if (!64BIT && PARISC)
237 default 1024 if (!64BIT && !PARISC)
35bb5b1e
AK
238 default 2048 if 64BIT
239 help
240 Tell gcc to warn at build time for stack frames larger than this.
241 Setting this too low will cause a lot of warnings.
242 Setting it to 0 disables the warning.
243 Requires gcc 4.4
244
99657c78
RD
245config STRIP_ASM_SYMS
246 bool "Strip assembler-generated symbols during link"
247 default n
248 help
249 Strip internal assembler-generated symbols during a link (symbols
250 that look like '.Lxxx') so they don't pollute the output of
251 get_wchan() and suchlike.
252
1873e870
AK
253config READABLE_ASM
254 bool "Generate readable assembler code"
255 depends on DEBUG_KERNEL
256 help
257 Disable some compiler optimizations that tend to generate human unreadable
258 assembler output. This may make the kernel slightly slower, but it helps
259 to keep kernel developers who have to stare a lot at assembler listings
260 sane.
261
f71d20e9
AV
262config UNUSED_SYMBOLS
263 bool "Enable unused/obsolete exported symbols"
264 default y if X86
265 help
266 Unused but exported symbols make the kernel needlessly bigger. For
267 that reason most of these unused exports will soon be removed. This
268 option is provided temporarily to provide a transition period in case
269 some external kernel module needs one of these symbols anyway. If you
270 encounter such a case in your module, consider if you are actually
271 using the right API. (rationale: since nobody in the kernel is using
272 this in a module, there is a pretty good chance it's actually the
273 wrong interface to use). If you really need the symbol, please send a
274 mail to the linux kernel mailing list mentioning the symbol and why
275 you really need it, and what the merge plan to the mainline kernel for
276 your module is.
277
48c96a36
JK
278config PAGE_OWNER
279 bool "Track page owner"
280 depends on DEBUG_KERNEL && STACKTRACE_SUPPORT
281 select DEBUG_FS
282 select STACKTRACE
f2ca0b55 283 select STACKDEPOT
48c96a36
JK
284 select PAGE_EXTENSION
285 help
286 This keeps track of what call chain is the owner of a page, may
287 help to find bare alloc_page(s) leaks. Even if you include this
288 feature on your build, it is disabled in default. You should pass
289 "page_owner=on" to boot parameter in order to enable it. Eats
290 a fair amount of memory if enabled. See tools/vm/page_owner_sort.c
291 for user-space helper.
292
293 If unsure, say N.
294
6d6955dd 295config PAGE_OWNER_ENABLE_DEFAULT
296 bool "Enable Track page owner by default"
297 depends on PAGE_OWNER
298 ---help---
299 This keeps track of what call chain is the owner of a page, may
300 help to find bare alloc_page(s) leaks. If you include this
301 feature on your build, it is enabled by default. You should pass
302 "page_owner=off" to boot parameter in order to disable it. Eats
303 a fair amount of memory if enabled. See tools/vm/page_owner_sort.c
304 for user-space helper.
305
bf4735a4
DM
306config DEBUG_FS
307 bool "Debug Filesystem"
bf4735a4
DM
308 help
309 debugfs is a virtual file system that kernel developers use to put
310 debugging files into. Enable this option to be able to read and
311 write to these files.
312
ff543332 313 For detailed documentation on the debugfs API, see
e1b4fc7a 314 Documentation/filesystems/.
ff543332 315
bf4735a4
DM
316 If unsure, say N.
317
318config HEADERS_CHECK
319 bool "Run 'make headers_check' when building vmlinux"
320 depends on !UML
321 help
322 This option will extract the user-visible kernel headers whenever
323 building the kernel, and will run basic sanity checks on them to
324 ensure that exported files do not attempt to include files which
325 were not exported, etc.
326
327 If you're making modifications to header files which are
328 relevant for userspace, say 'Y', and check the headers
329 exported to $(INSTALL_HDR_PATH) (usually 'usr/include' in
330 your build tree), to make sure they're suitable.
331
91341d4b
SR
332config DEBUG_SECTION_MISMATCH
333 bool "Enable full Section mismatch analysis"
91341d4b
SR
334 help
335 The section mismatch analysis checks if there are illegal
336 references from one section to another section.
e809ab01
MW
337 During linktime or runtime, some sections are dropped;
338 any use of code/data previously in these sections would
91341d4b 339 most likely result in an oops.
e809ab01 340 In the code, functions and variables are annotated with
0db0628d 341 __init,, etc. (see the full list in include/linux/init.h),
d6fbfa4f 342 which results in the code/data being placed in specific sections.
e809ab01
MW
343 The section mismatch analysis is always performed after a full
344 kernel build, and enabling this option causes the following
345 additional steps to occur:
346 - Add the option -fno-inline-functions-called-once to gcc commands.
347 When inlining a function annotated with __init in a non-init
348 function, we would lose the section information and thus
91341d4b 349 the analysis would not catch the illegal reference.
e809ab01
MW
350 This option tells gcc to inline less (but it does result in
351 a larger kernel).
352 - Run the section mismatch analysis for each module/built-in.o file.
353 When we run the section mismatch analysis on vmlinux.o, we
67797b92 354 lose valuable information about where the mismatch was
91341d4b
SR
355 introduced.
356 Running the analysis for each module/built-in.o file
e809ab01
MW
357 tells where the mismatch happens much closer to the
358 source. The drawback is that the same mismatch is
359 reported at least twice.
360 - Enable verbose reporting from modpost in order to help resolve
361 the section mismatches that are reported.
91341d4b 362
47490ec1
NB
363config SECTION_MISMATCH_WARN_ONLY
364 bool "Make section mismatch errors non-fatal"
365 default y
366 help
367 If you say N here, the build process will fail if there are any
368 section mismatch, instead of just throwing warnings.
369
370 If unsure, say Y.
371
6dfc0665
DH
372#
373# Select this config option from the architecture Kconfig, if it
374# is preferred to always offer frame pointers as a config
375# option on the architecture (regardless of KERNEL_DEBUG):
376#
377config ARCH_WANT_FRAME_POINTERS
378 bool
f346f4b3 379 help
f346f4b3 380
6dfc0665
DH
381config FRAME_POINTER
382 bool "Compile the kernel with frame pointers"
383 depends on DEBUG_KERNEL && \
384 (CRIS || M68K || FRV || UML || \
695c1208 385 SUPERH || BLACKFIN || MN10300 || METAG) || \
6dfc0665
DH
386 ARCH_WANT_FRAME_POINTERS
387 default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS
a304e1b8 388 help
6dfc0665
DH
389 If you say Y here the resulting kernel image will be slightly
390 larger and slower, but it gives very useful debugging information
391 in case of kernel bugs. (precise oopses/stacktraces/warnings)
a304e1b8 392
b9ab5ebb
JP
393config STACK_VALIDATION
394 bool "Compile-time stack metadata validation"
395 depends on HAVE_STACK_VALIDATION
396 default n
397 help
398 Add compile-time checks to validate stack metadata, including frame
399 pointers (if CONFIG_FRAME_POINTER is enabled). This helps ensure
400 that runtime stack traces are more reliable.
401
ee9f8fce 402 This is also a prerequisite for generation of ORC unwind data, which
8af220c9 403 is needed for CONFIG_UNWINDER_ORC.
ee9f8fce 404
b9ab5ebb
JP
405 For more information, see
406 tools/objtool/Documentation/stack-validation.txt.
407
6dfc0665
DH
408config DEBUG_FORCE_WEAK_PER_CPU
409 bool "Force weak per-cpu definitions"
410 depends on DEBUG_KERNEL
8446f1d3 411 help
6dfc0665
DH
412 s390 and alpha require percpu variables in modules to be
413 defined weak to work around addressing range issue which
414 puts the following two restrictions on percpu variable
415 definitions.
8446f1d3 416
6dfc0665
DH
417 1. percpu symbols must be unique whether static or not
418 2. percpu variables can't be defined inside a function
8446f1d3 419
6dfc0665
DH
420 To ensure that generic code follows the above rules, this
421 option forces all percpu variables to be defined as weak.
5f329089 422
6dfc0665 423endmenu # "Compiler options"
8446f1d3 424
6dfc0665
DH
425config MAGIC_SYSRQ
426 bool "Magic SysRq key"
427 depends on !UML
428 help
429 If you say Y here, you will have some control over the system even
430 if the system crashes for example during kernel debugging (e.g., you
431 will be able to flush the buffer cache to disk, reboot the system
432 immediately or dump some status information). This is accomplished
433 by pressing various keys while holding SysRq (Alt+PrintScreen). It
434 also works on a serial console (on PC hardware at least), if you
435 send a BREAK and then within 5 seconds a command keypress. The
f8998c22
HH
436 keys are documented in <file:Documentation/admin-guide/sysrq.rst>.
437 Don't say Y unless you really know what this hack does.
8446f1d3 438
8eaede49
BH
439config MAGIC_SYSRQ_DEFAULT_ENABLE
440 hex "Enable magic SysRq key functions by default"
441 depends on MAGIC_SYSRQ
442 default 0x1
443 help
444 Specifies which SysRq key functions are enabled by default.
445 This may be set to 1 or 0 to enable or disable them all, or
f8998c22 446 to a bitmask as described in Documentation/admin-guide/sysrq.rst.
8eaede49 447
732dbf3a
FF
448config MAGIC_SYSRQ_SERIAL
449 bool "Enable magic SysRq key over serial"
450 depends on MAGIC_SYSRQ
451 default y
452 help
453 Many embedded boards have a disconnected TTL level serial which can
454 generate some garbage that can lead to spurious false sysrq detects.
455 This option allows you to decide whether you want to enable the
456 magic SysRq key.
457
f346f4b3
AB
458config DEBUG_KERNEL
459 bool "Kernel debugging"
fef2c9bc 460 help
f346f4b3
AB
461 Say Y here if you are developing drivers or trying to debug and
462 identify kernel problems.
fef2c9bc 463
0610c8a8 464menu "Memory Debugging"
fef2c9bc 465
0610c8a8 466source mm/Kconfig.debug
fef2c9bc 467
0610c8a8
DH
468config DEBUG_OBJECTS
469 bool "Debug object operations"
470 depends on DEBUG_KERNEL
9c44bc03 471 help
0610c8a8
DH
472 If you say Y here, additional code will be inserted into the
473 kernel to track the life time of various objects and validate
474 the operations on those objects.
9c44bc03 475
0610c8a8
DH
476config DEBUG_OBJECTS_SELFTEST
477 bool "Debug objects selftest"
478 depends on DEBUG_OBJECTS
479 help
480 This enables the selftest of the object debug code.
9c44bc03 481
0610c8a8
DH
482config DEBUG_OBJECTS_FREE
483 bool "Debug objects in freed memory"
484 depends on DEBUG_OBJECTS
485 help
486 This enables checks whether a k/v free operation frees an area
487 which contains an object which has not been deactivated
488 properly. This can make kmalloc/kfree-intensive workloads
489 much slower.
3ac7fe5a 490
c6f3a97f
TG
491config DEBUG_OBJECTS_TIMERS
492 bool "Debug timer objects"
493 depends on DEBUG_OBJECTS
494 help
495 If you say Y here, additional code will be inserted into the
496 timer routines to track the life time of timer objects and
497 validate the timer operations.
498
dc186ad7
TG
499config DEBUG_OBJECTS_WORK
500 bool "Debug work objects"
501 depends on DEBUG_OBJECTS
502 help
503 If you say Y here, additional code will be inserted into the
504 work queue routines to track the life time of work objects and
505 validate the work operations.
506
551d55a9
MD
507config DEBUG_OBJECTS_RCU_HEAD
508 bool "Debug RCU callbacks objects"
fc2ecf7e 509 depends on DEBUG_OBJECTS
551d55a9
MD
510 help
511 Enable this to turn on debugging of RCU list heads (call_rcu() usage).
512
e2852ae8
TH
513config DEBUG_OBJECTS_PERCPU_COUNTER
514 bool "Debug percpu counter objects"
515 depends on DEBUG_OBJECTS
516 help
517 If you say Y here, additional code will be inserted into the
518 percpu counter routines to track the life time of percpu counter
519 objects and validate the percpu counter operations.
520
3ae70205
IM
521config DEBUG_OBJECTS_ENABLE_DEFAULT
522 int "debug_objects bootup default value (0-1)"
523 range 0 1
524 default "1"
525 depends on DEBUG_OBJECTS
526 help
527 Debug objects boot parameter default value
528
1da177e4 529config DEBUG_SLAB
4a2f0acf 530 bool "Debug slab memory allocations"
f369f148 531 depends on DEBUG_KERNEL && SLAB
1da177e4
LT
532 help
533 Say Y here to have the kernel do limited verification on memory
534 allocation as well as poisoning memory on free to catch use of freed
535 memory. This can make kmalloc/kfree-intensive workloads much slower.
536
871751e2
AV
537config DEBUG_SLAB_LEAK
538 bool "Memory leak debugging"
539 depends on DEBUG_SLAB
540
f0630fff
CL
541config SLUB_DEBUG_ON
542 bool "SLUB debugging on by default"
f369f148 543 depends on SLUB && SLUB_DEBUG
f0630fff
CL
544 default n
545 help
546 Boot with debugging on by default. SLUB boots by default with
547 the runtime debug capabilities switched off. Enabling this is
548 equivalent to specifying the "slub_debug" parameter on boot.
549 There is no support for more fine grained debug control like
550 possible with slub_debug=xxx. SLUB debugging may be switched
551 off in a kernel built with CONFIG_SLUB_DEBUG_ON by specifying
552 "slub_debug=-".
553
8ff12cfc
CL
554config SLUB_STATS
555 default n
556 bool "Enable SLUB performance statistics"
ab4d5ed5 557 depends on SLUB && SYSFS
8ff12cfc
CL
558 help
559 SLUB statistics are useful to debug SLUBs allocation behavior in
560 order find ways to optimize the allocator. This should never be
561 enabled for production use since keeping statistics slows down
562 the allocator by a few percentage points. The slabinfo command
563 supports the determination of the most active slabs to figure
564 out which slabs are relevant to a particular load.
565 Try running: slabinfo -DA
566
b69ec42b
CM
567config HAVE_DEBUG_KMEMLEAK
568 bool
569
3bba00d7
CM
570config DEBUG_KMEMLEAK
571 bool "Kernel memory leak detector"
525c1f92 572 depends on DEBUG_KERNEL && HAVE_DEBUG_KMEMLEAK
79e0d9bd 573 select DEBUG_FS
3bba00d7
CM
574 select STACKTRACE if STACKTRACE_SUPPORT
575 select KALLSYMS
b60e26a2 576 select CRC32
3bba00d7
CM
577 help
578 Say Y here if you want to enable the memory leak
579 detector. The memory allocation/freeing is traced in a way
580 similar to the Boehm's conservative garbage collector, the
581 difference being that the orphan objects are not freed but
582 only shown in /sys/kernel/debug/kmemleak. Enabling this
583 feature will introduce an overhead to memory
700199b0 584 allocations. See Documentation/dev-tools/kmemleak.rst for more
3bba00d7
CM
585 details.
586
0610c8a8
DH
587 Enabling DEBUG_SLAB or SLUB_DEBUG may increase the chances
588 of finding leaks due to the slab objects poisoning.
589
590 In order to access the kmemleak file, debugfs needs to be
591 mounted (usually at /sys/kernel/debug).
592
593config DEBUG_KMEMLEAK_EARLY_LOG_SIZE
594 int "Maximum kmemleak early log entries"
595 depends on DEBUG_KMEMLEAK
596 range 200 40000
597 default 400
598 help
599 Kmemleak must track all the memory allocations to avoid
600 reporting false positives. Since memory may be allocated or
601 freed before kmemleak is initialised, an early log buffer is
602 used to store these actions. If kmemleak reports "early log
603 buffer exceeded", please increase this value.
604
605config DEBUG_KMEMLEAK_TEST
606 tristate "Simple test for the kernel memory leak detector"
607 depends on DEBUG_KMEMLEAK && m
608 help
609 This option enables a module that explicitly leaks memory.
610
611 If unsure, say N.
612
613config DEBUG_KMEMLEAK_DEFAULT_OFF
614 bool "Default kmemleak to off"
615 depends on DEBUG_KMEMLEAK
616 help
617 Say Y here to disable kmemleak by default. It can then be enabled
618 on the command line via kmemleak=on.
619
620config DEBUG_STACK_USAGE
621 bool "Stack utilization instrumentation"
6c31da34 622 depends on DEBUG_KERNEL && !IA64
0610c8a8
DH
623 help
624 Enables the display of the minimum amount of free stack which each
625 task has ever had available in the sysrq-T and sysrq-P debug output.
626
627 This option will slow down process creation somewhat.
628
629config DEBUG_VM
630 bool "Debug VM"
631 depends on DEBUG_KERNEL
632 help
633 Enable this to turn on extended checks in the virtual-memory system
634 that may impact performance.
635
636 If unsure, say N.
637
4f115147
DB
638config DEBUG_VM_VMACACHE
639 bool "Debug VMA caching"
640 depends on DEBUG_VM
641 help
642 Enable this to turn on VMA caching debug information. Doing so
643 can cause significant overhead, so only enable it in non-production
644 environments.
645
646 If unsure, say N.
647
0610c8a8
DH
648config DEBUG_VM_RB
649 bool "Debug VM red-black trees"
650 depends on DEBUG_VM
651 help
a663dad6 652 Enable VM red-black tree debugging information and extra validations.
0610c8a8
DH
653
654 If unsure, say N.
655
95ad9755
KS
656config DEBUG_VM_PGFLAGS
657 bool "Debug page-flags operations"
658 depends on DEBUG_VM
659 help
660 Enables extra validation on page flags operations.
661
662 If unsure, say N.
663
fa5b6ec9
LA
664config ARCH_HAS_DEBUG_VIRTUAL
665 bool
666
0610c8a8
DH
667config DEBUG_VIRTUAL
668 bool "Debug VM translations"
fa5b6ec9 669 depends on DEBUG_KERNEL && ARCH_HAS_DEBUG_VIRTUAL
0610c8a8
DH
670 help
671 Enable some costly sanity checks in virtual to page code. This can
672 catch mistakes with virt_to_page() and friends.
673
674 If unsure, say N.
675
676config DEBUG_NOMMU_REGIONS
677 bool "Debug the global anon/private NOMMU mapping region tree"
678 depends on DEBUG_KERNEL && !MMU
679 help
680 This option causes the global tree of anonymous and private mapping
681 regions to be regularly checked for invalid topology.
682
683config DEBUG_MEMORY_INIT
684 bool "Debug memory initialisation" if EXPERT
685 default !EXPERT
686 help
687 Enable this for additional checks during memory initialisation.
688 The sanity checks verify aspects of the VM such as the memory model
689 and other information provided by the architecture. Verbose
690 information will be printed at KERN_DEBUG loglevel depending
691 on the mminit_loglevel= command-line option.
692
693 If unsure, say Y
694
695config MEMORY_NOTIFIER_ERROR_INJECT
696 tristate "Memory hotplug notifier error injection module"
697 depends on MEMORY_HOTPLUG_SPARSE && NOTIFIER_ERROR_INJECTION
698 help
699 This option provides the ability to inject artificial errors to
700 memory hotplug notifier chain callbacks. It is controlled through
701 debugfs interface under /sys/kernel/debug/notifier-error-inject/memory
702
703 If the notifier call chain should be failed with some events
704 notified, write the error code to "actions/<notifier event>/error".
705
706 Example: Inject memory hotplug offline error (-12 == -ENOMEM)
707
708 # cd /sys/kernel/debug/notifier-error-inject/memory
709 # echo -12 > actions/MEM_GOING_OFFLINE/error
710 # echo offline > /sys/devices/system/memory/memoryXXX/state
711 bash: echo: write error: Cannot allocate memory
712
713 To compile this code as a module, choose M here: the module will
714 be called memory-notifier-error-inject.
715
716 If unsure, say N.
717
718config DEBUG_PER_CPU_MAPS
719 bool "Debug access to per_cpu maps"
720 depends on DEBUG_KERNEL
721 depends on SMP
722 help
723 Say Y to verify that the per_cpu map being accessed has
724 been set up. This adds a fair amount of code to kernel memory
725 and decreases performance.
726
727 Say N if unsure.
728
729config DEBUG_HIGHMEM
730 bool "Highmem debugging"
731 depends on DEBUG_KERNEL && HIGHMEM
732 help
b1357c9f
GU
733 This option enables additional error checking for high memory
734 systems. Disable for production systems.
0610c8a8
DH
735
736config HAVE_DEBUG_STACKOVERFLOW
737 bool
738
739config DEBUG_STACKOVERFLOW
740 bool "Check for stack overflows"
741 depends on DEBUG_KERNEL && HAVE_DEBUG_STACKOVERFLOW
742 ---help---
743 Say Y here if you want to check for overflows of kernel, IRQ
edb0ec07 744 and exception stacks (if your architecture uses them). This
0610c8a8
DH
745 option will show detailed messages if free stack space drops
746 below a certain limit.
747
748 These kinds of bugs usually occur when call-chains in the
749 kernel get too deep, especially when interrupts are
750 involved.
751
752 Use this in cases where you see apparently random memory
753 corruption, especially if it appears in 'struct thread_info'
754
755 If in doubt, say "N".
756
0b24becc
AR
757source "lib/Kconfig.kasan"
758
0610c8a8
DH
759endmenu # "Memory Debugging"
760
5c9a8750
DV
761config ARCH_HAS_KCOV
762 bool
763 help
764 KCOV does not have any arch-specific code, but currently it is enabled
765 only for x86_64. KCOV requires testing on other archs, and most likely
766 disabling of instrumentation for some early boot code.
767
768config KCOV
769 bool "Code coverage for fuzzing"
770 depends on ARCH_HAS_KCOV
771 select DEBUG_FS
a519167e
KC
772 select GCC_PLUGINS if !COMPILE_TEST
773 select GCC_PLUGIN_SANCOV if !COMPILE_TEST
5c9a8750
DV
774 help
775 KCOV exposes kernel code coverage information in a form suitable
776 for coverage-guided fuzzing (randomized testing).
777
778 If RANDOMIZE_BASE is enabled, PC values will not be stable across
779 different machines and across reboots. If you need stable PC values,
780 disable RANDOMIZE_BASE.
781
700199b0 782 For more details, see Documentation/dev-tools/kcov.rst.
5c9a8750 783
a4691dea
VN
784config KCOV_INSTRUMENT_ALL
785 bool "Instrument all code by default"
786 depends on KCOV
787 default y if KCOV
788 help
789 If you are doing generic system call fuzzing (like e.g. syzkaller),
790 then you will want to instrument the whole kernel and you should
791 say y here. If you are doing more targeted fuzzing (like e.g.
792 filesystem fuzzing with AFL) then you will want to enable coverage
793 for more specific subsets of files, and should say n here.
794
a304e1b8
DW
795config DEBUG_SHIRQ
796 bool "Debug shared IRQ handlers"
0244ad00 797 depends on DEBUG_KERNEL
a304e1b8
DW
798 help
799 Enable this to generate a spurious interrupt as soon as a shared
800 interrupt handler is registered, and just before one is deregistered.
801 Drivers ought to be able to handle interrupts coming in at those
802 points; some don't and need to be caught.
803
92aef8fb
DH
804menu "Debug Lockups and Hangs"
805
58687acb 806config LOCKUP_DETECTOR
05a4a952
NP
807 bool
808
809config SOFTLOCKUP_DETECTOR
810 bool "Detect Soft Lockups"
dea20a3f 811 depends on DEBUG_KERNEL && !S390
05a4a952 812 select LOCKUP_DETECTOR
8446f1d3 813 help
58687acb 814 Say Y here to enable the kernel to act as a watchdog to detect
05a4a952 815 soft lockups.
58687acb
DZ
816
817 Softlockups are bugs that cause the kernel to loop in kernel
5f329089 818 mode for more than 20 seconds, without giving other tasks a
58687acb
DZ
819 chance to run. The current stack trace is displayed upon
820 detection and the system will stay locked up.
8446f1d3 821
05a4a952
NP
822config HARDLOCKUP_DETECTOR_PERF
823 bool
824 select SOFTLOCKUP_DETECTOR
825
7edaeb68
TG
826#
827# Enables a timestamp based low pass filter to compensate for perf based
828# hard lockup detection which runs too fast due to turbo modes.
829#
830config HARDLOCKUP_CHECK_TIMESTAMP
831 bool
832
05a4a952
NP
833#
834# arch/ can define HAVE_HARDLOCKUP_DETECTOR_ARCH to provide their own hard
835# lockup detector rather than the perf based detector.
836#
837config HARDLOCKUP_DETECTOR
838 bool "Detect Hard Lockups"
839 depends on DEBUG_KERNEL && !S390
840 depends on HAVE_HARDLOCKUP_DETECTOR_PERF || HAVE_HARDLOCKUP_DETECTOR_ARCH
841 select LOCKUP_DETECTOR
842 select HARDLOCKUP_DETECTOR_PERF if HAVE_HARDLOCKUP_DETECTOR_PERF
843 select HARDLOCKUP_DETECTOR_ARCH if HAVE_HARDLOCKUP_DETECTOR_ARCH
844 help
845 Say Y here to enable the kernel to act as a watchdog to detect
846 hard lockups.
847
58687acb 848 Hardlockups are bugs that cause the CPU to loop in kernel mode
5f329089 849 for more than 10 seconds, without letting other interrupts have a
58687acb
DZ
850 chance to run. The current stack trace is displayed upon detection
851 and the system will stay locked up.
8446f1d3 852
6ff42c2c
HK
853config HARDLOCKUP_DETECTOR_OTHER_CPU
854 def_bool y
855 depends on LOCKUP_DETECTOR && !HAVE_NMI_WATCHDOG
856 depends on !HARDLOCKUP_DETECTOR
857
fef2c9bc
DZ
858config BOOTPARAM_HARDLOCKUP_PANIC
859 bool "Panic (Reboot) On Hard Lockups"
6ff42c2c 860 depends on HARDLOCKUP_DETECTOR || HARDLOCKUP_DETECTOR_OTHER_CPU
fef2c9bc
DZ
861 help
862 Say Y here to enable the kernel to panic on "hard lockups",
863 which are bugs that cause the kernel to loop in kernel
5f329089
FLVC
864 mode with interrupts disabled for more than 10 seconds (configurable
865 using the watchdog_thresh sysctl).
fef2c9bc
DZ
866
867 Say N if unsure.
868
869config BOOTPARAM_HARDLOCKUP_PANIC_VALUE
870 int
6ff42c2c 871 depends on HARDLOCKUP_DETECTOR || HARDLOCKUP_DETECTOR_OTHER_CPU
fef2c9bc
DZ
872 range 0 1
873 default 0 if !BOOTPARAM_HARDLOCKUP_PANIC
874 default 1 if BOOTPARAM_HARDLOCKUP_PANIC
875
9c44bc03
IM
876config BOOTPARAM_SOFTLOCKUP_PANIC
877 bool "Panic (Reboot) On Soft Lockups"
05a4a952 878 depends on SOFTLOCKUP_DETECTOR
9c44bc03
IM
879 help
880 Say Y here to enable the kernel to panic on "soft lockups",
881 which are bugs that cause the kernel to loop in kernel
5f329089
FLVC
882 mode for more than 20 seconds (configurable using the watchdog_thresh
883 sysctl), without giving other tasks a chance to run.
9c44bc03
IM
884
885 The panic can be used in combination with panic_timeout,
886 to cause the system to reboot automatically after a
887 lockup has been detected. This feature is useful for
888 high-availability systems that have uptime guarantees and
889 where a lockup must be resolved ASAP.
890
891 Say N if unsure.
892
893config BOOTPARAM_SOFTLOCKUP_PANIC_VALUE
894 int
05a4a952 895 depends on SOFTLOCKUP_DETECTOR
9c44bc03
IM
896 range 0 1
897 default 0 if !BOOTPARAM_SOFTLOCKUP_PANIC
898 default 1 if BOOTPARAM_SOFTLOCKUP_PANIC
899
e162b39a
MSB
900config DETECT_HUNG_TASK
901 bool "Detect Hung Tasks"
902 depends on DEBUG_KERNEL
05a4a952 903 default SOFTLOCKUP_DETECTOR
e162b39a 904 help
0610c8a8
DH
905 Say Y here to enable the kernel to detect "hung tasks",
906 which are bugs that cause the task to be stuck in
96b03ab8 907 uninterruptible "D" state indefinitely.
1da177e4 908
0610c8a8
DH
909 When a hung task is detected, the kernel will print the
910 current stack trace (which you should report), but the
911 task will stay in uninterruptible state. If lockdep is
912 enabled then all held locks will also be reported. This
913 feature has negligible overhead.
871751e2 914
0610c8a8
DH
915config DEFAULT_HUNG_TASK_TIMEOUT
916 int "Default timeout for hung task detection (in seconds)"
917 depends on DETECT_HUNG_TASK
918 default 120
f0630fff 919 help
0610c8a8
DH
920 This option controls the default timeout (in seconds) used
921 to determine when a task has become non-responsive and should
922 be considered hung.
f0630fff 923
0610c8a8
DH
924 It can be adjusted at runtime via the kernel.hung_task_timeout_secs
925 sysctl or by writing a value to
926 /proc/sys/kernel/hung_task_timeout_secs.
8ff12cfc 927
0610c8a8
DH
928 A timeout of 0 disables the check. The default is two minutes.
929 Keeping the default should be fine in most cases.
b69ec42b 930
0610c8a8
DH
931config BOOTPARAM_HUNG_TASK_PANIC
932 bool "Panic (Reboot) On Hung Tasks"
933 depends on DETECT_HUNG_TASK
3bba00d7 934 help
0610c8a8
DH
935 Say Y here to enable the kernel to panic on "hung tasks",
936 which are bugs that cause the kernel to leave a task stuck
937 in uninterruptible "D" state.
3bba00d7 938
0610c8a8
DH
939 The panic can be used in combination with panic_timeout,
940 to cause the system to reboot automatically after a
941 hung task has been detected. This feature is useful for
942 high-availability systems that have uptime guarantees and
943 where a hung tasks must be resolved ASAP.
bf96d1e3 944
0610c8a8 945 Say N if unsure.
bf96d1e3 946
0610c8a8
DH
947config BOOTPARAM_HUNG_TASK_PANIC_VALUE
948 int
949 depends on DETECT_HUNG_TASK
950 range 0 1
951 default 0 if !BOOTPARAM_HUNG_TASK_PANIC
952 default 1 if BOOTPARAM_HUNG_TASK_PANIC
3bba00d7 953
82607adc
TH
954config WQ_WATCHDOG
955 bool "Detect Workqueue Stalls"
956 depends on DEBUG_KERNEL
957 help
958 Say Y here to enable stall detection on workqueues. If a
959 worker pool doesn't make forward progress on a pending work
960 item for over a given amount of time, 30s by default, a
961 warning message is printed along with dump of workqueue
962 state. This can be configured through kernel parameter
963 "workqueue.watchdog_thresh" and its sysfs counterpart.
964
92aef8fb
DH
965endmenu # "Debug lockups and hangs"
966
967config PANIC_ON_OOPS
968 bool "Panic on Oops"
a9d9058a 969 help
92aef8fb
DH
970 Say Y here to enable the kernel to panic when it oopses. This
971 has the same effect as setting oops=panic on the kernel command
972 line.
a9d9058a 973
92aef8fb
DH
974 This feature is useful to ensure that the kernel does not do
975 anything erroneous after an oops which could result in data
976 corruption or other issues.
977
978 Say N if unsure.
979
980config PANIC_ON_OOPS_VALUE
981 int
982 range 0 1
983 default 0 if !PANIC_ON_OOPS
984 default 1 if PANIC_ON_OOPS
985
5800dc3c
JB
986config PANIC_TIMEOUT
987 int "panic timeout"
988 default 0
989 help
990 Set the timeout value (in seconds) until a reboot occurs when the
991 the kernel panics. If n = 0, then we wait forever. A timeout
992 value n > 0 will wait n seconds before rebooting, while a timeout
993 value n < 0 will reboot immediately.
994
0610c8a8
DH
995config SCHED_DEBUG
996 bool "Collect scheduler debugging info"
997 depends on DEBUG_KERNEL && PROC_FS
998 default y
0822ee4a 999 help
0610c8a8
DH
1000 If you say Y here, the /proc/sched_debug file will be provided
1001 that can help debug the scheduler. The runtime overhead of this
1002 option is minimal.
0822ee4a 1003
f6db8347
NR
1004config SCHED_INFO
1005 bool
1006 default n
1007
0610c8a8
DH
1008config SCHEDSTATS
1009 bool "Collect scheduler statistics"
1010 depends on DEBUG_KERNEL && PROC_FS
f6db8347 1011 select SCHED_INFO
0610c8a8
DH
1012 help
1013 If you say Y here, additional code will be inserted into the
1014 scheduler and related routines to collect statistics about
1015 scheduler behavior and provide them in /proc/schedstat. These
1016 stats may be useful for both tuning and debugging the scheduler
1017 If you aren't debugging the scheduler or trying to tune a specific
1018 application, you can say N to avoid the very slight overhead
1019 this adds.
0822ee4a 1020
0d9e2632
AT
1021config SCHED_STACK_END_CHECK
1022 bool "Detect stack corruption on calls to schedule()"
1023 depends on DEBUG_KERNEL
1024 default n
1025 help
1026 This option checks for a stack overrun on calls to schedule().
1027 If the stack end location is found to be over written always panic as
1028 the content of the corrupted region can no longer be trusted.
1029 This is to ensure no erroneous behaviour occurs which could result in
1030 data corruption or a sporadic crash at a later stage once the region
1031 is examined. The runtime overhead introduced is minimal.
1032
3c17ad19
JS
1033config DEBUG_TIMEKEEPING
1034 bool "Enable extra timekeeping sanity checking"
1035 help
1036 This option will enable additional timekeeping sanity checks
1037 which may be helpful when diagnosing issues where timekeeping
1038 problems are suspected.
1039
1040 This may include checks in the timekeeping hotpaths, so this
1041 option may have a (very small) performance impact to some
1042 workloads.
1043
1044 If unsure, say N.
1045
1da177e4
LT
1046config DEBUG_PREEMPT
1047 bool "Debug preemptible kernel"
01deab98 1048 depends on DEBUG_KERNEL && PREEMPT && TRACE_IRQFLAGS_SUPPORT
1da177e4
LT
1049 default y
1050 help
1051 If you say Y here then the kernel will use a debug variant of the
1052 commonly used smp_processor_id() function and will print warnings
1053 if kernel code uses it in a preemption-unsafe way. Also, the kernel
1054 will detect preemption count underflows.
1055
9eade16b
DH
1056menu "Lock Debugging (spinlocks, mutexes, etc...)"
1057
e7eebaf6
IM
1058config DEBUG_RT_MUTEXES
1059 bool "RT Mutex debugging, deadlock detection"
e7eebaf6
IM
1060 depends on DEBUG_KERNEL && RT_MUTEXES
1061 help
1062 This allows rt mutex semantics violations and rt mutex related
1063 deadlocks (lockups) to be detected and reported automatically.
1064
1da177e4 1065config DEBUG_SPINLOCK
4d9f34ad 1066 bool "Spinlock and rw-lock debugging: basic checks"
1da177e4 1067 depends on DEBUG_KERNEL
e335e3eb 1068 select UNINLINE_SPIN_UNLOCK
1da177e4
LT
1069 help
1070 Say Y here and build SMP to catch missing spinlock initialization
1071 and certain other kinds of spinlock errors commonly made. This is
1072 best used in conjunction with the NMI watchdog so that spinlock
1073 deadlocks are also debuggable.
1074
4d9f34ad
IM
1075config DEBUG_MUTEXES
1076 bool "Mutex debugging: basic checks"
1077 depends on DEBUG_KERNEL
1078 help
1079 This feature allows mutex semantics violations to be detected and
1080 reported.
1081
23010027
DV
1082config DEBUG_WW_MUTEX_SLOWPATH
1083 bool "Wait/wound mutex debugging: Slowpath testing"
1084 depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
1085 select DEBUG_LOCK_ALLOC
1086 select DEBUG_SPINLOCK
1087 select DEBUG_MUTEXES
1088 help
1089 This feature enables slowpath testing for w/w mutex users by
1090 injecting additional -EDEADLK wound/backoff cases. Together with
1091 the full mutex checks enabled with (CONFIG_PROVE_LOCKING) this
1092 will test all possible w/w mutex interface abuse with the
1093 exception of simply not acquiring all the required locks.
4d692373
RC
1094 Note that this feature can introduce significant overhead, so
1095 it really should not be enabled in a production or distro kernel,
1096 even a debug kernel. If you are a driver writer, enable it. If
1097 you are a distro, do not.
23010027 1098
4d9f34ad
IM
1099config DEBUG_LOCK_ALLOC
1100 bool "Lock debugging: detect incorrect freeing of live locks"
517e7aa5 1101 depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
4d9f34ad
IM
1102 select DEBUG_SPINLOCK
1103 select DEBUG_MUTEXES
f5694788 1104 select DEBUG_RT_MUTEXES if RT_MUTEXES
4d9f34ad
IM
1105 select LOCKDEP
1106 help
1107 This feature will check whether any held lock (spinlock, rwlock,
1108 mutex or rwsem) is incorrectly freed by the kernel, via any of the
1109 memory-freeing routines (kfree(), kmem_cache_free(), free_pages(),
1110 vfree(), etc.), whether a live lock is incorrectly reinitialized via
1111 spin_lock_init()/mutex_init()/etc., or whether there is any lock
1112 held during task exit.
1113
1114config PROVE_LOCKING
1115 bool "Lock debugging: prove locking correctness"
517e7aa5 1116 depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
4d9f34ad
IM
1117 select LOCKDEP
1118 select DEBUG_SPINLOCK
1119 select DEBUG_MUTEXES
f5694788 1120 select DEBUG_RT_MUTEXES if RT_MUTEXES
4d9f34ad 1121 select DEBUG_LOCK_ALLOC
b483cf3b
IM
1122 select LOCKDEP_CROSSRELEASE if BROKEN
1123 select LOCKDEP_COMPLETIONS if BROKEN
46b93b74 1124 select TRACE_IRQFLAGS
4d9f34ad
IM
1125 default n
1126 help
1127 This feature enables the kernel to prove that all locking
1128 that occurs in the kernel runtime is mathematically
1129 correct: that under no circumstance could an arbitrary (and
1130 not yet triggered) combination of observed locking
1131 sequences (on an arbitrary number of CPUs, running an
1132 arbitrary number of tasks and interrupt contexts) cause a
1133 deadlock.
1134
1135 In short, this feature enables the kernel to report locking
1136 related deadlocks before they actually occur.
1137
1138 The proof does not depend on how hard and complex a
1139 deadlock scenario would be to trigger: how many
1140 participant CPUs, tasks and irq-contexts would be needed
1141 for it to trigger. The proof also does not depend on
1142 timing: if a race and a resulting deadlock is possible
1143 theoretically (no matter how unlikely the race scenario
1144 is), it will be proven so and will immediately be
1145 reported by the kernel (once the event is observed that
1146 makes the deadlock theoretically possible).
1147
1148 If a deadlock is impossible (i.e. the locking rules, as
1149 observed by the kernel, are mathematically correct), the
1150 kernel reports nothing.
1151
1152 NOTE: this feature can also be enabled for rwlocks, mutexes
1153 and rwsems - in which case all dependencies between these
1154 different locking variants are observed and mapped too, and
1155 the proof of observed correctness is also maintained for an
1156 arbitrary combination of these separate locking variants.
1157
214e0aed 1158 For more details, see Documentation/locking/lockdep-design.txt.
4d9f34ad
IM
1159
1160config LOCKDEP
1161 bool
517e7aa5 1162 depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
4d9f34ad 1163 select STACKTRACE
a34a766f 1164 select FRAME_POINTER if !MIPS && !PPC && !ARM_UNWIND && !S390 && !MICROBLAZE && !ARC && !SCORE && !X86
4d9f34ad
IM
1165 select KALLSYMS
1166 select KALLSYMS_ALL
1167
395102db
DJ
1168config LOCKDEP_SMALL
1169 bool
1170
f20786ff 1171config LOCK_STAT
fdfb870f 1172 bool "Lock usage statistics"
f20786ff
PZ
1173 depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT
1174 select LOCKDEP
1175 select DEBUG_SPINLOCK
1176 select DEBUG_MUTEXES
f5694788 1177 select DEBUG_RT_MUTEXES if RT_MUTEXES
f20786ff
PZ
1178 select DEBUG_LOCK_ALLOC
1179 default n
1180 help
1181 This feature enables tracking lock contention points
1182
214e0aed 1183 For more details, see Documentation/locking/lockstat.txt
a560aa48 1184
dd8b1cf6
FW
1185 This also enables lock events required by "perf lock",
1186 subcommand of perf.
1187 If you want to use "perf lock", you also need to turn on
1188 CONFIG_EVENT_TRACING.
84c6f88f
HM
1189
1190 CONFIG_LOCK_STAT defines "contended" and "acquired" lock events.
dd8b1cf6 1191 (CONFIG_LOCKDEP defines "acquire" and "release" events.)
84c6f88f 1192
b09be676 1193config LOCKDEP_CROSSRELEASE
e26f34a4 1194 bool
b09be676
BP
1195 help
1196 This makes lockdep work for crosslock which is a lock allowed to
1197 be released in a different context from the acquisition context.
1198 Normally a lock must be released in the context acquiring the lock.
1199 However, relexing this constraint helps synchronization primitives
1200 such as page locks or completions can use the lock correctness
1201 detector, lockdep.
1202
ea3f2c0f 1203config LOCKDEP_COMPLETIONS
e26f34a4 1204 bool
cd8084f9
BP
1205 help
1206 A deadlock caused by wait_for_completion() and complete() can be
1207 detected by lockdep using crossrelease feature.
1208
4d9f34ad
IM
1209config DEBUG_LOCKDEP
1210 bool "Lock dependency engine debugging"
517e7aa5 1211 depends on DEBUG_KERNEL && LOCKDEP
4d9f34ad
IM
1212 help
1213 If you say Y here, the lock dependency engine will do
1214 additional runtime checks to debug itself, at the price
1215 of more runtime overhead.
1216
d902db1e
FW
1217config DEBUG_ATOMIC_SLEEP
1218 bool "Sleep inside atomic section checking"
e8f7c70f 1219 select PREEMPT_COUNT
1da177e4
LT
1220 depends on DEBUG_KERNEL
1221 help
1222 If you say Y here, various routines which may sleep will become very
d902db1e
FW
1223 noisy if they are called inside atomic sections: when a spinlock is
1224 held, inside an rcu read side critical section, inside preempt disabled
1225 sections, inside an interrupt, etc...
1da177e4 1226
cae2ed9a
IM
1227config DEBUG_LOCKING_API_SELFTESTS
1228 bool "Locking API boot-time self-tests"
1229 depends on DEBUG_KERNEL
1230 help
1231 Say Y here if you want the kernel to run a short self-test during
1232 bootup. The self-test checks whether common types of locking bugs
1233 are detected by debugging mechanisms or not. (if you disable
1234 lock debugging then those bugs wont be detected of course.)
1235 The following locking APIs are covered: spinlocks, rwlocks,
1236 mutexes and rwsems.
1237
0af3fe1e
PM
1238config LOCK_TORTURE_TEST
1239 tristate "torture tests for locking"
1240 depends on DEBUG_KERNEL
1241 select TORTURE_TEST
1242 default n
1243 help
1244 This option provides a kernel module that runs torture tests
1245 on kernel locking primitives. The kernel module may be built
1246 after the fact on the running kernel to be tested, if desired.
1247
1248 Say Y here if you want kernel locking-primitive torture tests
1249 to be built into the kernel.
1250 Say M if you want these torture tests to build as a module.
1251 Say N if you are unsure.
1252
f2a5fec1
CW
1253config WW_MUTEX_SELFTEST
1254 tristate "Wait/wound mutex selftests"
1255 help
1256 This option provides a kernel module that runs tests on the
1257 on the struct ww_mutex locking API.
1258
1259 It is recommended to enable DEBUG_WW_MUTEX_SLOWPATH in conjunction
1260 with this test harness.
1261
1262 Say M if you want these self tests to build as a module.
1263 Say N if you are unsure.
1264
9eade16b 1265endmenu # lock debugging
8637c099 1266
9eade16b
DH
1267config TRACE_IRQFLAGS
1268 bool
5ca43f6c 1269 help
9eade16b
DH
1270 Enables hooks to interrupt enabling and disabling for
1271 either tracing or lock debugging.
5ca43f6c 1272
8637c099 1273config STACKTRACE
0c38e1fe 1274 bool "Stack backtrace support"
8637c099 1275 depends on STACKTRACE_SUPPORT
0c38e1fe
DJ
1276 help
1277 This option causes the kernel to create a /proc/pid/stack for
1278 every process, showing its current stack trace.
1279 It is also used by various kernel debugging features that require
1280 stack trace generation.
5ca43f6c 1281
eecabf56
TT
1282config WARN_ALL_UNSEEDED_RANDOM
1283 bool "Warn for all uses of unseeded randomness"
1284 default n
d06bfd19
JD
1285 help
1286 Some parts of the kernel contain bugs relating to their use of
1287 cryptographically secure random numbers before it's actually possible
1288 to generate those numbers securely. This setting ensures that these
1289 flaws don't go unnoticed, by enabling a message, should this ever
1290 occur. This will allow people with obscure setups to know when things
1291 are going wrong, so that they might contact developers about fixing
1292 it.
1293
eecabf56
TT
1294 Unfortunately, on some models of some architectures getting
1295 a fully seeded CRNG is extremely difficult, and so this can
1296 result in dmesg getting spammed for a surprisingly long
1297 time. This is really bad from a security perspective, and
1298 so architecture maintainers really need to do what they can
1299 to get the CRNG seeded sooner after the system is booted.
1300 However, since users can not do anything actionble to
1301 address this, by default the kernel will issue only a single
1302 warning for the first use of unseeded randomness.
1303
1304 Say Y here if you want to receive warnings for all uses of
1305 unseeded randomness. This will be of use primarily for
1306 those developers interersted in improving the security of
1307 Linux kernels running on their architecture (or
1308 subarchitecture).
d06bfd19 1309
1da177e4
LT
1310config DEBUG_KOBJECT
1311 bool "kobject debugging"
1312 depends on DEBUG_KERNEL
1313 help
1314 If you say Y here, some extra kobject debugging messages will be sent
1315 to the syslog.
1316
c817a67e
RK
1317config DEBUG_KOBJECT_RELEASE
1318 bool "kobject release debugging"
2a999aa0 1319 depends on DEBUG_OBJECTS_TIMERS
c817a67e
RK
1320 help
1321 kobjects are reference counted objects. This means that their
1322 last reference count put is not predictable, and the kobject can
1323 live on past the point at which a driver decides to drop it's
1324 initial reference to the kobject gained on allocation. An
1325 example of this would be a struct device which has just been
1326 unregistered.
1327
1328 However, some buggy drivers assume that after such an operation,
1329 the memory backing the kobject can be immediately freed. This
1330 goes completely against the principles of a refcounted object.
1331
1332 If you say Y here, the kernel will delay the release of kobjects
1333 on the last reference count to improve the visibility of this
1334 kind of kobject release bug.
1335
9b2a60c4
CM
1336config HAVE_DEBUG_BUGVERBOSE
1337 bool
1338
1da177e4 1339config DEBUG_BUGVERBOSE
6a108a14 1340 bool "Verbose BUG() reporting (adds 70K)" if DEBUG_KERNEL && EXPERT
9b2a60c4 1341 depends on BUG && (GENERIC_BUG || HAVE_DEBUG_BUGVERBOSE)
8420e7ef 1342 default y
1da177e4
LT
1343 help
1344 Say Y here to make BUG() panics output the file name and line number
1345 of the BUG call as well as the EIP and oops trace. This aids
1346 debugging but costs about 70-100K of memory.
1347
199a9afc
DJ
1348config DEBUG_LIST
1349 bool "Debug linked list manipulation"
4520bcb2 1350 depends on DEBUG_KERNEL || BUG_ON_DATA_CORRUPTION
199a9afc
DJ
1351 help
1352 Enable this to turn on extended checks in the linked-list
1353 walking routines.
1354
1355 If unsure, say N.
1356
b8cfff68
DS
1357config DEBUG_PI_LIST
1358 bool "Debug priority linked list manipulation"
1359 depends on DEBUG_KERNEL
1360 help
1361 Enable this to turn on extended checks in the priority-ordered
1362 linked-list (plist) walking routines. This checks the entire
1363 list multiple times during each manipulation.
1364
1365 If unsure, say N.
1366
d6ec0842
JA
1367config DEBUG_SG
1368 bool "Debug SG table operations"
1369 depends on DEBUG_KERNEL
1370 help
1371 Enable this to turn on checks on scatter-gather tables. This can
1372 help find problems with drivers that do not properly initialize
1373 their sg tables.
1374
1375 If unsure, say N.
1376
1b2439db
AV
1377config DEBUG_NOTIFIERS
1378 bool "Debug notifier call chains"
1379 depends on DEBUG_KERNEL
1380 help
1381 Enable this to turn on sanity checking for notifier call chains.
1382 This is most useful for kernel developers to make sure that
1383 modules properly unregister themselves from notifier chains.
1384 This is a relatively cheap check but if you care about maximum
1385 performance, say N.
1386
e0e81739
DH
1387config DEBUG_CREDENTIALS
1388 bool "Debug credential management"
1389 depends on DEBUG_KERNEL
1390 help
1391 Enable this to turn on some debug checking for credential
1392 management. The additional code keeps track of the number of
1393 pointers from task_structs to any given cred struct, and checks to
1394 see that this number never exceeds the usage count of the cred
1395 struct.
1396
1397 Furthermore, if SELinux is enabled, this also checks that the
1398 security pointer in the cred struct is never seen to be invalid.
1399
1400 If unsure, say N.
1401
43a0a2a7 1402source "kernel/rcu/Kconfig.debug"
2f03e3ca 1403
f303fccb
TH
1404config DEBUG_WQ_FORCE_RR_CPU
1405 bool "Force round-robin CPU selection for unbound work items"
1406 depends on DEBUG_KERNEL
1407 default n
1408 help
1409 Workqueue used to implicitly guarantee that work items queued
1410 without explicit CPU specified are put on the local CPU. This
1411 guarantee is no longer true and while local CPU is still
1412 preferred work items may be put on foreign CPUs. Kernel
1413 parameter "workqueue.debug_force_rr_cpu" is added to force
1414 round-robin CPU selection to flush out usages which depend on the
1415 now broken guarantee. This config option enables the debug
1416 feature by default. When enabled, memory and cache locality will
1417 be impacted.
1418
870d6656
TH
1419config DEBUG_BLOCK_EXT_DEVT
1420 bool "Force extended block device numbers and spread them"
1421 depends on DEBUG_KERNEL
1422 depends on BLOCK
759f8ca3 1423 default n
870d6656 1424 help
0e11e342
TH
1425 BIG FAT WARNING: ENABLING THIS OPTION MIGHT BREAK BOOTING ON
1426 SOME DISTRIBUTIONS. DO NOT ENABLE THIS UNLESS YOU KNOW WHAT
1427 YOU ARE DOING. Distros, please enable this and fix whatever
1428 is broken.
1429
870d6656
TH
1430 Conventionally, block device numbers are allocated from
1431 predetermined contiguous area. However, extended block area
1432 may introduce non-contiguous block device numbers. This
1433 option forces most block device numbers to be allocated from
1434 the extended space and spreads them to discover kernel or
1435 userland code paths which assume predetermined contiguous
1436 device number allocation.
1437
55dc7db7
TH
1438 Note that turning on this debug option shuffles all the
1439 device numbers for all IDE and SCSI devices including libata
1440 ones, so root partition specified using device number
1441 directly (via rdev or root=MAJ:MIN) won't work anymore.
1442 Textual device names (root=/dev/sdXn) will continue to work.
1443
870d6656
TH
1444 Say N if you are unsure.
1445
757c989b
TG
1446config CPU_HOTPLUG_STATE_CONTROL
1447 bool "Enable CPU hotplug state control"
1448 depends on DEBUG_KERNEL
1449 depends on HOTPLUG_CPU
1450 default n
1451 help
1452 Allows to write steps between "offline" and "online" to the CPUs
1453 sysfs target file so states can be stepped granular. This is a debug
1454 option for now as the hotplug machinery cannot be stopped and
1455 restarted at arbitrary points yet.
1456
1457 Say N if your are unsure.
1458
8d438288
AM
1459config NOTIFIER_ERROR_INJECTION
1460 tristate "Notifier error injection"
1461 depends on DEBUG_KERNEL
1462 select DEBUG_FS
1463 help
e41e85cc 1464 This option provides the ability to inject artificial errors to
8d438288
AM
1465 specified notifier chain callbacks. It is useful to test the error
1466 handling of notifier call chain failures.
1467
1468 Say N if unsure.
1469
048b9c35
AM
1470config PM_NOTIFIER_ERROR_INJECT
1471 tristate "PM notifier error injection module"
1472 depends on PM && NOTIFIER_ERROR_INJECTION
1473 default m if PM_DEBUG
1474 help
e41e85cc 1475 This option provides the ability to inject artificial errors to
048b9c35
AM
1476 PM notifier chain callbacks. It is controlled through debugfs
1477 interface /sys/kernel/debug/notifier-error-inject/pm
1478
1479 If the notifier call chain should be failed with some events
1480 notified, write the error code to "actions/<notifier event>/error".
1481
1482 Example: Inject PM suspend error (-12 = -ENOMEM)
1483
1484 # cd /sys/kernel/debug/notifier-error-inject/pm/
1485 # echo -12 > actions/PM_SUSPEND_PREPARE/error
1486 # echo mem > /sys/power/state
1487 bash: echo: write error: Cannot allocate memory
1488
1489 To compile this code as a module, choose M here: the module will
1490 be called pm-notifier-error-inject.
1491
1492 If unsure, say N.
1493
d526e85f
BH
1494config OF_RECONFIG_NOTIFIER_ERROR_INJECT
1495 tristate "OF reconfig notifier error injection module"
1496 depends on OF_DYNAMIC && NOTIFIER_ERROR_INJECTION
08dfb4dd 1497 help
e41e85cc 1498 This option provides the ability to inject artificial errors to
d526e85f 1499 OF reconfig notifier chain callbacks. It is controlled
08dfb4dd 1500 through debugfs interface under
d526e85f 1501 /sys/kernel/debug/notifier-error-inject/OF-reconfig/
08dfb4dd
AM
1502
1503 If the notifier call chain should be failed with some events
1504 notified, write the error code to "actions/<notifier event>/error".
1505
1506 To compile this code as a module, choose M here: the module will
e12a95f4 1507 be called of-reconfig-notifier-error-inject.
08dfb4dd
AM
1508
1509 If unsure, say N.
1510
02fff96a
NA
1511config NETDEV_NOTIFIER_ERROR_INJECT
1512 tristate "Netdev notifier error injection module"
1513 depends on NET && NOTIFIER_ERROR_INJECTION
1514 help
1515 This option provides the ability to inject artificial errors to
1516 netdevice notifier chain callbacks. It is controlled through debugfs
1517 interface /sys/kernel/debug/notifier-error-inject/netdev
1518
1519 If the notifier call chain should be failed with some events
1520 notified, write the error code to "actions/<notifier event>/error".
1521
1522 Example: Inject netdevice mtu change error (-22 = -EINVAL)
1523
1524 # cd /sys/kernel/debug/notifier-error-inject/netdev
1525 # echo -22 > actions/NETDEV_CHANGEMTU/error
1526 # ip link set eth0 mtu 1024
1527 RTNETLINK answers: Invalid argument
1528
1529 To compile this code as a module, choose M here: the module will
1530 be called netdev-notifier-error-inject.
1531
1532 If unsure, say N.
1533
6ff1cb35 1534config FAULT_INJECTION
1ab8509a
AM
1535 bool "Fault-injection framework"
1536 depends on DEBUG_KERNEL
329409ae
AM
1537 help
1538 Provide fault-injection framework.
1539 For more details, see Documentation/fault-injection/.
6ff1cb35 1540
8a8b6502 1541config FAILSLAB
1ab8509a
AM
1542 bool "Fault-injection capability for kmalloc"
1543 depends on FAULT_INJECTION
773ff60e 1544 depends on SLAB || SLUB
8a8b6502 1545 help
1ab8509a 1546 Provide fault-injection capability for kmalloc.
8a8b6502 1547
933e312e
AM
1548config FAIL_PAGE_ALLOC
1549 bool "Fault-injection capabilitiy for alloc_pages()"
1ab8509a 1550 depends on FAULT_INJECTION
933e312e 1551 help
1ab8509a 1552 Provide fault-injection capability for alloc_pages().
933e312e 1553
c17bb495 1554config FAIL_MAKE_REQUEST
86327d19 1555 bool "Fault-injection capability for disk IO"
581d4e28 1556 depends on FAULT_INJECTION && BLOCK
c17bb495 1557 help
1ab8509a 1558 Provide fault-injection capability for disk IO.
c17bb495 1559
581d4e28 1560config FAIL_IO_TIMEOUT
f4d01439 1561 bool "Fault-injection capability for faking disk interrupts"
581d4e28
JA
1562 depends on FAULT_INJECTION && BLOCK
1563 help
1564 Provide fault-injection capability on end IO handling. This
1565 will make the block layer "forget" an interrupt as configured,
1566 thus exercising the error handling.
1567
1568 Only works with drivers that use the generic timeout handling,
1569 for others it wont do anything.
1570
1b676f70
PF
1571config FAIL_MMC_REQUEST
1572 bool "Fault-injection capability for MMC IO"
28ff4fda 1573 depends on FAULT_INJECTION_DEBUG_FS && MMC
1b676f70
PF
1574 help
1575 Provide fault-injection capability for MMC IO.
1576 This will make the mmc core return data errors. This is
1577 useful to test the error handling in the mmc block device
1578 and to test how the mmc host driver handles retries from
1579 the block device.
1580
ab51fbab
DB
1581config FAIL_FUTEX
1582 bool "Fault-injection capability for futexes"
1583 select DEBUG_FS
1584 depends on FAULT_INJECTION && FUTEX
1585 help
1586 Provide fault-injection capability for futexes.
1587
6ff1cb35
AM
1588config FAULT_INJECTION_DEBUG_FS
1589 bool "Debugfs entries for fault-injection capabilities"
1ab8509a 1590 depends on FAULT_INJECTION && SYSFS && DEBUG_FS
6ff1cb35 1591 help
1ab8509a 1592 Enable configuration of fault-injection capabilities via debugfs.
1df49008
AM
1593
1594config FAULT_INJECTION_STACKTRACE_FILTER
1595 bool "stacktrace filter for fault-injection capabilities"
1596 depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT
6d690dca 1597 depends on !X86_64
1df49008 1598 select STACKTRACE
a34a766f 1599 select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND && !ARC && !SCORE && !X86
1df49008
AM
1600 help
1601 Provide stacktrace filter for fault-injection capabilities
267c4025 1602
9745512c
AV
1603config LATENCYTOP
1604 bool "Latency measuring infrastructure"
625fdcaa
RD
1605 depends on DEBUG_KERNEL
1606 depends on STACKTRACE_SUPPORT
1607 depends on PROC_FS
a34a766f 1608 select FRAME_POINTER if !MIPS && !PPC && !S390 && !MICROBLAZE && !ARM_UNWIND && !ARC && !X86
9745512c
AV
1609 select KALLSYMS
1610 select KALLSYMS_ALL
1611 select STACKTRACE
1612 select SCHEDSTATS
1613 select SCHED_DEBUG
9745512c
AV
1614 help
1615 Enable this option if you want to use the LatencyTOP tool
1616 to find out which userspace is blocking on what kernel operations.
1617
16444a8a
ACM
1618source kernel/trace/Kconfig
1619
cc3fa840
RD
1620config PROVIDE_OHCI1394_DMA_INIT
1621 bool "Remote debugging over FireWire early on boot"
1622 depends on PCI && X86
1623 help
1624 If you want to debug problems which hang or crash the kernel early
1625 on boot and the crashing machine has a FireWire port, you can use
1626 this feature to remotely access the memory of the crashed machine
1627 over FireWire. This employs remote DMA as part of the OHCI1394
1628 specification which is now the standard for FireWire controllers.
1629
1630 With remote DMA, you can monitor the printk buffer remotely using
1631 firescope and access all memory below 4GB using fireproxy from gdb.
1632 Even controlling a kernel debugger is possible using remote DMA.
1633
1634 Usage:
1635
1636 If ohci1394_dma=early is used as boot parameter, it will initialize
1637 all OHCI1394 controllers which are found in the PCI config space.
1638
1639 As all changes to the FireWire bus such as enabling and disabling
1640 devices cause a bus reset and thereby disable remote DMA for all
1641 devices, be sure to have the cable plugged and FireWire enabled on
1642 the debugging host before booting the debug target for debugging.
1643
1644 This code (~1k) is freed after boot. By then, the firewire stack
1645 in charge of the OHCI-1394 controllers should be used instead.
1646
1647 See Documentation/debugging-via-ohci1394.txt for more information.
1648
1649config DMA_API_DEBUG
1650 bool "Enable debugging of DMA-API usage"
1651 depends on HAVE_DMA_API_DEBUG
1652 help
1653 Enable this option to debug the use of the DMA API by device drivers.
1654 With this option you will be able to detect common bugs in device
1655 drivers like double-freeing of DMA mappings or freeing mappings that
1656 were never allocated.
1657
1658 This also attempts to catch cases where a page owned by DMA is
1659 accessed by the cpu in a way that could cause data corruption. For
1660 example, this enables cow_user_page() to check that the source page is
1661 not undergoing DMA.
1662
1663 This option causes a performance degradation. Use only if you want to
1664 debug device drivers and dma interactions.
1665
1666 If unsure, say N.
1667
881c5149
DH
1668menu "Runtime Testing"
1669
1670config LKDTM
1671 tristate "Linux Kernel Dump Test Tool Module"
1672 depends on DEBUG_FS
1673 depends on BLOCK
1674 default n
1675 help
1676 This module enables testing of the different dumping mechanisms by
1677 inducing system failures at predefined crash points.
1678 If you don't need it: say N
1679 Choose M here to compile this code as a module. The module will be
1680 called lkdtm.
1681
1682 Documentation on how to use the module can be found in
1683 Documentation/fault-injection/provoke-crashes.txt
1684
1685config TEST_LIST_SORT
e327fd7c
GU
1686 tristate "Linked list sorting test"
1687 depends on DEBUG_KERNEL || m
881c5149
DH
1688 help
1689 Enable this to turn on 'list_sort()' function test. This test is
e327fd7c
GU
1690 executed only once during system boot (so affects only boot time),
1691 or at module load time.
881c5149
DH
1692
1693 If unsure, say N.
1694
c5adae95 1695config TEST_SORT
5c4e6798
GU
1696 tristate "Array-based sort test"
1697 depends on DEBUG_KERNEL || m
c5adae95 1698 help
5c4e6798
GU
1699 This option enables the self-test function of 'sort()' at boot,
1700 or at module load time.
c5adae95
KF
1701
1702 If unsure, say N.
1703
881c5149
DH
1704config KPROBES_SANITY_TEST
1705 bool "Kprobes sanity tests"
1706 depends on DEBUG_KERNEL
1707 depends on KPROBES
1708 default n
1709 help
1710 This option provides for testing basic kprobes functionality on
1711 boot. A sample kprobe, jprobe and kretprobe are inserted and
1712 verified for functionality.
1713
1714 Say N if you are unsure.
1715
1716config BACKTRACE_SELF_TEST
1717 tristate "Self test for the backtrace code"
1718 depends on DEBUG_KERNEL
1719 default n
1720 help
1721 This option provides a kernel module that can be used to test
1722 the kernel stack backtrace code. This option is not useful
1723 for distributions or general kernels, but only for kernel
1724 developers working on architecture code.
1725
1726 Note that if you want to also test saved backtraces, you will
1727 have to enable STACKTRACE as well.
1728
1729 Say N if you are unsure.
1730
910a742d
ML
1731config RBTREE_TEST
1732 tristate "Red-Black tree test"
7c993e11 1733 depends on DEBUG_KERNEL
910a742d
ML
1734 help
1735 A benchmark measuring the performance of the rbtree library.
1736 Also includes rbtree invariant checks.
1737
fff3fd8a
ML
1738config INTERVAL_TREE_TEST
1739 tristate "Interval tree test"
0f789b67 1740 depends on DEBUG_KERNEL
a88cc108 1741 select INTERVAL_TREE
fff3fd8a
ML
1742 help
1743 A benchmark measuring the performance of the interval tree library
1744
623fd807
GT
1745config PERCPU_TEST
1746 tristate "Per cpu operations test"
1747 depends on m && DEBUG_KERNEL
1748 help
1749 Enable this option to build test module which validates per-cpu
1750 operations.
1751
1752 If unsure, say N.
1753
881c5149 1754config ATOMIC64_SELFTEST
55ded955 1755 tristate "Perform an atomic64_t self-test"
881c5149 1756 help
55ded955
GU
1757 Enable this option to test the atomic64_t functions at boot or
1758 at module load time.
881c5149
DH
1759
1760 If unsure, say N.
1761
1762config ASYNC_RAID6_TEST
1763 tristate "Self test for hardware accelerated raid6 recovery"
1764 depends on ASYNC_RAID6_RECOV
1765 select ASYNC_MEMCPY
1766 ---help---
1767 This is a one-shot self test that permutes through the
1768 recovery of all the possible two disk failure scenarios for a
1769 N-disk array. Recovery is performed with the asynchronous
1770 raid6 recovery routines, and will optionally use an offload
1771 engine if one is available.
1772
1773 If unsure, say N.
1774
64d1d77a
AS
1775config TEST_HEXDUMP
1776 tristate "Test functions located in the hexdump module at runtime"
1777
881c5149
DH
1778config TEST_STRING_HELPERS
1779 tristate "Test functions located in the string_helpers module at runtime"
1780
1781config TEST_KSTRTOX
1782 tristate "Test kstrto*() family of functions at runtime"
1783
707cc728
RV
1784config TEST_PRINTF
1785 tristate "Test printf() family of functions at runtime"
1786
5fd003f5
DD
1787config TEST_BITMAP
1788 tristate "Test bitmap_*() family of functions at runtime"
1789 default n
1790 help
1791 Enable this option to test the bitmap functions at boot.
1792
1793 If unsure, say N.
1794
cfaff0e5
AS
1795config TEST_UUID
1796 tristate "Test functions located in the uuid module at runtime"
1797
7e1e7763 1798config TEST_RHASHTABLE
9d6dbe1b 1799 tristate "Perform selftest on resizable hash table"
7e1e7763
TG
1800 default n
1801 help
1802 Enable this option to test the rhashtable functions at boot.
1803
1804 If unsure, say N.
1805
468a9428
GS
1806config TEST_HASH
1807 tristate "Perform selftest on hash functions"
1808 default n
1809 help
2c956a60
JD
1810 Enable this option to test the kernel's integer (<linux/hash.h>),
1811 string (<linux/stringhash.h>), and siphash (<linux/siphash.h>)
1812 hash functions on boot (or module load).
468a9428
GS
1813
1814 This is intended to help people writing architecture-specific
1815 optimized versions. If unsure, say N.
1816
44091d29
JP
1817config TEST_PARMAN
1818 tristate "Perform selftest on priority array manager"
1819 default n
1820 depends on PARMAN
1821 help
1822 Enable this option to test priority array manager on boot
1823 (or module load).
1824
1825 If unsure, say N.
1826
8a6f0b47 1827config TEST_LKM
93e9ef83
KC
1828 tristate "Test module loading with 'hello world' module"
1829 default n
1830 depends on m
1831 help
1832 This builds the "test_module" module that emits "Hello, world"
1833 on printk when loaded. It is designed to be used for basic
1834 evaluation of the module loading subsystem (for example when
1835 validating module verification). It lacks any extra dependencies,
1836 and will not normally be loaded by the system unless explicitly
1837 requested by name.
1838
1839 If unsure, say N.
1840
3e2a4c18
KC
1841config TEST_USER_COPY
1842 tristate "Test user/kernel boundary protections"
1843 default n
1844 depends on m
1845 help
1846 This builds the "test_user_copy" module that runs sanity checks
1847 on the copy_to/from_user infrastructure, making sure basic
1848 user/kernel boundary testing is working. If it fails to load,
1849 a regression has been detected in the user/kernel memory boundary
1850 protections.
1851
1852 If unsure, say N.
1853
64a8946b
AS
1854config TEST_BPF
1855 tristate "Test BPF filter functionality"
1856 default n
98920ba6 1857 depends on m && NET
64a8946b
AS
1858 help
1859 This builds the "test_bpf" module that runs various test vectors
1860 against the BPF interpreter or BPF JIT compiler depending on the
1861 current setting. This is in particular useful for BPF JIT compiler
1862 development, but also to run regression tests against changes in
3c731eba
AS
1863 the interpreter code. It also enables test stubs for eBPF maps and
1864 verifier used by user space verifier testsuite.
64a8946b
AS
1865
1866 If unsure, say N.
1867
0a8adf58
KC
1868config TEST_FIRMWARE
1869 tristate "Test firmware loading via userspace interface"
1870 default n
1871 depends on FW_LOADER
1872 help
1873 This builds the "test_firmware" module that creates a userspace
1874 interface for testing firmware loading. This can be used to
1875 control the triggering of firmware loading without needing an
1876 actual firmware-using device. The contents can be rechecked by
1877 userspace.
1878
1879 If unsure, say N.
1880
9308f2f9
LR
1881config TEST_SYSCTL
1882 tristate "sysctl test driver"
1883 default n
1884 depends on PROC_SYSCTL
1885 help
1886 This builds the "test_sysctl" module. This driver enables to test the
1887 proc sysctl interfaces available to drivers safely without affecting
1888 production knobs which might alter system functionality.
1889
1890 If unsure, say N.
1891
e704f93a
DR
1892config TEST_UDELAY
1893 tristate "udelay test driver"
1894 default n
1895 help
1896 This builds the "udelay_test" module that helps to make sure
1897 that udelay() is working properly.
1898
1899 If unsure, say N.
1900
2bf9e0ab
IM
1901config TEST_STATIC_KEYS
1902 tristate "Test static keys"
579e1acb
JB
1903 default n
1904 depends on m
1905 help
2bf9e0ab 1906 Test the static key interfaces.
579e1acb
JB
1907
1908 If unsure, say N.
1909
d9c6a72d
LR
1910config TEST_KMOD
1911 tristate "kmod stress tester"
1912 default n
1913 depends on m
1914 depends on BLOCK && (64BIT || LBDAF) # for XFS, BTRFS
1915 depends on NETDEVICES && NET_CORE && INET # for TUN
1916 select TEST_LKM
1917 select XFS_FS
1918 select TUN
1919 select BTRFS_FS
1920 help
1921 Test the kernel's module loading mechanism: kmod. kmod implements
1922 support to load modules using the Linux kernel's usermode helper.
1923 This test provides a series of tests against kmod.
1924
1925 Although technically you can either build test_kmod as a module or
1926 into the kernel we disallow building it into the kernel since
1927 it stress tests request_module() and this will very likely cause
1928 some issues by taking over precious threads available from other
1929 module load requests, ultimately this could be fatal.
1930
1931 To run tests run:
1932
1933 tools/testing/selftests/kmod/kmod.sh --help
1934
1935 If unsure, say N.
1936
e4dace36
FF
1937config TEST_DEBUG_VIRTUAL
1938 tristate "Test CONFIG_DEBUG_VIRTUAL feature"
1939 depends on DEBUG_VIRTUAL
1940 help
1941 Test the kernel's ability to detect incorrect calls to
1942 virt_to_phys() done against the non-linear part of the
1943 kernel's virtual address map.
1944
1945 If unsure, say N.
1946
cc3fa840
RD
1947endmenu # runtime tests
1948
1949config MEMTEST
1950 bool "Memtest"
1951 depends on HAVE_MEMBLOCK
1952 ---help---
1953 This option adds a kernel parameter 'memtest', which allows memtest
1954 to be set.
1955 memtest=0, mean disabled; -- default
1956 memtest=1, mean do 1 test pattern;
1957 ...
1958 memtest=17, mean do 17 test patterns.
1959 If you are unsure how to answer this question, answer N.
1960
1961config BUG_ON_DATA_CORRUPTION
1962 bool "Trigger a BUG when data corruption is detected"
1963 select DEBUG_LIST
1964 help
1965 Select this option if the kernel should BUG when it encounters
1966 data corruption in kernel memory structures when they get checked
1967 for validity.
1968
1969 If unsure, say N.
e4dace36 1970
c906bc08 1971config SOFTLOCKUP_WATCHDOG_TEST
1972 bool "To test softlockup watchdog"
1973 depends on LOCKUP_DETECTOR && DEBUG_FS
1974 default n
1975 help
1976 This option provides a kernel debugfs item that can be used
1977 to test softlockup watchdog reset. This option is not useful
1978 for distributions or general kernels, but only for kernel
1979 developers working on architecture code for test purpose.
1980
1981 Say N if you are unsure.
1982
267c4025 1983source "samples/Kconfig"
dc7d5527
JW
1984
1985source "lib/Kconfig.kgdb"
0a4af3b0 1986
c6d30853
AR
1987source "lib/Kconfig.ubsan"
1988
21266be9
DW
1989config ARCH_HAS_DEVMEM_IS_ALLOWED
1990 bool
1991
1992config STRICT_DEVMEM
1993 bool "Filter access to /dev/mem"
6b2a65c7 1994 depends on MMU && DEVMEM
21266be9
DW
1995 depends on ARCH_HAS_DEVMEM_IS_ALLOWED
1996 default y if TILE || PPC
1997 ---help---
1998 If this option is disabled, you allow userspace (root) access to all
1999 of memory, including kernel and userspace memory. Accidental
2000 access to this is obviously disastrous, but specific access can
2001 be used by people debugging the kernel. Note that with PAT support
2002 enabled, even in this case there are restrictions on /dev/mem
2003 use due to the cache aliasing requirements.
2004
90a545e9
DW
2005 If this option is switched on, and IO_STRICT_DEVMEM=n, the /dev/mem
2006 file only allows userspace access to PCI space and the BIOS code and
2007 data regions. This is sufficient for dosemu and X and all common
2008 users of /dev/mem.
2009
2010 If in doubt, say Y.
2011
2012config IO_STRICT_DEVMEM
2013 bool "Filter I/O access to /dev/mem"
2014 depends on STRICT_DEVMEM
90a545e9
DW
2015 ---help---
2016 If this option is disabled, you allow userspace (root) access to all
2017 io-memory regardless of whether a driver is actively using that
2018 range. Accidental access to this is obviously disastrous, but
2019 specific access can be used by people debugging kernel drivers.
2020
21266be9 2021 If this option is switched on, the /dev/mem file only allows
90a545e9
DW
2022 userspace access to *idle* io-memory ranges (see /proc/iomem) This
2023 may break traditional users of /dev/mem (dosemu, legacy X, etc...)
2024 if the driver using a given range cannot be disabled.
21266be9
DW
2025
2026 If in doubt, say Y.
dd101ca5
DC
2027
2028menuconfig DEBUG_SNAPSHOT
2029 bool "Debug SnapShot Support"
2030 default n
2031
ddad4f4d 2032config DEBUG_SNAPSHOT_LINUX_BUILD
f12356ff 2033 bool "May be built in LINUX environment"
ddad4f4d
HK
2034 depends on DEBUG_SNAPSHOT
2035 default y
2036
f12356ff
HK
2037config DEBUG_SNAPSHOT_USER_MODE
2038 bool "Enable User Mode, Most of debug feature are disabled"
2039 depends on DEBUG_SNAPSHOT
2040 default n
2041
dd101ca5
DC
2042config DEBUG_SNAPSHOT_CALLSTACK
2043 int "shown callstack level"
2044 depends on DEBUG_SNAPSHOT
2045 range 1 4
2046 default 4
2047
dd101ca5
DC
2048config DEBUG_SNAPSHOT_IRQ_DISABLED
2049 bool "Enable debugging of interrupt disable event by kevent(EXPERIMENTAL)"
2050 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2051 default n
2052
2053config DEBUG_SNAPSHOT_SPINLOCK
2054 bool "Enable debugging of spinlock event by kevent(EXPERIMENTAL)"
2055 depends on DEBUG_SNAPSHOT && DEBUG_SPINLOCK && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2056 default y
2057
2058config DEBUG_SNAPSHOT_CLK
2059 bool "Enable debugging of clock event by kevent(EXPERIMENTAL)"
2060 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2061 default y
2062
2063config DEBUG_SNAPSHOT_PMU
2064 bool "Enable debugging of pmu event by kevent(EXPERIMENTAL)"
2065 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2066 default y
2067
2068config DEBUG_SNAPSHOT_FREQ
2069 bool "Enable debugging of frequence event by kevent(EXPERIMENTAL)"
0589b227 2070 depends on DEBUG_SNAPSHOT && PM_DEVFREQ
dd101ca5
DC
2071 default y
2072
2073config DEBUG_SNAPSHOT_DM
2074 bool "Enable debugging of dvfs manager event by kevent(EXPERIMENTAL)"
2075 depends on DEBUG_SNAPSHOT && EXYNOS_DVFS_MANAGER && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2076 default y
2077
2078config DEBUG_SNAPSHOT_HRTIMER
2079 bool "Enable debugging of hrtimer by kevent"
2080 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2081 default y
2082
2083config DEBUG_SNAPSHOT_REG
2084 bool "Enable debugging of accessing register by kevent"
2085 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2086 default n
2087
2088config DEBUG_SNAPSHOT_REGULATOR
2089 bool "Enable debugging of regulator and pmic driver"
2090 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2091 default y
2092
2093config DEBUG_SNAPSHOT_ACPM
2094 bool "Enable debugging of acpm framework"
2095 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2096 default y
2097
2098config DEBUG_SNAPSHOT_THERMAL
2099 bool "Enable debugging of thermal driver"
2100 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE && EXYNOS_THERMAL
2101 default y
2102
2103config DEBUG_SNAPSHOT_I2C
2104 bool "Enable debugging of i2c driver"
2105 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2106 default y
2107
2108config DEBUG_SNAPSHOT_SPI
2109 bool "Enable debugging of spi driver"
2110 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2111 default y
2112
ae09f559
YK
2113config DEBUG_SNAPSHOT_BINDER
2114 bool "Enable debugging of binder driver"
2115 depends on DEBUG_SNAPSHOT && !DEBUG_SNAPSHOT_MINIMIZED_MODE
2116 default y
2117
dd101ca5
DC
2118config DEBUG_SNAPSHOT_PANIC_REBOOT
2119 bool "Enable forced reboot after panic for ramdump"
2120 depends on DEBUG_SNAPSHOT
2121 default y
2122
2123config DEBUG_SNAPSHOT_WATCHDOG_RESET
2124 bool "Support watchdog reset when hardlockup detect"
2125 depends on DEBUG_SNAPSHOT && DEBUG_SNAPSHOT_PANIC_REBOOT
2126 default y
2127
2128config DEBUG_SNAPSHOT_CRASH_KEY
2129 bool "Support Crash Key to artificial panic for debugging"
2130 depends on DEBUG_SNAPSHOT && KEYBOARD_GPIO
2131 default y
2132
2133config DEBUG_SNAPSHOT_MINIMIZED_MODE
2134 bool "Support minimized feature configuration"
f12356ff 2135 depends on DEBUG_SNAPSHOT_USER_MODE
9ad0007c 2136 default y