[PATCH] test/eventdev: avoid configuring port or queue twice
Bruce Richardson
bruce.richardson at intel.com
Tue Nov 7 17:39:26 CET 2023
In the basic sanity tests of eventdev for queue and port setup, queue 0
was configured separately before running a loop to configure the rest of
the queues. This loop started from 0, so reconfigured queue 0, and a
similar reconfiguration happens with port 0 in the later port setup
test. While most eventdevs should handle this reconfiguration without
stop/start correctly, it can cause issues, and should be tested
separately from basic config tests.
Therefore, adjust loops to start at 1 rather than 0 and avoid
configuring queue 0 and port 0 twice.
Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
---
app/test/test_eventdev.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/test/test_eventdev.c b/app/test/test_eventdev.c
index 993e49af3b..71de947ce4 100644
--- a/app/test/test_eventdev.c
+++ b/app/test/test_eventdev.c
@@ -313,7 +313,7 @@ test_eventdev_queue_setup(void)
RTE_EVENT_DEV_ATTR_QUEUE_COUNT, &queue_count),
"Queue count get failed");
- for (i = 0; i < (int)queue_count; i++) {
+ for (i = 1; i < (int)queue_count; i++) {
ret = rte_event_queue_setup(TEST_DEV_ID, i, NULL);
TEST_ASSERT_SUCCESS(ret, "Failed to setup queue%d", i);
}
@@ -786,7 +786,7 @@ test_eventdev_port_setup(void)
RTE_EVENT_DEV_ATTR_PORT_COUNT,
&port_count), "Port count get failed");
- for (i = 0; i < (int)port_count; i++) {
+ for (i = 1; i < (int)port_count; i++) {
ret = rte_event_port_setup(TEST_DEV_ID, i, NULL);
TEST_ASSERT_SUCCESS(ret, "Failed to setup port%d", i);
}
--
2.39.2
More information about the dev
mailing list