Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1574307
| From | Mickaël Salaün <mic@digikod.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH net-next v1 1/7] bpf: Add missing header to the library |
| Date | 2017-02-06 00:20 +0100 |
| Message-ID | <t7Eg9-5mH-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Including stddef.h is needed to define size_t. Signed-off-by: Mickaël Salaün <mic@digikod.net> Cc: Alexei Starovoitov <ast@fb.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Daniel Borkmann <daniel@iogearbox.net> Cc: Wang Nan <wangnan0@huawei.com> --- tools/lib/bpf/bpf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/lib/bpf/bpf.h b/tools/lib/bpf/bpf.h index a2f9853dd882..df6e186da788 100644 --- a/tools/lib/bpf/bpf.h +++ b/tools/lib/bpf/bpf.h @@ -22,6 +22,7 @@ #define __BPF_BPF_H #include <linux/bpf.h> +#include <stddef.h> int bpf_create_map(enum bpf_map_type map_type, int key_size, int value_size, int max_entries, __u32 map_flags); -- 2.11.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH net-next v1 1/7] bpf: Add missing header to the library Mickaël Salaün <mic@digikod.net> - 2017-02-06 00:20 +0100
csiph-web