From patchwork Mon Jan 14 21:52:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: fred.konrad@greensocs.com X-Patchwork-Id: 211934 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 0E19A2C009E for ; Tue, 15 Jan 2013 08:52:26 +1100 (EST) Received: from localhost ([::1]:52349 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TurxA-0006Ym-Qd for incoming@patchwork.ozlabs.org; Mon, 14 Jan 2013 16:52:24 -0500 Received: from eggs.gnu.org ([208.118.235.92]:39138) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Turx2-0006XI-K1 for qemu-devel@nongnu.org; Mon, 14 Jan 2013 16:52:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Turx1-0002Eg-Mn for qemu-devel@nongnu.org; Mon, 14 Jan 2013 16:52:16 -0500 Received: from greensocs.com ([87.106.252.221]:60294 helo=s15328186.onlinehome-server.info) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Turx1-0002EU-GU for qemu-devel@nongnu.org; Mon, 14 Jan 2013 16:52:15 -0500 Received: from localhost (unknown [127.0.0.1]) by s15328186.onlinehome-server.info (Postfix) with ESMTP id 8323A43EE2C; Mon, 14 Jan 2013 21:52:13 +0000 (UTC) Received: from s15328186.onlinehome-server.info ([127.0.0.1]) by localhost (s15328186.onlinehome-server.info [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nyQPl1GFWYyI; Mon, 14 Jan 2013 22:52:13 +0100 (CET) Received: by s15328186.onlinehome-server.info (Postfix, from userid 491) id 4847443EE28; Mon, 14 Jan 2013 22:52:13 +0100 (CET) Received: from compaq.katmai.xl.cx.katmai.xl.cx (lan31-11-83-155-143-136.fbx.proxad.net [83.155.143.136]) by s15328186.onlinehome-server.info (Postfix) with ESMTPSA id B76BC42AFCE; Mon, 14 Jan 2013 22:52:12 +0100 (CET) From: fred.konrad@greensocs.com To: aliguori@us.ibm.com, mst@redhat.com Date: Mon, 14 Jan 2013 22:52:02 +0100 Message-Id: <1358200322-9660-1-git-send-email-fred.konrad@greensocs.com> X-Mailer: git-send-email 1.7.11.7 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 87.106.252.221 Cc: qemu-devel@nongnu.org, fred.konrad@greensocs.com Subject: [Qemu-devel] [PATCH] virtio-9p: fix compilation error. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: KONRAD Frederic Fix the compilation error introduced by msg new field. CC hw/9pfs/virtio-9p.o In file included from /home/konradf/Documents/safe/greensocs/virtio-project/x86-qemu/qemu/hw/9pfs/virtio-9p.c:17:0: /home/konradf/Documents/safe/greensocs/virtio-project/x86-qemu/qemu/hw/virtio-pci.h:30:16: erreur: field ‘msg’ has incomplete type make: *** [hw/9pfs/virtio-9p.o] Erreur 1 Signed-off-by: KONRAD Frederic --- hw/virtio-pci.h | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/virtio-pci.h b/hw/virtio-pci.h index 9ff3139..917b465 100644 --- a/hw/virtio-pci.h +++ b/hw/virtio-pci.h @@ -15,6 +15,7 @@ #ifndef QEMU_VIRTIO_PCI_H #define QEMU_VIRTIO_PCI_H +#include "hw/pci/msi.h" #include "virtio-blk.h" #include "virtio-net.h" #include "virtio-rng.h"