Re: [PATCH v2 00/17] use __atomic operations returning previous value

2023-04-25 Thread David Marchand
On Thu, Mar 2, 2023 at 5:18 PM Tyler Retzlaff wrote: > > This series replaces uses of __atomic_{add,and,or,sub,xor}_fetch with > __atomic_fetch_{add,and,or,sub,xor} intrinsics. The latter omits generation > of code that is only needed if the returned value is actually used. > > Additionally, this

Re: [PATCH v2 00/17] use __atomic operations returning previous value

2023-03-02 Thread fengchengwen
On 2023/3/3 0:18, Tyler Retzlaff wrote: > This series replaces uses of __atomic_{add,and,or,sub,xor}_fetch with > __atomic_fetch_{add,and,or,sub,xor} intrinsics. The latter omits generation > of code that is only needed if the returned value is actually used. > > Additionally, this change simp

RE: [PATCH v2 00/17] use __atomic operations returning previous value

2023-03-02 Thread Ruifeng Wang
yler Retzlaff > Subject: [PATCH v2 00/17] use __atomic operations returning previous value > > This series replaces uses of __atomic_{add,and,or,sub,xor}_fetch with > __atomic_fetch_{add,and,or,sub,xor} intrinsics. The latter omits generation > of code that > is only nee

[PATCH v2 00/17] use __atomic operations returning previous value

2023-03-02 Thread Tyler Retzlaff
This series replaces uses of __atomic_{add,and,or,sub,xor}_fetch with __atomic_fetch_{add,and,or,sub,xor} intrinsics. The latter omits generation of code that is only needed if the returned value is actually used. Additionally, this change simplifies adapting dpdk to standard atomics planned for