aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbevf
diff options
context:
space:
mode:
authorShirley Ma <xma@us.ibm.com>2010-06-05 06:04:50 -0400
committerDavid S. Miller <davem@davemloft.net>2010-06-05 06:04:50 -0400
commite59d44df46edaafb6b637e98d046775524b31104 (patch)
tree9b58688112c6a811b4c5d12747ca8b8a605c1b9b /drivers/net/ixgbevf
parent59d4289b83b11379d867e2f7146904b19cc96404 (diff)
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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c
index a16cff7e54a..73f1e75f68d 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,
3411 netdev->features |= NETIF_F_IPV6_CSUM; 3411 netdev->features |= NETIF_F_IPV6_CSUM;
3412 netdev->features |= NETIF_F_TSO; 3412 netdev->features |= NETIF_F_TSO;
3413 netdev->features |= NETIF_F_TSO6; 3413 netdev->features |= NETIF_F_TSO6;
3414 netdev->features |= NETIF_F_GRO;
3414 netdev->vlan_features |= NETIF_F_TSO; 3415 netdev->vlan_features |= NETIF_F_TSO;
3415 netdev->vlan_features |= NETIF_F_TSO6; 3416 netdev->vlan_features |= NETIF_F_TSO6;
3416 netdev->vlan_features |= NETIF_F_IP_CSUM; 3417 netdev->vlan_features |= NETIF_F_IP_CSUM;