diff options
author | Josef Bacik <jbacik@fb.com> | 2017-09-22 20:20:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-22 20:33:17 -0700 |
commit | cbb2fb5c72f48d3029c144be0f0e61da1c7bccf7 (patch) | |
tree | b8671df862de43b1a489b12568a04794788364f4 /net/ipv4/inet_connection_sock.c | |
parent | 581fe0ea61584d88072527ae9fb9dcb9d1f2783e (diff) | |
download | talos-obmc-linux-cbb2fb5c72f48d3029c144be0f0e61da1c7bccf7.tar.gz talos-obmc-linux-cbb2fb5c72f48d3029c144be0f0e61da1c7bccf7.zip |
net: set tb->fast_sk_family
We need to set the tb->fast_sk_family properly so we can use the proper
comparison function for all subsequent reuseport bind requests.
Fixes: 637bc8bbe6c0 ("inet: reset tb->fastreuseport when adding a reuseport sk")
Reported-and-tested-by: Cole Robinson <crobinso@redhat.com>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_connection_sock.c')
-rw-r--r-- | net/ipv4/inet_connection_sock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index b9c64b40a83a..f87f4805e244 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c @@ -328,6 +328,7 @@ success: tb->fastuid = uid; tb->fast_rcv_saddr = sk->sk_rcv_saddr; tb->fast_ipv6_only = ipv6_only_sock(sk); + tb->fast_sk_family = sk->sk_family; #if IS_ENABLED(CONFIG_IPV6) tb->fast_v6_rcv_saddr = sk->sk_v6_rcv_saddr; #endif @@ -354,6 +355,7 @@ success: tb->fastuid = uid; tb->fast_rcv_saddr = sk->sk_rcv_saddr; tb->fast_ipv6_only = ipv6_only_sock(sk); + tb->fast_sk_family = sk->sk_family; #if IS_ENABLED(CONFIG_IPV6) tb->fast_v6_rcv_saddr = sk->sk_v6_rcv_saddr; #endif |