Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-06 Thread Tyler Retzlaff
On Thu, Oct 06, 2022 at 05:26:10PM +0200, David Marchand wrote: > On Thu, Oct 6, 2022 at 5:20 PM Tyler Retzlaff > wrote: > > > > On Thu, Oct 06, 2022 at 05:14:55PM +0200, Thomas Monjalon wrote: > > > 06/10/2022 17:10, Tyler Retzlaff: > > > > On Thu, Oct 06, 2022 at 03:36:12PM +0200, Thomas Monjalo

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-06 Thread David Marchand
On Thu, Oct 6, 2022 at 5:20 PM Tyler Retzlaff wrote: > > On Thu, Oct 06, 2022 at 05:14:55PM +0200, Thomas Monjalon wrote: > > 06/10/2022 17:10, Tyler Retzlaff: > > > On Thu, Oct 06, 2022 at 03:36:12PM +0200, Thomas Monjalon wrote: > > > > 05/10/2022 18:34, Tyler Retzlaff: > > > > > On Wed, Oct 05,

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-06 Thread Tyler Retzlaff
On Thu, Oct 06, 2022 at 05:14:55PM +0200, Thomas Monjalon wrote: > 06/10/2022 17:10, Tyler Retzlaff: > > On Thu, Oct 06, 2022 at 03:36:12PM +0200, Thomas Monjalon wrote: > > > 05/10/2022 18:34, Tyler Retzlaff: > > > > On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > > > > > > Newly

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-06 Thread Thomas Monjalon
06/10/2022 17:10, Tyler Retzlaff: > On Thu, Oct 06, 2022 at 03:36:12PM +0200, Thomas Monjalon wrote: > > 05/10/2022 18:34, Tyler Retzlaff: > > > On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > > > > > Newly added code can go to eal_common_thread.c rather than introduce a > > > > >

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-06 Thread Tyler Retzlaff
On Thu, Oct 06, 2022 at 08:52:02AM +0200, David Marchand wrote: > On Wed, Oct 5, 2022 at 6:34 PM Tyler Retzlaff > wrote: > > > > On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > > > hi David, > > > > > > > > > > > > > > Newly added code can go to eal_common_thread.c rather than in

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-06 Thread Tyler Retzlaff
On Thu, Oct 06, 2022 at 03:36:12PM +0200, Thomas Monjalon wrote: > 05/10/2022 18:34, Tyler Retzlaff: > > On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > > > > Newly added code can go to eal_common_thread.c rather than introduce a > > > > new common/rte_thread.c file (or is there a

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-06 Thread Thomas Monjalon
05/10/2022 18:34, Tyler Retzlaff: > On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > > > Newly added code can go to eal_common_thread.c rather than introduce a > > > new common/rte_thread.c file (or is there a rationale for this?). > > > > i will make this change in the next revis

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-05 Thread David Marchand
On Wed, Oct 5, 2022 at 6:34 PM Tyler Retzlaff wrote: > > On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > > hi David, > > > > > > > > > > Newly added code can go to eal_common_thread.c rather than introduce a > > > new common/rte_thread.c file (or is there a rationale for this?).

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-05 Thread Tyler Retzlaff
On Wed, Oct 05, 2022 at 09:11:26AM -0700, Tyler Retzlaff wrote: > hi David, > > > > > > Newly added code can go to eal_common_thread.c rather than introduce a > > new common/rte_thread.c file (or is there a rationale for this?). > > i will make this change in the next revision. if anyone does o

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-10-05 Thread Tyler Retzlaff
hi David, On Wed, Sep 21, 2022 at 10:15:36AM +0200, David Marchand wrote: > On Mon, Jun 27, 2022 at 6:56 PM Tyler Retzlaff > wrote: > > > > add rte thread lifetime and attributes api. with these api additions > > there is now sufficient platform abstracted thread api to remove the > > use of pthr

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-09-29 Thread David Marchand
On Wed, Sep 21, 2022 at 10:15 AM David Marchand wrote: > > On Mon, Jun 27, 2022 at 6:56 PM Tyler Retzlaff > wrote: > > > > add rte thread lifetime and attributes api. with these api additions > > there is now sufficient platform abstracted thread api to remove the > > use of pthread in the unit t

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-09-21 Thread David Marchand
On Mon, Jun 27, 2022 at 6:56 PM Tyler Retzlaff wrote: > > add rte thread lifetime and attributes api. with these api additions > there is now sufficient platform abstracted thread api to remove the > use of pthread in the unit tests. > > v4: > * update version.map to show api from series added i

Re: [PATCH v4 0/6] add thread lifetime and attributes API

2022-07-31 Thread Dmitry Kozlyuk
2022-06-27 09:56 (UTC-0700), Tyler Retzlaff: > add rte thread lifetime and attributes api. with these api additions > there is now sufficient platform abstracted thread api to remove the > use of pthread in the unit tests. For series, Acked-by: Dmitry Kozlyuk Sorry it took so long to review.

[PATCH v4 0/6] add thread lifetime and attributes API

2022-06-27 Thread Tyler Retzlaff
add rte thread lifetime and attributes api. with these api additions there is now sufficient platform abstracted thread api to remove the use of pthread in the unit tests. v4: * update version.map to show api from series added in 22.11 instead of 22.07. * fix missing parameter name in rte_