patch 'common/cnxk: fix engine capabilities fetch logic' has been queued to stable release 23.11.7

Shani Peretz shperetz at nvidia.com
Tue Mar 31 08:25:09 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/05/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/347fbc3e1e89ff39c466b3018fa01d1ab2094d94

Thanks.

Shani

---
>From 347fbc3e1e89ff39c466b3018fa01d1ab2094d94 Mon Sep 17 00:00:00 2001
From: Rakesh Kudurumalla <rkudurumalla at marvell.com>
Date: Tue, 17 Feb 2026 11:13:28 +0530
Subject: [PATCH] common/cnxk: fix engine capabilities fetch logic

[ upstream commit aa656824205dac6b55dfde7551cb8f50a5d98569 ]

For CN9k platform, incorrect status is checked from LOAD
FVC instruction while retrieving engine capabilities.

The loop is updated for a valid return status check on
LOADFVC instruction.

Fixes: 7c67c489d466 ("common/cnxk: fetch engine capabilities")

Signed-off-by: Rakesh Kudurumalla <rkudurumalla at marvell.com>
---
 drivers/common/cnxk/roc_nix_inl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/common/cnxk/roc_nix_inl.c b/drivers/common/cnxk/roc_nix_inl.c
index 80379aa22b..0234faea13 100644
--- a/drivers/common/cnxk/roc_nix_inl.c
+++ b/drivers/common/cnxk/roc_nix_inl.c
@@ -759,7 +759,7 @@ nix_inl_eng_caps_get(struct nix *nix)
 		do {
 			roc_lmt_mov_seg((void *)lmt_base, &inst, 4);
 			lmt_status = roc_lmt_submit_ldeor(lf->io_addr);
-		} while (lmt_status != 0);
+		} while (lmt_status == 0);
 
 		/* Wait until CPT instruction completes */
 		do {
-- 
2.43.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-03-31 00:32:37.908815576 +0300
+++ 0110-common-cnxk-fix-engine-capabilities-fetch-logic.patch	2026-03-31 00:32:29.867403000 +0300
@@ -1 +1 @@
-From aa656824205dac6b55dfde7551cb8f50a5d98569 Mon Sep 17 00:00:00 2001
+From 347fbc3e1e89ff39c466b3018fa01d1ab2094d94 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit aa656824205dac6b55dfde7551cb8f50a5d98569 ]
+
@@ -13 +14,0 @@
-Cc: stable at dpdk.org
@@ -21 +22 @@
-index f8be98efd5..683a9cc7ce 100644
+index 80379aa22b..0234faea13 100644
@@ -24 +25 @@
-@@ -1228,7 +1228,7 @@ nix_inl_eng_caps_get(struct nix *nix)
+@@ -759,7 +759,7 @@ nix_inl_eng_caps_get(struct nix *nix)


More information about the stable mailing list