aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_main.c
diff options
context:
space:
mode:
authorJesse Brandeburg <jesse.brandeburg@intel.com>2008-08-26 07:27:18 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-09-03 10:03:33 -0400
commit22f32b7a5ad34f23eb18f0e089522f1652ae8abc (patch)
treecb5aa66f0ae957b2e6ee1878cac9b772451b7b86 /drivers/net/ixgbe/ixgbe_main.c
parent7c6e0a436d971641d37cebcb12e8cc0c4419b5d4 (diff)
ixgbe: should not use HW_CSUM, should use IP* flags
as mentioned by Herbert, our hardware supports IP offloads, not full checksum offloads for any protocol in existence (even though the hardware just provides generic csum support over any range of bytes) Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_main.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c
index b5780991c17b..b6973ee905e3 100644
--- a/drivers/net/ixgbe/ixgbe_main.c
+++ b/drivers/net/ixgbe/ixgbe_main.c
@@ -3593,7 +3593,7 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
3593 goto err_sw_init; 3593 goto err_sw_init;
3594 3594
3595 netdev->features = NETIF_F_SG | 3595 netdev->features = NETIF_F_SG |
3596 NETIF_F_HW_CSUM | 3596 NETIF_F_IP_CSUM |
3597 NETIF_F_HW_VLAN_TX | 3597 NETIF_F_HW_VLAN_TX |
3598 NETIF_F_HW_VLAN_RX | 3598 NETIF_F_HW_VLAN_RX |
3599 NETIF_F_HW_VLAN_FILTER; 3599 NETIF_F_HW_VLAN_FILTER;
@@ -3604,7 +3604,7 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
3604 3604
3605 netdev->vlan_features |= NETIF_F_TSO; 3605 netdev->vlan_features |= NETIF_F_TSO;
3606 netdev->vlan_features |= NETIF_F_TSO6; 3606 netdev->vlan_features |= NETIF_F_TSO6;
3607 netdev->vlan_features |= NETIF_F_HW_CSUM; 3607 netdev->vlan_features |= NETIF_F_IP_CSUM;
3608 netdev->vlan_features |= NETIF_F_SG; 3608 netdev->vlan_features |= NETIF_F_SG;
3609 3609
3610 if (pci_using_dac) 3610 if (pci_using_dac)