aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/mlx4/en_netdev.c
diff options
context:
space:
mode:
authorAmerigo Wang <amwang@redhat.com>2010-08-17 17:51:18 -0400
committerDavid S. Miller <davem@davemloft.net>2010-08-23 00:43:58 -0400
commitf3c58aceaa3f237ba43735805f4677950327b8ee (patch)
treed847af6efead20dc3eeea2c6cb73be097d507a7a /drivers/net/mlx4/en_netdev.c
parentf502bf2bc0de4795e8dd081a2095006021c00a0f (diff)
mlx4: remove num_lro parameter
As suggested by David, this parameter can die, we can use ethtool to turn LRO on/off. Compile tests only. Signed-off-by: WANG Cong <amwang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/mlx4/en_netdev.c')
-rw-r--r--drivers/net/mlx4/en_netdev.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/mlx4/en_netdev.c b/drivers/net/mlx4/en_netdev.c
index a0d8a26f5a02..d00bfe250b05 100644
--- a/drivers/net/mlx4/en_netdev.c
+++ b/drivers/net/mlx4/en_netdev.c
@@ -1038,8 +1038,7 @@ int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
1038 dev->features |= NETIF_F_HW_VLAN_TX | 1038 dev->features |= NETIF_F_HW_VLAN_TX |
1039 NETIF_F_HW_VLAN_RX | 1039 NETIF_F_HW_VLAN_RX |
1040 NETIF_F_HW_VLAN_FILTER; 1040 NETIF_F_HW_VLAN_FILTER;
1041 if (mdev->profile.num_lro) 1041 dev->features |= NETIF_F_LRO;
1042 dev->features |= NETIF_F_LRO;
1043 if (mdev->LSO_support) { 1042 if (mdev->LSO_support) {
1044 dev->features |= NETIF_F_TSO; 1043 dev->features |= NETIF_F_TSO;
1045 dev->features |= NETIF_F_TSO6; 1044 dev->features |= NETIF_F_TSO6;