diff options
author | Andrii Nakryiko | 2024-03-27 22:24:25 -0700 |
---|---|---|
committer | Alexei Starovoitov | 2024-03-28 18:47:45 -0700 |
commit | e9c856cabefb71d47b2eeb197f72c9c88e9b45b0 (patch) | |
tree | 29cf5df350ae5d3441fc6dcd010bc06e21509659 /include/linux | |
parent | 037965402a010898d34f4e35327d22c0a95cd51f (diff) |
bpf: put uprobe link's path and task in release callback
There is no need to delay putting either path or task to deallocation
step. It can be done right after bpf_uprobe_unregister. Between release
and dealloc, there could be still some running BPF programs, but they
don't access either task or path, only data in link->uprobes, so it is
safe to do.
On the other hand, doing path_put() in dealloc callback makes this
dealloc sleepable because path_put() itself might sleep. Which is
problematic due to the need to call uprobe's dealloc through call_rcu(),
which is what is done in the next bug fix patch. So solve the problem by
releasing these resources early.
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/r/20240328052426.3042617-1-andrii@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/linux')
0 files changed, 0 insertions, 0 deletions