Commit 9b6a7773 authored by Martin KaFai Lau's avatar Martin KaFai Lau Committed by Daniel Borkmann

selftests/bpf: Remove serial from tests using {open,close}_netns

After removing the mount/umount dance from {open,close}_netns()
in the pervious patch, "serial_" can be removed from
the tests using {open,close}_netns().
Signed-off-by: default avatarMartin KaFai Lau <martin.lau@kernel.org>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Acked-by: default avatarStanislav Fomichev <sdf@google.com>
Link: https://lore.kernel.org/bpf/20221129070900.3142427-7-martin.lau@linux.dev
parent 3084097c
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
goto out; \ goto out; \
}) })
void serial_test_empty_skb(void) void test_empty_skb(void)
{ {
LIBBPF_OPTS(bpf_test_run_opts, tattr); LIBBPF_OPTS(bpf_test_run_opts, tattr);
struct empty_skb *bpf_obj = NULL; struct empty_skb *bpf_obj = NULL;
......
...@@ -1138,7 +1138,7 @@ static void *test_tc_redirect_run_tests(void *arg) ...@@ -1138,7 +1138,7 @@ static void *test_tc_redirect_run_tests(void *arg)
return NULL; return NULL;
} }
void serial_test_tc_redirect(void) void test_tc_redirect(void)
{ {
pthread_t test_thread; pthread_t test_thread;
int err; int err;
......
...@@ -421,7 +421,7 @@ static void *test_tunnel_run_tests(void *arg) ...@@ -421,7 +421,7 @@ static void *test_tunnel_run_tests(void *arg)
return NULL; return NULL;
} }
void serial_test_tunnel(void) void test_tunnel(void)
{ {
pthread_t test_thread; pthread_t test_thread;
int err; int err;
......
...@@ -85,7 +85,7 @@ static void test_max_pkt_size(int fd) ...@@ -85,7 +85,7 @@ static void test_max_pkt_size(int fd)
} }
#define NUM_PKTS 10000 #define NUM_PKTS 10000
void serial_test_xdp_do_redirect(void) void test_xdp_do_redirect(void)
{ {
int err, xdp_prog_fd, tc_prog_fd, ifindex_src, ifindex_dst; int err, xdp_prog_fd, tc_prog_fd, ifindex_src, ifindex_dst;
char data[sizeof(pkt_udp) + sizeof(__u32)]; char data[sizeof(pkt_udp) + sizeof(__u32)];
......
...@@ -174,7 +174,7 @@ static void test_synproxy(bool xdp) ...@@ -174,7 +174,7 @@ static void test_synproxy(bool xdp)
system("ip netns del synproxy"); system("ip netns del synproxy");
} }
void serial_test_xdp_synproxy(void) void test_xdp_synproxy(void)
{ {
if (test__start_subtest("xdp")) if (test__start_subtest("xdp"))
test_synproxy(true); test_synproxy(true);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment