Re: [dpdk-dev] [PATCH v4] eal: remove non-thread panic calls from init sequence

2019-06-06 Thread David Marchand
On Wed, Jun 5, 2019 at 5:44 PM Arnon Warshavsky wrote: > On Wed, Jun 5, 2019 at 10:50 AM David Marchand wrote: >> On Tue, Jun 4, 2019 at 5:45 PM Arnon Warshavsky wrote: >>> This patch changes some void functions to return a value, >>> so that the init sequence may tear down orderly >>> instead o

Re: [dpdk-dev] [PATCH v4] eal: remove non-thread panic calls from init sequence

2019-06-05 Thread Arnon Warshavsky
On Wed, Jun 5, 2019 at 10:50 AM David Marchand wrote: > > > On Tue, Jun 4, 2019 at 5:45 PM Arnon Warshavsky wrote: > >> This patch changes some void functions to return a value, >> so that the init sequence may tear down orderly >> instead of calling panic. >> > > All we care about in this patch

Re: [dpdk-dev] [PATCH v4] eal: remove non-thread panic calls from init sequence

2019-06-05 Thread David Marchand
On Tue, Jun 4, 2019 at 5:45 PM Arnon Warshavsky wrote: > This patch changes some void functions to return a value, > so that the init sequence may tear down orderly > instead of calling panic. > All we care about in this patch are the panics wrt the shared configuration init. Can the commit titl

[dpdk-dev] [PATCH v4] eal: remove non-thread panic calls from init sequence

2019-06-04 Thread Arnon Warshavsky
This patch changes some void functions to return a value, so that the init sequence may tear down orderly instead of calling panic. Signed-off-by: Arnon Warshavsky --- The calls for launching core messaging threads were left in tact in all 3 eal implementations. This should be addressed in a dif