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 <davem@davemloft.net>
CC: Eric Dumazet <eric.dumazet@gmail.com>
CC: David Ahern <dsa@cumulusnetworks.com>
CC: Andrey Vagin <avagin@openvz.org>
CC: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
                                 * hashinfo->lock here.
                                 */
                                sock_hold(sk);
-                               break;
+                               goto out_unlock;
                        }
                }
        }
+out_unlock:
        read_unlock(&hashinfo->lock);
 
        return sk ? sk : ERR_PTR(-ENOENT);