]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mvneta: Driver and hardware supports IPv6 offload, so enable it
authorAndrew Pilloud <andrewpilloud@igneoussystems.com>
Fri, 1 Sep 2017 14:49:49 +0000 (07:49 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 1 Sep 2017 17:36:38 +0000 (10:36 -0700)
The mvneta driver and hardware supports IPv6 offload, however it
isn't enabled. Set the NETIF_F_IPV6_CSUM feature to inform the
network layer that this driver can offload IPV6 TCP and UDP
checksums. This change has been tested on an Armada 370 and the
feature support confirmed with several device datasheets
including the Armada XP and Armada 3700.

Signed-off-by: Andrew Pilloud <andrewpilloud@igneoussystems.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/mvneta.c

index 35ff1ecfcff05b8208f27034f4e2fc3f813de94a..64a04975bcf896b01c7fc87ab9f0bbe7e224d08d 100644 (file)
@@ -4329,7 +4329,7 @@ static int mvneta_probe(struct platform_device *pdev)
                }
        }
 
-       dev->features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
+       dev->features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_TSO;
        dev->hw_features |= dev->features;
        dev->vlan_features |= dev->features;
        dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;