Skip to content

Commit

Permalink
selftests: bpf: Fix sockmap update nits
Browse files Browse the repository at this point in the history
Address review by Yonghong, to bring the new tests in line with the
usual code style.

Signed-off-by: Lorenz Bauer <lmb@cloudflare.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Yonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20200824084523.13104-1-lmb@cloudflare.com
  • Loading branch information
Lorenz Bauer authored and Alexei Starovoitov committed Aug 24, 2020
1 parent f872e4b commit 8c3b3d9
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions tools/testing/selftests/bpf/prog_tests/sockmap_basic.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,8 @@ static void test_sockmap_update(enum bpf_map_type map_type)
return;

skel = test_sockmap_update__open_and_load();
if (CHECK(!skel, "open_and_load", "cannot load skeleton\n")) {
close(sk);
return;
}
if (CHECK(!skel, "open_and_load", "cannot load skeleton\n"))
goto close_sk;

prog = bpf_program__fd(skel->progs.copy_sock_map);
src = bpf_map__fd(skel->maps.src);
Expand Down Expand Up @@ -158,8 +156,9 @@ static void test_sockmap_update(enum bpf_map_type map_type)
dst_cookie, src_cookie);

out:
close(sk);
test_sockmap_update__destroy(skel);
close_sk:
close(sk);
}

static void test_sockmap_invalid_update(void)
Expand All @@ -168,8 +167,7 @@ static void test_sockmap_invalid_update(void)
int duration = 0;

skel = test_sockmap_invalid_update__open_and_load();
CHECK(skel, "open_and_load", "verifier accepted map_update\n");
if (skel)
if (CHECK(skel, "open_and_load", "verifier accepted map_update\n"))
test_sockmap_invalid_update__destroy(skel);
}

Expand Down

0 comments on commit 8c3b3d9

Please sign in to comment.