[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100915202217.365fee46@nehalam>
Date: Wed, 15 Sep 2010 20:22:17 -0700
From: Stephen Hemminger <shemminger@...tta.com>
To: David Miller <davem@...emloft.net>
Cc: netdev@...r.kernel.org
Subject: [PATCH] sky2: enable GRO by default
The driver has supported GRO for a while, but it was not enabled
by default.
Signed-off-by: Stephen Hemminger <shemminger@...tta.com>
--- a/drivers/net/sky2.c 2010-09-15 18:09:55.656753541 -0700
+++ b/drivers/net/sky2.c 2010-09-15 18:13:50.953918039 -0700
@@ -4581,7 +4581,8 @@ static __devinit struct net_device *sky2
sky2->port = port;
- dev->features |= NETIF_F_TSO | NETIF_F_IP_CSUM | NETIF_F_SG;
+ dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG
+ | NETIF_F_TSO | NETIF_F_GRO;
if (highmem)
dev->features |= NETIF_F_HIGHDMA;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists