Re: [PATCH 1/2] eal: add missing call marking memory config complete

2022-12-15 Thread Tyler Retzlaff
On Thu, Dec 15, 2022 at 10:59:07AM +0100, David Marchand wrote: > On Tue, Dec 6, 2022 at 1:39 AM Tyler Retzlaff > wrote: > > > > Memory configuration was not being marked as completed add the missing > > call to rte_eal_init() for Windows. > > > > Signed-off-by: Tyler Retzlaff > > The change is

Re: [PATCH 1/2] eal: add missing call marking memory config complete

2022-12-15 Thread David Marchand
On Tue, Dec 6, 2022 at 1:39 AM Tyler Retzlaff wrote: > > Memory configuration was not being marked as completed add the missing > call to rte_eal_init() for Windows. > > Signed-off-by: Tyler Retzlaff The change is ok. The commitlog misses some context: I guess the point is to let rte_thread_reg

Re: [PATCH 1/2] eal: add missing call marking memory config complete

2022-12-14 Thread Stephen Hemminger
On Mon, 5 Dec 2022 16:39:28 -0800 Tyler Retzlaff wrote: > Memory configuration was not being marked as completed add the missing > call to rte_eal_init() for Windows. > > Signed-off-by: Tyler Retzlaff > --- > lib/eal/windows/eal.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/l

[PATCH 1/2] eal: add missing call marking memory config complete

2022-12-05 Thread Tyler Retzlaff
Memory configuration was not being marked as completed add the missing call to rte_eal_init() for Windows. Signed-off-by: Tyler Retzlaff --- 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 --