Fix CDROM media change for Xen PV domains
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=64
This commit is contained in:
parent
4dbc98eeb4
commit
3ff493eca9
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 23 02:42:39 MDT 2010 - jfehlig@novell.com
|
||||||
|
|
||||||
|
- Fix CDROM media change for Xen PV domains
|
||||||
|
modified xen-pv-cdrom.patch
|
||||||
|
bnc#636231
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Sep 10 15:45:04 MDT 2010 - jfehlig@novell.com
|
Fri Sep 10 15:45:04 MDT 2010 - jfehlig@novell.com
|
||||||
|
|
||||||
|
@ -2,15 +2,11 @@ Index: libvirt-0.8.4/src/xen/xend_internal.c
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- libvirt-0.8.4.orig/src/xen/xend_internal.c
|
--- libvirt-0.8.4.orig/src/xen/xend_internal.c
|
||||||
+++ libvirt-0.8.4/src/xen/xend_internal.c
|
+++ libvirt-0.8.4/src/xen/xend_internal.c
|
||||||
@@ -5332,7 +5332,10 @@ xenDaemonFormatSxprDisk(virConnectPtr co
|
@@ -1422,7 +1422,6 @@ xenDaemonParseSxprDisks(virDomainDefPtr
|
||||||
} else if (def->device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
|
/* There is a case without the uname to the CD-ROM device */
|
||||||
virBufferVSprintf(buf, "(dev '%s:cdrom')", def->dst);
|
offset = strchr(dst, ':');
|
||||||
} else {
|
if (!offset ||
|
||||||
- virBufferVSprintf(buf, "(dev '%s')", def->dst);
|
- !hvm ||
|
||||||
+ if (def->device == VIR_DOMAIN_DISK_DEVICE_CDROM)
|
STRNEQ(offset, ":cdrom")) {
|
||||||
+ virBufferVSprintf(buf, "(dev '%s:cdrom')", def->dst);
|
virXendError(VIR_ERR_INTERNAL_ERROR,
|
||||||
+ else
|
"%s", _("domain information incomplete, vbd has no src"));
|
||||||
+ virBufferVSprintf(buf, "(dev '%s')", def->dst);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (def->src) {
|
|
||||||
|
@ -27,7 +27,7 @@ Index: libvirt-0.8.4/src/xen/xend_internal.c
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (VIR_ALLOC(disk) < 0)
|
if (VIR_ALLOC(disk) < 0)
|
||||||
@@ -1532,7 +1536,12 @@ xenDaemonParseSxprDisks(virDomainDefPtr
|
@@ -1531,7 +1535,12 @@ xenDaemonParseSxprDisks(virDomainDefPtr
|
||||||
if (VIR_REALLOC_N(def->disks, def->ndisks+1) < 0)
|
if (VIR_REALLOC_N(def->disks, def->ndisks+1) < 0)
|
||||||
goto no_memory;
|
goto no_memory;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user