diff options
author | Andrii Nakryiko <andriin@fb.com> | 2019-02-08 22:19:39 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-02-08 23:04:13 +0300 |
commit | 49b57e0d01db73c99f86d68480fb9b4014bb1060 (patch) | |
tree | a5b61868a7ba083c1828e438a07a33d9add96c6f /tools/lib/bpf/btf.c | |
parent | ae4ab4b4117d23da49f04a7e1fe82a41e6074eeb (diff) | |
download | linux-49b57e0d01db73c99f86d68480fb9b4014bb1060.tar.xz |
tools/bpf: remove btf__get_strings() superseded by raw data API
Now that we have btf__get_raw_data() it's trivial for tests to iterate
over all strings for testing purposes, which eliminates the need for
btf__get_strings() API.
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/lib/bpf/btf.c')
-rw-r--r-- | tools/lib/bpf/btf.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/lib/bpf/btf.c b/tools/lib/bpf/btf.c index f6b724ed1bdd..6953fedb88ff 100644 --- a/tools/lib/bpf/btf.c +++ b/tools/lib/bpf/btf.c @@ -449,13 +449,6 @@ const void *btf__get_raw_data(const struct btf *btf, __u32 *size) return btf->data; } -void btf__get_strings(const struct btf *btf, const char **strings, - __u32 *str_len) -{ - *strings = btf->strings; - *str_len = btf->hdr->str_len; -} - const char *btf__name_by_offset(const struct btf *btf, __u32 offset) { if (offset < btf->hdr->str_len) |