Re: [PATCH 14/15] ehea: Add GRO support
From: Michał Mirosław <hidden>
Date: 2011-05-12 06:04:06
2011/5/12 Anton Blanchard [off-list ref]:
Add GRO support to the ehea driver.
[...]
quoted hunk ↗ jump to hunk
--- linux-net.orig/drivers/net/ehea/ehea_main.c 2011-05-12 07:48:03.810341336 +1000 +++ linux-net/drivers/net/ehea/ehea_main.c 2011-05-12 07:48:05.100361788 +1000
[...]
quoted hunk ↗ jump to hunk
@@ -3041,7 +3034,7 @@ struct ehea_port *ehea_setup_single_portdev->netdev_ops = &ehea_netdev_ops; ehea_set_ethtool_ops(dev); - dev->hw_features = NETIF_F_SG | NETIF_F_TSO + dev->hw_features = NETIF_F_SG | NETIF_F_TSO | NETIF_F_GRO | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX | NETIF_F_LRO; dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX
GRO is now enabled by default, so no need to put it in hw_features or features. Best Regards, Michał Mirosław