diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2011-04-05 08:36:09 -0400 |
---|---|---|
committer | Ben Hutchings <bhutchings@solarflare.com> | 2011-04-05 08:37:02 -0400 |
commit | f82d9a67fbcdfd8af6be7a7c9e381864ec9a271a (patch) | |
tree | bc010d314537177118a7a59ce8256f3921d59dfe /drivers/net/sfc | |
parent | ab3cf6d0f3d2daeef2101a2a97b6c0beee6b70cf (diff) |
sfc: Enable all TSO features on VLANs
The TSO code already supports IPv6 on VLAN, so enable it.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'drivers/net/sfc')
-rw-r--r-- | drivers/net/sfc/efx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sfc/efx.c b/drivers/net/sfc/efx.c index d890679e4c4d..542f32d21acf 100644 --- a/drivers/net/sfc/efx.c +++ b/drivers/net/sfc/efx.c | |||
@@ -2457,7 +2457,7 @@ static int __devinit efx_pci_probe(struct pci_dev *pci_dev, | |||
2457 | net_dev->features |= NETIF_F_TSO6; | 2457 | net_dev->features |= NETIF_F_TSO6; |
2458 | /* Mask for features that also apply to VLAN devices */ | 2458 | /* Mask for features that also apply to VLAN devices */ |
2459 | net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG | | 2459 | net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG | |
2460 | NETIF_F_HIGHDMA | NETIF_F_TSO); | 2460 | NETIF_F_HIGHDMA | NETIF_F_ALL_TSO); |
2461 | efx = netdev_priv(net_dev); | 2461 | efx = netdev_priv(net_dev); |
2462 | pci_set_drvdata(pci_dev, efx); | 2462 | pci_set_drvdata(pci_dev, efx); |
2463 | SET_NETDEV_DEV(net_dev, &pci_dev->dev); | 2463 | SET_NETDEV_DEV(net_dev, &pci_dev->dev); |