diff options
author | Alan Maguire <alan.maguire@oracle.com> | 2020-09-28 12:31:03 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2020-09-28 18:26:58 -0700 |
commit | 76654e67f3a01c50dc13dd6dea75e58943413956 (patch) | |
tree | f976fd5c02589db4e9fe3673240fcf716f6bba56 /include/linux | |
parent | a871b04310248024e022e104eba3ec81d144cc64 (diff) |
bpf: Provide function to get vmlinux BTF information
It will be used later for BPF structure display support
Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/1601292670-1616-2-git-send-email-alan.maguire@oracle.com
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/bpf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/bpf.h b/include/linux/bpf.h index b89a30764069..e620a4b1290f 100644 --- a/include/linux/bpf.h +++ b/include/linux/bpf.h @@ -1364,6 +1364,8 @@ int bpf_check(struct bpf_prog **fp, union bpf_attr *attr, union bpf_attr __user *uattr); void bpf_patch_call_args(struct bpf_insn *insn, u32 stack_depth); +struct btf *bpf_get_btf_vmlinux(void); + /* Map specifics */ struct xdp_buff; struct sk_buff; |