diff options
| author | Andrii Nakryiko <[email protected]> | 2020-12-03 20:46:23 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2020-12-04 01:38:20 +0000 |
| commit | a19f93cfafdf85851c69bc9f677aa4f40c53610f (patch) | |
| tree | 08c46ad0d0f0a2f5ec14b0257d475edc6f719d6c /tools/lib/bpf/libbpf_internal.h | |
| parent | bpf: Keep module's btf_data_size intact after load (diff) | |
| download | kernel-a19f93cfafdf85851c69bc9f677aa4f40c53610f.tar.gz kernel-a19f93cfafdf85851c69bc9f677aa4f40c53610f.zip | |
libbpf: Add internal helper to load BTF data by FD
Add a btf_get_from_fd() helper, which constructs struct btf from in-kernel BTF
data by FD. This is used for loading module BTFs.
Signed-off-by: Andrii Nakryiko <[email protected]>
Signed-off-by: Alexei Starovoitov <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'tools/lib/bpf/libbpf_internal.h')
| -rw-r--r-- | tools/lib/bpf/libbpf_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lib/bpf/libbpf_internal.h b/tools/lib/bpf/libbpf_internal.h index d99bc847bf84..e569ae63808e 100644 --- a/tools/lib/bpf/libbpf_internal.h +++ b/tools/lib/bpf/libbpf_internal.h @@ -155,6 +155,7 @@ int bpf_object__section_size(const struct bpf_object *obj, const char *name, __u32 *size); int bpf_object__variable_offset(const struct bpf_object *obj, const char *name, __u32 *off); +struct btf *btf_get_from_fd(int btf_fd, struct btf *base_btf); struct btf_ext_info { /* |
