From: Cyrill Gorcunov Date: Wed, 2 Nov 2016 12:36:32 +0000 (+0300) Subject: net: ip, raw_diag -- Use jump for exiting from nested loop X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9999370faed945be2913cd34aa24e84317a0ceda;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git net: ip, raw_diag -- Use jump for exiting from nested loop I managed to miss that sk_for_each is called under "for" cycle so need to use goto here to return matching socket. CC: David S. Miller CC: Eric Dumazet CC: David Ahern CC: Andrey Vagin CC: Stephen Hemminger Signed-off-by: Cyrill Gorcunov Acked-by: David Ahern Signed-off-by: David S. Miller --- diff --git a/net/ipv4/raw_diag.c b/net/ipv4/raw_diag.c index bf0b8842bf31..e1a51ca68d23 100644 --- a/net/ipv4/raw_diag.c +++ b/net/ipv4/raw_diag.c @@ -79,10 +79,11 @@ static struct sock *raw_sock_get(struct net *net, const struct inet_diag_req_v2 * hashinfo->lock here. */ sock_hold(sk); - break; + goto out_unlock; } } } +out_unlock: read_unlock(&hashinfo->lock); return sk ? sk : ERR_PTR(-ENOENT);