mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
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>
This commit is contained in:
parent
8d636d8bc5
commit
251567848f
1 changed files with 1 additions and 1 deletions
|
@ -1750,7 +1750,7 @@ pasemi_mac_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
netif_napi_add(dev, &mac->napi, pasemi_mac_poll, 64);
|
||||
|
||||
dev->features = NETIF_F_IP_CSUM | NETIF_F_LLTX | NETIF_F_SG |
|
||||
NETIF_F_HIGHDMA;
|
||||
NETIF_F_HIGHDMA | NETIF_F_GSO;
|
||||
|
||||
mac->lro_mgr.max_aggr = LRO_MAX_AGGR;
|
||||
mac->lro_mgr.max_desc = MAX_LRO_DESCRIPTORS;
|
||||
|
|
Loading…
Reference in a new issue