diff options
author | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2010-05-14 07:44:30 -0400 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-07-27 02:13:25 -0400 |
commit | c1c5413ad58cb73267d328e6020268aa2e50d8ca (patch) | |
tree | f2c66141ab8d9fdb7b16a13d4d510ad09b2430ed /drivers/block | |
parent | 409771d258e9dd71c30f3c9520fd2b796ffc40f0 (diff) |
x86: Unplug emulated disks and nics.
Add a xen_emul_unplug command line option to the kernel to unplug
xen emulated disks and nics.
Set the default value of xen_emul_unplug depending on whether or
not the Xen PV frontends and the Xen platform PCI driver have
been compiled for this kernel (modules or built-in are both OK).
The user can specify xen_emul_unplug=ignore to enable PV drivers on HVM
even if the host platform doesn't support unplug.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/xen-blkfront.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c index 82ed403147c0..6eb2989a9d0a 100644 --- a/drivers/block/xen-blkfront.c +++ b/drivers/block/xen-blkfront.c | |||
@@ -48,6 +48,7 @@ | |||
48 | #include <xen/grant_table.h> | 48 | #include <xen/grant_table.h> |
49 | #include <xen/events.h> | 49 | #include <xen/events.h> |
50 | #include <xen/page.h> | 50 | #include <xen/page.h> |
51 | #include <xen/platform_pci.h> | ||
51 | 52 | ||
52 | #include <xen/interface/grant_table.h> | 53 | #include <xen/interface/grant_table.h> |
53 | #include <xen/interface/io/blkif.h> | 54 | #include <xen/interface/io/blkif.h> |
@@ -737,6 +738,22 @@ static int blkfront_probe(struct xenbus_device *dev, | |||
737 | } | 738 | } |
738 | } | 739 | } |
739 | 740 | ||
741 | /* no unplug has been done: do not hook devices != xen vbds */ | ||
742 | if (xen_hvm_domain() && (xen_platform_pci_unplug & XEN_UNPLUG_IGNORE)) { | ||
743 | int major; | ||
744 | |||
745 | if (!VDEV_IS_EXTENDED(vdevice)) | ||
746 | major = BLKIF_MAJOR(vdevice); | ||
747 | else | ||
748 | major = XENVBD_MAJOR; | ||
749 | |||
750 | if (major != XENVBD_MAJOR) { | ||
751 | printk(KERN_INFO | ||
752 | "%s: HVM does not support vbd %d as xen block device\n", | ||
753 | __FUNCTION__, vdevice); | ||
754 | return -ENODEV; | ||
755 | } | ||
756 | } | ||
740 | info = kzalloc(sizeof(*info), GFP_KERNEL); | 757 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
741 | if (!info) { | 758 | if (!info) { |
742 | xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure"); | 759 | xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure"); |