aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ahern <dsahern@kernel.org>2022-04-23 09:23:00 -0600
committerDavid Ahern <dsahern@kernel.org>2022-05-02 14:46:11 -0700
commit837294e452521129718c913fd04e2214998ae9e4 (patch)
treec4657fe99553f7fe11318f8383118ce4b28e341f
parent64e5ed779f5dc92c5d5f5c505bdd4c48bdf8f0a3 (diff)
downloadiproute2-837294e452521129718c913fd04e2214998ae9e4.tar.gz
libbpf: Remove use of bpf_map_is_offload_neutral
bpf_map_is_offload_neutral is deprecated as of v0.8+; import definition to maintain backwards compatibility. Signed-off-by: David Ahern <dsahern@kernel.org> Acked-by: Toke Høiland-Jørgensen <toke@redhat.com>
-rw-r--r--lib/bpf_libbpf.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/bpf_libbpf.c b/lib/bpf_libbpf.c
index 7dd1faf53..7b16ee715 100644
--- a/lib/bpf_libbpf.c
+++ b/lib/bpf_libbpf.c
@@ -249,6 +249,11 @@ static int handle_legacy_maps(struct bpf_object *obj)
return ret;
}
+static bool bpf_map_is_offload_neutral(const struct bpf_map *map)
+{
+ return bpf_map__type(map) == BPF_MAP_TYPE_PERF_EVENT_ARRAY;
+}
+
static int load_bpf_object(struct bpf_cfg_in *cfg)
{
struct bpf_program *p, *prog = NULL;
@@ -294,7 +299,7 @@ static int load_bpf_object(struct bpf_cfg_in *cfg)
}
bpf_object__for_each_map(map, obj) {
- if (!bpf_map__is_offload_neutral(map))
+ if (!bpf_map_is_offload_neutral(map))
bpf_map__set_ifindex(map, cfg->ifindex);
}