patch 'test/event: fix schedule type' has been queued to stable release 23.11.3
Xueming Li
xuemingl at nvidia.com
Mon Nov 11 07:26:51 CET 2024
Hi,
FYI, your patch has been queued to stable release 23.11.3
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 11/30/24. 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://git.dpdk.org/dpdk-stable/log/?h=23.11-staging
This queued commit can be viewed at:
https://git.dpdk.org/dpdk-stable/commit/?h=23.11-staging&id=241ffcb0a722c7e556f3a6fa6de5bb89dccf6f51
Thanks.
Xueming Li <xuemingl at nvidia.com>
---
>From 241ffcb0a722c7e556f3a6fa6de5bb89dccf6f51 Mon Sep 17 00:00:00 2001
From: Pavan Nikhilesh <pbhagavatula at marvell.com>
Date: Wed, 24 Jul 2024 01:02:12 +0530
Subject: [PATCH] test/event: fix schedule type
Cc: Xueming Li <xuemingl at nvidia.com>
[ upstream commit adadb5585bd50260c3fa5495fcbe8baf64386f7e ]
Missing schedule type assignment might set it to
incorrect value, set it to SCHED_TYPE_PARALLEL.
Fixes: d007a7f39de3 ("eventdev: introduce link profiles")
Signed-off-by: Pavan Nikhilesh <pbhagavatula at marvell.com>
---
app/test/test_eventdev.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/app/test/test_eventdev.c b/app/test/test_eventdev.c
index e4e234dc98..9a6c8f470c 100644
--- a/app/test/test_eventdev.c
+++ b/app/test/test_eventdev.c
@@ -1189,6 +1189,7 @@ test_eventdev_profile_switch(void)
ev.op = RTE_EVENT_OP_NEW;
ev.flow_id = 0;
ev.u64 = 0xBADF00D0;
+ ev.sched_type = RTE_SCHED_TYPE_PARALLEL;
rc = rte_event_enqueue_burst(TEST_DEV_ID, 0, &ev, 1);
TEST_ASSERT(rc == 1, "Failed to enqueue event");
ev.queue_id = 1;
--
2.34.1
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2024-11-11 14:23:05.773760326 +0800
+++ 0005-test-event-fix-schedule-type.patch 2024-11-11 14:23:05.002192842 +0800
@@ -1 +1 @@
-From adadb5585bd50260c3fa5495fcbe8baf64386f7e Mon Sep 17 00:00:00 2001
+From 241ffcb0a722c7e556f3a6fa6de5bb89dccf6f51 Mon Sep 17 00:00:00 2001
@@ -4,0 +5,3 @@
+Cc: Xueming Li <xuemingl at nvidia.com>
+
+[ upstream commit adadb5585bd50260c3fa5495fcbe8baf64386f7e ]
@@ -10 +12,0 @@
-Cc: stable at dpdk.org
More information about the stable
mailing list