On Tue, Jul 27, 2021 at 2:15 AM Peter Zijlstra <peterz@xxxxxxxxxxxxx> wrote: > > On Mon, Jul 26, 2021 at 09:12:01AM -0700, Andrii Nakryiko wrote: > > diff --git a/include/linux/trace_events.h b/include/linux/trace_events.h > > index ad413b382a3c..8ac92560d3a3 100644 > > --- a/include/linux/trace_events.h > > +++ b/include/linux/trace_events.h > > @@ -803,6 +803,9 @@ extern void ftrace_profile_free_filter(struct perf_event *event); > > void perf_trace_buf_update(void *record, u16 type); > > void *perf_trace_buf_alloc(int size, struct pt_regs **regs, int *rctxp); > > > > +int perf_event_set_bpf_prog(struct perf_event *event, struct bpf_prog *prog); > > +void perf_event_free_bpf_prog(struct perf_event *event); > > + > > void bpf_trace_run1(struct bpf_prog *prog, u64 arg1); > > void bpf_trace_run2(struct bpf_prog *prog, u64 arg1, u64 arg2); > > void bpf_trace_run3(struct bpf_prog *prog, u64 arg1, u64 arg2, > > Oh, I just noticed, is this the right header to put these in? Should > this not go into include/linux/perf_event.h ? Not that I care much, but this one has perf_event_attach_bpf_prog() and perf_event_detach_bpf_prog(), so it felt appropriate to put it here. perf_event.h only seems to have perf_event_bpf_event() for BPF-related stuff (which seems to be just notification events, not really BPF functionality per se). But let me know if you prefer to add these new ones to perf_event.h.