From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59995) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIs8v-0002vb-W4 for qemu-devel@nongnu.org; Tue, 12 Jan 2016 01:09:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aIs8s-0006B1-0l for qemu-devel@nongnu.org; Tue, 12 Jan 2016 01:09:21 -0500 Received: from e28smtp04.in.ibm.com ([125.16.236.4]:60433) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIs8r-0006Ai-AZ for qemu-devel@nongnu.org; Tue, 12 Jan 2016 01:09:17 -0500 Received: from localhost by e28smtp04.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 12 Jan 2016 11:39:15 +0530 Received: from d28relay04.in.ibm.com (d28relay04.in.ibm.com [9.184.220.61]) by d28dlp01.in.ibm.com (Postfix) with ESMTP id EE509E0059 for ; Tue, 12 Jan 2016 11:40:31 +0530 (IST) Received: from d28av04.in.ibm.com (d28av04.in.ibm.com [9.184.220.66]) by d28relay04.in.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id u0C68i636291548 for ; Tue, 12 Jan 2016 11:38:44 +0530 Received: from d28av04.in.ibm.com (localhost [127.0.0.1]) by d28av04.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id u0C68a49023860 for ; Tue, 12 Jan 2016 11:38:44 +0530 From: "Aneesh Kumar K.V" Date: Tue, 12 Jan 2016 11:38:09 +0530 Message-Id: <1452578912-12546-3-git-send-email-aneesh.kumar@linux.vnet.ibm.com> In-Reply-To: <1452578912-12546-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> References: <1452578912-12546-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 02/25] 9pfs: rename virtio-9p-handle.c to 9p-handle.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: Wei Liu , qemu-devel@nongnu.org, "Aneesh Kumar K.V" From: Wei Liu This file is not virtio specific. Rename it to use generic name. Fix comment and remove unneeded inclusion of virtio.h. Signed-off-by: Wei Liu Signed-off-by: Aneesh Kumar K.V --- hw/9pfs/{virtio-9p-handle.c => 9p-handle.c} | 3 +-- hw/9pfs/Makefile.objs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) rename hw/9pfs/{virtio-9p-handle.c => 9p-handle.c} (99%) diff --git a/hw/9pfs/virtio-9p-handle.c b/hw/9pfs/9p-handle.c similarity index 99% rename from hw/9pfs/virtio-9p-handle.c rename to hw/9pfs/9p-handle.c index 13eabb98a401..a48dbc9e8d37 100644 --- a/hw/9pfs/virtio-9p-handle.c +++ b/hw/9pfs/9p-handle.c @@ -1,5 +1,5 @@ /* - * Virtio 9p handle callback + * 9p handle callback * * Copyright IBM, Corp. 2011 * @@ -11,7 +11,6 @@ * */ -#include "hw/virtio/virtio.h" #include "virtio-9p.h" #include "virtio-9p-xattr.h" #include diff --git a/hw/9pfs/Makefile.objs b/hw/9pfs/Makefile.objs index 76dadbe1f2c7..9fdd8a4b09d0 100644 --- a/hw/9pfs/Makefile.objs +++ b/hw/9pfs/Makefile.objs @@ -3,7 +3,7 @@ common-obj-y += virtio-9p-local.o virtio-9p-xattr.o common-obj-y += virtio-9p-xattr-user.o virtio-9p-posix-acl.o common-obj-y += coth.o cofs.o codir.o cofile.o common-obj-y += coxattr.o virtio-9p-synth.o -common-obj-$(CONFIG_OPEN_BY_HANDLE) += virtio-9p-handle.o +common-obj-$(CONFIG_OPEN_BY_HANDLE) += 9p-handle.o common-obj-y += virtio-9p-proxy.o obj-y += virtio-9p-device.o -- 2.5.0