Arnaldo Carvalho de Melo | 16444a8 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1 | # |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 2 | # Architectures that offer an FUNCTION_TRACER implementation should |
| 3 | # select HAVE_FUNCTION_TRACER: |
Arnaldo Carvalho de Melo | 16444a8 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4 | # |
Frédéric Weisbecker | 2a3a4f6 | 2008-09-21 20:12:14 +0200 | [diff] [blame] | 5 | |
| 6 | config NOP_TRACER |
| 7 | bool |
| 8 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 9 | config HAVE_FUNCTION_TRACER |
Arnaldo Carvalho de Melo | 16444a8 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 10 | bool |
Steven Rostedt | bc0c38d | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 11 | |
Frederic Weisbecker | 15e6cb3 | 2008-11-11 07:14:25 +0100 | [diff] [blame] | 12 | config HAVE_FUNCTION_RET_TRACER |
| 13 | bool |
| 14 | |
Steven Rostedt | 60a7ecf | 2008-11-05 16:05:44 -0500 | [diff] [blame] | 15 | config HAVE_FUNCTION_TRACE_MCOUNT_TEST |
| 16 | bool |
| 17 | help |
| 18 | This gets selected when the arch tests the function_trace_stop |
| 19 | variable at the mcount call site. Otherwise, this variable |
| 20 | is tested by the called function. |
| 21 | |
Steven Rostedt | 677aa9f | 2008-05-17 00:01:36 -0400 | [diff] [blame] | 22 | config HAVE_DYNAMIC_FTRACE |
| 23 | bool |
| 24 | |
Steven Rostedt | 8da3821 | 2008-08-14 15:45:07 -0400 | [diff] [blame] | 25 | config HAVE_FTRACE_MCOUNT_RECORD |
| 26 | bool |
| 27 | |
Steven Rostedt | 352ad25 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 28 | config TRACER_MAX_TRACE |
| 29 | bool |
| 30 | |
Steven Rostedt | 7a8e76a | 2008-09-29 23:02:38 -0400 | [diff] [blame] | 31 | config RING_BUFFER |
| 32 | bool |
| 33 | |
Steven Rostedt | bc0c38d | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 34 | config TRACING |
| 35 | bool |
| 36 | select DEBUG_FS |
Steven Rostedt | 7a8e76a | 2008-09-29 23:02:38 -0400 | [diff] [blame] | 37 | select RING_BUFFER |
Al Viro | c2c8052 | 2008-10-31 19:50:41 +0000 | [diff] [blame] | 38 | select STACKTRACE if STACKTRACE_SUPPORT |
Ingo Molnar | 5f87f11 | 2008-07-23 14:15:22 +0200 | [diff] [blame] | 39 | select TRACEPOINTS |
Steven Rostedt | f3384b2 | 2008-10-29 11:15:57 -0400 | [diff] [blame] | 40 | select NOP_TRACER |
Steven Rostedt | bc0c38d | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 41 | |
Peter Zijlstra | 17d80fd | 2008-10-21 16:31:18 +0200 | [diff] [blame] | 42 | menu "Tracers" |
| 43 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 44 | config FUNCTION_TRACER |
Steven Rostedt | 1b29b01 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 45 | bool "Kernel Function Tracer" |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 46 | depends on HAVE_FUNCTION_TRACER |
Ingo Molnar | d3ee6d9 | 2008-09-04 14:04:51 +0200 | [diff] [blame] | 47 | depends on DEBUG_KERNEL |
Steven Rostedt | 1b29b01 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 48 | select FRAME_POINTER |
| 49 | select TRACING |
Steven Rostedt | 35e8e30 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 50 | select CONTEXT_SWITCH_TRACER |
Steven Rostedt | 1b29b01 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 51 | help |
| 52 | Enable the kernel to trace every kernel function. This is done |
| 53 | by using a compiler feature to insert a small, 5-byte No-Operation |
| 54 | instruction to the beginning of every kernel function, which NOP |
| 55 | sequence is then dynamically patched into a tracer call when |
| 56 | tracing is enabled by the administrator. If it's runtime disabled |
| 57 | (the bootup default), then the overhead of the instructions is very |
| 58 | small and not measurable even in micro-benchmarks. |
Steven Rostedt | 35e8e30 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 59 | |
Frederic Weisbecker | 15e6cb3 | 2008-11-11 07:14:25 +0100 | [diff] [blame] | 60 | config FUNCTION_RET_TRACER |
| 61 | bool "Kernel Function return Tracer" |
Frederic Weisbecker | 15e6cb3 | 2008-11-11 07:14:25 +0100 | [diff] [blame] | 62 | depends on HAVE_FUNCTION_RET_TRACER |
| 63 | depends on FUNCTION_TRACER |
| 64 | help |
| 65 | Enable the kernel to trace a function at its return. |
| 66 | It's first purpose is to trace the duration of functions. |
| 67 | This is done by setting the current return address on the thread |
| 68 | info structure of the current task. |
| 69 | |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 70 | config IRQSOFF_TRACER |
| 71 | bool "Interrupts-off Latency Tracer" |
| 72 | default n |
| 73 | depends on TRACE_IRQFLAGS_SUPPORT |
| 74 | depends on GENERIC_TIME |
Ingo Molnar | d3ee6d9 | 2008-09-04 14:04:51 +0200 | [diff] [blame] | 75 | depends on DEBUG_KERNEL |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 76 | select TRACE_IRQFLAGS |
| 77 | select TRACING |
| 78 | select TRACER_MAX_TRACE |
| 79 | help |
| 80 | This option measures the time spent in irqs-off critical |
| 81 | sections, with microsecond accuracy. |
| 82 | |
| 83 | The default measurement method is a maximum search, which is |
| 84 | disabled by default and can be runtime (re-)started |
| 85 | via: |
| 86 | |
| 87 | echo 0 > /debugfs/tracing/tracing_max_latency |
| 88 | |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 89 | (Note that kernel size and overhead increases with this option |
| 90 | enabled. This option and the preempt-off timing option can be |
| 91 | used together or separately.) |
| 92 | |
| 93 | config PREEMPT_TRACER |
| 94 | bool "Preemption-off Latency Tracer" |
| 95 | default n |
| 96 | depends on GENERIC_TIME |
| 97 | depends on PREEMPT |
Ingo Molnar | d3ee6d9 | 2008-09-04 14:04:51 +0200 | [diff] [blame] | 98 | depends on DEBUG_KERNEL |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 99 | select TRACING |
| 100 | select TRACER_MAX_TRACE |
| 101 | help |
| 102 | This option measures the time spent in preemption off critical |
| 103 | sections, with microsecond accuracy. |
| 104 | |
| 105 | The default measurement method is a maximum search, which is |
| 106 | disabled by default and can be runtime (re-)started |
| 107 | via: |
| 108 | |
| 109 | echo 0 > /debugfs/tracing/tracing_max_latency |
| 110 | |
| 111 | (Note that kernel size and overhead increases with this option |
| 112 | enabled. This option and the irqs-off timing option can be |
| 113 | used together or separately.) |
| 114 | |
Ingo Molnar | f06c381 | 2008-05-12 21:20:47 +0200 | [diff] [blame] | 115 | config SYSPROF_TRACER |
| 116 | bool "Sysprof Tracer" |
Thomas Gleixner | 4d2df79 | 2008-05-24 15:00:46 +0200 | [diff] [blame] | 117 | depends on X86 |
Ingo Molnar | f06c381 | 2008-05-12 21:20:47 +0200 | [diff] [blame] | 118 | select TRACING |
| 119 | help |
| 120 | This tracer provides the trace needed by the 'Sysprof' userspace |
| 121 | tool. |
| 122 | |
Steven Rostedt | 352ad25 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 123 | config SCHED_TRACER |
| 124 | bool "Scheduling Latency Tracer" |
Ingo Molnar | d3ee6d9 | 2008-09-04 14:04:51 +0200 | [diff] [blame] | 125 | depends on DEBUG_KERNEL |
Steven Rostedt | 352ad25 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 126 | select TRACING |
| 127 | select CONTEXT_SWITCH_TRACER |
| 128 | select TRACER_MAX_TRACE |
| 129 | help |
| 130 | This tracer tracks the latency of the highest priority task |
| 131 | to be scheduled in, starting from the point it has woken up. |
| 132 | |
Steven Rostedt | 35e8e30 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 133 | config CONTEXT_SWITCH_TRACER |
| 134 | bool "Trace process context switches" |
Ingo Molnar | d3ee6d9 | 2008-09-04 14:04:51 +0200 | [diff] [blame] | 135 | depends on DEBUG_KERNEL |
Steven Rostedt | 35e8e30 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 136 | select TRACING |
| 137 | select MARKERS |
| 138 | help |
| 139 | This tracer gets called from the context switch and records |
| 140 | all switching of tasks. |
| 141 | |
Frédéric Weisbecker | 1f5c2ab | 2008-09-23 11:36:20 +0100 | [diff] [blame] | 142 | config BOOT_TRACER |
| 143 | bool "Trace boot initcalls" |
Frédéric Weisbecker | 1f5c2ab | 2008-09-23 11:36:20 +0100 | [diff] [blame] | 144 | depends on DEBUG_KERNEL |
| 145 | select TRACING |
Frederic Weisbecker | ea31e72 | 2008-10-22 19:26:23 +0200 | [diff] [blame] | 146 | select CONTEXT_SWITCH_TRACER |
Frédéric Weisbecker | 1f5c2ab | 2008-09-23 11:36:20 +0100 | [diff] [blame] | 147 | help |
| 148 | This tracer helps developers to optimize boot times: it records |
Ingo Molnar | 98d9c66 | 2008-10-14 14:27:20 +0200 | [diff] [blame] | 149 | the timings of the initcalls and traces key events and the identity |
| 150 | of tasks that can cause boot delays, such as context-switches. |
| 151 | |
| 152 | Its aim is to be parsed by the /scripts/bootgraph.pl tool to |
| 153 | produce pretty graphics about boot inefficiencies, giving a visual |
| 154 | representation of the delays during initcalls - but the raw |
| 155 | /debug/tracing/trace text output is readable too. |
| 156 | |
| 157 | ( Note that tracing self tests can't be enabled if this tracer is |
| 158 | selected, because the self-tests are an initcall as well and that |
| 159 | would invalidate the boot trace. ) |
Frédéric Weisbecker | 1f5c2ab | 2008-09-23 11:36:20 +0100 | [diff] [blame] | 160 | |
Steven Rostedt | 2ed84ee | 2008-11-12 15:24:24 -0500 | [diff] [blame] | 161 | config TRACE_BRANCH_PROFILING |
Steven Rostedt | 1f0d69a | 2008-11-12 00:14:39 -0500 | [diff] [blame] | 162 | bool "Trace likely/unlikely profiler" |
| 163 | depends on DEBUG_KERNEL |
| 164 | select TRACING |
| 165 | help |
| 166 | This tracer profiles all the the likely and unlikely macros |
| 167 | in the kernel. It will display the results in: |
| 168 | |
Steven Rostedt | 45b7974 | 2008-11-21 00:40:40 -0500 | [diff] [blame] | 169 | /debugfs/tracing/profile_annotated_branch |
Steven Rostedt | 1f0d69a | 2008-11-12 00:14:39 -0500 | [diff] [blame] | 170 | |
| 171 | Note: this will add a significant overhead, only turn this |
| 172 | on if you need to profile the system's use of these macros. |
| 173 | |
| 174 | Say N if unsure. |
| 175 | |
Steven Rostedt | 2bcd521 | 2008-11-21 01:30:54 -0500 | [diff] [blame^] | 176 | config PROFILE_ALL_BRANCHES |
| 177 | bool "Profile all if conditionals" |
| 178 | depends on TRACE_BRANCH_PROFILING |
| 179 | help |
| 180 | This tracer profiles all branch conditions. Every if () |
| 181 | taken in the kernel is recorded whether it hit or miss. |
| 182 | The results will be displayed in: |
| 183 | |
| 184 | /debugfs/tracing/profile_branch |
| 185 | |
| 186 | This configuration, when enabled, will impose a great overhead |
| 187 | on the system. This should only be enabled when the system |
| 188 | is to be analyzed |
| 189 | |
| 190 | Say N if unsure. |
| 191 | |
Steven Rostedt | 2ed84ee | 2008-11-12 15:24:24 -0500 | [diff] [blame] | 192 | config TRACING_BRANCHES |
Steven Rostedt | 52f232c | 2008-11-12 00:14:40 -0500 | [diff] [blame] | 193 | bool |
| 194 | help |
| 195 | Selected by tracers that will trace the likely and unlikely |
| 196 | conditions. This prevents the tracers themselves from being |
| 197 | profiled. Profiling the tracing infrastructure can only happen |
| 198 | when the likelys and unlikelys are not being traced. |
| 199 | |
Steven Rostedt | 2ed84ee | 2008-11-12 15:24:24 -0500 | [diff] [blame] | 200 | config BRANCH_TRACER |
Steven Rostedt | 52f232c | 2008-11-12 00:14:40 -0500 | [diff] [blame] | 201 | bool "Trace likely/unlikely instances" |
Steven Rostedt | 2ed84ee | 2008-11-12 15:24:24 -0500 | [diff] [blame] | 202 | depends on TRACE_BRANCH_PROFILING |
| 203 | select TRACING_BRANCHES |
Steven Rostedt | 52f232c | 2008-11-12 00:14:40 -0500 | [diff] [blame] | 204 | help |
| 205 | This traces the events of likely and unlikely condition |
| 206 | calls in the kernel. The difference between this and the |
| 207 | "Trace likely/unlikely profiler" is that this is not a |
| 208 | histogram of the callers, but actually places the calling |
| 209 | events into a running trace buffer to see when and where the |
| 210 | events happened, as well as their results. |
| 211 | |
| 212 | Say N if unsure. |
| 213 | |
Steven Rostedt | e5a81b6 | 2008-08-27 23:31:01 -0400 | [diff] [blame] | 214 | config STACK_TRACER |
| 215 | bool "Trace max stack" |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 216 | depends on HAVE_FUNCTION_TRACER |
Ingo Molnar | 2ff01c6 | 2008-09-04 15:04:37 +0200 | [diff] [blame] | 217 | depends on DEBUG_KERNEL |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 218 | select FUNCTION_TRACER |
Steven Rostedt | e5a81b6 | 2008-08-27 23:31:01 -0400 | [diff] [blame] | 219 | select STACKTRACE |
| 220 | help |
Ingo Molnar | 4519d9e | 2008-10-14 14:15:43 +0200 | [diff] [blame] | 221 | This special tracer records the maximum stack footprint of the |
| 222 | kernel and displays it in debugfs/tracing/stack_trace. |
| 223 | |
| 224 | This tracer works by hooking into every function call that the |
| 225 | kernel executes, and keeping a maximum stack depth value and |
| 226 | stack-trace saved. Because this logic has to execute in every |
| 227 | kernel function, all the time, this option can slow down the |
| 228 | kernel measurably and is generally intended for kernel |
| 229 | developers only. |
| 230 | |
| 231 | Say N if unsure. |
Steven Rostedt | e5a81b6 | 2008-08-27 23:31:01 -0400 | [diff] [blame] | 232 | |
Steven Rostedt | 3d08339 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 233 | config DYNAMIC_FTRACE |
| 234 | bool "enable/disable ftrace tracepoints dynamically" |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 235 | depends on FUNCTION_TRACER |
Steven Rostedt | 677aa9f | 2008-05-17 00:01:36 -0400 | [diff] [blame] | 236 | depends on HAVE_DYNAMIC_FTRACE |
Ingo Molnar | d3ee6d9 | 2008-09-04 14:04:51 +0200 | [diff] [blame] | 237 | depends on DEBUG_KERNEL |
Steven Rostedt | 3d08339 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 238 | default y |
| 239 | help |
| 240 | This option will modify all the calls to ftrace dynamically |
| 241 | (will patch them out of the binary image and replaces them |
| 242 | with a No-Op instruction) as they are called. A table is |
| 243 | created to dynamically enable them again. |
| 244 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 245 | This way a CONFIG_FUNCTION_TRACER kernel is slightly larger, but otherwise |
Steven Rostedt | 3d08339 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 246 | has native performance as long as no tracing is active. |
| 247 | |
| 248 | The changes to the code are done by a kernel thread that |
| 249 | wakes up once a second and checks to see if any ftrace calls |
| 250 | were made. If so, it runs stop_machine (stops all CPUS) |
| 251 | and modifies the code to jump over the call to ftrace. |
Steven Rostedt | 60a1177 | 2008-05-12 21:20:44 +0200 | [diff] [blame] | 252 | |
Steven Rostedt | 8da3821 | 2008-08-14 15:45:07 -0400 | [diff] [blame] | 253 | config FTRACE_MCOUNT_RECORD |
| 254 | def_bool y |
| 255 | depends on DYNAMIC_FTRACE |
| 256 | depends on HAVE_FTRACE_MCOUNT_RECORD |
| 257 | |
Steven Rostedt | 60a1177 | 2008-05-12 21:20:44 +0200 | [diff] [blame] | 258 | config FTRACE_SELFTEST |
| 259 | bool |
| 260 | |
| 261 | config FTRACE_STARTUP_TEST |
| 262 | bool "Perform a startup test on ftrace" |
Frédéric Weisbecker | 3ce2b92 | 2008-09-24 10:36:09 +0100 | [diff] [blame] | 263 | depends on TRACING && DEBUG_KERNEL && !BOOT_TRACER |
Steven Rostedt | 60a1177 | 2008-05-12 21:20:44 +0200 | [diff] [blame] | 264 | select FTRACE_SELFTEST |
| 265 | help |
| 266 | This option performs a series of startup tests on ftrace. On bootup |
| 267 | a series of tests are made to verify that the tracer is |
| 268 | functioning properly. It will do tests on all the configured |
| 269 | tracers of ftrace. |
Peter Zijlstra | 17d80fd | 2008-10-21 16:31:18 +0200 | [diff] [blame] | 270 | |
| 271 | endmenu |