Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 5 changed files with 239 additions and 251 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 114342f2d38439cb1a54f1f724fa38729b093c48
refs/heads/master: 5ab11c98d3a950faf6922b6166e5f8fc874590e7
21 changes: 21 additions & 0 deletions trunk/include/net/inet_frag.h
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
Loading

0 comments on commit 1572363

Please sign in to comment.