-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 78398 b: refs/heads/master c: 2aaef4e h: refs/heads/master v: v3
- Loading branch information
Denis V. Lunev
authored and
David S. Miller
committed
Jan 28, 2008
1 parent
34d9d2d
commit a5adbab
Showing
4 changed files
with
32 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a0a53c8ba95451feef6c1975016f0a1eb3044ad4 | ||
refs/heads/master: 2aaef4e47fef8a6c0bc7fc5d9d3eea4af290e04c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Packet network namespace | ||
*/ | ||
#ifndef __NETNS_PACKET_H__ | ||
#define __NETNS_PACKET_H__ | ||
|
||
#include <linux/list.h> | ||
#include <linux/spinlock.h> | ||
|
||
struct netns_packet { | ||
rwlock_t sklist_lock; | ||
struct hlist_head sklist; | ||
}; | ||
|
||
#endif /* __NETNS_PACKET_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters