aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/bpf.h
diff options
context:
space:
mode:
authorJakub Kicinski <jakub.kicinski@netronome.com>2018-01-17 22:13:28 -0500
committerDaniel Borkmann <daniel@iogearbox.net>2018-01-18 16:54:25 -0500
commit52775b33bb5072fbc07b02c0cf4fe8da1f7ee7cd (patch)
tree86ead032dc8cbdf4488b9719b9ef41e25e8bb189 /include/uapi/linux/bpf.h
parent7a0ef6939548b9eb74bf464daf55ad68a23602a2 (diff)
bpf: offload: report device information about offloaded maps
Tell user space about device on which the map was created. Unfortunate reality of user ABI makes sharing this code with program offload difficult but the information is the same. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'include/uapi/linux/bpf.h')
-rw-r--r--include/uapi/linux/bpf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h
index 74dc4dc98681..406c19d6016b 100644
--- a/include/uapi/linux/bpf.h
+++ b/include/uapi/linux/bpf.h
@@ -938,6 +938,9 @@ struct bpf_map_info {
938 __u32 max_entries; 938 __u32 max_entries;
939 __u32 map_flags; 939 __u32 map_flags;
940 char name[BPF_OBJ_NAME_LEN]; 940 char name[BPF_OBJ_NAME_LEN];
941 __u32 ifindex;
942 __u64 netns_dev;
943 __u64 netns_ino;
941} __attribute__((aligned(8))); 944} __attribute__((aligned(8)));
942 945
943/* User bpf_sock_ops struct to access socket values and specify request ops 946/* User bpf_sock_ops struct to access socket values and specify request ops