diff options
Diffstat (limited to 'include/net/inet_frag.h')
-rw-r--r-- | include/net/inet_frag.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h index 954def408975..8ab6df64a12a 100644 --- a/include/net/inet_frag.h +++ b/include/net/inet_frag.h | |||
@@ -1,8 +1,12 @@ | |||
1 | #ifndef __NET_FRAG_H__ | 1 | #ifndef __NET_FRAG_H__ |
2 | #define __NET_FRAG_H__ | 2 | #define __NET_FRAG_H__ |
3 | 3 | ||
4 | struct netns_frags { | ||
5 | }; | ||
6 | |||
4 | struct inet_frag_queue { | 7 | struct inet_frag_queue { |
5 | struct hlist_node list; | 8 | struct hlist_node list; |
9 | struct netns_frags *net; | ||
6 | struct list_head lru_list; /* lru list member */ | 10 | struct list_head lru_list; /* lru list member */ |
7 | spinlock_t lock; | 11 | spinlock_t lock; |
8 | atomic_t refcnt; | 12 | atomic_t refcnt; |
@@ -55,8 +59,8 @@ void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f); | |||
55 | void inet_frag_destroy(struct inet_frag_queue *q, | 59 | void inet_frag_destroy(struct inet_frag_queue *q, |
56 | struct inet_frags *f, int *work); | 60 | struct inet_frags *f, int *work); |
57 | int inet_frag_evictor(struct inet_frags *f); | 61 | int inet_frag_evictor(struct inet_frags *f); |
58 | struct inet_frag_queue *inet_frag_find(struct inet_frags *f, void *key, | 62 | struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, |
59 | unsigned int hash); | 63 | struct inet_frags *f, void *key, unsigned int hash); |
60 | 64 | ||
61 | static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f) | 65 | static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f) |
62 | { | 66 | { |