- Update to Xen 4.2.0 FCS c/s 25844
- unmodified_drivers: handle IRQF_SAMPLE_RANDOM, it was removed in 3.6-rc1 - bnc#778105 - first XEN-PV VM fails to spawn xend: Increase wait time for disk to appear in host bootloader Modified existing xen-domUloader.diff - Disable the snapshot patches. Snapshot only supported the qcow2 image format which was poorly implemented qemu 0.10.2. Snapshot support may be restored in the future when the newer upstream qemu is used by Xen. - bnc#776995 - attaching scsi control luns with pvscsi - xend/pvscsi: fix passing of SCSI control LUNs xen-bug776995-pvscsi-no-devname.patch - xend/pvscsi: fix usage of persistant device names for SCSI devices xen-bug776995-pvscsi-persistent-names.patch - xend/pvscsi: update sysfs parser for Linux 3.0 xen-bug776995-pvscsi-sysfs-parser.patch - Update to Xen 4.2.0 RC3+ c/s 25779 - Update to Xen 4.2.0 RC2+ c/s 25765 OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=199
This commit is contained in:
committed by
Git OBS Bridge
parent
396bc537b5
commit
80e28a00ec
@@ -1,7 +1,7 @@
|
||||
Index: xen-4.1.2-testing/tools/python/xen/xend/server/DevController.py
|
||||
Index: xen-4.2.0-testing/tools/python/xen/xend/server/DevController.py
|
||||
===================================================================
|
||||
--- xen-4.1.2-testing.orig/tools/python/xen/xend/server/DevController.py
|
||||
+++ xen-4.1.2-testing/tools/python/xen/xend/server/DevController.py
|
||||
--- xen-4.2.0-testing.orig/tools/python/xen/xend/server/DevController.py
|
||||
+++ xen-4.2.0-testing/tools/python/xen/xend/server/DevController.py
|
||||
@@ -592,6 +592,31 @@ class DevController:
|
||||
return (Missing, None)
|
||||
|
||||
@@ -34,10 +34,10 @@ Index: xen-4.1.2-testing/tools/python/xen/xend/server/DevController.py
|
||||
def backendPath(self, backdom, devid):
|
||||
"""Construct backend path given the backend domain and device id.
|
||||
|
||||
Index: xen-4.1.2-testing/tools/python/xen/xend/XendBootloader.py
|
||||
Index: xen-4.2.0-testing/tools/python/xen/xend/XendBootloader.py
|
||||
===================================================================
|
||||
--- xen-4.1.2-testing.orig/tools/python/xen/xend/XendBootloader.py
|
||||
+++ xen-4.1.2-testing/tools/python/xen/xend/XendBootloader.py
|
||||
--- xen-4.2.0-testing.orig/tools/python/xen/xend/XendBootloader.py
|
||||
+++ xen-4.2.0-testing/tools/python/xen/xend/XendBootloader.py
|
||||
@@ -12,7 +12,7 @@
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
@@ -64,7 +64,7 @@ Index: xen-4.1.2-testing/tools/python/xen/xend/XendBootloader.py
|
||||
+ raise VmError(msg)
|
||||
+
|
||||
+ avail = False
|
||||
+ for i in xrange(1, 100):
|
||||
+ for i in xrange(1, 500):
|
||||
+ avail = os.access(disk, os.R_OK)
|
||||
+ if avail:
|
||||
+ break
|
||||
@@ -75,10 +75,10 @@ Index: xen-4.1.2-testing/tools/python/xen/xend/XendBootloader.py
|
||||
log.error(msg)
|
||||
raise VmError(msg)
|
||||
|
||||
Index: xen-4.1.2-testing/tools/python/xen/xend/XendDomainInfo.py
|
||||
Index: xen-4.2.0-testing/tools/python/xen/xend/XendDomainInfo.py
|
||||
===================================================================
|
||||
--- xen-4.1.2-testing.orig/tools/python/xen/xend/XendDomainInfo.py
|
||||
+++ xen-4.1.2-testing/tools/python/xen/xend/XendDomainInfo.py
|
||||
--- xen-4.2.0-testing.orig/tools/python/xen/xend/XendDomainInfo.py
|
||||
+++ xen-4.2.0-testing/tools/python/xen/xend/XendDomainInfo.py
|
||||
@@ -2333,6 +2333,10 @@ class XendDomainInfo:
|
||||
deviceClass, config = self.info['devices'].get(dev_uuid)
|
||||
self._waitForDevice(deviceClass, config['devid'])
|
||||
@@ -90,7 +90,7 @@ Index: xen-4.1.2-testing/tools/python/xen/xend/XendDomainInfo.py
|
||||
def _waitForDevice_destroy(self, deviceClass, devid, backpath):
|
||||
return self.getDeviceController(deviceClass).waitForDevice_destroy(
|
||||
devid, backpath)
|
||||
@@ -3278,7 +3282,8 @@ class XendDomainInfo:
|
||||
@@ -3283,7 +3287,8 @@ class XendDomainInfo:
|
||||
from xen.xend import XendDomain
|
||||
dom0 = XendDomain.instance().privilegedDomain()
|
||||
mounted_vbd_uuid = dom0.create_vbd(vbd, disk);
|
||||
@@ -100,7 +100,7 @@ Index: xen-4.1.2-testing/tools/python/xen/xend/XendDomainInfo.py
|
||||
fn = BOOTLOADER_LOOPBACK_DEVICE
|
||||
|
||||
try:
|
||||
@@ -3288,10 +3293,10 @@ class XendDomainInfo:
|
||||
@@ -3293,10 +3298,10 @@ class XendDomainInfo:
|
||||
if mounted:
|
||||
log.info("Unmounting %s from %s." %
|
||||
(fn, BOOTLOADER_LOOPBACK_DEVICE))
|
||||
|
Reference in New Issue
Block a user