From: Dmitry Torokhov Date: Fri, 10 Jul 2015 00:17:57 +0000 (-0700) Subject: net: fix iterating over hashtable in tcp_nuke_addr() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4747299b2c8e8778927b3df0501023d76fe4f2d5;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git net: fix iterating over hashtable in tcp_nuke_addr() The actual size of the tcp hashinfo table is tcp_hashinfo.ehash_mask + 1 so we need to adjust the loop accordingly to get the sockets hashed into the last bucket. Change-Id: I796b3c7b4a1a7fa35fba9e5192a4a403eb6e17de Signed-off-by: Dmitry Torokhov --- diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index f94bc2cf50d3..c8cfe784c79a 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -3231,7 +3231,7 @@ int tcp_nuke_addr(struct net *net, struct sockaddr *addr) return -EAFNOSUPPORT; } - for (bucket = 0; bucket < tcp_hashinfo.ehash_mask; bucket++) { + for (bucket = 0; bucket <= tcp_hashinfo.ehash_mask; bucket++) { struct hlist_nulls_node *node; struct sock *sk; spinlock_t *lock = inet_ehash_lockp(&tcp_hashinfo, bucket);