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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
		goto out; \
})

void serial_test_empty_skb(void)
void test_empty_skb(void)
{
	LIBBPF_OPTS(bpf_test_run_opts, tattr);
	struct empty_skb *bpf_obj = NULL;
+1 −1
Original line number Diff line number Diff line
@@ -1138,7 +1138,7 @@ static void *test_tc_redirect_run_tests(void *arg)
	return NULL;
}

void serial_test_tc_redirect(void)
void test_tc_redirect(void)
{
	pthread_t test_thread;
	int err;
+1 −1
Original line number Diff line number Diff line
@@ -421,7 +421,7 @@ static void *test_tunnel_run_tests(void *arg)
	return NULL;
}

void serial_test_tunnel(void)
void test_tunnel(void)
{
	pthread_t test_thread;
	int err;
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ static void test_max_pkt_size(int fd)
}

#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;
	char data[sizeof(pkt_udp) + sizeof(__u32)];
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ static void test_synproxy(bool xdp)
	system("ip netns del synproxy");
}

void serial_test_xdp_synproxy(void)
void test_xdp_synproxy(void)
{
	if (test__start_subtest("xdp"))
		test_synproxy(true);