repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'for-linus-20190706' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git]
/
include
/
net
/
netns
/
xdp.h
blob
e5734261ba0aec6468b3e40b3461c974e97bf4c4
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef __NETNS_XDP_H__
3
#define __NETNS_XDP_H__
4
5
#include <linux/rculist.h>
6
#include <linux/mutex.h>
7
8
struct
netns_xdp
{
9
struct
mutex lock
;
10
struct
hlist_head list
;
11
};
12
13
#endif
/* __NETNS_XDP_H__ */