repo.or.cz
/
linux-2.6
/
next.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux 2.6.36-rc5
[linux-2.6/next.git]
/
include
/
net
/
netns
/
packet.h
blob
cb4e894c0f8dbe5fefb6e82e50c4ad6b524e777d
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/spinlock.h>
9
10
struct
netns_packet
{
11
spinlock_t sklist_lock
;
12
struct
hlist_head sklist
;
13
};
14
15
#endif
/* __NETNS_PACKET_H__ */