* [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it.
[not found] <1670287169-15325-1-git-send-email-roretzla@linux.microsoft.com>
@ 2022-12-16 17:16 ` Tyler Retzlaff
2022-12-16 17:16 ` [PATCH v2 1/2] eal: add missing call marking memory config complete Tyler Retzlaff
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Tyler Retzlaff @ 2022-12-16 17:16 UTC (permalink / raw)
To: dev; +Cc: stable, david.marchand, dmitry.kozliuk, stephen, Tyler Retzlaff
Two bugs are fixed to allow this test to build, run & pass.
* Mark memory configuration complete during rte_eal_init()
* Use rte thread api to get a proper implementation of thread join.
v2:
* update commit message to clarify why this test is beneficial on Windows.
* add missing Fixes tag
Tyler Retzlaff (2):
eal: add missing call marking memory config complete
test: enable lcores test on Windows
app/test/test_lcores.c | 28 +++++++++++++---------------
lib/eal/windows/eal.c | 3 +++
2 files changed, 16 insertions(+), 15 deletions(-)
--
1.8.3.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/2] eal: add missing call marking memory config complete
2022-12-16 17:16 ` [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it Tyler Retzlaff
@ 2022-12-16 17:16 ` Tyler Retzlaff
2022-12-16 17:16 ` [PATCH v2 2/2] test: enable lcores test on Windows Tyler Retzlaff
2022-12-21 15:03 ` [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it David Marchand
2 siblings, 0 replies; 4+ messages in thread
From: Tyler Retzlaff @ 2022-12-16 17:16 UTC (permalink / raw)
To: dev; +Cc: stable, david.marchand, dmitry.kozliuk, stephen, Tyler Retzlaff
Memory configuration was not being marked as completed add the missing
call to rte_eal_init() for Windows.
Allows rte_thread_register to work on Windows and lcores_autotest to be
built and run Windows which also exercises the rte_ctrl_thread_create
API on Windows.
Fixes: 5c307ba2a5b1 ("eal: register non-EAL threads as lcores")
Signed-off-by: Tyler Retzlaff <roretzla@linux.microsoft.com>
---
lib/eal/windows/eal.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/eal/windows/eal.c b/lib/eal/windows/eal.c
index adb929a..56fadc7 100644
--- a/lib/eal/windows/eal.c
+++ b/lib/eal/windows/eal.c
@@ -462,6 +462,9 @@ enum rte_proc_type_t
*/
rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MAIN);
rte_eal_mp_wait_lcore();
+
+ eal_mcfg_complete();
+
return fctret;
}
--
1.8.3.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] test: enable lcores test on Windows
2022-12-16 17:16 ` [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it Tyler Retzlaff
2022-12-16 17:16 ` [PATCH v2 1/2] eal: add missing call marking memory config complete Tyler Retzlaff
@ 2022-12-16 17:16 ` Tyler Retzlaff
2022-12-21 15:03 ` [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it David Marchand
2 siblings, 0 replies; 4+ messages in thread
From: Tyler Retzlaff @ 2022-12-16 17:16 UTC (permalink / raw)
To: dev; +Cc: stable, david.marchand, dmitry.kozliuk, stephen, Tyler Retzlaff
Stop using pthread and convert the test to use EAL thread APIs. Because
the EAL thread APIs provide more than just a stub for thread join on
Windows the tests now pass and need not be skipped.
Signed-off-by: Tyler Retzlaff <roretzla@linux.microsoft.com>
---
app/test/test_lcores.c | 28 +++++++++++++---------------
1 file changed, 13 insertions(+), 15 deletions(-)
diff --git a/app/test/test_lcores.c b/app/test/test_lcores.c
index a6bb412..5b43aa5 100644
--- a/app/test/test_lcores.c
+++ b/app/test/test_lcores.c
@@ -8,17 +8,18 @@
#include <rte_common.h>
#include <rte_errno.h>
#include <rte_lcore.h>
+#include <rte_thread.h>
#include "test.h"
struct thread_context {
enum { Thread_INIT, Thread_ERROR, Thread_DONE } state;
bool lcore_id_any;
- pthread_t id;
+ rte_thread_t id;
unsigned int *registered_count;
};
-static void *thread_loop(void *arg)
+static uint32_t thread_loop(void *arg)
{
struct thread_context *t = arg;
unsigned int lcore_id;
@@ -55,7 +56,7 @@ static void *thread_loop(void *arg)
if (t->state != Thread_ERROR)
t->state = Thread_DONE;
- return NULL;
+ return 0;
}
static int
@@ -77,7 +78,7 @@ static void *thread_loop(void *arg)
t->state = Thread_INIT;
t->registered_count = ®istered_count;
t->lcore_id_any = false;
- if (pthread_create(&t->id, NULL, thread_loop, t) != 0)
+ if (rte_thread_create(&t->id, NULL, thread_loop, t) != 0)
break;
non_eal_threads_count++;
}
@@ -96,7 +97,7 @@ static void *thread_loop(void *arg)
t->state = Thread_INIT;
t->registered_count = ®istered_count;
t->lcore_id_any = true;
- if (pthread_create(&t->id, NULL, thread_loop, t) == 0) {
+ if (rte_thread_create(&t->id, NULL, thread_loop, t) == 0) {
non_eal_threads_count++;
printf("non-EAL threads count: %u\n", non_eal_threads_count);
while (__atomic_load_n(®istered_count, __ATOMIC_ACQUIRE) !=
@@ -110,7 +111,7 @@ static void *thread_loop(void *arg)
ret = 0;
for (i = 0; i < non_eal_threads_count; i++) {
t = &thread_contexts[i];
- pthread_join(t->id, NULL);
+ rte_thread_join(t->id, NULL);
if (t->state != Thread_DONE)
ret = -1;
}
@@ -262,7 +263,7 @@ struct limit_lcore_context {
t->state = Thread_INIT;
t->registered_count = ®istered_count;
t->lcore_id_any = false;
- if (pthread_create(&t->id, NULL, thread_loop, t) != 0)
+ if (rte_thread_create(&t->id, NULL, thread_loop, t) != 0)
goto cleanup_threads;
non_eal_threads_count++;
while (__atomic_load_n(®istered_count, __ATOMIC_ACQUIRE) !=
@@ -285,7 +286,7 @@ struct limit_lcore_context {
t->state = Thread_INIT;
t->registered_count = ®istered_count;
t->lcore_id_any = true;
- if (pthread_create(&t->id, NULL, thread_loop, t) != 0)
+ if (rte_thread_create(&t->id, NULL, thread_loop, t) != 0)
goto cleanup_threads;
non_eal_threads_count++;
while (__atomic_load_n(®istered_count, __ATOMIC_ACQUIRE) !=
@@ -309,7 +310,7 @@ struct limit_lcore_context {
ret = 0;
for (i = 0; i < non_eal_threads_count; i++) {
t = &thread_contexts[i];
- pthread_join(t->id, NULL);
+ rte_thread_join(t->id, NULL);
if (t->state != Thread_DONE)
ret = -1;
}
@@ -330,7 +331,7 @@ struct limit_lcore_context {
__atomic_store_n(®istered_count, 0, __ATOMIC_RELEASE);
for (i = 0; i < non_eal_threads_count; i++) {
t = &thread_contexts[i];
- pthread_join(t->id, NULL);
+ rte_thread_join(t->id, NULL);
}
error:
if (handle[1] != NULL)
@@ -361,7 +362,7 @@ static void *ctrl_thread_loop(void *arg)
/* Create one control thread */
t = &ctrl_thread_context;
t->state = Thread_INIT;
- if (rte_ctrl_thread_create(&t->id, "test_ctrl_threads",
+ if (rte_ctrl_thread_create((pthread_t *)&t->id, "test_ctrl_threads",
NULL, ctrl_thread_loop, t) != 0)
return -1;
@@ -369,7 +370,7 @@ static void *ctrl_thread_loop(void *arg)
* This also acts as the barrier such that the memory operations
* in control thread are visible to this thread.
*/
- pthread_join(t->id, NULL);
+ rte_thread_join(t->id, NULL);
/* Check if the control thread set the correct state */
if (t->state != Thread_DONE)
@@ -384,9 +385,6 @@ static void *ctrl_thread_loop(void *arg)
unsigned int eal_threads_count = 0;
unsigned int i;
- if (RTE_EXEC_ENV_IS_WINDOWS)
- return TEST_SKIPPED;
-
for (i = 0; i < RTE_MAX_LCORE; i++) {
if (!rte_lcore_has_role(i, ROLE_OFF))
eal_threads_count++;
--
1.8.3.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it.
2022-12-16 17:16 ` [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it Tyler Retzlaff
2022-12-16 17:16 ` [PATCH v2 1/2] eal: add missing call marking memory config complete Tyler Retzlaff
2022-12-16 17:16 ` [PATCH v2 2/2] test: enable lcores test on Windows Tyler Retzlaff
@ 2022-12-21 15:03 ` David Marchand
2 siblings, 0 replies; 4+ messages in thread
From: David Marchand @ 2022-12-21 15:03 UTC (permalink / raw)
To: Tyler Retzlaff; +Cc: dev, stable, dmitry.kozliuk, stephen
On Fri, Dec 16, 2022 at 6:16 PM Tyler Retzlaff
<roretzla@linux.microsoft.com> wrote:
>
> Two bugs are fixed to allow this test to build, run & pass.
> * Mark memory configuration complete during rte_eal_init()
> * Use rte thread api to get a proper implementation of thread join.
>
> v2:
> * update commit message to clarify why this test is beneficial on Windows.
> * add missing Fixes tag
>
> Tyler Retzlaff (2):
> eal: add missing call marking memory config complete
> test: enable lcores test on Windows
>
> app/test/test_lcores.c | 28 +++++++++++++---------------
> lib/eal/windows/eal.c | 3 +++
> 2 files changed, 16 insertions(+), 15 deletions(-)
For the series,
Acked-by: David Marchand <david.marchand@redhat.com>
I added review tags from Stephen from v1.
Series applied, thanks.
--
David Marchand
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-12-21 15:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <1670287169-15325-1-git-send-email-roretzla@linux.microsoft.com>
2022-12-16 17:16 ` [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it Tyler Retzlaff
2022-12-16 17:16 ` [PATCH v2 1/2] eal: add missing call marking memory config complete Tyler Retzlaff
2022-12-16 17:16 ` [PATCH v2 2/2] test: enable lcores test on Windows Tyler Retzlaff
2022-12-21 15:03 ` [PATCH v2 0/2] Enable the lcores test on Windows instead of skipping it David Marchand
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).