Re: [PATCH bpf] bpf: mark bpf_event_notify and bpf_event_init as static

2019-05-13 Thread Daniel Borkmann
On 05/13/2019 09:04 PM, Stanislav Fomichev wrote: > Both of them are not declared in the headers and not used outside > of bpf_trace.c file. > > Fixes: a38d1107f937c ("bpf: support raw tracepoints in modules") > Signed-off-by: Stanislav Fomichev Applied, thanks!

[PATCH bpf] bpf: mark bpf_event_notify and bpf_event_init as static

2019-05-13 Thread Stanislav Fomichev
Both of them are not declared in the headers and not used outside of bpf_trace.c file. Fixes: a38d1107f937c ("bpf: support raw tracepoints in modules") Signed-off-by: Stanislav Fomichev --- kernel/trace/bpf_trace.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kernel/t