DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jie Hai <haijie1@huawei.com>
To: <dev@dpdk.org>, <thomas@monjalon.net>, <ferruh.yigit@amd.com>,
	Yisen Zhuang <yisen.zhuang@huawei.com>
Cc: <lihuisong@huawei.com>, <fengchengwen@huawei.com>, <haijie1@huawei.com>
Subject: [PATCH] net/hns3: dump queue head and tail pointer info
Date: Thu, 5 Sep 2024 14:48:03 +0800	[thread overview]
Message-ID: <20240905064803.20184-1-haijie1@huawei.com> (raw)

From: Dengdui Huang <huangdengdui@huawei.com>

Add dump the head and tail pointer of RxTx queue.
-- Rx queue head and tail info:
     qid  sw_head  sw_hold  hw_head  hw_tail
      0    288      32       256      320
      1    248      56       192      280
      2    264      72       192      296
      3    256      64       192      292
-- Tx queue head and tail info:
     qid  sw_head  sw_tail  hw_head  hw_tail
      0    0        92       84       92
      1    32       131      128      139
      2    32       128      120      128
      3    96       184      176      184

Signed-off-by: Dengdui Huang <huangdengdui@huawei.com>
---
 drivers/net/hns3/hns3_dump.c | 57 ++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/drivers/net/hns3/hns3_dump.c b/drivers/net/hns3/hns3_dump.c
index cb369be5beb6..5fee0822304a 100644
--- a/drivers/net/hns3/hns3_dump.c
+++ b/drivers/net/hns3/hns3_dump.c
@@ -436,6 +436,62 @@ hns3_get_rxtx_queue_enable_state(FILE *file, struct rte_eth_dev *dev)
 	rte_free(tx_queue_state);
 }
 
+static void
+hns3_get_rxtx_queue_head_tail_pointer(FILE *file, struct rte_eth_dev *dev)
+{
+	struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+	uint32_t reg_offset, queue_id;
+	void **rx_queues, **tx_queues;
+	struct hns3_rx_queue *rxq;
+	struct hns3_tx_queue *txq;
+	uint16_t sw_hold;
+
+	rx_queues = dev->data->rx_queues;
+	if (rx_queues == NULL)
+		return;
+	tx_queues = dev->data->tx_queues;
+	if (tx_queues == NULL)
+		return;
+
+	fprintf(file, "\t  -- Rx queue head and tail info:\n");
+	fprintf(file, "\t       qid  sw_head  sw_hold  hw_head  hw_tail\n");
+	for (queue_id = 0; queue_id < dev->data->nb_rx_queues; queue_id++) {
+		if (rx_queues[queue_id] == NULL)
+			continue;
+		rxq = (struct hns3_rx_queue *)rx_queues[queue_id];
+		if (rxq->rx_deferred_start)
+			continue;
+
+		if (dev->rx_pkt_burst == hns3_recv_pkts_vec ||
+		    dev->rx_pkt_burst == hns3_recv_pkts_vec_sve)
+			sw_hold = rxq->rx_rearm_nb;
+		else
+			sw_hold = rxq->rx_free_hold;
+
+		reg_offset = hns3_get_tqp_reg_offset(queue_id);
+		fprintf(file, "\t        %-5u%-9u%-9u%-9u%u\n", queue_id,
+			rxq->next_to_use, sw_hold,
+			hns3_read_dev(hw, HNS3_RING_RX_HEAD_REG + reg_offset),
+			hns3_read_dev(hw, HNS3_RING_RX_TAIL_REG + reg_offset));
+	}
+
+	fprintf(file, "\t  -- Tx queue head and tail info:\n");
+	fprintf(file, "\t       qid  sw_head  sw_tail  hw_head  hw_tail\n");
+	for (queue_id = 0; queue_id < dev->data->nb_tx_queues; queue_id++) {
+		if (tx_queues[queue_id] == NULL)
+			continue;
+		txq = (struct hns3_tx_queue *)tx_queues[queue_id];
+		if (txq->tx_deferred_start)
+			continue;
+
+		reg_offset = hns3_get_tqp_reg_offset(queue_id);
+		fprintf(file, "\t        %-5u%-9u%-9u%-9u%u\n", queue_id,
+			txq->next_to_clean, txq->next_to_use,
+			hns3_read_dev(hw, HNS3_RING_TX_HEAD_REG + reg_offset),
+			hns3_read_dev(hw, HNS3_RING_TX_TAIL_REG + reg_offset));
+	}
+}
+
 static void
 hns3_get_rxtx_queue_info(FILE *file, struct rte_eth_dev *dev)
 {
@@ -460,6 +516,7 @@ hns3_get_rxtx_queue_info(FILE *file, struct rte_eth_dev *dev)
 
 	hns3_get_rxtx_fake_queue_info(file, dev);
 	hns3_get_rxtx_queue_enable_state(file, dev);
+	hns3_get_rxtx_queue_head_tail_pointer(file, dev);
 }
 
 static int
-- 
2.22.0


             reply	other threads:[~2024-09-05  6:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-05  6:48 Jie Hai [this message]
2024-09-06  7:51 ` Ferruh Yigit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240905064803.20184-1-haijie1@huawei.com \
    --to=haijie1@huawei.com \
    --cc=dev@dpdk.org \
    --cc=fengchengwen@huawei.com \
    --cc=ferruh.yigit@amd.com \
    --cc=lihuisong@huawei.com \
    --cc=thomas@monjalon.net \
    --cc=yisen.zhuang@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).