diff options
author | Shirley Ma <xma@us.ibm.com> | 2010-06-05 03:04:50 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-05 03:04:50 -0700 |
commit | e59d44df46edaafb6b637e98d046775524b31104 (patch) | |
tree | 9b58688112c6a811b4c5d12747ca8b8a605c1b9b /drivers/net/ixgbevf | |
parent | 59d4289b83b11379d867e2f7146904b19cc96404 (diff) | |
download | talos-op-linux-e59d44df46edaafb6b637e98d046775524b31104.tar.gz talos-op-linux-e59d44df46edaafb6b637e98d046775524b31104.zip |
ixgbevf: Enable GRO by default
Enable GRO by default for performance.
Signed-off-by: Shirley Ma <xma@us.ibm.com>
Acked-by: Greg Rose <gregory.v.rose@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbevf')
-rw-r--r-- | drivers/net/ixgbevf/ixgbevf_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c index a16cff7e54a3..73f1e75f68d4 100644 --- a/drivers/net/ixgbevf/ixgbevf_main.c +++ b/drivers/net/ixgbevf/ixgbevf_main.c @@ -3411,6 +3411,7 @@ static int __devinit ixgbevf_probe(struct pci_dev *pdev, netdev->features |= NETIF_F_IPV6_CSUM; netdev->features |= NETIF_F_TSO; netdev->features |= NETIF_F_TSO6; + netdev->features |= NETIF_F_GRO; netdev->vlan_features |= NETIF_F_TSO; netdev->vlan_features |= NETIF_F_TSO6; netdev->vlan_features |= NETIF_F_IP_CSUM; |