-
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: 69419 b: refs/heads/master c: 5ab11c9 h: refs/heads/master i: 69417: 165fe5d 69415: 06ccfbb v: v3
- Loading branch information
Pavel Emelyanov
authored and
David S. Miller
committed
Oct 15, 2007
1 parent
d203670
commit 1572363
Showing
5 changed files
with
239 additions
and
251 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: 114342f2d38439cb1a54f1f724fa38729b093c48 | ||
refs/heads/master: 5ab11c98d3a950faf6922b6166e5f8fc874590e7 |
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,21 @@ | ||
#ifndef __NET_FRAG_H__ | ||
#define __NET_FRAG_H__ | ||
|
||
struct inet_frag_queue { | ||
struct hlist_node list; | ||
struct list_head lru_list; /* lru list member */ | ||
spinlock_t lock; | ||
atomic_t refcnt; | ||
struct timer_list timer; /* when will this queue expire? */ | ||
struct sk_buff *fragments; /* list of received fragments */ | ||
ktime_t stamp; | ||
int len; /* total length of orig datagram */ | ||
int meat; | ||
__u8 last_in; /* first/last segment arrived? */ | ||
|
||
#define COMPLETE 4 | ||
#define FIRST_IN 2 | ||
#define LAST_IN 1 | ||
}; | ||
|
||
#endif |
Oops, something went wrong.