patch 'event/dlb2: fix event weight handling in SSE code path' has been queued to stable release 24.11.2
Kevin Traynor
ktraynor at redhat.com
Fri Mar 7 13:46:54 CET 2025
Hi,
FYI, your patch has been queued to stable release 24.11.2
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/12/25. 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/kevintraynor/dpdk-stable
This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/b5906479c816db6926d0bc3ae615da292a379891
Thanks.
Kevin
---
>From b5906479c816db6926d0bc3ae615da292a379891 Mon Sep 17 00:00:00 2001
From: Bruce Richardson <bruce.richardson at intel.com>
Date: Tue, 21 Jan 2025 17:11:35 +0000
Subject: [PATCH] event/dlb2: fix event weight handling in SSE code path
[ upstream commit 96357d5afefc7f4be8f5735f0d5ea011e68d24f2 ]
Commit 6e2e98d6775b ("event/dlb2: support independent enqueue") updated
the avx512 code path with support for the event, or "qe" weights.
However, the SSE code path looks to have been missed in the update.
Update the SSE "build_hcws" function to match the changes made to the
AVX-512 version.
Bugzilla ID: 1616
Fixes: 6e2e98d6775b ("event/dlb2: support independent enqueue")
Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
Reviewed-by: Pravin Pathak <pravin.pathak at intel.com>
---
drivers/event/dlb2/dlb2_sse.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/event/dlb2/dlb2_sse.c b/drivers/event/dlb2/dlb2_sse.c
index 248d7519d5..f2e1f9fb7e 100644
--- a/drivers/event/dlb2/dlb2_sse.c
+++ b/drivers/event/dlb2/dlb2_sse.c
@@ -191,9 +191,9 @@ dlb2_event_build_hcws(struct dlb2_port *qm_port,
/* will only be set for DLB 2.5 + */
- if (qm_port->cq_weight) {
- qe[0].weight = ev[0].impl_opaque & 3;
- qe[1].weight = ev[1].impl_opaque & 3;
- qe[2].weight = ev[2].impl_opaque & 3;
- qe[3].weight = ev[3].impl_opaque & 3;
+ if (qm_port->dlb2->enable_cq_weight) {
+ qe[0].weight = RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[0]);
+ qe[1].weight = RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[1]);
+ qe[2].weight = RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[2]);
+ qe[3].weight = RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[3]);
}
@@ -206,4 +206,5 @@ dlb2_event_build_hcws(struct dlb2_port *qm_port,
cmd_byte_map[qm_port->is_directed][ev[i].op];
qe[i].sched_type = sched_type[i];
+ qe[i].weight = RTE_PMD_DLB2_GET_QE_WEIGHT(&ev[i]);
qe[i].data = ev[i].u64;
qe[i].qid = queue_id[i];
--
2.48.1
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2025-03-07 11:02:57.670221610 +0000
+++ 0021-event-dlb2-fix-event-weight-handling-in-SSE-code-pat.patch 2025-03-07 11:02:56.862521372 +0000
@@ -1 +1 @@
-From 96357d5afefc7f4be8f5735f0d5ea011e68d24f2 Mon Sep 17 00:00:00 2001
+From b5906479c816db6926d0bc3ae615da292a379891 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 96357d5afefc7f4be8f5735f0d5ea011e68d24f2 ]
+
@@ -14 +15,0 @@
-Cc: stable at dpdk.org
More information about the stable
mailing list