diff options
author | Igor Russkikh <irusskikh@marvell.com> | 2020-07-20 21:32:39 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-21 04:07:38 +0300 |
commit | 8bd60710852fffe4c32b5b7f84de2a6c19d12971 (patch) | |
tree | c0fed5c4a7ecb951e703250b6d0df81915a08461 /drivers/net/ethernet/aquantia/atlantic/hw_atl | |
parent | 14b539a3490102750c86a63a8f27a69935e6a84e (diff) | |
download | linux-8bd60710852fffe4c32b5b7f84de2a6c19d12971.tar.xz |
net: atlantic: enable ipv6 support for TCP LSO and UDP GSO
This patch enables ipv6 support for TCP LSO and UDP GSO.
The code itself (aq_nic_map_skb) was ready for this after udp gso feature,
but corresponding NETIF_F_TSO6 wasn't enabled.
We now have tested both tcp and udp v6 GSO, and enabling them safely.
Signed-off-by: Igor Russkikh <irusskikh@marvell.com>
Signed-off-by: Mark Starovoytov <mstarovoitov@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/aquantia/atlantic/hw_atl')
-rw-r--r-- | drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c b/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c index 97672ff142a8..51c8962b7a0e 100644 --- a/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c +++ b/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c @@ -40,6 +40,7 @@ NETIF_F_RXHASH | \ NETIF_F_SG | \ NETIF_F_TSO | \ + NETIF_F_TSO6 | \ NETIF_F_LRO | \ NETIF_F_NTUPLE | \ NETIF_F_HW_VLAN_CTAG_FILTER | \ |