RE: [PATCH 6/6] devtools: forbid new direct use of GCC atomic builtins

2023-08-13 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Friday, 11 August 2023 17.57 > > On Fri, Aug 11, 2023 at 11:51:17AM +0200, Morten Brørup wrote: > > > From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > > > Sent: Friday, 11 August 2023 03.32 > > > > > > Refrain from us

Re: [PATCH 6/6] devtools: forbid new direct use of GCC atomic builtins

2023-08-11 Thread Tyler Retzlaff
On Fri, Aug 11, 2023 at 11:51:17AM +0200, Morten Brørup wrote: > > From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > > Sent: Friday, 11 August 2023 03.32 > > > > Refrain from using compiler __atomic_xxx builtins DPDK now requires > > the use of rte_atomic__explicit macros when operating

RE: [PATCH 6/6] devtools: forbid new direct use of GCC atomic builtins

2023-08-11 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Friday, 11 August 2023 03.32 > > Refrain from using compiler __atomic_xxx builtins DPDK now requires > the use of rte_atomic__explicit macros when operating on DPDK > atomic variables. > > Signed-off-by: Tyler Retzlaff > Acked-

Re: [PATCH 6/6] devtools: forbid new direct use of GCC atomic builtins

2023-08-11 Thread Bruce Richardson
On Thu, Aug 10, 2023 at 06:32:01PM -0700, Tyler Retzlaff wrote: > Refrain from using compiler __atomic_xxx builtins DPDK now requires > the use of rte_atomic__explicit macros when operating on DPDK > atomic variables. > > Signed-off-by: Tyler Retzlaff > Acked-by: Morten Brørup > --- Acked-by: Br

[PATCH 6/6] devtools: forbid new direct use of GCC atomic builtins

2023-08-10 Thread Tyler Retzlaff
Refrain from using compiler __atomic_xxx builtins DPDK now requires the use of rte_atomic__explicit macros when operating on DPDK atomic variables. Signed-off-by: Tyler Retzlaff Acked-by: Morten Brørup --- devtools/checkpatches.sh | 8 1 file changed, 8 insertions(+) diff --git a/devt