bpf: remove unnecessary rcu_read_{lock,unlock}() in multi-uprobe attach logic
authorAndrii Nakryiko <andrii@kernel.org>
Tue, 21 May 2024 16:33:58 +0000 (09:33 -0700)
committerAlexei Starovoitov <ast@kernel.org>
Sat, 25 May 2024 17:46:02 +0000 (10:46 -0700)
get_pid_task() internally already calls rcu_read_lock() and
rcu_read_unlock(), so there is no point to do this one extra time.

This is a drive-by improvement and has no correctness implications.

Acked-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/r/20240521163401.3005045-3-andrii@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
kernel/trace/bpf_trace.c

index 1baaeb9ca20556201dcfe024c27ccb4e4c40e432..6249dac61701834be8a6b8619945560b7bafa8ed 100644 (file)
@@ -3423,9 +3423,7 @@ int bpf_uprobe_multi_link_attach(const union bpf_attr *attr, struct bpf_prog *pr
        }
 
        if (pid) {
-               rcu_read_lock();
                task = get_pid_task(find_vpid(pid), PIDTYPE_TGID);
-               rcu_read_unlock();
                if (!task) {
                        err = -ESRCH;
                        goto error_path_put;