Commit 36ef9a2d authored by Anton Protopopov's avatar Anton Protopopov Committed by Alexei Starovoitov
Browse files

selftests/bpf: Cleanup some file descriptors in test_maps



The test_map_rdonly and test_map_wronly tests should close file descriptors
which they open.

Signed-off-by: default avatarAnton Protopopov <a.s.protopopov@gmail.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/bpf/20200527185700.14658-3-a.s.protopopov@gmail.com


Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent 204fb041
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1401,6 +1401,8 @@ static void test_map_rdonly(void)
	/* Check that key=2 is not found. */
	assert(bpf_map_lookup_elem(fd, &key, &value) == -1 && errno == ENOENT);
	assert(bpf_map_get_next_key(fd, &key, &value) == -1 && errno == ENOENT);

	close(fd);
}

static void test_map_wronly(void)
@@ -1423,6 +1425,8 @@ static void test_map_wronly(void)
	/* Check that key=2 is not found. */
	assert(bpf_map_lookup_elem(fd, &key, &value) == -1 && errno == EPERM);
	assert(bpf_map_get_next_key(fd, &key, &value) == -1 && errno == EPERM);

	close(fd);
}

static void prepare_reuseport_grp(int type, int map_fd, size_t map_elem_size,