Merge tag 'batadv-next-for-davem-20200114' of git://git.open-mesh.org/linux-merge
[sfrench/cifs-2.6.git] / tools / testing / selftests / bpf / progs / test_pinning_invalid.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include <linux/bpf.h>
4 #include "bpf_helpers.h"
5
6 int _version SEC("version") = 1;
7
8 struct {
9         __uint(type, BPF_MAP_TYPE_ARRAY);
10         __uint(max_entries, 1);
11         __type(key, __u32);
12         __type(value, __u64);
13         __uint(pinning, 2); /* invalid */
14 } nopinmap3 SEC(".maps");
15
16 char _license[] SEC("license") = "GPL";