Kconfig 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. #
  2. # Architectures that offer an FUNCTION_TRACER implementation should
  3. # select HAVE_FUNCTION_TRACER:
  4. #
  5. config USER_STACKTRACE_SUPPORT
  6. bool
  7. config NOP_TRACER
  8. bool
  9. config HAVE_FTRACE_NMI_ENTER
  10. bool
  11. help
  12. See Documentation/trace/ftrace-design.txt
  13. config HAVE_FUNCTION_TRACER
  14. bool
  15. help
  16. See Documentation/trace/ftrace-design.txt
  17. config HAVE_FUNCTION_GRAPH_TRACER
  18. bool
  19. help
  20. See Documentation/trace/ftrace-design.txt
  21. config HAVE_FUNCTION_GRAPH_FP_TEST
  22. bool
  23. help
  24. See Documentation/trace/ftrace-design.txt
  25. config HAVE_FUNCTION_TRACE_MCOUNT_TEST
  26. bool
  27. help
  28. See Documentation/trace/ftrace-design.txt
  29. config HAVE_DYNAMIC_FTRACE
  30. bool
  31. help
  32. See Documentation/trace/ftrace-design.txt
  33. config HAVE_FTRACE_MCOUNT_RECORD
  34. bool
  35. help
  36. See Documentation/trace/ftrace-design.txt
  37. config HAVE_HW_BRANCH_TRACER
  38. bool
  39. config HAVE_SYSCALL_TRACEPOINTS
  40. bool
  41. help
  42. See Documentation/trace/ftrace-design.txt
  43. config TRACER_MAX_TRACE
  44. bool
  45. config RING_BUFFER
  46. bool
  47. config FTRACE_NMI_ENTER
  48. bool
  49. depends on HAVE_FTRACE_NMI_ENTER
  50. default y
  51. config EVENT_TRACING
  52. select CONTEXT_SWITCH_TRACER
  53. bool
  54. config CONTEXT_SWITCH_TRACER
  55. bool
  56. config RING_BUFFER_ALLOW_SWAP
  57. bool
  58. help
  59. Allow the use of ring_buffer_swap_cpu.
  60. Adds a very slight overhead to tracing when enabled.
  61. # All tracer options should select GENERIC_TRACER. For those options that are
  62. # enabled by all tracers (context switch and event tracer) they select TRACING.
  63. # This allows those options to appear when no other tracer is selected. But the
  64. # options do not appear when something else selects it. We need the two options
  65. # GENERIC_TRACER and TRACING to avoid circular dependencies to accomplish the
  66. # hiding of the automatic options.
  67. config TRACING
  68. bool
  69. select DEBUG_FS
  70. select RING_BUFFER
  71. select STACKTRACE if STACKTRACE_SUPPORT
  72. select TRACEPOINTS
  73. select NOP_TRACER
  74. select BINARY_PRINTF
  75. select EVENT_TRACING
  76. config GENERIC_TRACER
  77. bool
  78. select TRACING
  79. #
  80. # Minimum requirements an architecture has to meet for us to
  81. # be able to offer generic tracing facilities:
  82. #
  83. config TRACING_SUPPORT
  84. bool
  85. # PPC32 has no irqflags tracing support, but it can use most of the
  86. # tracers anyway, they were tested to build and work. Note that new
  87. # exceptions to this list aren't welcomed, better implement the
  88. # irqflags tracing for your architecture.
  89. depends on TRACE_IRQFLAGS_SUPPORT || PPC32
  90. depends on STACKTRACE_SUPPORT
  91. default y
  92. if TRACING_SUPPORT
  93. menuconfig FTRACE
  94. bool "Tracers"
  95. default y if DEBUG_KERNEL
  96. help
  97. Enable the kernel tracing infrastructure.
  98. if FTRACE
  99. config FUNCTION_TRACER
  100. bool "Kernel Function Tracer"
  101. depends on HAVE_FUNCTION_TRACER
  102. select FRAME_POINTER
  103. select KALLSYMS
  104. select GENERIC_TRACER
  105. select CONTEXT_SWITCH_TRACER
  106. help
  107. Enable the kernel to trace every kernel function. This is done
  108. by using a compiler feature to insert a small, 5-byte No-Operation
  109. instruction at the beginning of every kernel function, which NOP
  110. sequence is then dynamically patched into a tracer call when
  111. tracing is enabled by the administrator. If it's runtime disabled
  112. (the bootup default), then the overhead of the instructions is very
  113. small and not measurable even in micro-benchmarks.
  114. config FUNCTION_GRAPH_TRACER
  115. bool "Kernel Function Graph Tracer"
  116. depends on HAVE_FUNCTION_GRAPH_TRACER
  117. depends on FUNCTION_TRACER
  118. depends on !X86_32 || !CC_OPTIMIZE_FOR_SIZE
  119. default y
  120. help
  121. Enable the kernel to trace a function at both its return
  122. and its entry.
  123. Its first purpose is to trace the duration of functions and
  124. draw a call graph for each thread with some information like
  125. the return value. This is done by setting the current return
  126. address on the current task structure into a stack of calls.
  127. config IRQSOFF_TRACER
  128. bool "Interrupts-off Latency Tracer"
  129. default n
  130. depends on TRACE_IRQFLAGS_SUPPORT
  131. depends on GENERIC_TIME
  132. select TRACE_IRQFLAGS
  133. select GENERIC_TRACER
  134. select TRACER_MAX_TRACE
  135. select RING_BUFFER_ALLOW_SWAP
  136. help
  137. This option measures the time spent in irqs-off critical
  138. sections, with microsecond accuracy.
  139. The default measurement method is a maximum search, which is
  140. disabled by default and can be runtime (re-)started
  141. via:
  142. echo 0 > /sys/kernel/debug/tracing/tracing_max_latency
  143. (Note that kernel size and overhead increase with this option
  144. enabled. This option and the preempt-off timing option can be
  145. used together or separately.)
  146. config PREEMPT_TRACER
  147. bool "Preemption-off Latency Tracer"
  148. default n
  149. depends on GENERIC_TIME
  150. depends on PREEMPT
  151. select GENERIC_TRACER
  152. select TRACER_MAX_TRACE
  153. select RING_BUFFER_ALLOW_SWAP
  154. help
  155. This option measures the time spent in preemption-off critical
  156. sections, with microsecond accuracy.
  157. The default measurement method is a maximum search, which is
  158. disabled by default and can be runtime (re-)started
  159. via:
  160. echo 0 > /sys/kernel/debug/tracing/tracing_max_latency
  161. (Note that kernel size and overhead increase with this option
  162. enabled. This option and the irqs-off timing option can be
  163. used together or separately.)
  164. config SYSPROF_TRACER
  165. bool "Sysprof Tracer"
  166. depends on X86
  167. select GENERIC_TRACER
  168. select CONTEXT_SWITCH_TRACER
  169. help
  170. This tracer provides the trace needed by the 'Sysprof' userspace
  171. tool.
  172. config SCHED_TRACER
  173. bool "Scheduling Latency Tracer"
  174. select GENERIC_TRACER
  175. select CONTEXT_SWITCH_TRACER
  176. select TRACER_MAX_TRACE
  177. help
  178. This tracer tracks the latency of the highest priority task
  179. to be scheduled in, starting from the point it has woken up.
  180. config ENABLE_DEFAULT_TRACERS
  181. bool "Trace process context switches and events"
  182. depends on !GENERIC_TRACER
  183. select TRACING
  184. help
  185. This tracer hooks to various trace points in the kernel,
  186. allowing the user to pick and choose which trace point they
  187. want to trace. It also includes the sched_switch tracer plugin.
  188. config FTRACE_SYSCALLS
  189. bool "Trace syscalls"
  190. depends on HAVE_SYSCALL_TRACEPOINTS
  191. select GENERIC_TRACER
  192. select KALLSYMS
  193. help
  194. Basic tracer to catch the syscall entry and exit events.
  195. config BOOT_TRACER
  196. bool "Trace boot initcalls"
  197. select GENERIC_TRACER
  198. select CONTEXT_SWITCH_TRACER
  199. help
  200. This tracer helps developers to optimize boot times: it records
  201. the timings of the initcalls and traces key events and the identity
  202. of tasks that can cause boot delays, such as context-switches.
  203. Its aim is to be parsed by the scripts/bootgraph.pl tool to
  204. produce pretty graphics about boot inefficiencies, giving a visual
  205. representation of the delays during initcalls - but the raw
  206. /debug/tracing/trace text output is readable too.
  207. You must pass in initcall_debug and ftrace=initcall to the kernel
  208. command line to enable this on bootup.
  209. config TRACE_BRANCH_PROFILING
  210. bool
  211. select GENERIC_TRACER
  212. choice
  213. prompt "Branch Profiling"
  214. default BRANCH_PROFILE_NONE
  215. help
  216. The branch profiling is a software profiler. It will add hooks
  217. into the C conditionals to test which path a branch takes.
  218. The likely/unlikely profiler only looks at the conditions that
  219. are annotated with a likely or unlikely macro.
  220. The "all branch" profiler will profile every if-statement in the
  221. kernel. This profiler will also enable the likely/unlikely
  222. profiler.
  223. Either of the above profilers adds a bit of overhead to the system.
  224. If unsure, choose "No branch profiling".
  225. config BRANCH_PROFILE_NONE
  226. bool "No branch profiling"
  227. help
  228. No branch profiling. Branch profiling adds a bit of overhead.
  229. Only enable it if you want to analyse the branching behavior.
  230. Otherwise keep it disabled.
  231. config PROFILE_ANNOTATED_BRANCHES
  232. bool "Trace likely/unlikely profiler"
  233. select TRACE_BRANCH_PROFILING
  234. help
  235. This tracer profiles all the the likely and unlikely macros
  236. in the kernel. It will display the results in:
  237. /sys/kernel/debug/tracing/profile_annotated_branch
  238. Note: this will add a significant overhead; only turn this
  239. on if you need to profile the system's use of these macros.
  240. config PROFILE_ALL_BRANCHES
  241. bool "Profile all if conditionals"
  242. select TRACE_BRANCH_PROFILING
  243. help
  244. This tracer profiles all branch conditions. Every if ()
  245. taken in the kernel is recorded whether it hit or miss.
  246. The results will be displayed in:
  247. /sys/kernel/debug/tracing/profile_branch
  248. This option also enables the likely/unlikely profiler.
  249. This configuration, when enabled, will impose a great overhead
  250. on the system. This should only be enabled when the system
  251. is to be analyzed in much detail.
  252. endchoice
  253. config TRACING_BRANCHES
  254. bool
  255. help
  256. Selected by tracers that will trace the likely and unlikely
  257. conditions. This prevents the tracers themselves from being
  258. profiled. Profiling the tracing infrastructure can only happen
  259. when the likelys and unlikelys are not being traced.
  260. config BRANCH_TRACER
  261. bool "Trace likely/unlikely instances"
  262. depends on TRACE_BRANCH_PROFILING
  263. select TRACING_BRANCHES
  264. help
  265. This traces the events of likely and unlikely condition
  266. calls in the kernel. The difference between this and the
  267. "Trace likely/unlikely profiler" is that this is not a
  268. histogram of the callers, but actually places the calling
  269. events into a running trace buffer to see when and where the
  270. events happened, as well as their results.
  271. Say N if unsure.
  272. config KSYM_TRACER
  273. bool "Trace read and write access on kernel memory locations"
  274. depends on HAVE_HW_BREAKPOINT
  275. select TRACING
  276. help
  277. This tracer helps find read and write operations on any given kernel
  278. symbol i.e. /proc/kallsyms.
  279. config PROFILE_KSYM_TRACER
  280. bool "Profile all kernel memory accesses on 'watched' variables"
  281. depends on KSYM_TRACER
  282. help
  283. This tracer profiles kernel accesses on variables watched through the
  284. ksym tracer ftrace plugin. Depending upon the hardware, all read
  285. and write operations on kernel variables can be monitored for
  286. accesses.
  287. The results will be displayed in:
  288. /debugfs/tracing/profile_ksym
  289. Say N if unsure.
  290. config STACK_TRACER
  291. bool "Trace max stack"
  292. depends on HAVE_FUNCTION_TRACER
  293. select FUNCTION_TRACER
  294. select STACKTRACE
  295. select KALLSYMS
  296. help
  297. This special tracer records the maximum stack footprint of the
  298. kernel and displays it in /sys/kernel/debug/tracing/stack_trace.
  299. This tracer works by hooking into every function call that the
  300. kernel executes, and keeping a maximum stack depth value and
  301. stack-trace saved. If this is configured with DYNAMIC_FTRACE
  302. then it will not have any overhead while the stack tracer
  303. is disabled.
  304. To enable the stack tracer on bootup, pass in 'stacktrace'
  305. on the kernel command line.
  306. The stack tracer can also be enabled or disabled via the
  307. sysctl kernel.stack_tracer_enabled
  308. Say N if unsure.
  309. config HW_BRANCH_TRACER
  310. depends on HAVE_HW_BRANCH_TRACER
  311. bool "Trace hw branches"
  312. select GENERIC_TRACER
  313. help
  314. This tracer records all branches on the system in a circular
  315. buffer, giving access to the last N branches for each cpu.
  316. config KMEMTRACE
  317. bool "Trace SLAB allocations"
  318. select GENERIC_TRACER
  319. help
  320. kmemtrace provides tracing for slab allocator functions, such as
  321. kmalloc, kfree, kmem_cache_alloc, kmem_cache_free, etc. Collected
  322. data is then fed to the userspace application in order to analyse
  323. allocation hotspots, internal fragmentation and so on, making it
  324. possible to see how well an allocator performs, as well as debug
  325. and profile kernel code.
  326. This requires an userspace application to use. See
  327. Documentation/trace/kmemtrace.txt for more information.
  328. Saying Y will make the kernel somewhat larger and slower. However,
  329. if you disable kmemtrace at run-time or boot-time, the performance
  330. impact is minimal (depending on the arch the kernel is built for).
  331. If unsure, say N.
  332. config WORKQUEUE_TRACER
  333. bool "Trace workqueues"
  334. select GENERIC_TRACER
  335. help
  336. The workqueue tracer provides some statistical information
  337. about each cpu workqueue thread such as the number of the
  338. works inserted and executed since their creation. It can help
  339. to evaluate the amount of work each of them has to perform.
  340. For example it can help a developer to decide whether he should
  341. choose a per-cpu workqueue instead of a singlethreaded one.
  342. config BLK_DEV_IO_TRACE
  343. bool "Support for tracing block IO actions"
  344. depends on SYSFS
  345. depends on BLOCK
  346. select RELAY
  347. select DEBUG_FS
  348. select TRACEPOINTS
  349. select GENERIC_TRACER
  350. select STACKTRACE
  351. help
  352. Say Y here if you want to be able to trace the block layer actions
  353. on a given queue. Tracing allows you to see any traffic happening
  354. on a block device queue. For more information (and the userspace
  355. support tools needed), fetch the blktrace tools from:
  356. git://git.kernel.dk/blktrace.git
  357. Tracing also is possible using the ftrace interface, e.g.:
  358. echo 1 > /sys/block/sda/sda1/trace/enable
  359. echo blk > /sys/kernel/debug/tracing/current_tracer
  360. cat /sys/kernel/debug/tracing/trace_pipe
  361. If unsure, say N.
  362. config KPROBE_EVENT
  363. depends on KPROBES
  364. depends on HAVE_REGS_AND_STACK_ACCESS_API
  365. bool "Enable kprobes-based dynamic events"
  366. select TRACING
  367. default y
  368. help
  369. This allows the user to add tracing events (similar to tracepoints)
  370. on the fly via the ftrace interface. See
  371. Documentation/trace/kprobetrace.txt for more details.
  372. Those events can be inserted wherever kprobes can probe, and record
  373. various register and memory values.
  374. This option is also required by perf-probe subcommand of perf tools.
  375. If you want to use perf tools, this option is strongly recommended.
  376. config DYNAMIC_FTRACE
  377. bool "enable/disable ftrace tracepoints dynamically"
  378. depends on FUNCTION_TRACER
  379. depends on HAVE_DYNAMIC_FTRACE
  380. default y
  381. help
  382. This option will modify all the calls to ftrace dynamically
  383. (will patch them out of the binary image and replace them
  384. with a No-Op instruction) as they are called. A table is
  385. created to dynamically enable them again.
  386. This way a CONFIG_FUNCTION_TRACER kernel is slightly larger, but
  387. otherwise has native performance as long as no tracing is active.
  388. The changes to the code are done by a kernel thread that
  389. wakes up once a second and checks to see if any ftrace calls
  390. were made. If so, it runs stop_machine (stops all CPUS)
  391. and modifies the code to jump over the call to ftrace.
  392. config FUNCTION_PROFILER
  393. bool "Kernel function profiler"
  394. depends on FUNCTION_TRACER
  395. default n
  396. help
  397. This option enables the kernel function profiler. A file is created
  398. in debugfs called function_profile_enabled which defaults to zero.
  399. When a 1 is echoed into this file profiling begins, and when a
  400. zero is entered, profiling stops. A "functions" file is created in
  401. the trace_stats directory; this file shows the list of functions that
  402. have been hit and their counters.
  403. If in doubt, say N.
  404. config FTRACE_MCOUNT_RECORD
  405. def_bool y
  406. depends on DYNAMIC_FTRACE
  407. depends on HAVE_FTRACE_MCOUNT_RECORD
  408. config FTRACE_SELFTEST
  409. bool
  410. config FTRACE_STARTUP_TEST
  411. bool "Perform a startup test on ftrace"
  412. depends on GENERIC_TRACER
  413. select FTRACE_SELFTEST
  414. help
  415. This option performs a series of startup tests on ftrace. On bootup
  416. a series of tests are made to verify that the tracer is
  417. functioning properly. It will do tests on all the configured
  418. tracers of ftrace.
  419. config EVENT_TRACE_TEST_SYSCALLS
  420. bool "Run selftest on syscall events"
  421. depends on FTRACE_STARTUP_TEST
  422. help
  423. This option will also enable testing every syscall event.
  424. It only enables the event and disables it and runs various loads
  425. with the event enabled. This adds a bit more time for kernel boot
  426. up since it runs this on every system call defined.
  427. TBD - enable a way to actually call the syscalls as we test their
  428. events
  429. config MMIOTRACE
  430. bool "Memory mapped IO tracing"
  431. depends on HAVE_MMIOTRACE_SUPPORT && PCI
  432. select GENERIC_TRACER
  433. help
  434. Mmiotrace traces Memory Mapped I/O access and is meant for
  435. debugging and reverse engineering. It is called from the ioremap
  436. implementation and works via page faults. Tracing is disabled by
  437. default and can be enabled at run-time.
  438. See Documentation/trace/mmiotrace.txt.
  439. If you are not helping to develop drivers, say N.
  440. config MMIOTRACE_TEST
  441. tristate "Test module for mmiotrace"
  442. depends on MMIOTRACE && m
  443. help
  444. This is a dumb module for testing mmiotrace. It is very dangerous
  445. as it will write garbage to IO memory starting at a given address.
  446. However, it should be safe to use on e.g. unused portion of VRAM.
  447. Say N, unless you absolutely know what you are doing.
  448. config RING_BUFFER_BENCHMARK
  449. tristate "Ring buffer benchmark stress tester"
  450. depends on RING_BUFFER
  451. help
  452. This option creates a test to stress the ring buffer and benchmark it.
  453. It creates its own ring buffer such that it will not interfere with
  454. any other users of the ring buffer (such as ftrace). It then creates
  455. a producer and consumer that will run for 10 seconds and sleep for
  456. 10 seconds. Each interval it will print out the number of events
  457. it recorded and give a rough estimate of how long each iteration took.
  458. It does not disable interrupts or raise its priority, so it may be
  459. affected by processes that are running.
  460. If unsure, say N.
  461. endif # FTRACE
  462. endif # TRACING_SUPPORT