]> git.baikalelectronics.ru Git - kernel.git/commit
ipv4: mentions skb_gro_postpull_rcsum() in inet_gro_receive()
authorEric Dumazet <edumazet@google.com>
Wed, 1 Oct 2014 05:12:05 +0000 (22:12 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 1 Oct 2014 17:44:05 +0000 (13:44 -0400)
commitb8f322ed2950c0bc1ce846d309ecdabaac443ff9
tree595446444860fdf7c4e1fe200b218280b10f117c
parent2d1bd1be047b0af09fadb8c394880f77635ecb06
ipv4: mentions skb_gro_postpull_rcsum() in inet_gro_receive()

Proper CHECKSUM_COMPLETE support needs to adjust skb->csum
when we remove one header. Its done using skb_gro_postpull_rcsum()

In the case of IPv4, we know that the adjustment is not really needed,
because the checksum over IPv4 header is 0. Lets add a comment to
ease code comprehension and avoid copy/paste errors.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/af_inet.c