File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -792,6 +792,20 @@ config UPROBE_EVENTS
792
792
This option is required if you plan to use perf-probe subcommand
793
793
of perf tools on user space applications.
794
794
795
+ config EPROBE_EVENTS
796
+ bool "Enable event-based dynamic events"
797
+ depends on TRACING
798
+ depends on HAVE_REGS_AND_STACK_ACCESS_API
799
+ select PROBE_EVENTS
800
+ select DYNAMIC_EVENTS
801
+ default y
802
+ help
803
+ Eprobes are dynamic events that can be placed on other existing
804
+ events. It can be used to limit what fields are recorded in
805
+ an event or even dereference a field of an event. It can
806
+ convert the type of an event field. For example, turn an
807
+ address into a string.
808
+
795
809
config BPF_EVENTS
796
810
depends on BPF_SYSCALL
797
811
depends on (KPROBE_EVENTS || UPROBE_EVENTS) && PERF_EVENTS
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ obj-$(CONFIG_EVENT_TRACING) += trace_event_perf.o
82
82
endif
83
83
obj-$(CONFIG_EVENT_TRACING) += trace_events_filter.o
84
84
obj-$(CONFIG_EVENT_TRACING) += trace_events_trigger.o
85
- obj-$(CONFIG_PROBE_EVENTS ) += trace_eprobe.o
85
+ obj-$(CONFIG_EPROBE_EVENTS ) += trace_eprobe.o
86
86
obj-$(CONFIG_TRACE_EVENT_INJECT) += trace_events_inject.o
87
87
obj-$(CONFIG_SYNTH_EVENTS) += trace_events_synth.o
88
88
obj-$(CONFIG_HIST_TRIGGERS) += trace_events_hist.o
You can’t perform that action at this time.
0 commit comments