patch 'bus/dpaa: fix FQ creation failure handling' has been queued to stable release 24.11.7

luca.boccassi at gmail.com luca.boccassi at gmail.com
Mon Jul 20 19:03:45 CEST 2026


Hi,

FYI, your patch has been queued to stable release 24.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 07/22/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/6482619895be6aba1d7af0756bd9c092ff7c4915

Thanks.

Luca Boccassi

---
>From 6482619895be6aba1d7af0756bd9c092ff7c4915 Mon Sep 17 00:00:00 2001
From: Hemant Agrawal <hemant.agrawal at nxp.com>
Date: Mon, 13 Jul 2026 15:47:30 +0530
Subject: [PATCH] bus/dpaa: fix FQ creation failure handling

[ upstream commit f3b056a003d30de08612ade0d020c2697c08dde6 ]

Fix the error handling path in qman_create_fq() to properly
return error codes instead of silently ignoring failures.

Fixes: c47ff048b99a ("bus/dpaa: add QMAN driver core routines")

Signed-off-by: Hemant Agrawal <hemant.agrawal at nxp.com>
---
 drivers/bus/dpaa/base/qbman/qman.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/bus/dpaa/base/qbman/qman.c b/drivers/bus/dpaa/base/qbman/qman.c
index f92b25343a..cc84b29dc3 100644
--- a/drivers/bus/dpaa/base/qbman/qman.c
+++ b/drivers/bus/dpaa/base/qbman/qman.c
@@ -1534,6 +1534,9 @@ int qman_create_fq(u32 fqid, u32 flags, struct qman_fq *fq)
 err:
 	if (flags & QMAN_FQ_FLAG_DYNAMIC_FQID)
 		qman_release_fqid(fqid);
+#ifdef CONFIG_FSL_QMAN_FQ_LOOKUP
+	clear_fq_table_entry(fq->key);
+#endif
 	return -EIO;
 }
 
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-07-20 18:03:25.551917894 +0100
+++ 0001-bus-dpaa-fix-FQ-creation-failure-handling.patch	2026-07-20 18:03:25.492443023 +0100
@@ -1 +1 @@
-From f3b056a003d30de08612ade0d020c2697c08dde6 Mon Sep 17 00:00:00 2001
+From 6482619895be6aba1d7af0756bd9c092ff7c4915 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit f3b056a003d30de08612ade0d020c2697c08dde6 ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org
@@ -18 +19 @@
-index 5534e1846c..9a99eb9785 100644
+index f92b25343a..cc84b29dc3 100644
@@ -21 +22 @@
-@@ -1579,6 +1579,9 @@ int qman_create_fq(u32 fqid, u32 flags, struct qman_fq *fq)
+@@ -1534,6 +1534,9 @@ int qman_create_fq(u32 fqid, u32 flags, struct qman_fq *fq)


More information about the stable mailing list