From: Sandipan Das Date: Thu, 24 May 2018 06:56:49 +0000 (+0530) Subject: tools: bpf: sync bpf uapi header X-Git-Tag: rel_imx_4.19.35_1.1.0~9970^2~148^2~3^2~5 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=dd0c5f072e650458feb307fe3a8602cc2ec369d4;p=linux.git tools: bpf: sync bpf uapi header Syncing the bpf.h uapi header with tools so that struct bpf_prog_info has the two new fields for passing on the addresses of the kernel symbols corresponding to each function in a program. Signed-off-by: Sandipan Das Signed-off-by: Daniel Borkmann --- diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h index c3e502d06bc3..0be90965867d 100644 --- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h @@ -2205,6 +2205,8 @@ struct bpf_prog_info { __u32 gpl_compatible:1; __u64 netns_dev; __u64 netns_ino; + __u32 nr_jited_ksyms; + __aligned_u64 jited_ksyms; } __attribute__((aligned(8))); struct bpf_map_info {