Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 246995
b: refs/heads/master
c: 58be766
h: refs/heads/master
i:
  246993: 9a29a55
  246991: 0e110c5
v: v3
  • Loading branch information
Don Skidmore authored and Jeff Kirsher committed Apr 27, 2011
1 parent 1a6c0c4 commit f610664
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7aba7b077f638deb9569e0b36256cd9ae76e468c
refs/heads/master: 58be7666a897bb756477da72859f515da35ab805
8 changes: 7 additions & 1 deletion trunk/drivers/net/ixgbe/ixgbe_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7361,8 +7361,14 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
netdev->features |= NETIF_F_TSO6;
netdev->features |= NETIF_F_GRO;

if (adapter->hw.mac.type == ixgbe_mac_82599EB)
switch (adapter->hw.mac.type) {
case ixgbe_mac_82599EB:
case ixgbe_mac_X540:
netdev->features |= NETIF_F_SCTP_CSUM;
break;
default:
break;
}

netdev->vlan_features |= NETIF_F_TSO;
netdev->vlan_features |= NETIF_F_TSO6;
Expand Down

0 comments on commit f610664

Please sign in to comment.