mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	bpf: remove unnecessary rcu_read_{lock,unlock}() in multi-uprobe attach logic
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>
This commit is contained in:
		
							parent
							
								
									46ba0e49b6
								
							
						
					
					
						commit
						4a8f635a60
					
				
					 1 changed files with 0 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -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;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue