aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/inet_frag.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/inet_frag.h')
-rw-r--r--include/net/inet_frag.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h
index d51f23873da9..ada03ba3b341 100644
--- a/include/net/inet_frag.h
+++ b/include/net/inet_frag.h
@@ -20,6 +20,13 @@ struct inet_frag_queue {
20 20
21#define INETFRAGS_HASHSZ 64 21#define INETFRAGS_HASHSZ 64
22 22
23struct inet_frags_ctl {
24 int high_thresh;
25 int low_thresh;
26 int timeout;
27 int secret_interval;
28};
29
23struct inet_frags { 30struct inet_frags {
24 struct list_head lru_list; 31 struct list_head lru_list;
25 struct hlist_head hash[INETFRAGS_HASHSZ]; 32 struct hlist_head hash[INETFRAGS_HASHSZ];
@@ -28,6 +35,7 @@ struct inet_frags {
28 int nqueues; 35 int nqueues;
29 atomic_t mem; 36 atomic_t mem;
30 struct timer_list secret_timer; 37 struct timer_list secret_timer;
38 struct inet_frags_ctl *ctl;
31}; 39};
32 40
33void inet_frags_init(struct inet_frags *); 41void inet_frags_init(struct inet_frags *);