From patchwork Tue Apr 9 09:23:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lei Li X-Patchwork-Id: 235003 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 8E6902C009E for ; Tue, 9 Apr 2013 19:24:46 +1000 (EST) Received: from localhost ([::1]:42108 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPUnE-0000xh-I4 for incoming@patchwork.ozlabs.org; Tue, 09 Apr 2013 05:24:44 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59032) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPUmw-0000xH-OP for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:24:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPUmv-00045e-Ie for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:24:26 -0400 Received: from e28smtp08.in.ibm.com ([122.248.162.8]:49516) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPUmu-00045M-MR for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:24:25 -0400 Received: from /spool/local by e28smtp08.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 9 Apr 2013 14:48:55 +0530 Received: from d28dlp03.in.ibm.com (9.184.220.128) by e28smtp08.in.ibm.com (192.168.1.138) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 9 Apr 2013 14:48:53 +0530 Received: from d28relay03.in.ibm.com (d28relay03.in.ibm.com [9.184.220.60]) by d28dlp03.in.ibm.com (Postfix) with ESMTP id 8742D1258051 for ; Tue, 9 Apr 2013 14:55:42 +0530 (IST) Received: from d28av02.in.ibm.com (d28av02.in.ibm.com [9.184.220.64]) by d28relay03.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r399OCmW10486104 for ; Tue, 9 Apr 2013 14:54:12 +0530 Received: from d28av02.in.ibm.com (loopback [127.0.0.1]) by d28av02.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r399OF7f007221 for ; Tue, 9 Apr 2013 19:24:16 +1000 Received: from localhost.cn.ibm.com ([9.115.122.67]) by d28av02.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id r399OEqT007089; Tue, 9 Apr 2013 19:24:15 +1000 From: Lei Li To: qemu-devel@nongnu.org Date: Tue, 9 Apr 2013 17:23:43 +0800 Message-Id: <1365499423-19135-1-git-send-email-lilei@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.7.6 X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13040909-2000-0000-0000-00000BAA6524 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 122.248.162.8 Cc: pbonzini@redhat.com, Lei Li Subject: [Qemu-devel] [PATCH] Fix the fail of compilation 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 Commit 47b5264eb3e1cd2825e48d28fd0d1b239ed53974 broke the compile. It's caused by the rename of the file: hw/9pfs/virtio-9p-device.h => include/hw/virtio/virtio-9p.h Signed-off-by: Lei Li Reviewed-by: Michal Novotny --- hw/9pfs/virtio-9p-device.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 43f930e..18e3397 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 "hw/virtio/virtio-9p.h" #include "virtio-9p-xattr.h" #include "virtio-9p-coth.h"