mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
18 lines
300 B
C
18 lines
300 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* BPF programs attached to network namespace
|
||
|
*/
|
||
|
|
||
|
#ifndef __NETNS_BPF_H__
|
||
|
#define __NETNS_BPF_H__
|
||
|
|
||
|
#include <linux/bpf-netns.h>
|
||
|
|
||
|
struct bpf_prog;
|
||
|
|
||
|
struct netns_bpf {
|
||
|
struct bpf_prog __rcu *progs[MAX_NETNS_BPF_ATTACH_TYPE];
|
||
|
};
|
||
|
|
||
|
#endif /* __NETNS_BPF_H__ */
|