diff options
author | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2008-11-05 02:56:30 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-05 02:56:30 -0500 |
commit | d99a7bd210a14001007fc5233597c78877f0a11c (patch) | |
tree | 366ef8703e0453608ed39e0e7c2f4f4d043a46e9 /net/dccp/ipv6.c | |
parent | ac75773c2742d82cbcb078708df406e9017224b7 (diff) |
dccp: Cleanup routines for feature negotiation
This inserts the required de-allocation routines for memory allocated
by feature negotiation in the socket destructors, replacing
dccp_feat_clean() in one instance.
Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Acked-by: Ian McDonald <ian.mcdonald@jandi.co.nz>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ipv6.c')
-rw-r--r-- | net/dccp/ipv6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index 4e172ccfd76c..4aa1148cdb20 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c | |||
@@ -304,6 +304,7 @@ done: | |||
304 | 304 | ||
305 | static void dccp_v6_reqsk_destructor(struct request_sock *req) | 305 | static void dccp_v6_reqsk_destructor(struct request_sock *req) |
306 | { | 306 | { |
307 | dccp_feat_list_purge(&dccp_rsk(req)->dreq_featneg); | ||
307 | if (inet6_rsk(req)->pktopts != NULL) | 308 | if (inet6_rsk(req)->pktopts != NULL) |
308 | kfree_skb(inet6_rsk(req)->pktopts); | 309 | kfree_skb(inet6_rsk(req)->pktopts); |
309 | } | 310 | } |