Re: [PATCH v2 0/4] more replacement of zero length array

2024-02-18 Thread Dodji Seketeli
Hello, David Marchand writes: > Dodji confirmed the issue in libabigail and prepared a fix. Yes, that is correct. Sorry for the inconvenience. The patch fixing this issue in libabigail has been applied to the mainline and is https://sourceware.org/git/?p=libabigail.git;a=commit;h=3cc1c3423c89c

Re: [PATCH v2 0/4] more replacement of zero length array

2024-02-16 Thread Tyler Retzlaff
On Fri, Feb 16, 2024 at 11:14:27AM +0100, David Marchand wrote: > On Wed, Feb 14, 2024 at 8:36 AM David Marchand > wrote: > > > I'm okay with the change being merged but if there is concern I can drop > > > this patch from the series. > > > > At least, we can't merge it in the current form. > > >

Re: [PATCH v2 0/4] more replacement of zero length array

2024-02-16 Thread David Marchand
On Wed, Feb 14, 2024 at 8:36 AM David Marchand wrote: > > I'm okay with the change being merged but if there is concern I can drop > > this patch from the series. > > At least, we can't merge it in the current form. > > If libabigail gets a fix quickly, DPDK CI will still need a released version.

Re: [PATCH v2 0/4] more replacement of zero length array

2024-02-13 Thread David Marchand
On Tue, Feb 13, 2024 at 8:20 PM Tyler Retzlaff wrote: > > On Tue, Feb 13, 2024 at 02:14:28PM +0100, David Marchand wrote: > > On Mon, Feb 12, 2024 at 11:36 PM Tyler Retzlaff > > wrote: > > > > > > Replace some missed zero length arrays not captured in the > > > original series. > > > https://patc

Re: [PATCH v2 0/4] more replacement of zero length array

2024-02-13 Thread Tyler Retzlaff
On Tue, Feb 13, 2024 at 02:14:28PM +0100, David Marchand wrote: > On Mon, Feb 12, 2024 at 11:36 PM Tyler Retzlaff > wrote: > > > > Replace some missed zero length arrays not captured in the > > original series. > > https://patchwork.dpdk.org/project/dpdk/list/?series=30410&state=* > > > > Zero len

Re: [PATCH v2 0/4] more replacement of zero length array

2024-02-13 Thread David Marchand
On Mon, Feb 12, 2024 at 11:36 PM Tyler Retzlaff wrote: > > Replace some missed zero length arrays not captured in the > original series. > https://patchwork.dpdk.org/project/dpdk/list/?series=30410&state=* > > Zero length arrays are a GNU extension that has been > superseded by flex arrays. > > ht

RE: [PATCH v2 0/4] more replacement of zero length array

2024-02-13 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Monday, 12 February 2024 23.57 > > On Mon, 12 Feb 2024 14:36:02 -0800 > Tyler Retzlaff wrote: > > > Replace some missed zero length arrays not captured in the > > original series. > > https://patchwork.dpdk.org/project/dpdk/li

Re: [PATCH v2 0/4] more replacement of zero length array

2024-02-12 Thread Stephen Hemminger
On Mon, 12 Feb 2024 14:36:02 -0800 Tyler Retzlaff wrote: > Replace some missed zero length arrays not captured in the > original series. > https://patchwork.dpdk.org/project/dpdk/list/?series=30410&state=* > > Zero length arrays are a GNU extension that has been > superseded by flex arrays. > >

[PATCH v2 0/4] more replacement of zero length array

2024-02-12 Thread Tyler Retzlaff
Replace some missed zero length arrays not captured in the original series. https://patchwork.dpdk.org/project/dpdk/list/?series=30410&state=* Zero length arrays are a GNU extension that has been superseded by flex arrays. https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html v2: * added addit