Commit 1f441b35 authored by Lorenz Bauer's avatar Lorenz Bauer Committed by Daniel Borkmann
Browse files

selftests: bpf: Enable UDP sockmap reuseport tests



Remove the guard that disables UDP tests now that sockmap
has support for them.

Signed-off-by: default avatarLorenz Bauer <lmb@cloudflare.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Reviewed-by: default avatarJakub Sitnicki <jakub@cloudflare.com>
Acked-by: default avatarJohn Fastabend <john.fastabend@gmail.com>
Link: https://lore.kernel.org/bpf/20200309111243.6982-12-lmb@cloudflare.com
parent 84be2113
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -805,12 +805,6 @@ static void test_config(int sotype, sa_family_t family, bool inany)
	char s[MAX_TEST_NAME];
	const struct test *t;

	/* SOCKMAP/SOCKHASH don't support UDP yet */
	if (sotype == SOCK_DGRAM &&
	    (inner_map_type == BPF_MAP_TYPE_SOCKMAP ||
	     inner_map_type == BPF_MAP_TYPE_SOCKHASH))
		return;

	for (t = tests; t < tests + ARRAY_SIZE(tests); t++) {
		if (t->need_sotype && t->need_sotype != sotype)
			continue; /* test not compatible with socket type */