]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
libbpf: Apply map_set_def_max_entries() for inner_maps on creation
authorAndrey Grafin <conquistador@yandex-team.ru>
Wed, 17 Jan 2024 13:06:18 +0000 (16:06 +0300)
committerSasha Levin <sashal@kernel.org>
Tue, 26 Mar 2024 22:19:22 +0000 (18:19 -0400)
commitf33d3161f3bfb24a9aad908fa98f07d500d606ab
tree4fedf5f2b5d5cd29d8af542500bb78a3c97248db
parent308e65ed60686bb23f22974fe7d599e095f78ea5
libbpf: Apply map_set_def_max_entries() for inner_maps on creation

[ Upstream commit f04deb90e516e8e48bf8693397529bc942a9e80b ]

This patch allows to auto create BPF_MAP_TYPE_ARRAY_OF_MAPS and
BPF_MAP_TYPE_HASH_OF_MAPS with values of BPF_MAP_TYPE_PERF_EVENT_ARRAY
by bpf_object__load().

Previous behaviour created a zero filled btf_map_def for inner maps and
tried to use it for a map creation but the linux kernel forbids to create
a BPF_MAP_TYPE_PERF_EVENT_ARRAY map with max_entries=0.

Fixes: 646f02ffdd49 ("libbpf: Add BTF-defined map-in-map support")
Signed-off-by: Andrey Grafin <conquistador@yandex-team.ru>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
Acked-by: Hou Tao <houtao1@huawei.com>
Link: https://lore.kernel.org/bpf/20240117130619.9403-1-conquistador@yandex-team.ru
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/lib/bpf/libbpf.c