aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgbe')
-rw-r--r--drivers/net/ixgbe/ixgbe_main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c
index 7b859220c25..0d37c9025be 100644
--- a/drivers/net/ixgbe/ixgbe_main.c
+++ b/drivers/net/ixgbe/ixgbe_main.c
@@ -3518,8 +3518,13 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
3518 NETIF_F_HW_VLAN_FILTER; 3518 NETIF_F_HW_VLAN_FILTER;
3519 3519
3520 netdev->features |= NETIF_F_TSO; 3520 netdev->features |= NETIF_F_TSO;
3521
3522 netdev->features |= NETIF_F_TSO6; 3521 netdev->features |= NETIF_F_TSO6;
3522
3523 netdev->vlan_features |= NETIF_F_TSO;
3524 netdev->vlan_features |= NETIF_F_TSO6;
3525 netdev->vlan_features |= NETIF_F_HW_CSUM;
3526 netdev->vlan_features |= NETIF_F_SG;
3527
3523 if (pci_using_dac) 3528 if (pci_using_dac)
3524 netdev->features |= NETIF_F_HIGHDMA; 3529 netdev->features |= NETIF_F_HIGHDMA;
3525 3530