patch 'crypto/scheduler: fix session restore of pending enqueues' has been queued to stable release 24.11.7

luca.boccassi at gmail.com luca.boccassi at gmail.com
Thu Jun 11 15:20:39 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 06/13/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/bb834292ae49b19a1734f172ba501e5da04d9ad7

Thanks.

Luca Boccassi

---
>From bb834292ae49b19a1734f172ba501e5da04d9ad7 Mon Sep 17 00:00:00 2001
From: Radu Nicolau <radu.nicolau at intel.com>
Date: Thu, 16 Apr 2026 09:57:39 +0000
Subject: [PATCH] crypto/scheduler: fix session restore of pending enqueues

[ upstream commit 4079be40b086410501df3dce28be158d10488c7a ]

Small typo, pending_deq_ops used instead of pending_enq_ops.

Bugzilla ID: 1537
Fixes: 6812b9bf470e ("crypto/scheduler: use unified session")

Signed-off-by: Radu Nicolau <radu.nicolau at intel.com>
Acked-by: Kai Ji <kai.ji at intel.com>
---
 drivers/crypto/scheduler/scheduler_multicore.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/crypto/scheduler/scheduler_multicore.c b/drivers/crypto/scheduler/scheduler_multicore.c
index a21b522f9f..70f8a25b70 100644
--- a/drivers/crypto/scheduler/scheduler_multicore.c
+++ b/drivers/crypto/scheduler/scheduler_multicore.c
@@ -191,11 +191,11 @@ mc_scheduler_worker(struct rte_cryptodev *dev)
 					worker->qp_id,
 					&enq_ops[pending_enq_ops_idx],
 					pending_enq_ops);
-			if (processed_ops < pending_deq_ops)
+			if (processed_ops < pending_enq_ops)
 				scheduler_retrieve_sessions(
 					&enq_ops[pending_enq_ops_idx +
 						processed_ops],
-					pending_deq_ops - processed_ops);
+					pending_enq_ops - processed_ops);
 			pending_enq_ops -= processed_ops;
 			pending_enq_ops_idx += processed_ops;
 			inflight_ops += processed_ops;
-- 
2.47.3

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-06-11 14:20:04.877330837 +0100
+++ 0090-crypto-scheduler-fix-session-restore-of-pending-enqu.patch	2026-06-11 14:20:01.334748898 +0100
@@ -1 +1 @@
-From 4079be40b086410501df3dce28be158d10488c7a Mon Sep 17 00:00:00 2001
+From bb834292ae49b19a1734f172ba501e5da04d9ad7 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 4079be40b086410501df3dce28be158d10488c7a ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org


More information about the stable mailing list