Re: [PATCH 0/9] use C11 alignof

2024-02-13 Thread David Marchand
On Thu, Jan 25, 2024 at 12:18 AM Tyler Retzlaff wrote: > > Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T) > and alignof(typeof(e)) respectively to improve portability of the code > between toolchains. > > Tyler Retzlaff (9): > ring: use C11 alignof > mbuf: use C11 alignof

Re: [PATCH 0/9] use C11 alignof

2024-01-25 Thread fengchengwen
Series-acked-by: Chengwen Feng On 2024/1/25 7:17, Tyler Retzlaff wrote: > Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T) > and alignof(typeof(e)) respectively to improve portability of the code > between toolchains. > > Tyler Retzlaff (9): > ring: use C11 alignof > mbuf

RE: [PATCH 0/9] use C11 alignof

2024-01-24 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Thursday, 25 January 2024 00.18 > > Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T) > and alignof(typeof(e)) respectively to improve portability of the code > between toolchains. > > Tyler Retzlaff (9): >

[PATCH 0/9] use C11 alignof

2024-01-24 Thread Tyler Retzlaff
Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T) and alignof(typeof(e)) respectively to improve portability of the code between toolchains. Tyler Retzlaff (9): ring: use C11 alignof mbuf: use C11 alignof ethdev: use C11 alignof eventdev: use C11 alignof stack: use C11