mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-16 11:44:52 +00:00
net: mvpp2: enable UDP/TCP checksum over IPv6
This patch adds the NETIF_F_IPV6_CSUM to the driver's features to enable UDP/TCP checksum over IPv6. No extra configuration of the engine is needed on top of the IPv4 counterpart, which already is in the features list (NETIF_F_IP_CSUM). Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
93ff130f1c
commit
381c56712d
1 changed files with 2 additions and 1 deletions
|
|
@ -8321,7 +8321,8 @@ static int mvpp2_port_probe(struct platform_device *pdev,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
|
features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
|
||||||
|
NETIF_F_TSO;
|
||||||
dev->features = features | NETIF_F_RXCSUM;
|
dev->features = features | NETIF_F_RXCSUM;
|
||||||
dev->hw_features |= features | NETIF_F_RXCSUM | NETIF_F_GRO |
|
dev->hw_features |= features | NETIF_F_RXCSUM | NETIF_F_GRO |
|
||||||
NETIF_F_HW_VLAN_CTAG_FILTER;
|
NETIF_F_HW_VLAN_CTAG_FILTER;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue