diff options
author | Andrew Pilloud <andrewpilloud@igneoussystems.com> | 2017-09-01 17:49:49 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-01 20:36:38 +0300 |
commit | c54a5048904b6a492551d1cf0a7c9ae3ca763f4b (patch) | |
tree | be168a9b190bc829ada0c483323c1f2eaa30407a | |
parent | 5dd6fc7a3e19e79aa25a96f477c4c62f5b71cae2 (diff) | |
download | linux-c54a5048904b6a492551d1cf0a7c9ae3ca763f4b.tar.xz |
mvneta: Driver and hardware supports IPv6 offload, so enable it
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>
-rw-r--r-- | drivers/net/ethernet/marvell/mvneta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c index 35ff1ecfcff0..64a04975bcf8 100644 --- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -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; |