diff options
author | Alexei Starovoitov <ast@fb.com> | 2016-03-07 21:57:20 -0800 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2022-04-19 00:50:32 +0300 |
commit | 14fb42b5a5041c99ec272e7fec2fcbeb1d13bc7c (patch) | |
tree | 793e5e0ee6cb7087e6323accc5699334db5760f4 /samples/bpf/sock_example.c | |
parent | 264bd51672f6a47778ee63ba3db4a2b55183f791 (diff) |
samples/bpf: add map_flags to bpf loader
note old loader is compatible with new kernel.
map_flags are optional
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Chatur27 <jasonbright2709@gmail.com>
Diffstat (limited to 'samples/bpf/sock_example.c')
-rw-r--r-- | samples/bpf/sock_example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/bpf/sock_example.c b/samples/bpf/sock_example.c index a0ce251c5390..28b60baa9fa8 100644 --- a/samples/bpf/sock_example.c +++ b/samples/bpf/sock_example.c @@ -34,7 +34,7 @@ static int test_sock(void) long long value = 0, tcp_cnt, udp_cnt, icmp_cnt; map_fd = bpf_create_map(BPF_MAP_TYPE_ARRAY, sizeof(key), sizeof(value), - 256); + 256, 0); if (map_fd < 0) { printf("failed to create map '%s'\n", strerror(errno)); goto cleanup; |