diff options
author | Martin KaFai Lau <kafai@fb.com> | 2018-11-24 03:44:32 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-11-27 05:57:14 +0300 |
commit | 1d2f44ca342445f7da56555ca7a43d19aac8996a (patch) | |
tree | c2215ec3e793279bf9672bd72d979f516bce3955 /tools/testing/selftests/bpf/test_btf.c | |
parent | b89c2998d9983af94037d4292cc8cb878441cf62 (diff) | |
download | linux-1d2f44ca342445f7da56555ca7a43d19aac8996a.tar.xz |
libbpf: Name changing for btf_get_from_id
s/btf_get_from_id/btf__get_from_id/ to restore the API naming convention.
Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Signed-off-by: Andrey Ignatov <rdna@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/testing/selftests/bpf/test_btf.c')
-rw-r--r-- | tools/testing/selftests/bpf/test_btf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/test_btf.c b/tools/testing/selftests/bpf/test_btf.c index b4c8725b3004..bae7308b7ec5 100644 --- a/tools/testing/selftests/bpf/test_btf.c +++ b/tools/testing/selftests/bpf/test_btf.c @@ -2585,7 +2585,7 @@ static int do_test_file(unsigned int test_num) goto done; } - err = btf_get_from_id(info.btf_id, &btf); + err = btf__get_from_id(info.btf_id, &btf); if (CHECK(err, "cannot get btf from kernel, err: %d", err)) goto done; |