diff options
author | Jakub Kicinski | 2019-02-28 04:04:12 +0100 |
---|---|---|
committer | Daniel Borkmann | 2019-03-01 00:53:45 +0100 |
commit | f74a53d9a567f6bc6f6d8460e84c76bd2a45d016 (patch) | |
tree | ad08145718d46ecfe1600c2e6c6cf651e3513ce9 /tools/testing | |
parent | samples: bpf: remove load_sock_ops in favour of bpftool (diff) | |
download | kernel-qcow2-linux-f74a53d9a567f6bc6f6d8460e84c76bd2a45d016.tar.gz kernel-qcow2-linux-f74a53d9a567f6bc6f6d8460e84c76bd2a45d016.tar.xz kernel-qcow2-linux-f74a53d9a567f6bc6f6d8460e84c76bd2a45d016.zip |
tools: libbpf: add a correctly named define for map iteration
For historical reasons the helper to loop over maps in an object
is called bpf_map__for_each while it really should be called
bpf_object__for_each_map. Rename and add a correctly named
define for backward compatibility.
Switch all in-tree users to the correct name (Quentin).
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/bpf/test_libbpf_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/test_libbpf_open.c b/tools/testing/selftests/bpf/test_libbpf_open.c index 1909ecf4d999..65cbd30704b5 100644 --- a/tools/testing/selftests/bpf/test_libbpf_open.c +++ b/tools/testing/selftests/bpf/test_libbpf_open.c @@ -67,7 +67,7 @@ int test_walk_maps(struct bpf_object *obj, bool verbose) struct bpf_map *map; int cnt = 0; - bpf_map__for_each(map, obj) { + bpf_object__for_each_map(map, obj) { cnt++; if (verbose) printf("Map (count:%d) name: %s\n", cnt, |