diff options
Diffstat (limited to 'net/ipv4/inet_hashtables.c')
| -rw-r--r-- | net/ipv4/inet_hashtables.c | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index e41fdc38ce19..6edae3886885 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c @@ -828,8 +828,14 @@ bool inet_bind2_bucket_match_addr_any(const struct inet_bind2_bucket *tb, const  #if IS_ENABLED(CONFIG_IPV6)  	struct in6_addr addr_any = {}; -	if (sk->sk_family != tb->family) +	if (sk->sk_family != tb->family) { +		if (sk->sk_family == AF_INET) +			return net_eq(ib2_net(tb), net) && tb->port == port && +				tb->l3mdev == l3mdev && +				ipv6_addr_equal(&tb->v6_rcv_saddr, &addr_any); +  		return false; +	}  	if (sk->sk_family == AF_INET6)  		return net_eq(ib2_net(tb), net) && tb->port == port &&  |