From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>,
Tetsuya Mukawa <mtetsuyah@gmail.com>
Subject: [PATCH v2 4/4] net/null: count all queues
Date: Tue, 1 Apr 2025 16:47:29 -0700 [thread overview]
Message-ID: <20250401234828.10888-5-stephen@networkplumber.org> (raw)
In-Reply-To: <20250401234828.10888-1-stephen@networkplumber.org>
If RTE_ETHDEV_QUEUE_STAT_CNTRS is less than the number of queues
in a device, the device should still count packets for all queues.
Add byte counters.
Remove the igb_ prefix which was inherited from other driver.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
drivers/net/null/rte_eth_null.c | 57 ++++++++++++++++-----------------
1 file changed, 27 insertions(+), 30 deletions(-)
diff --git a/drivers/net/null/rte_eth_null.c b/drivers/net/null/rte_eth_null.c
index 40ce5c6ed2..8a9b74a03b 100644
--- a/drivers/net/null/rte_eth_null.c
+++ b/drivers/net/null/rte_eth_null.c
@@ -319,38 +319,39 @@ eth_dev_info(struct rte_eth_dev *dev,
}
static int
-eth_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *igb_stats)
+eth_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
{
- unsigned int i, num_stats;
- unsigned long rx_total = 0, tx_total = 0;
- const struct pmd_internals *internal;
+ const struct pmd_internals *internal = dev->data->dev_private;
+ unsigned int i;
- if ((dev == NULL) || (igb_stats == NULL))
- return -EINVAL;
+ for (i = 0; i < dev->data->nb_rx_queues; i++) {
+ uint64_t pkts = internal->rx_null_queues[i].rx_pkts;
+ uint64_t bytes = internal->rx_null_queues[i].rx_bytes;
+
+ stats->ipackets += pkts;
+ stats->ibytes += bytes;
- internal = dev->data->dev_private;
- num_stats = RTE_MIN((unsigned int)RTE_ETHDEV_QUEUE_STAT_CNTRS,
- RTE_MIN(dev->data->nb_rx_queues,
- RTE_DIM(internal->rx_null_queues)));
- for (i = 0; i < num_stats; i++) {
- igb_stats->q_ipackets[i] =
- internal->rx_null_queues[i].rx_pkts;
- rx_total += igb_stats->q_ipackets[i];
+ if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
+ stats->q_ipackets[i] = pkts;
+ stats->q_ibytes[i] = bytes;
+ }
}
- num_stats = RTE_MIN((unsigned int)RTE_ETHDEV_QUEUE_STAT_CNTRS,
- RTE_MIN(dev->data->nb_tx_queues,
- RTE_DIM(internal->tx_null_queues)));
- for (i = 0; i < num_stats; i++) {
- uint64_t pkts = rte_atomic_load_explicit(&internal->tx_null_queues[i].tx_pkts,
- rte_memory_order_relaxed);
+ for (i = 0; i < dev->data->nb_tx_queues; i++) {
+ const struct null_queue *q = &internal->tx_null_queues[i];
+ uint64_t pkts, bytes;
- igb_stats->q_opackets[i] = pkts;
- tx_total += pkts;
- }
+ pkts = rte_atomic_load_explicit(&q->tx_pkts, rte_memory_order_relaxed);
+ bytes = rte_atomic_load_explicit(&q->tx_bytes, rte_memory_order_relaxed);
+
+ stats->opackets = pkts;
+ stats->obytes = bytes;
- igb_stats->ipackets = rx_total;
- igb_stats->opackets = tx_total;
+ if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
+ stats->q_opackets[i] = pkts;
+ stats->q_obytes[i] = bytes;
+ }
+ }
return 0;
}
@@ -358,13 +359,9 @@ eth_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *igb_stats)
static int
eth_stats_reset(struct rte_eth_dev *dev)
{
+ struct pmd_internals *internal = dev->data->dev_private;
unsigned int i;
- struct pmd_internals *internal;
-
- if (dev == NULL)
- return -EINVAL;
- internal = dev->data->dev_private;
for (i = 0; i < RTE_DIM(internal->rx_null_queues); i++) {
internal->rx_null_queues[i].rx_pkts = 0;
internal->rx_null_queues[i].rx_bytes = 0;
--
2.47.2
prev parent reply other threads:[~2025-04-01 23:49 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-26 21:35 [PATCH 0/4] net/null optimizations Stephen Hemminger
2025-03-26 21:35 ` [PATCH 1/4] net/null: Tx optimizations Stephen Hemminger
2025-03-26 21:35 ` [PATCH 2/4] net/null: fix packet copy Stephen Hemminger
2025-03-26 21:35 ` [PATCH 3/4] net/null: optimize Rx Stephen Hemminger
2025-03-26 21:35 ` [PATCH 4/4] net/null: count all queues Stephen Hemminger
2025-04-01 23:47 ` [PATCH v2 0/4] null PMD optimizations and fixes Stephen Hemminger
2025-04-01 23:47 ` [PATCH v2 1/4] net/null: fix packet copy Stephen Hemminger
2025-04-01 23:47 ` [PATCH v2 2/4] net/null: Tx optimizations Stephen Hemminger
2025-04-01 23:47 ` [PATCH v2 3/4] net/null: optimize Rx Stephen Hemminger
2025-04-01 23:47 ` Stephen Hemminger [this message]
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=20250401234828.10888-5-stephen@networkplumber.org \
--to=stephen@networkplumber.org \
--cc=dev@dpdk.org \
--cc=mtetsuyah@gmail.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).