]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
igb: open up SCTP checksum offloads to all MACs 82576 and newer
authorAlexander Duyck <alexander.h.duyck@intel.com>
Tue, 27 Oct 2009 23:52:31 +0000 (23:52 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 28 Oct 2009 10:26:07 +0000 (03:26 -0700)
Going forward the plan is to have the MACs support SCTP checksum offloads
so change the check from == to >=.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/igb/igb_main.c

index 846e64f0ad86147de373fc9baca2f6548ff83dad..1a6c074550523895f8240ff36b60df6c78a8c2ad 100644 (file)
@@ -1456,7 +1456,7 @@ static int __devinit igb_probe(struct pci_dev *pdev,
        if (pci_using_dac)
                netdev->features |= NETIF_F_HIGHDMA;
 
-       if (adapter->hw.mac.type == e1000_82576)
+       if (hw->mac.type >= e1000_82576)
                netdev->features |= NETIF_F_SCTP_CSUM;
 
        adapter->en_mng_pt = igb_enable_mng_pass_thru(hw);