From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MLWvf-0004p9-4T for qemu-devel@nongnu.org; Tue, 30 Jun 2009 02:34:55 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MLWvd-0004lz-GJ for qemu-devel@nongnu.org; Tue, 30 Jun 2009 02:34:54 -0400 Received: from [199.232.76.173] (port=54588 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLWvd-0004ll-8G for qemu-devel@nongnu.org; Tue, 30 Jun 2009 02:34:53 -0400 Received: from fg-out-1718.google.com ([72.14.220.159]:49335) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MLWvc-000824-IC for qemu-devel@nongnu.org; Tue, 30 Jun 2009 02:34:52 -0400 Received: by fg-out-1718.google.com with SMTP id l27so597020fgb.8 for ; Mon, 29 Jun 2009 23:34:50 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <200906300055.n5U0tACD013302@d03av01.boulder.ibm.com> References: <200906300055.n5U0tACD013302@d03av01.boulder.ibm.com> Date: Tue, 30 Jun 2009 08:34:50 +0200 Message-ID: <761ea48b0906292334o1d5ee2c2r17337d01bd50014c@mail.gmail.com> From: Laurent Desnogues Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] Re: [Qemu-commits] [COMMIT aba800a] qemu/virtio: MSI-X support in virtio PCI List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org On Tue, Jun 30, 2009 at 2:57 AM, Anthony Liguori wrote= : > From: Michael S. Tsirkin > > This enables actual support for MSI-X in virtio PCI. > First user will be virtio-net. > > Signed-off-by: Michael S. Tsirkin > Signed-off-by: Anthony Liguori [...] > diff --git a/rules.mak b/rules.mak > index 8d6d96e..defee1d 100644 > --- a/rules.mak > +++ b/rules.mak > @@ -1,6 +1,6 @@ > > =A0%.o: %.c > - =A0 =A0 =A0 $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $= <," =A0CC =A0 =A0$(TARGET_DIR)$@") > + =A0 =A0 =A0 $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -Werror -W= no-error=3Duninitialized -c -o $@ $<," =A0CC =A0 =A0$(TARGET_DIR)$@") -Wno-error=3Duninitialized is a rather recent addition to gcc and will probably break compilation on many systems. Laurent