From: Subash Abhinov Kasiviswanathan Date: Thu, 14 Sep 2017 01:30:51 +0000 (-0600) Subject: udpv6: Fix the checksum computation when HW checksum does not apply X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=63ecc3d9436f8012e49dc846d6cb0a85a3433517;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git udpv6: Fix the checksum computation when HW checksum does not apply While trying an ESP transport mode encryption for UDPv6 packets of datagram size 1436 with MTU 1500, checksum error was observed in the secondary fragment. This error occurs due to the UDP payload checksum being missed out when computing the full checksum for these packets in udp6_hwcsum_outgoing(). Fixes: d39d938c8228 ("ipv6: Introduce udpv6_send_skb()") Signed-off-by: Subash Abhinov Kasiviswanathan Signed-off-by: David S. Miller --- diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index e2ecfb137297..40d7234c27b9 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -1015,6 +1015,7 @@ static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb, */ offset = skb_transport_offset(skb); skb->csum = skb_checksum(skb, offset, skb->len - offset, 0); + csum = skb->csum; skb->ip_summed = CHECKSUM_NONE;