From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>,
stable@dpdk.org, Aman Singh <aman.deep.singh@intel.com>,
Bruce Richardson <bruce.richardson@intel.com>
Subject: [PATCH v4 02/16] app/testpmd: remove leftover set qmap
Date: Fri, 14 Aug 2026 12:45:58 -0700 [thread overview]
Message-ID: <20260814194757.329424-3-stephen@networkplumber.org> (raw)
In-Reply-To: <20260814194757.329424-1-stephen@networkplumber.org>
The function set_qmap was removed in 25.11 release but
the prototype was still there.
Also, remove leftover help text.
Fixes: 2863cbd9ee6d ("ethdev: deprecate queue stats mapping functions")
Cc: stable@dpdk.org
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
app/test-pmd/cmdline.c | 6 ------
app/test-pmd/testpmd.h | 2 --
doc/guides/testpmd_app_ug/testpmd_funcs.rst | 11 -----------
3 files changed, 19 deletions(-)
diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index 10ee7c5179..d299edb88e 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -581,12 +581,6 @@ static void cmd_help_long_parsed(void *parsed_result,
"set port (port_id) rxq (queue_id) avail_thresh (0..99)>\n "
" set available descriptors threshold for Rx queue\n\n"
- "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
- " Set statistics mapping (qmapping 0..15) for RX/TX"
- " queue on port.\n"
- " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
- " on port 0 to mapping 5.\n\n"
-
"set xstats-hide-zero on|off\n"
" Set the option to hide the zero values"
" for xstats display.\n"
diff --git a/app/test-pmd/testpmd.h b/app/test-pmd/testpmd.h
index 083171853c..b5643e74f5 100644
--- a/app/test-pmd/testpmd.h
+++ b/app/test-pmd/testpmd.h
@@ -1158,8 +1158,6 @@ void tx_qinq_set(portid_t port_id, uint16_t vlan_tci, uint16_t vlan_tci_outer);
void tx_vlan_reset(portid_t port_id);
void tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on);
-void set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value);
-
void set_xstats_hide_zero(uint8_t on_off);
void set_xstats_show_state(uint8_t on_off);
void set_xstats_hide_disabled(uint8_t on_off);
diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
index e65376df54..30cac0ad8c 100644
--- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst
+++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst
@@ -1554,17 +1554,6 @@ Set available descriptors threshold for a specific Rx queue of port::
Use 0 value to disable the threshold and corresponding event.
-set stat_qmap
-~~~~~~~~~~~~~
-
-Set statistics mapping (qmapping 0..15) for RX/TX queue on port::
-
- testpmd> set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)
-
-For example, to set rx queue 2 on port 0 to mapping 5::
-
- testpmd>set stat_qmap rx 0 2 5
-
set xstats-hide-zero
~~~~~~~~~~~~~~~~~~~~
--
2.53.0
next prev parent reply other threads:[~2026-08-14 20:20 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-30 16:09 [RFC 0/7] Complete removal of queue stats mapping Stephen Hemminger
2026-05-30 16:09 ` [RFC 1/7] net/virtio: remove unused " Stephen Hemminger
2026-05-30 16:09 ` [RFC 2/7] net/enic: remove queue_stats_mapping ethdev_op Stephen Hemminger
2026-05-30 16:09 ` [RFC 3/7] net/cnxk: remove queue stats mapping Stephen Hemminger
2026-05-30 16:09 ` [RFC 4/7] net/e1000: " Stephen Hemminger
2026-05-30 16:10 ` [RFC 5/7] net/ixgbe: " Stephen Hemminger
2026-05-30 16:10 ` [RFC 6/7] net/txgbe: " Stephen Hemminger
2026-05-30 16:10 ` [RFC 7/7] ethdev: remove support for " Stephen Hemminger
2026-06-01 1:56 ` fengchengwen
2026-06-01 8:45 ` Andrew Rybchenko
2026-07-23 20:28 ` [PATCH v2 0/9] Complete removal of " Stephen Hemminger
2026-07-23 20:28 ` [PATCH v2 1/9] net/virtio: remove unused " Stephen Hemminger
2026-07-23 20:28 ` [PATCH v2 2/9] app/testpmd: remove unused function prototype Stephen Hemminger
2026-07-23 20:28 ` [PATCH v2 3/9] net/enic: remove unneeded ops initialization Stephen Hemminger
2026-07-24 1:52 ` Hyong Youb Kim (hyonkim)
2026-07-23 20:28 ` [PATCH v2 4/9] net/cnxk: remove queue stats mapping Stephen Hemminger
2026-07-24 7:26 ` David Marchand
2026-07-24 15:20 ` Stephen Hemminger
2026-07-23 20:28 ` [PATCH v2 5/9] net/e1000: " Stephen Hemminger
2026-07-24 7:31 ` David Marchand
2026-08-13 12:26 ` Bruce Richardson
2026-07-23 20:28 ` [PATCH v2 6/9] net/ixgbe: " Stephen Hemminger
2026-07-23 20:28 ` [PATCH v2 7/9] net/txgbe: " Stephen Hemminger
2026-07-23 20:28 ` [PATCH v2 8/9] net/sxe2: " Stephen Hemminger
2026-07-23 20:28 ` [PATCH v2 9/9] ethdev: remove support for " Stephen Hemminger
2026-07-24 7:39 ` [PATCH v2 0/9] Complete removal of " David Marchand
2026-07-24 7:42 ` David Marchand
2026-07-24 15:28 ` Stephen Hemminger
2026-08-13 17:54 ` [PATCH v3 00/16] remove stats mapping an RTE_ETHDEV_QUEUE_STAT_CNTRS Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 01/16] net/virtio: remove unused queue stats mapping Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 02/16] app/testpmd: remove leftover set qmap Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 03/16] net/enic: remove unneeded ops initialization Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 04/16] net/cnxk: fix Tx drops added to Rx queue errors Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 05/16] net/cnxk: remove queue stats mapping Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 06/16] net/e1000: " Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 07/16] net/ixgbe: " Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 08/16] net/txgbe: " Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 09/16] net/sxe2: fix null dereference in stats get Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 10/16] net/sxe2: remove queue stats mapping Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 11/16] ethdev: remove support for " Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 12/16] net/mvpp2: fix out of range Tx queue stats write Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 13/16] net/ntnic: fix Tx errors reported as Rx queue errors Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 14/16] net/xsc: fix Tx errors added to " Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 15/16] ethdev: remove queue stats counter limit Stephen Hemminger
2026-08-13 17:55 ` [PATCH v3 16/16] test/pmd_ring: test per-queue xstats Stephen Hemminger
2026-08-14 19:45 ` [PATCH v4 00/16] per-queue statistics changes Stephen Hemminger
2026-08-14 19:45 ` [PATCH v4 01/16] net/virtio: remove unused queue stats mapping Stephen Hemminger
2026-08-14 19:45 ` Stephen Hemminger [this message]
2026-08-14 19:45 ` [PATCH v4 03/16] net/enic: remove unneeded ops initialization Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 04/16] net/cnxk: fix Tx drops added to Rx queue errors Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 05/16] net/cnxk: remove queue stats mapping Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 06/16] net/e1000: " Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 07/16] net/ixgbe: " Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 08/16] net/txgbe: " Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 09/16] net/sxe2: fix null dereference in stats get Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 10/16] net/sxe2: remove queue stats mapping Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 11/16] ethdev: remove support for " Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 12/16] net/mvpp2: fix out of range Tx queue stats write Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 13/16] net/ntnic: fix Tx errors reported as Rx queue errors Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 14/16] net/xsc: fix Tx errors added to " Stephen Hemminger
2026-08-14 19:46 ` [PATCH v4 15/16] ethdev: remove queue stats counter limit Stephen Hemminger
2026-08-14 22:31 ` [EXTERNAL] " Long Li
2026-08-14 19:46 ` [PATCH v4 16/16] test/pmd_ring: test per-queue xstats Stephen Hemminger
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=20260814194757.329424-3-stephen@networkplumber.org \
--to=stephen@networkplumber.org \
--cc=aman.deep.singh@intel.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=stable@dpdk.org \
/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