perf/bpf: Remove #ifdef CONFIG_BPF_SYSCALL from struct perf_event members
authorKyle Huey <me@kylehuey.com>
Fri, 12 Apr 2024 01:50:15 +0000 (18:50 -0700)
committerIngo Molnar <mingo@kernel.org>
Fri, 12 Apr 2024 09:49:49 +0000 (11:49 +0200)
This will allow __perf_event_overflow() (which is independent of
CONFIG_BPF_SYSCALL) to use struct perf_event's prog to decide whether to
call bpf_overflow_handler().

Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Kyle Huey <khuey@kylehuey.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20240412015019.7060-4-khuey@kylehuey.com
include/linux/perf_event.h

index 3e33b366347a1f9a8f2b0ec41cc2d65fca4ec4c5..50e01db083ee66dd92cc3b2a3e4d799a1c0de261 100644 (file)
@@ -809,11 +809,9 @@ struct perf_event {
        u64                             (*clock)(void);
        perf_overflow_handler_t         overflow_handler;
        void                            *overflow_handler_context;
-#ifdef CONFIG_BPF_SYSCALL
        perf_overflow_handler_t         orig_overflow_handler;
        struct bpf_prog                 *prog;
        u64                             bpf_cookie;
-#endif
 
 #ifdef CONFIG_EVENT_TRACING
        struct trace_event_call         *tp_event;