Re: [dpdk-dev] [PATCH v2 0/4] use C11 atomic builtins for libs

2020-09-23 Thread Phil Yang
David Marchand writes: > Subject: Re: [PATCH v2 0/4] use C11 atomic builtins for libs > > On Wed, Sep 16, 2020 at 10:24 AM Phil Yang wrote: > > > > Since rte_atomicXX APIs are not allowed to be used[1][2], use C11 atomic > > builtins instead in eal, bbdev, power, and ethdev libs. > > > > [1] >

Re: [dpdk-dev] [PATCH v2 0/4] use C11 atomic builtins for libs

2020-09-23 Thread David Marchand
On Wed, Sep 16, 2020 at 10:24 AM Phil Yang wrote: > > Since rte_atomicXX APIs are not allowed to be used[1][2], use C11 atomic > builtins instead in eal, bbdev, power, and ethdev libs. > > [1] > http://code.dpdk.org/dpdk/latest/source/doc/guides/rel_notes/deprecation.rst#L87 > [2] http://code.dpd

[dpdk-dev] [PATCH v2 0/4] use C11 atomic builtins for libs

2020-09-16 Thread Phil Yang
Since rte_atomicXX APIs are not allowed to be used[1][2], use C11 atomic builtins instead in eal, bbdev, power, and ethdev libs. [1] http://code.dpdk.org/dpdk/latest/source/doc/guides/rel_notes/deprecation.rst#L87 [2] http://code.dpdk.org/dpdk/latest/source/devtools/checkpatches.sh#L80 v2: Fix C