Merge branch 'ipv4-ipv6-csums'
authorDavid S. Miller <davem@davemloft.net>
Mon, 14 Mar 2016 03:55:14 +0000 (23:55 -0400)
committerDavid S. Miller <davem@davemloft.net>
Mon, 14 Mar 2016 03:55:14 +0000 (23:55 -0400)
commit20db778e51d569e8260c40e06473a639d6d01393
tree6cb060f2472662019329028c10af017473a5549e
parentfbd40ea0180a2d328c5adc61414dc8bab9335ce2
parent08334824951dd6d1295860da07b1236d18b0b8df
Merge branch 'ipv4-ipv6-csums'

Alexander Duyck says:

====================
Fix differences between IPv4 and IPv6 TCP/UDP checksum calculation

This patch series is meant to address the differences that exist between
IPv4 and IPv6 in terms of checksum calculation.  Specifically the IPv6
function csum_ipv6_magic treated length as a value that could be greater
than 64K, while csum_tcpudp_magic was truncating the length at 16 bits.
After looking over the code and giving it some thought I decided it would
be best to update the IPv4 function so that it worked the same way the IPv6
one did.  This allows us to get the same results given the same inputs for
both functions.  As a result we can use the same processes to reverse the
calculation in the event we need to do something like remove the length of
the pseudo-header checksum.

I also took the opportunity to standardize things so that the parameters
for these functions all use the correct types.  IPv4 addresses are __be32,
length should always be __u32, and protocol is a __u8.

With this change in place it corrects an issue with UDP tunnels in which we
were getting a checksum that was off by 1 when performing fragmentation on
inner UDP packets.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
This page took 0.024609 seconds and 5 git commands to generate.