]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
virtio_net: fix csum generation for virtio-net devices
authorMike Rapoport <rppt@linux.vnet.ibm.com>
Tue, 14 Jun 2016 05:29:38 +0000 (08:29 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 14 Jun 2016 07:03:34 +0000 (03:03 -0400)
commitd1dc06dcd0f8fc559e449322d2fa4d769c289e00
tree0603a2abcac9c76214ff6b2e989e3e100773fe2b
parent99860208bc62d8ebd5c57495b84856506fe075bc
virtio_net: fix csum generation for virtio-net devices

The commit e858fae2b0b8 ("virtio_net: use common code for virtio_net_hdr
and skb GSO conversion") replaced the tun code for header manipulation
with the generic helpers. While doing so, it implictly moved the
skb_partial_csum_set() invocation after eth_type_trans(), which
invalidate the current gso start/offset values.
Fix it by moving the helper invocation before the mac pulling.

Fixes: e858fae2b0b8 ("virtio_net: use common code for virtio_net_hdr and
skb GSO conversion")

Reported-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: Mike Rapoport <rppt@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/virtio_net.c