All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jike Song <jike.song@intel.com>
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
Subject: [RFC v6-based v1 5/5] rename 'vfio_mpci' to 'vfio_mdev' since it is now BUS-agnostic
Date: Tue, 16 Aug 2016 16:14:17 +0800	[thread overview]
Message-ID: <1471335257-6226-6-git-send-email-jike.song@intel.com> (raw)
In-Reply-To: <1471335257-6226-1-git-send-email-jike.song@intel.com>

Signed-off-by: Jike Song <jike.song@intel.com>
---
 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


WARNING: multiple messages have this Message-ID (diff)
From: Jike Song <jike.song@intel.com>
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
Subject: [Qemu-devel] [RFC v6-based v1 5/5] rename 'vfio_mpci' to 'vfio_mdev' since it is now BUS-agnostic
Date: Tue, 16 Aug 2016 16:14:17 +0800	[thread overview]
Message-ID: <1471335257-6226-6-git-send-email-jike.song@intel.com> (raw)
In-Reply-To: <1471335257-6226-1-git-send-email-jike.song@intel.com>

Signed-off-by: Jike Song <jike.song@intel.com>
---
 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

  parent reply	other threads:[~2016-08-16  8:16 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-16  8:14 [RFC v6-based v1 0/5] refine mdev framework Jike Song
2016-08-16  8:14 ` [Qemu-devel] " Jike Song
2016-08-16  8:14 ` [RFC v6-based v1 1/5] mdev: create separate device for parent_device Jike Song
2016-08-16  8:14   ` [Qemu-devel] " Jike Song
2016-08-16  8:14 ` [RFC v6-based v1 2/5] mdev: drop management information and utilize driver-core instead Jike Song
2016-08-16  8:14   ` [Qemu-devel] " Jike Song
2016-08-16  8:14 ` [RFC v6-based v1 3/5] mdev: remove uuid from parent_ops Jike Song
2016-08-16  8:14   ` [Qemu-devel] " Jike Song
2016-08-16  8:14 ` [RFC v6-based v1 4/5] vfio_mpci: remove PCI-specific logic Jike Song
2016-08-16  8:14   ` [Qemu-devel] " Jike Song
2016-08-16  8:14 ` Jike Song [this message]
2016-08-16  8:14   ` [Qemu-devel] [RFC v6-based v1 5/5] rename 'vfio_mpci' to 'vfio_mdev' since it is now BUS-agnostic Jike Song
2016-08-17  8:58 ` [RFC v6-based v1 0/5] refine mdev framework Dong Jia
2016-08-17  8:58   ` [Qemu-devel] " Dong Jia
2016-08-17 10:09   ` Neo Jia
2016-08-17 10:09     ` [Qemu-devel] " Neo Jia
2016-08-18  8:42     ` Dong Jia
2016-08-18  8:42       ` [Qemu-devel] " Dong Jia
2016-08-18 18:25       ` Alex Williamson
2016-08-18 18:25         ` [Qemu-devel] " Alex Williamson
2016-08-19 17:29         ` Kirti Wankhede
2016-08-19 17:29           ` [Qemu-devel] " Kirti Wankhede

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1471335257-6226-6-git-send-email-jike.song@intel.com \
    --to=jike.song@intel.com \
    --cc=alex.williamson@redhat.com \
    --cc=bjsdjshi@linux.vnet.ibm.com \
    --cc=cjia@nvidia.com \
    --cc=guangrong.xiao@linux.intel.com \
    --cc=kevin.tian@intel.com \
    --cc=kraxel@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=kwankhede@nvidia.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=zhenyuw@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.