]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'virtio_net_ufo'
authorDavid S. Miller <davem@davemloft.net>
Wed, 4 Feb 2015 07:06:49 +0000 (23:06 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Feb 2015 07:06:49 +0000 (23:06 -0800)
commit57b2664984e38c9306f19ba1369cc237d31df250
tree5a26c4c9f88e8c070dfcc42385f98240925ec848
parent53f3b9e7f21268241e66da3e05bb6e6e6be64f71
parentc9a351307885d62932fa10ccd455927c2f5d3dfb
Merge branch 'virtio_net_ufo'

Vladislav Yasevich says:

====================
Restore UFO support to virtio_net devices

commit a4ac0613cac5a3354f68c71182c9b2d4c3398891
Author: Ben Hutchings <ben@decadent.org.uk>
Date:   Thu Oct 30 18:27:12 2014 +0000

    drivers/net: Disable UFO through virtio

Turned off UFO support to virtio-net based devices due to issues
with IPv6 fragment id generation for UFO packets.  The issue
was that IPv6 UFO/GSO implementation expects the fragment id
to be supplied in skb_shinfo().  However, for packets generated
by the VMs, the fragment id is not supplied which causes all
IPv6 fragments to have the id of 0.

The problem is that turning off UFO support on tap/macvtap
as well as virtio devices caused issues with migrations.
Migrations would fail when moving a vm from a kernel supporting
expecting UFO to work to the newer kernels that disabled UFO.

This series provides a partial solution to address the migration
issue.  The series allows us to track whether skb_shinfo()->ip6_frag_id
has been set by treating value of 0 as unset.
This lets GSO code to generate fragment ids if they are necessary
(ex: packet was generated by VM or packet socket).

Since v3:
  - Resolved build issue when IPv6 is a module.
  - Removed trailing white space.

Since v2:
  - Rebase and rebuild to make sure everything works.  No changes
    to the patches were done.

Since v1:
  - Removed the skb bit and use value of 0 as tracker.
  - Used Eric's suggestion to set fragment id as 0x80000000 if id
    generation procedure yeilded a 0 result.
  - Consolidated ipv6 id genration code.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>