WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [linux-2.6.18-xen] blktap2: introduce blktap2 dedicated

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [linux-2.6.18-xen] blktap2: introduce blktap2 dedicated config.
From: "Xen patchbot-linux-2.6.18-xen" <patchbot-linux-2.6.18-xen@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 28 May 2009 02:30:57 -0700
Delivery-date: Thu, 28 May 2009 02:32:44 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1243501502 -3600
# Node ID 3e01555dd227992e00a75cfe9c4d12f42f55cac2
# Parent  a4b49dff3387153b990c95b33eb56a04eeefea33
blktap2: introduce blktap2 dedicated config.

Introduce CONFIG_XEN_BLKDEV_TAP2 instead of CONFIG_XEN_BLKDEV_TAP.

Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx>
---
 drivers/xen/Kconfig          |   12 ++++++++++++
 drivers/xen/Makefile         |    2 +-
 drivers/xen/blktap2/Makefile |    2 +-
 3 files changed, 14 insertions(+), 2 deletions(-)

diff -r a4b49dff3387 -r 3e01555dd227 drivers/xen/Kconfig
--- a/drivers/xen/Kconfig       Thu May 28 10:04:26 2009 +0100
+++ b/drivers/xen/Kconfig       Thu May 28 10:05:02 2009 +0100
@@ -53,6 +53,18 @@ config XEN_BLKDEV_BACKEND
 
 config XEN_BLKDEV_TAP
        tristate "Block-device tap backend driver"
+       depends on XEN_BACKEND
+       default XEN_BACKEND
+       help
+         The block tap driver is an alternative to the block back driver 
+          and allows VM block requests to be redirected to userspace through
+          a device interface.  The tap allows user-space development of 
+          high-performance block backends, where disk images may be implemented
+          as files, in memory, or on other hosts across the network.  This 
+         driver can safely coexist with the existing blockback driver.
+
+config XEN_BLKDEV_TAP2
+       tristate "Block-device tap backend driver 2"
        depends on XEN_BACKEND
        default XEN_BACKEND
        help
diff -r a4b49dff3387 -r 3e01555dd227 drivers/xen/Makefile
--- a/drivers/xen/Makefile      Thu May 28 10:04:26 2009 +0100
+++ b/drivers/xen/Makefile      Thu May 28 10:05:02 2009 +0100
@@ -8,7 +8,7 @@ obj-$(CONFIG_XEN_BALLOON)               += balloon/
 obj-$(CONFIG_XEN_BALLOON)              += balloon/
 obj-$(CONFIG_XEN_BLKDEV_BACKEND)       += blkback/
 obj-$(CONFIG_XEN_BLKDEV_TAP)           += blktap/
-obj-$(CONFIG_XEN_BLKDEV_TAP)            += blktap2/
+obj-$(CONFIG_XEN_BLKDEV_TAP2)           += blktap2/
 obj-$(CONFIG_XEN_NETDEV_BACKEND)       += netback/
 obj-$(CONFIG_XEN_TPMDEV_BACKEND)       += tpmback/
 obj-$(CONFIG_XEN_BLKDEV_FRONTEND)      += blkfront/
diff -r a4b49dff3387 -r 3e01555dd227 drivers/xen/blktap2/Makefile
--- a/drivers/xen/blktap2/Makefile      Thu May 28 10:04:26 2009 +0100
+++ b/drivers/xen/blktap2/Makefile      Thu May 28 10:05:02 2009 +0100
@@ -1,3 +1,3 @@ obj-y := blktap.o
-obj-y := blktap.o
+obj-$(CONFIG_XEN_BLKDEV_TAP2) := blktap.o
 
 blktap-objs := control.o ring.o wait_queue.o device.o request.o sysfs.o

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [linux-2.6.18-xen] blktap2: introduce blktap2 dedicated config., Xen patchbot-linux-2.6.18-xen <=