patch 'net/mlx5: report share group and queue ID' has been queued to stable release 24.11.5
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Thu Mar 26 13:57:53 CET 2026
Hi,
FYI, your patch has been queued to stable release 24.11.5
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 03/28/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/bluca/dpdk-stable
This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/b50fa8c63f5aff81f1739b8e00aee751c47cdcfb
Thanks.
Luca Boccassi
---
>From b50fa8c63f5aff81f1739b8e00aee751c47cdcfb 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 b3e9392a97..806e3e7484 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.47.3
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-26 12:56:34.201838334 +0000
+++ 0019-net-mlx5-report-share-group-and-queue-ID.patch 2026-03-26 12:56:33.449544033 +0000
@@ -1 +1 @@
-From 349b40a677e2efc69bec10ed36e86459ac4d44cc Mon Sep 17 00:00:00 2001
+From b50fa8c63f5aff81f1739b8e00aee751c47cdcfb 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 b3e9392a97..806e3e7484 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