gianfar: remove orphan struct.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / net / inet_frag.h
blob911c2cd02941cda559bb176af22f11adfda6915e
1 #ifndef __NET_FRAG_H__
2 #define __NET_FRAG_H__
4 struct inet_frag_queue {
5 struct hlist_node list;
6 struct list_head lru_list; /* lru list member */
7 spinlock_t lock;
8 atomic_t refcnt;
9 struct timer_list timer; /* when will this queue expire? */
10 struct sk_buff *fragments; /* list of received fragments */
11 ktime_t stamp;
12 int len; /* total length of orig datagram */
13 int meat;
14 __u8 last_in; /* first/last segment arrived? */
16 #define COMPLETE 4
17 #define FIRST_IN 2
18 #define LAST_IN 1
21 #define INETFRAGS_HASHSZ 64
23 struct inet_frags_ctl {
24 int high_thresh;
25 int low_thresh;
26 int timeout;
27 int secret_interval;
30 struct inet_frags {
31 struct list_head lru_list;
32 struct hlist_head hash[INETFRAGS_HASHSZ];
33 rwlock_t lock;
34 u32 rnd;
35 int nqueues;
36 int qsize;
37 atomic_t mem;
38 struct timer_list secret_timer;
39 struct inet_frags_ctl *ctl;
41 unsigned int (*hashfn)(struct inet_frag_queue *);
42 void (*destructor)(struct inet_frag_queue *);
43 void (*skb_free)(struct sk_buff *);
46 void inet_frags_init(struct inet_frags *);
47 void inet_frags_fini(struct inet_frags *);
49 void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f);
50 void inet_frag_destroy(struct inet_frag_queue *q,
51 struct inet_frags *f, int *work);
52 int inet_frag_evictor(struct inet_frags *f);
54 static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f)
56 if (atomic_dec_and_test(&q->refcnt))
57 inet_frag_destroy(q, f, NULL);
60 #endif