From: Thomas Gleixner Date: Mon, 24 Feb 2020 14:01:36 +0000 (+0100) Subject: bpf/trace: Remove EXPORT from trace_call_bpf() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1b7a51a63b031092b8b8acda3f6820b62a8b5e5d;p=linux.git bpf/trace: Remove EXPORT from trace_call_bpf() All callers are built in. No point to export this. Signed-off-by: Thomas Gleixner Signed-off-by: Alexei Starovoitov --- diff --git a/kernel/trace/bpf_trace.c b/kernel/trace/bpf_trace.c index 4d42a5d05ec92..15fafaed027cb 100644 --- a/kernel/trace/bpf_trace.c +++ b/kernel/trace/bpf_trace.c @@ -119,7 +119,6 @@ unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx) return ret; } -EXPORT_SYMBOL_GPL(trace_call_bpf); #ifdef CONFIG_BPF_KPROBE_OVERRIDE BPF_CALL_2(bpf_override_return, struct pt_regs *, regs, unsigned long, rc)