diff options
author | David S. Miller <davem@davemloft.net> | 2012-09-13 14:24:31 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-09-13 14:24:31 -0400 |
commit | b0e61d98c672a9216d72d2d7430f6dc60795002e (patch) | |
tree | e3df3834c08ce75b63aa1f21ac31e483f273495b /net/netfilter/ipvs | |
parent | 280050cc81ccb2e06e4061228ee34c0cc86b1560 (diff) | |
parent | c7cbb9173d3c6d41cbfbca451902d66fe6440cbb (diff) | |
download | linux-b0e61d98c672a9216d72d2d7430f6dc60795002e.tar.gz linux-b0e61d98c672a9216d72d2d7430f6dc60795002e.tar.bz2 linux-b0e61d98c672a9216d72d2d7430f6dc60795002e.zip |
Merge branch 'master' of git://1984.lsi.us.es/nf-next
Pablo Neira Ayuso says:
====================
The following patchset contains four Netfilter updates, mostly targeting
to fix issues added with IPv6 NAT, and one little IPVS update for net-next:
* Remove unneeded conditional free of skb in nfnetlink_queue, from
Wei Yongjun.
* One semantic path from coccinelle detected the use of list_del +
INIT_LIST_HEAD, instead of list_del_init, again from Wei Yongjun.
* Fix out-of-bound memory access in the NAT address selection, from
Florian Westphal. This was introduced with the IPv6 NAT patches.
* Two fixes for crashes that were introduced in the recently merged
IPv6 NAT support, from myself.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netfilter/ipvs')
-rw-r--r-- | net/netfilter/ipvs/ip_vs_ctl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c index 0f924bf19c2b..7e7198b51c06 100644 --- a/net/netfilter/ipvs/ip_vs_ctl.c +++ b/net/netfilter/ipvs/ip_vs_ctl.c @@ -539,8 +539,7 @@ static int ip_vs_rs_unhash(struct ip_vs_dest *dest) * Remove it from the rs_table table. */ if (!list_empty(&dest->d_list)) { - list_del(&dest->d_list); - INIT_LIST_HEAD(&dest->d_list); + list_del_init(&dest->d_list); } return 1; |