aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/pasemi_mac.c
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2008-02-20 21:57:58 -0500
committerOlof Johansson <olof@lixom.net>2008-03-05 17:34:40 -0500
commit251567848f2f446f4356f969329a8188faf1fe90 (patch)
treed113624d09002b6e3482d3429c4a214112fc1ff1 /drivers/net/pasemi_mac.c
parent8d636d8bc5ffcdbf49c72aafcda9ddab7ccb2f41 (diff)
pasemi_mac: Enable GSO by default
Ethtool support will handle the runtime toggling, but we do quite a bit better with it on by default so just leave it on for now. Signed-off-by: Olof Johansson <olof@lixom.net> Acked-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/pasemi_mac.c')
-rw-r--r--drivers/net/pasemi_mac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/pasemi_mac.c b/drivers/net/pasemi_mac.c
index 54904ad29ea7..5ee7e4a73ae0 100644
--- a/drivers/net/pasemi_mac.c
+++ b/drivers/net/pasemi_mac.c
@@ -1750,7 +1750,7 @@ pasemi_mac_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1750 netif_napi_add(dev, &mac->napi, pasemi_mac_poll, 64); 1750 netif_napi_add(dev, &mac->napi, pasemi_mac_poll, 64);
1751 1751
1752 dev->features = NETIF_F_IP_CSUM | NETIF_F_LLTX | NETIF_F_SG | 1752 dev->features = NETIF_F_IP_CSUM | NETIF_F_LLTX | NETIF_F_SG |
1753 NETIF_F_HIGHDMA; 1753 NETIF_F_HIGHDMA | NETIF_F_GSO;
1754 1754
1755 mac->lro_mgr.max_aggr = LRO_MAX_AGGR; 1755 mac->lro_mgr.max_aggr = LRO_MAX_AGGR;
1756 mac->lro_mgr.max_desc = MAX_LRO_DESCRIPTORS; 1756 mac->lro_mgr.max_desc = MAX_LRO_DESCRIPTORS;