DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/thunderx: Block sq door writes on zero pkts
@ 2018-07-11  7:22 Kiran Kumar
  2018-07-11  7:37 ` Jerin Jacob
  2018-07-11  8:24 ` [dpdk-dev] [PATCH v2] net/thunderx: avoid sq door bell writes on zero packets Kiran Kumar
  0 siblings, 2 replies; 5+ messages in thread
From: Kiran Kumar @ 2018-07-11  7:22 UTC (permalink / raw)
  To: dev; +Cc: jerin.jacob, maciej.czekaj, Kiran Kumar

With current code, we are performing sq door writes even with 0 pkts.
this will create pressure on register bus. This patch will block these
writes.

Fixes: 1c421f18e0 ("net/thunderx: add single and multi-segment Tx")

Signed-off-by: Kiran Kumar <kkokkilagadda@caviumnetworks.com>
---
 drivers/net/thunderx/nicvf_rxtx.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/drivers/net/thunderx/nicvf_rxtx.c b/drivers/net/thunderx/nicvf_rxtx.c
index 72305d9..8075a8e 100644
--- a/drivers/net/thunderx/nicvf_rxtx.c
+++ b/drivers/net/thunderx/nicvf_rxtx.c
@@ -162,12 +162,14 @@ nicvf_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
 		free_desc -= TX_DESC_PER_PKT;
 	}
 
-	sq->tail = tail;
-	sq->xmit_bufs += i;
-	rte_wmb();
+	if (likely(i)) {
+		sq->tail = tail;
+		sq->xmit_bufs += i;
+		rte_wmb();
 
-	/* Inform HW to xmit the packets */
-	nicvf_addr_write(sq->sq_door, i * TX_DESC_PER_PKT);
+		/* Inform HW to xmit the packets */
+		nicvf_addr_write(sq->sq_door, i * TX_DESC_PER_PKT);
+	}
 	return i;
 }
 
-- 
2.7.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-07-18  9:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-11  7:22 [dpdk-dev] [PATCH] net/thunderx: Block sq door writes on zero pkts Kiran Kumar
2018-07-11  7:37 ` Jerin Jacob
2018-07-11  8:24 ` [dpdk-dev] [PATCH v2] net/thunderx: avoid sq door bell writes on zero packets Kiran Kumar
2018-07-11  9:05   ` Jerin Jacob
2018-07-18  9:41     ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).