patch 'net/mlx5: report share group and queue ID' has been queued to stable release 23.11.7
Shani Peretz
shperetz at nvidia.com
Wed Apr 15 12:00:17 CEST 2026
Hi,
FYI, your patch has been queued to stable release 23.11.7
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 04/19/26. So please
shout if anyone has objections.
Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.
Queued patches are on a temporary branch at:
https://github.com/shanipr/dpdk-stable
This queued commit can be viewed at:
https://github.com/shanipr/dpdk-stable/commit/0561839b7310b1dea67c83e8fa3c74e3e44f2182
Thanks.
Shani
---
>From 0561839b7310b1dea67c83e8fa3c74e3e44f2182 Mon Sep 17 00:00:00 2001
From: Dariusz Sosnowski <dsosnowski at nvidia.com>
Date: Tue, 24 Mar 2026 18:10:28 +0100
Subject: [PATCH] net/mlx5: report share group and queue ID
[ upstream commit 349b40a677e2efc69bec10ed36e86459ac4d44cc ]
Add missing share group and queue index to Rx queue info
reported through rte_eth_rx_queue_info_get().
Fixes: 09c2555303be ("net/mlx5: support shared Rx queue")
Signed-off-by: Dariusz Sosnowski <dsosnowski at nvidia.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo at nvidia.com>
---
drivers/net/mlx5/mlx5_rx.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/net/mlx5/mlx5_rx.c b/drivers/net/mlx5/mlx5_rx.c
index f06be04bcc..ae84178486 100644
--- a/drivers/net/mlx5/mlx5_rx.c
+++ b/drivers/net/mlx5/mlx5_rx.c
@@ -189,6 +189,10 @@ mlx5_rxq_info_get(struct rte_eth_dev *dev, uint16_t rx_queue_id,
RTE_BIT32(rxq->elts_n);
qinfo->avail_thresh = rxq_priv ?
mlx5_rxq_lwm_to_percentage(rxq_priv) : 0;
+ if (rxq_ctrl != NULL) {
+ qinfo->conf.share_group = rxq_ctrl->share_group;
+ qinfo->conf.share_qid = rxq_ctrl->share_qid;
+ }
}
/**
--
2.43.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-04-14 14:44:35.986482936 +0300
+++ 0076-net-mlx5-report-share-group-and-queue-ID.patch 2026-04-14 14:44:28.818419000 +0300
@@ -1 +1 @@
-From 349b40a677e2efc69bec10ed36e86459ac4d44cc Mon Sep 17 00:00:00 2001
+From 0561839b7310b1dea67c83e8fa3c74e3e44f2182 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 349b40a677e2efc69bec10ed36e86459ac4d44cc ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org
@@ -19 +20 @@
-index da871fd18a..185bfd4fff 100644
+index f06be04bcc..ae84178486 100644
@@ -22 +23 @@
-@@ -190,6 +190,10 @@ mlx5_rxq_info_get(struct rte_eth_dev *dev, uint16_t rx_queue_id,
+@@ -189,6 +189,10 @@ mlx5_rxq_info_get(struct rte_eth_dev *dev, uint16_t rx_queue_id,
More information about the stable
mailing list