Merge tag 'sound-5.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[linux-2.6-microblaze.git] / include / net / netns / bpf.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * BPF programs attached to network namespace
4  */
5
6 #ifndef __NETNS_BPF_H__
7 #define __NETNS_BPF_H__
8
9 #include <linux/bpf-netns.h>
10
11 struct bpf_prog;
12 struct bpf_prog_array;
13
14 struct netns_bpf {
15         /* Array of programs to run compiled from progs or links */
16         struct bpf_prog_array __rcu *run_array[MAX_NETNS_BPF_ATTACH_TYPE];
17         struct bpf_prog *progs[MAX_NETNS_BPF_ATTACH_TYPE];
18         struct list_head links[MAX_NETNS_BPF_ATTACH_TYPE];
19 };
20
21 #endif /* __NETNS_BPF_H__ */