diff options
author | Willem de Bruijn <willemb@google.com> | 2018-07-06 17:12:59 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-07 04:58:49 +0300 |
commit | fbf47813607ba8c4e5c5b81da3c47fc66ac314b1 (patch) | |
tree | 9ab9ed3c9a6a5018df2faec2dab0b896aacd3bca /net/ipv6/ip6_output.c | |
parent | 678ca42d688534adfc780b150abefaaac7c86687 (diff) | |
download | linux-fbf47813607ba8c4e5c5b81da3c47fc66ac314b1.tar.xz |
ip: unconditionally set cork gso_size
Now that ipc(6)->gso_size is correctly initialized in all callers of
ip(6)_setup_cork, it is safe to unconditionally pass it to the cork.
Link: http://lkml.kernel.org/r/20180619164752.143249-1-willemdebruijn.kernel@gmail.com
Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_output.c')
-rw-r--r-- | net/ipv6/ip6_output.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index ff4b28a600ab..8047fd41ba88 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -1219,8 +1219,7 @@ static int ip6_setup_cork(struct sock *sk, struct inet_cork_full *cork, if (mtu < IPV6_MIN_MTU) return -EINVAL; cork->base.fragsize = mtu; - cork->base.gso_size = sk->sk_type == SOCK_DGRAM && - sk->sk_protocol == IPPROTO_UDP ? ipc6->gso_size : 0; + cork->base.gso_size = ipc6->gso_size; cork->base.tx_flags = 0; sock_tx_timestamp(sk, ipc6->sockc.tsflags, &cork->base.tx_flags); |