Re: [PATCH 1/2] eal: fix constraints on stdatomic API

2023-12-14 Thread Tyler Retzlaff
On Fri, Dec 15, 2023 at 10:47:36AM +0800, Jie Hai wrote: > On 2023/12/12 2:53, Tyler Retzlaff wrote: > >On Mon, Dec 11, 2023 at 03:39:03PM +0800, Jie Hai wrote: > >>The first parameter of rte_atomic_exchange_explicit() must be a > >>pointer to _Atomic type. If run command "meson setup --werror > >>

Re: [PATCH 1/2] eal: fix constraints on stdatomic API

2023-12-14 Thread Jie Hai
On 2023/12/12 2:53, Tyler Retzlaff wrote: On Mon, Dec 11, 2023 at 03:39:03PM +0800, Jie Hai wrote: The first parameter of rte_atomic_exchange_explicit() must be a pointer to _Atomic type. If run command "meson setup --werror -Denable_stdatomic=true build && ninja -C build", error will occur. Thi

Re: [PATCH 1/2] eal: fix constraints on stdatomic API

2023-12-11 Thread Tyler Retzlaff
On Mon, Dec 11, 2023 at 03:39:03PM +0800, Jie Hai wrote: > The first parameter of rte_atomic_exchange_explicit() must be a > pointer to _Atomic type. If run command "meson setup --werror > -Denable_stdatomic=true build && ninja -C build", error will occur. > Thia patch fixes it. > > Fixes: 1ec6a84

[PATCH 1/2] eal: fix constraints on stdatomic API

2023-12-10 Thread Jie Hai
The first parameter of rte_atomic_exchange_explicit() must be a pointer to _Atomic type. If run command "meson setup --werror -Denable_stdatomic=true build && ninja -C build", error will occur. Thia patch fixes it. Fixes: 1ec6a845b5cb ("eal: use stdatomic API in public headers") Cc: sta...@dpdk.or