[PATCH net-next 5/6] net: hip04: remove the unnecessary check

Ding Tianhong dingtianhong at huawei.com
Wed Apr 15 05:30:07 PDT 2015


Testing bytes_compl should be enough, because there is no way
that pkt_compl could be 0 if bytes_compl is not 0.

Signed-off-by: Ding Tianhong <dingtianhong at huawei.com>
Cc: "David S. Miller" <davem at davemloft.net>
Cc: Eric Dumazet <eric.dumazet at gmail.com>
Cc: Arnd Bergmann <arnd at arndb.de>
Cc: Zhangfei Gao <zhangfei.gao at linaro.org>
Cc: Dan Carpenter <dan.carpenter at oracle.com>
Cc: Joe Perches <joe at perches.com>
---
 drivers/net/ethernet/hisilicon/hip04_eth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/hisilicon/hip04_eth.c b/drivers/net/ethernet/hisilicon/hip04_eth.c
index ff9d19c..a7ab1d9 100644
--- a/drivers/net/ethernet/hisilicon/hip04_eth.c
+++ b/drivers/net/ethernet/hisilicon/hip04_eth.c
@@ -440,7 +440,7 @@ static int hip04_tx_reclaim(struct net_device *ndev, bool force)
 	smp_wmb(); /* Ensure tx_tail visible to xmit */
 
 out:
-	if (pkts_compl || bytes_compl)
+	if (bytes_compl)
 		netdev_completed_queue(ndev, pkts_compl, bytes_compl);
 
 	if (unlikely(netif_queue_stopped(ndev)) && (count < (TX_DESC_NUM - 1)))
-- 
1.8.0





More information about the linux-arm-kernel mailing list