mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 16:50:05 +00:00
igb: open up SCTP checksum offloads to all MACs 82576 and newer
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>
This commit is contained in:
parent
c809d2276c
commit
5b043fb08e
@ -1456,7 +1456,7 @@ static int __devinit igb_probe(struct pci_dev *pdev,
|
|||||||
if (pci_using_dac)
|
if (pci_using_dac)
|
||||||
netdev->features |= NETIF_F_HIGHDMA;
|
netdev->features |= NETIF_F_HIGHDMA;
|
||||||
|
|
||||||
if (adapter->hw.mac.type == e1000_82576)
|
if (hw->mac.type >= e1000_82576)
|
||||||
netdev->features |= NETIF_F_SCTP_CSUM;
|
netdev->features |= NETIF_F_SCTP_CSUM;
|
||||||
|
|
||||||
adapter->en_mng_pt = igb_enable_mng_pass_thru(hw);
|
adapter->en_mng_pt = igb_enable_mng_pass_thru(hw);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user