diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2008-06-05 04:06:27 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-06-11 21:58:42 -0400 |
commit | 48f29ffc509748f5b82d7690561e98f851241a19 (patch) | |
tree | 05558a67f0a9f8d4fa6a401b690f4206a98baa0e /drivers | |
parent | ad31c402b41a25cfc6c8369b8412d6c133ccafbe (diff) | |
download | kernel_samsung_crespo-48f29ffc509748f5b82d7690561e98f851241a19.zip kernel_samsung_crespo-48f29ffc509748f5b82d7690561e98f851241a19.tar.gz kernel_samsung_crespo-48f29ffc509748f5b82d7690561e98f851241a19.tar.bz2 |
igb: allow vlan devices to use TSO and TCP CSUM offload
Using the new interface for propagating device feature flags into VLAN
deivces, turn on TSO and CSUM offload on VLAN devices.
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers')
-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 ae398f0..7b6b780 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, NETIF_F_HW_VLAN_FILTER; netdev->features |= NETIF_F_TSO; - netdev->features |= NETIF_F_TSO6; + + netdev->vlan_features |= NETIF_F_TSO; + netdev->vlan_features |= NETIF_F_TSO6; + netdev->vlan_features |= NETIF_F_HW_CSUM; + netdev->vlan_features |= NETIF_F_SG; + if (pci_using_dac) netdev->features |= NETIF_F_HIGHDMA; |