From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZZY8-0002QG-Qi for qemu-devel@nongnu.org; Tue, 16 Aug 2016 04:16:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bZZY1-0005H8-8Z for qemu-devel@nongnu.org; Tue, 16 Aug 2016 04:16:38 -0400 Received: from mga04.intel.com ([192.55.52.120]:24679) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZZY1-0005H4-2k for qemu-devel@nongnu.org; Tue, 16 Aug 2016 04:16:33 -0400 From: Jike Song Date: Tue, 16 Aug 2016 16:14:17 +0800 Message-Id: <1471335257-6226-6-git-send-email-jike.song@intel.com> In-Reply-To: <1471335257-6226-1-git-send-email-jike.song@intel.com> References: <1471335257-6226-1-git-send-email-jike.song@intel.com> Subject: [Qemu-devel] [RFC v6-based v1 5/5] rename 'vfio_mpci' to 'vfio_mdev' since it is now BUS-agnostic List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: alex.williamson@redhat.com, kwankhede@nvidia.com, cjia@nvidia.com Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org, bjsdjshi@linux.vnet.ibm.com, kevin.tian@intel.com, guangrong.xiao@linux.intel.com, zhenyuw@linux.intel.com, jike.song@intel.com, pbonzini@redhat.com, kraxel@redhat.com Signed-off-by: Jike Song --- drivers/vfio/mdev/Kconfig | 10 +++++----- drivers/vfio/mdev/Makefile | 5 ++--- drivers/vfio/mdev/{vfio_mpci.c => vfio_mdev.c} | 0 3 files changed, 7 insertions(+), 8 deletions(-) rename drivers/vfio/mdev/{vfio_mpci.c => vfio_mdev.c} (100%) diff --git a/drivers/vfio/mdev/Kconfig b/drivers/vfio/mdev/Kconfig index 431ed59..b2fe0c6 100644 --- a/drivers/vfio/mdev/Kconfig +++ b/drivers/vfio/mdev/Kconfig @@ -1,5 +1,5 @@ -config VFIO_MDEV +config MDEV tristate "Mediated device driver framework" depends on VFIO default n @@ -9,10 +9,10 @@ config VFIO_MDEV If you don't know what do here, say N. -config VFIO_MPCI - tristate "VFIO support for Mediated PCI devices" - depends on VFIO && PCI && VFIO_MDEV +config VFIO_MDEV + tristate "VFIO Bus driver for Mediated devices" + depends on VFIO && MDEV default n help - VFIO based driver for mediated PCI devices. + VFIO Bus driver for mediated devices. diff --git a/drivers/vfio/mdev/Makefile b/drivers/vfio/mdev/Makefile index 264fb03..ee9f89f 100644 --- a/drivers/vfio/mdev/Makefile +++ b/drivers/vfio/mdev/Makefile @@ -1,6 +1,5 @@ mdev-y := mdev_core.o mdev_sysfs.o mdev_driver.o -obj-$(CONFIG_VFIO_MDEV) += mdev.o -obj-$(CONFIG_VFIO_MPCI) += vfio_mpci.o - +obj-$(CONFIG_MDEV) += mdev.o +obj-$(CONFIG_VFIO_MDEV) += vfio_mdev.o diff --git a/drivers/vfio/mdev/vfio_mpci.c b/drivers/vfio/mdev/vfio_mdev.c similarity index 100% rename from drivers/vfio/mdev/vfio_mpci.c rename to drivers/vfio/mdev/vfio_mdev.c -- 1.9.1