diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/inet_frag.h | 6 | ||||
-rw-r--r-- | include/net/ipv6.h | 1 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h index e33072b9fd91..64299266a868 100644 --- a/include/net/inet_frag.h +++ b/include/net/inet_frag.h | |||
@@ -45,6 +45,8 @@ struct inet_frags { | |||
45 | void (*skb_free)(struct sk_buff *); | 45 | void (*skb_free)(struct sk_buff *); |
46 | int (*equal)(struct inet_frag_queue *q1, | 46 | int (*equal)(struct inet_frag_queue *q1, |
47 | struct inet_frag_queue *q2); | 47 | struct inet_frag_queue *q2); |
48 | int (*match)(struct inet_frag_queue *q, | ||
49 | void *arg); | ||
48 | void (*frag_expire)(unsigned long data); | 50 | void (*frag_expire)(unsigned long data); |
49 | }; | 51 | }; |
50 | 52 | ||
@@ -55,8 +57,8 @@ void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f); | |||
55 | void inet_frag_destroy(struct inet_frag_queue *q, | 57 | void inet_frag_destroy(struct inet_frag_queue *q, |
56 | struct inet_frags *f, int *work); | 58 | struct inet_frags *f, int *work); |
57 | int inet_frag_evictor(struct inet_frags *f); | 59 | int inet_frag_evictor(struct inet_frags *f); |
58 | struct inet_frag_queue *inet_frag_create(struct inet_frags *f, | 60 | struct inet_frag_queue *inet_frag_find(struct inet_frags *f, void *key, |
59 | void *create_arg, unsigned int hash); | 61 | unsigned int hash); |
60 | 62 | ||
61 | static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f) | 63 | static inline void inet_frag_put(struct inet_frag_queue *q, struct inet_frags *f) |
62 | { | 64 | { |
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 9dc99bf5cf0e..005853a33ef6 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h | |||
@@ -387,6 +387,7 @@ struct ip6_create_arg { | |||
387 | }; | 387 | }; |
388 | 388 | ||
389 | void ip6_frag_init(struct inet_frag_queue *q, void *a); | 389 | void ip6_frag_init(struct inet_frag_queue *q, void *a); |
390 | int ip6_frag_match(struct inet_frag_queue *q, void *a); | ||
390 | 391 | ||
391 | static inline int ipv6_addr_any(const struct in6_addr *a) | 392 | static inline int ipv6_addr_any(const struct in6_addr *a) |
392 | { | 393 | { |