aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChengfeng Ye <cyeaa@connect.ust.hk>2021-08-27 00:41:40 -0700
committerAlexei Starovoitov <ast@kernel.org>2021-08-27 09:45:59 -0700
commit47bb27a20d6ea22cd092c1fc2bb4fcecac374838 (patch)
treed67517396aaae216c4bbc0b21a4479c0385ff04a /tools
parentsamples: bpf: Fix uninitialized variable in xdp_redirect_cpu (diff)
downloadlinux-dev-47bb27a20d6ea22cd092c1fc2bb4fcecac374838.tar.xz
linux-dev-47bb27a20d6ea22cd092c1fc2bb4fcecac374838.zip
selftests/bpf: Fix potential unreleased lock
This lock is not released if the program return at the patched branch. Signed-off-by: Chengfeng Ye <cyeaa@connect.ust.hk> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Link: https://lore.kernel.org/bpf/20210827074140.118671-1-cyeaa@connect.ust.hk
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/bpf/prog_tests/sockopt_inherit.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/sockopt_inherit.c b/tools/testing/selftests/bpf/prog_tests/sockopt_inherit.c
index ec281b0363b8..86f97681ad89 100644
--- a/tools/testing/selftests/bpf/prog_tests/sockopt_inherit.c
+++ b/tools/testing/selftests/bpf/prog_tests/sockopt_inherit.c
@@ -195,8 +195,10 @@ static void run_test(int cgroup_fd)
pthread_mutex_lock(&server_started_mtx);
if (CHECK_FAIL(pthread_create(&tid, NULL, server_thread,
- (void *)&server_fd)))
+ (void *)&server_fd))) {
+ pthread_mutex_unlock(&server_started_mtx);
goto close_server_fd;
+ }
pthread_cond_wait(&server_started, &server_started_mtx);
pthread_mutex_unlock(&server_started_mtx);