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
Linux 4.1.18
[linux/fpc-iii.git]
/
include
/
net
/
netns
/
packet.h
blob
17ec2b95c062d0b0dc13d2c9702c2ab9da831682
1
/*
2
* Packet network namespace
3
*/
4
#ifndef __NETNS_PACKET_H__
5
#define __NETNS_PACKET_H__
6
7
#include <linux/rculist.h>
8
#include <linux/mutex.h>
9
10
struct
netns_packet
{
11
struct
mutex sklist_lock
;
12
struct
hlist_head sklist
;
13
};
14
15
#endif
/* __NETNS_PACKET_H__ */