net: atlantic: enable ipv6 support for TCP LSO and UDP GSO
authorIgor Russkikh <irusskikh@marvell.com>
Mon, 20 Jul 2020 18:32:39 +0000 (21:32 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Jul 2020 01:07:38 +0000 (18:07 -0700)
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>
drivers/net/ethernet/aquantia/atlantic/aq_nic.c
drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c

index d72f402..c6b0981 100644 (file)
@@ -371,7 +371,7 @@ void aq_nic_ndev_init(struct aq_nic_s *self)
        self->ndev->features = aq_hw_caps->hw_features;
        self->ndev->vlan_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM |
                                     NETIF_F_RXHASH | NETIF_F_SG |
-                                    NETIF_F_LRO | NETIF_F_TSO;
+                                    NETIF_F_LRO | NETIF_F_TSO | NETIF_F_TSO6;
        self->ndev->gso_partial_features = NETIF_F_GSO_UDP_L4;
        self->ndev->priv_flags = aq_hw_caps->hw_priv_flags;
        self->ndev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
index 97672ff..51c8962 100644 (file)
@@ -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 | \