RE: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-05-25 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Thursday, 25 May 2023 02.03 > > Morten, > > David and Honnappa are discussing the /* NOTE: */ comments that were > added. If the three of you could come to conclusion about keeping or > removing them it would be appreciated. >

Re: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-05-24 Thread Tyler Retzlaff
inal Message- > > From: Tyler Retzlaff > > Sent: Wednesday, May 24, 2023 5:51 PM > > To: David Marchand > > Cc: dev@dpdk.org; Honnappa Nagarahalli ; > > Ruifeng Wang ; tho...@monjalon.net; > > step...@networkplumber.org; m...@smartsharesystems.com; Ferruh Yi

RE: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-05-24 Thread Honnappa Nagarahalli
t; Subject: Re: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics > > On Wed, May 24, 2023 at 10:06:24PM +0200, David Marchand wrote: > > On Wed, May 24, 2023 at 5:47 PM Tyler Retzlaff > > wrote: > > > On Wed, May 24, 2023 at 02:40:43PM +0200, David Marchand w

Re: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-05-24 Thread Tyler Retzlaff
On Wed, May 24, 2023 at 10:06:24PM +0200, David Marchand wrote: > On Wed, May 24, 2023 at 5:47 PM Tyler Retzlaff > wrote: > > On Wed, May 24, 2023 at 02:40:43PM +0200, David Marchand wrote: > > > Hello Tyler, > > > > > > On Thu, Mar 23, 2023 at 11:54 PM Tyler Retzlaff > > > wrote: > > > > > > > >

Re: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-05-24 Thread David Marchand
On Wed, May 24, 2023 at 5:47 PM Tyler Retzlaff wrote: > On Wed, May 24, 2023 at 02:40:43PM +0200, David Marchand wrote: > > Hello Tyler, > > > > On Thu, Mar 23, 2023 at 11:54 PM Tyler Retzlaff > > wrote: > > > > > > Replace the use of rte_atomic.h types and functions, instead use GCC > > > suppli

Re: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-05-24 Thread Tyler Retzlaff
On Wed, May 24, 2023 at 02:40:43PM +0200, David Marchand wrote: > Hello Tyler, > > On Thu, Mar 23, 2023 at 11:54 PM Tyler Retzlaff > wrote: > > > > Replace the use of rte_atomic.h types and functions, instead use GCC > > supplied C++11 memory model builtins. > > > > This series covers the librari

Re: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-05-24 Thread David Marchand
Hello Tyler, On Thu, Mar 23, 2023 at 11:54 PM Tyler Retzlaff wrote: > > Replace the use of rte_atomic.h types and functions, instead use GCC > supplied C++11 memory model builtins. > > This series covers the libraries and drivers that are built on Windows. > > The code has be converted to use the

Re: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-03-24 Thread Tyler Retzlaff
On Fri, Mar 24, 2023 at 08:09:50AM +0100, Morten Brørup wrote: > > From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > > Sent: Thursday, 23 March 2023 23.54 > > > > Replace the use of rte_atomic.h types and functions, instead use GCC > > supplied C++11 memory model builtins. > > > > This

RE: [PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-03-24 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Thursday, 23 March 2023 23.54 > > Replace the use of rte_atomic.h types and functions, instead use GCC > supplied C++11 memory model builtins. > > This series covers the libraries and drivers that are built on Windows. > > The

[PATCH v3 0/7] replace rte atomics with GCC builtin atomics

2023-03-23 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. This series covers the libraries and drivers that are built on Windows. The code has be converted to use the __atomic builtins but there are additional during conversion i notice that there