- bnc#801663 - performance of mirror lvm unsuitable for production
block-dmmd - Update to Xen 4.3.0-rc2 - Consolidate all xend and traditional qemu patches into one patch file. Rename '.diff' patches to '.patch' and reoder others. xend-traditional-qemu.patch - Create a xend-tools package for the legacy xend toolstack files - Update to Xen 4.3.0-rc1 c/s 27068 - bnc#818183 - VUL-0: xen: CVE-2013-2007: XSA-51: qga set umask 0077 when daemonizing CVE-2013-2007-xsa51-1.patch CVE-2013-2007-xsa51-2.patch - bnc#808269 - Fully Virtualized Windows VM install is failed on Ivy Bridge platforms with Xen kernel 26754-hvm-Improve-APIC-INIT-SIPI-emulation.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=241
This commit is contained in:
committed by
Git OBS Bridge
parent
d766d613df
commit
0a0dc9a60d
@@ -1,27 +0,0 @@
|
||||
# HG changeset patch
|
||||
# User Jim Fehlig <jfehlig@novell.com>
|
||||
# Date 1284948067 21600
|
||||
# Node ID 4674ad11feef87a6a57b99313966e0e121588e1c
|
||||
# Parent 5393151a737b023476f4e571effc547e758cf8c8
|
||||
xend: Fix device_configure
|
||||
|
||||
The semantics of XendDomainInfo.py:device_configure() changed with xen upstream
|
||||
c/s 19610. Previously this method would take a devid in actual id *or* name
|
||||
form, e.g. it would accept '5632' or 'hdc'. This patch restores that behavior.
|
||||
|
||||
Signed-off-by: Jim Fehlig <jfehlig@novell.com>
|
||||
|
||||
Index: xen-4.2.0-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
|
||||
@@ -1203,6 +1203,9 @@ class XendDomainInfo:
|
||||
except ValueError:
|
||||
pass
|
||||
devid = dev_control.convertToDeviceNumber(dev)
|
||||
+ else:
|
||||
+ # devid could be a name, e.g. hdc
|
||||
+ devid = dev_control.convertToDeviceNumber(devid)
|
||||
dev_info = self._getDeviceInfo_vbd(devid)
|
||||
if dev_info is None:
|
||||
raise VmError("Device %s not connected" % devid)
|
Reference in New Issue
Block a user