diff options
Diffstat (limited to 'drivers/net/igb')
-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 e79a26a886c8..6f1ad5368ae5 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
@@ -968,8 +968,13 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
968 | NETIF_F_HW_VLAN_FILTER; | 968 | NETIF_F_HW_VLAN_FILTER; |
969 | 969 | ||
970 | netdev->features |= NETIF_F_TSO; | 970 | netdev->features |= NETIF_F_TSO; |
971 | |||
972 | netdev->features |= NETIF_F_TSO6; | 971 | netdev->features |= NETIF_F_TSO6; |
972 | |||
973 | netdev->vlan_features |= NETIF_F_TSO; | ||
974 | netdev->vlan_features |= NETIF_F_TSO6; | ||
975 | netdev->vlan_features |= NETIF_F_HW_CSUM; | ||
976 | netdev->vlan_features |= NETIF_F_SG; | ||
977 | |||
973 | if (pci_using_dac) | 978 | if (pci_using_dac) |
974 | netdev->features |= NETIF_F_HIGHDMA; | 979 | netdev->features |= NETIF_F_HIGHDMA; |
975 | 980 | ||