]> git.baikalelectronics.ru Git - kernel.git/commit
bpf: Fix bpf_put_raw_tracepoint()'s use of __module_address()
authorAndrii Nakryiko <andrii@kernel.org>
Thu, 3 Dec 2020 20:46:21 +0000 (12:46 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Fri, 4 Dec 2020 01:38:20 +0000 (17:38 -0800)
commit96e70c5a0ef263dae696cef1cbdec723d951b782
tree481eb62be58a08f279c73fd34f2d9f9f16c786af
parentbc173bb5c4ccd3815f85416f6235661052d06b71
bpf: Fix bpf_put_raw_tracepoint()'s use of __module_address()

__module_address() needs to be called with preemption disabled or with
module_mutex taken. preempt_disable() is enough for read-only uses, which is
what this fix does. Also, module_put() does internal check for NULL, so drop
it as well.

Fixes: 109f0a02d1d0 ("bpf: support raw tracepoints in modules")
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Martin KaFai Lau <kafai@fb.com>
Link: https://lore.kernel.org/bpf/20201203204634.1325171-2-andrii@kernel.org
kernel/trace/bpf_trace.c