From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57962) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aiWIU-0002sm-56 for qemu-devel@nongnu.org; Tue, 22 Mar 2016 20:05:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aiWIQ-0002cJ-4I for qemu-devel@nongnu.org; Tue, 22 Mar 2016 20:05:14 -0400 Received: from sonata.ens-lyon.org ([140.77.166.138]:53762) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aiWIP-0002bX-Tg for qemu-devel@nongnu.org; Tue, 22 Mar 2016 20:05:10 -0400 Date: Wed, 23 Mar 2016 01:05:06 +0100 From: Samuel Thibault Message-ID: <20160323000506.GI2730@var.home> References: <1455868726-26350-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [PULL 00/13] vhost, virtio, pci, pxe List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: "J. Kiszka" , Jason Wang , QEMU Developers , "Michael S. Tsirkin" Hello Peter, Peter Maydell, on Fri 19 Feb 2016 12:09:17 +0000, wrote: > diff --git a/slirp/mbuf.h b/slirp/mbuf.h > index 38fedf4..ef5a4f7 100644 > --- a/slirp/mbuf.h > +++ b/slirp/mbuf.h > @@ -81,11 +81,9 @@ struct mbuf { > Slirp *slirp; > bool resolution_requested; > uint64_t expiration_date; > + char *m_ext; > /* start of dynamic buffer area, must be last element */ > - union { > - char m_dat[1]; /* ANSI don't like 0 sized arrays */ > - char *m_ext; > - }; > + char m_dat[]; > }; > > #define ifq_prev m_prev Could you give your Signed-off-by on this? Samuel