diff options
Diffstat (limited to 'drivers/net/igb/igb_main.c')
-rw-r--r-- | drivers/net/igb/igb_main.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index ae398f04c7b..7b6b780dc8a 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
@@ -967,8 +967,13 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
967 | NETIF_F_HW_VLAN_FILTER; | 967 | NETIF_F_HW_VLAN_FILTER; |
968 | 968 | ||
969 | netdev->features |= NETIF_F_TSO; | 969 | netdev->features |= NETIF_F_TSO; |
970 | |||
971 | netdev->features |= NETIF_F_TSO6; | 970 | netdev->features |= NETIF_F_TSO6; |
971 | |||
972 | netdev->vlan_features |= NETIF_F_TSO; | ||
973 | netdev->vlan_features |= NETIF_F_TSO6; | ||
974 | netdev->vlan_features |= NETIF_F_HW_CSUM; | ||
975 | netdev->vlan_features |= NETIF_F_SG; | ||
976 | |||
972 | if (pci_using_dac) | 977 | if (pci_using_dac) |
973 | netdev->features |= NETIF_F_HIGHDMA; | 978 | netdev->features |= NETIF_F_HIGHDMA; |
974 | 979 | ||