aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/reassembly.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-10-17 22:48:26 -0400
committerDavid S. Miller <davem@davemloft.net>2007-10-17 22:48:26 -0400
commitc95477090a2ace6d241c184adc3fbfcab9c61ceb (patch)
tree78c43a301f18f4ad4486a48227a9ca45239208f3 /net/ipv6/reassembly.c
parent48d60056387c37a17a46feda48613587a90535e5 (diff)
[INET]: Consolidate frag queues freeing
Since we now allocate the queues in inet_fragment.c, we can safely free it in the same place. The ->destructor callback thus becomes optional for inet_frags. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/reassembly.c')
-rw-r--r--net/ipv6/reassembly.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c
index 01766bc75b6a..76c88a93b9b5 100644
--- a/net/ipv6/reassembly.c
+++ b/net/ipv6/reassembly.c
@@ -175,11 +175,6 @@ void ip6_frag_init(struct inet_frag_queue *q, void *a)
175} 175}
176EXPORT_SYMBOL(ip6_frag_init); 176EXPORT_SYMBOL(ip6_frag_init);
177 177
178static void ip6_frag_free(struct inet_frag_queue *fq)
179{
180 kfree(container_of(fq, struct frag_queue, q));
181}
182
183/* Destruction primitives. */ 178/* Destruction primitives. */
184 179
185static __inline__ void fq_put(struct frag_queue *fq) 180static __inline__ void fq_put(struct frag_queue *fq)
@@ -645,7 +640,7 @@ void __init ipv6_frag_init(void)
645 ip6_frags.ctl = &ip6_frags_ctl; 640 ip6_frags.ctl = &ip6_frags_ctl;
646 ip6_frags.hashfn = ip6_hashfn; 641 ip6_frags.hashfn = ip6_hashfn;
647 ip6_frags.constructor = ip6_frag_init; 642 ip6_frags.constructor = ip6_frag_init;
648 ip6_frags.destructor = ip6_frag_free; 643 ip6_frags.destructor = NULL;
649 ip6_frags.skb_free = NULL; 644 ip6_frags.skb_free = NULL;
650 ip6_frags.qsize = sizeof(struct frag_queue); 645 ip6_frags.qsize = sizeof(struct frag_queue);
651 ip6_frags.match = ip6_frag_match; 646 ip6_frags.match = ip6_frag_match;