aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-08-05 16:45:50 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-05 16:45:50 -0400
commitdb7a1535d2dcf91115ba0fb940b1902c05305843 (patch)
tree29757b0b2db0e56bc520444d7233f2462d3c199a /drivers/block
parentab265d5cdde7133f2569e2b5f341a80907b8600e (diff)
parent7cc88fdcff3cc7f0d5d2384ffd7f6d4ce9a745f1 (diff)
Merge branch 'upstream/xen' of git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen
* 'upstream/xen' of git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen: (23 commits) xen/panic: use xen_reboot and fix smp_send_stop Xen: register panic notifier to take crashes of xen guests on panic xen: support large numbers of CPUs with vcpu info placement xen: drop xen_sched_clock in favour of using plain wallclock time pvops: do not notify callers from register_xenstore_notifier Introduce CONFIG_XEN_PVHVM compile option blkfront: do not create a PV cdrom device if xen_hvm_guest support multiple .discard.* sections to avoid section type conflicts xen/pvhvm: fix build problem when !CONFIG_XEN xenfs: enable for HVM domains too x86: Call HVMOP_pagetable_dying on exit_mmap. x86: Unplug emulated disks and nics. x86: Use xen_vcpuop_clockevent, xen_clocksource and xen wallclock. implement O_NONBLOCK for /proc/xen/xenbus xen: Fix find_unbound_irq in presence of ioapic irqs. xen: Add suspend/resume support for PV on HVM guests. xen: Xen PCI platform device driver. x86/xen: event channels delivery on HVM. x86: early PV on HVM features initialization. xen: Add support for HVM hypercalls. ...
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/xen-blkfront.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c
index 82ed403147c0..f63ac3d1f8a4 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,35 @@ static int blkfront_probe(struct xenbus_device *dev,
737 } 738 }
738 } 739 }
739 740
741 if (xen_hvm_domain()) {
742 char *type;
743 int len;
744 /* no unplug has been done: do not hook devices != xen vbds */
745 if (xen_platform_pci_unplug & XEN_UNPLUG_IGNORE) {
746 int major;
747
748 if (!VDEV_IS_EXTENDED(vdevice))
749 major = BLKIF_MAJOR(vdevice);
750 else
751 major = XENVBD_MAJOR;
752
753 if (major != XENVBD_MAJOR) {
754 printk(KERN_INFO
755 "%s: HVM does not support vbd %d as xen block device\n",
756 __FUNCTION__, vdevice);
757 return -ENODEV;
758 }
759 }
760 /* do not create a PV cdrom device if we are an HVM guest */
761 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
762 if (IS_ERR(type))
763 return -ENODEV;
764 if (strncmp(type, "cdrom", 5) == 0) {
765 kfree(type);
766 return -ENODEV;
767 }
768 kfree(type);
769 }
740 info = kzalloc(sizeof(*info), GFP_KERNEL); 770 info = kzalloc(sizeof(*info), GFP_KERNEL);
741 if (!info) { 771 if (!info) {
742 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure"); 772 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");