Re: [PATCH v9 00/17] Use malloc function attribute to uncover bugs

2024-10-10 Thread David Marchand
On Tue, Oct 8, 2024 at 6:49 PM Stephen Hemminger wrote: > > Recent versions of GCC have some additional function attributes that can > help with DPDK performance and stability. > > The alloc_align attribute tells the compiler what the alignment > of the allocation will be, and the optimizer can us

RE: [PATCH v9 00/17] Use malloc function attribute to uncover bugs

2024-10-10 Thread Wathsala Wathawana Vithanage
> Subject: [PATCH v9 00/17] Use malloc function attribute to uncover bugs > > Recent versions of GCC have some additional function attributes that can help > with DPDK performance and stability. > > The alloc_align attribute tells the compiler what the alignment of the >

RE: [PATCH v9 00/17] Use malloc function attribute to uncover bugs

2024-10-10 Thread Konstantin Ananyev
> Recent versions of GCC have some additional function attributes that can > help with DPDK performance and stability. > > The alloc_align attribute tells the compiler what the alignment > of the allocation will be, and the optimizer can use this to produce > better code (especially memcpy and s

[PATCH v9 00/17] Use malloc function attribute to uncover bugs

2024-10-08 Thread Stephen Hemminger
Recent versions of GCC have some additional function attributes that can help with DPDK performance and stability. The alloc_align attribute tells the compiler what the alignment of the allocation will be, and the optimizer can use this to produce better code (especially memcpy and structure copie