]> git.karo-electronics.de Git - karo-tx-linux.git/commit
vlan: Keep NETIF_F_HW_CSUM similar to other software devices
authorVlad Yasevich <vyasevich@gmail.com>
Fri, 5 May 2017 20:17:41 +0000 (16:17 -0400)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 May 2017 18:39:19 +0000 (14:39 -0400)
commit8403debeead8e8b296d7a7db2174af524695ab42
treee99d202db8c54a3f32d2b49c174aa5b1cf776210
parent1b1fc3fddabfb8739ef2c8f04e05a9858b42c1f7
vlan: Keep NETIF_F_HW_CSUM similar to other software devices

Vlan devices, like all other software devices, enable
NETIF_F_HW_CSUM feature.  However, unlike all the othe other
software devices, vlans will switch to using IP|IPV6_CSUM
features, if the underlying devices uses them.  In these situations,
checksum offload features on the vlan device can't be controlled
via ethtool.

This patch makes vlans keep HW_CSUM feature if the underlying
device supports checksum offloading.  This makes vlan devices
behave like other software devices, and restores control to the
user.

A side-effect is that some offload settings (typically UFO)
may be enabled on the vlan device while being disabled on the HW.
However, the GSO code will correctly process the packets. This
actually results in slightly better raw throughput.

Signed-off-by: Vladislav Yasevich <vyasevic@redhat.com>
Acked-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/8021q/vlan_dev.c