[PATCH 6/6] mlx4_en: use NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM for tx csum at initialization

Previous thread: [PATCH 5/6] mlx4_en: Assign dummy event handler for TX queue by Yevgeny Petrilin on Thursday, March 26, 2009 - 6:58 am. (1 message)

Next thread: Passive OS fingerprint xtables match. by Evgeniy Polyakov on Thursday, March 26, 2009 - 7:14 am. (8 messages)
From: Yevgeny Petrilin
Date: Thursday, March 26, 2009 - 6:59 am

The former usage was to set the NETIF_F_HW_CSUM flag which is not used
in get_tx_csum. It caused Ethtool to show tx checksum as "on" even
though it was turned off in previous operation.

Signed-off-by: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
---
 drivers/net/mlx4/en_netdev.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/mlx4/en_netdev.c b/drivers/net/mlx4/en_netdev.c
index f52e897..0909a0c 100644
--- a/drivers/net/mlx4/en_netdev.c
+++ b/drivers/net/mlx4/en_netdev.c
@@ -1056,7 +1056,7 @@ int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
 	 * Set driver features
 	 */
 	dev->features |= NETIF_F_SG;
-	dev->features |= NETIF_F_HW_CSUM;
+	dev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
 	dev->features |= NETIF_F_HIGHDMA;
 	dev->features |= NETIF_F_HW_VLAN_TX |
 			 NETIF_F_HW_VLAN_RX |
-- 
1.6.1.3

--

Previous thread: [PATCH 5/6] mlx4_en: Assign dummy event handler for TX queue by Yevgeny Petrilin on Thursday, March 26, 2009 - 6:58 am. (1 message)

Next thread: Passive OS fingerprint xtables match. by Evgeniy Polyakov on Thursday, March 26, 2009 - 7:14 am. (8 messages)