From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPkZd-0000OM-VQ for qemu-devel@nongnu.org; Tue, 09 Apr 2013 22:15:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPkZc-0005AU-R3 for qemu-devel@nongnu.org; Tue, 09 Apr 2013 22:15:45 -0400 Received: from e8.ny.us.ibm.com ([32.97.182.138]:47516) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPkZc-0005A1-MX for qemu-devel@nongnu.org; Tue, 09 Apr 2013 22:15:44 -0400 Received: from /spool/local by e8.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 9 Apr 2013 22:15:41 -0400 Received: from d01relay07.pok.ibm.com (d01relay07.pok.ibm.com [9.56.227.147]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id BF078C9001A for ; Tue, 9 Apr 2013 22:15:38 -0400 (EDT) Received: from d01av05.pok.ibm.com (d01av05.pok.ibm.com [9.56.224.195]) by d01relay07.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r3A2Fcoe64225382 for ; Tue, 9 Apr 2013 22:15:38 -0400 Received: from d01av05.pok.ibm.com (loopback [127.0.0.1]) by d01av05.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r3A2FcIq022352 for ; Tue, 9 Apr 2013 22:15:38 -0400 Message-ID: <5164CB48.6070209@linux.vnet.ibm.com> Date: Wed, 10 Apr 2013 10:15:36 +0800 From: Dong Xu Wang MIME-Version: 1.0 References: <1365504628-6027-1-git-send-email-wdongxu@linux.vnet.ibm.com> In-Reply-To: <1365504628-6027-1-git-send-email-wdongxu@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] fix compile error List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Dong Xu Wang Cc: aliguori@us.ibm.com, wdongxu@cn.ibm.com, qemu-devel@nongnu.org On 2013/4/9 18:50, Dong Xu Wang wrote: > Since 0d09e41a51aa0752b1ce525ce084f7cd210e461b virtio-9p-device.h has > been renamed as virtio-9p.h, so there will be a compiling error. This > patch will fix it. > > > Signed-off-by: Dong Xu Wang > --- > hw/9pfs/virtio-9p-device.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c > index 43f930e..f8accb7 100644 > --- a/hw/9pfs/virtio-9p-device.c > +++ b/hw/9pfs/virtio-9p-device.c > @@ -16,7 +16,7 @@ > #include "qemu/sockets.h" > #include "virtio-9p.h" > #include "fsdev/qemu-fsdev.h" > -#include "virtio-9p-device.h" > +#include "virtio-9p.h" > #include "virtio-9p-xattr.h" > #include "virtio-9p-coth.h" > Oh... I noticed that Lei has sent the patch, so please ignore this one..