From: Shirley Ma <xma@us.ibm.com> Date: Sat, 5 Jun 2010 10:04:50 +0000 (-0700) Subject: ixgbevf: Enable GRO by default X-Git-Tag: MMI-PSA29.97-13-9~23092^2~646 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e59d44df46edaafb6b637e98d046775524b31104;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git 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> --- 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;