diff options
Diffstat (limited to 'kernel/trace/Kconfig')
-rw-r--r-- | kernel/trace/Kconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/kernel/trace/Kconfig b/kernel/trace/Kconfig index ce5a5c54ac8f..ea4bff6295fc 100644 --- a/kernel/trace/Kconfig +++ b/kernel/trace/Kconfig | |||
@@ -386,6 +386,22 @@ config KPROBE_EVENT | |||
386 | This option is also required by perf-probe subcommand of perf tools. | 386 | This option is also required by perf-probe subcommand of perf tools. |
387 | If you want to use perf tools, this option is strongly recommended. | 387 | If you want to use perf tools, this option is strongly recommended. |
388 | 388 | ||
389 | config UPROBE_EVENT | ||
390 | bool "Enable uprobes-based dynamic events" | ||
391 | depends on ARCH_SUPPORTS_UPROBES | ||
392 | depends on MMU | ||
393 | select UPROBES | ||
394 | select PROBE_EVENTS | ||
395 | select TRACING | ||
396 | default n | ||
397 | help | ||
398 | This allows the user to add tracing events on top of userspace | ||
399 | dynamic events (similar to tracepoints) on the fly via the trace | ||
400 | events interface. Those events can be inserted wherever uprobes | ||
401 | can probe, and record various registers. | ||
402 | This option is required if you plan to use perf-probe subcommand | ||
403 | of perf tools on user space applications. | ||
404 | |||
389 | config PROBE_EVENTS | 405 | config PROBE_EVENTS |
390 | def_bool n | 406 | def_bool n |
391 | 407 | ||