OSDN Git Service

libbpf: Add btf__type_cnt() and btf__raw_data() APIs
authorHengqi Chen <hengqi.chen@gmail.com>
Fri, 22 Oct 2021 13:06:19 +0000 (21:06 +0800)
committerAndrii Nakryiko <andrii@kernel.org>
Fri, 22 Oct 2021 23:09:14 +0000 (16:09 -0700)
commit6a886de070fad850d6cb74a787c9ed017303d9ac
treee5b377bb2d5b606d9ef4de32fbb993cfb755f2a0
parent1000298c76830bc291358e98e8fa5baa3baa9b3a
libbpf: Add btf__type_cnt() and btf__raw_data() APIs

Add btf__type_cnt() and btf__raw_data() APIs and deprecate
btf__get_nr_type() and btf__get_raw_data() since the old APIs
don't follow the libbpf naming convention for getters which
omit 'get' in the name (see [0]). btf__raw_data() is just an
alias to the existing btf__get_raw_data(). btf__type_cnt()
now returns the number of all types of the BTF object
including 'void'.

  [0] Closes: https://github.com/libbpf/libbpf/issues/279

Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211022130623.1548429-2-hengqi.chen@gmail.com
tools/lib/bpf/btf.c
tools/lib/bpf/btf.h
tools/lib/bpf/btf_dump.c
tools/lib/bpf/libbpf.c
tools/lib/bpf/libbpf.map
tools/lib/bpf/linker.c