Merge branch 'linus'
[linux-2.6/x86.git] / kernel / gcov / Kconfig
blob102c66c1d636de3c38832d72b1bb9ccb180ee4f2
1 menu "GCOV-based kernel profiling"
3 config GCOV_KERNEL
4         bool "Enable gcov-based kernel profiling"
5         depends on DEBUG_FS
6         select CONSTRUCTORS if !UML
7         depends on BROKEN
8         default n
9         ---help---
10         This option enables gcov-based code profiling (e.g. for code coverage
11         measurements).
13         If unsure, say N.
15         Additionally specify CONFIG_GCOV_PROFILE_ALL=y to get profiling data
16         for the entire kernel. To enable profiling for specific files or
17         directories, add a line similar to the following to the respective
18         Makefile:
20         For a single file (e.g. main.o):
21                 GCOV_PROFILE_main.o := y
23         For all files in one directory:
24                 GCOV_PROFILE := y
26         To exclude files from being profiled even when CONFIG_GCOV_PROFILE_ALL
27         is specified, use:
29                 GCOV_PROFILE_main.o := n
30         and:
31                 GCOV_PROFILE := n
33         Note that the debugfs filesystem has to be mounted to access
34         profiling data.
36 config GCOV_PROFILE_ALL
37         bool "Profile entire Kernel"
38         depends on GCOV_KERNEL
39         depends on SUPERH || S390 || X86 || (PPC && EXPERIMENTAL) || MICROBLAZE
40         default n
41         ---help---
42         This options activates profiling for the entire kernel.
44         If unsure, say N.
46         Note that a kernel compiled with profiling flags will be significantly
47         larger and run slower. Also be sure to exclude files from profiling
48         which are not linked to the kernel image to prevent linker errors.
50 endmenu