summary refs log tree commit diff
path: root/drivers/net/mlx4/en_tx.c
diff options
context:
space:
mode:
authorYevgeny Petrilin <yevgenyp@mellanox.co.il>2009-06-20 22:15:39 +0000
committerDavid S. Miller <davem@davemloft.net>2009-06-21 19:18:03 -0700
commitd4ddbaa6a9a09c019fc1a7fed5a0fa403ac437b9 (patch)
tree6b39ccf5026dbd8a5eab4fd4465addd0baf40385 /drivers/net/mlx4/en_tx.c
parent7e23091347664bf357ca651545c93e99fafc7b40 (diff)
downloadlinux-d4ddbaa6a9a09c019fc1a7fed5a0fa403ac437b9.tar.gz
mlx4_en: Removed redundant skb->len check
We don't need this check in the transmit function

Signed-off-by: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/mlx4/en_tx.c')
-rw-r--r--drivers/net/mlx4/en_tx.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/mlx4/en_tx.c b/drivers/net/mlx4/en_tx.c
index c0177c364bbf..e63132361a94 100644
--- a/drivers/net/mlx4/en_tx.c
+++ b/drivers/net/mlx4/en_tx.c
@@ -614,10 +614,6 @@ int mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev)
 	int lso_header_size;
 	void *fragptr;
 
-	if (unlikely(!skb->len)) {
-		dev_kfree_skb_any(skb);
-		return NETDEV_TX_OK;
-	}
 	real_size = get_real_size(skb, dev, &lso_header_size);
 	if (unlikely(!real_size))
 		goto tx_drop;