From: Sandipan Das Date: Thu, 24 May 2018 06:56:53 +0000 (+0530) Subject: tools: bpf: sync bpf uapi header X-Git-Tag: v4.19~872^2~148^2~3^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd980d43b977c0b6582be906da23b08e0ae1b3dc;p=platform%2Fkernel%2Flinux-rpi.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 JITed image lengths of each function in a multi-function 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 0be9096..344d2ddc 100644 --- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h @@ -2206,7 +2206,9 @@ struct bpf_prog_info { __u64 netns_dev; __u64 netns_ino; __u32 nr_jited_ksyms; + __u32 nr_jited_func_lens; __aligned_u64 jited_ksyms; + __aligned_u64 jited_func_lens; } __attribute__((aligned(8))); struct bpf_map_info {