Accepting request 400351 from home:jfehlig:branches:Virtualization
- Update to libvirt 1.3.5
- Many incremental improvements and bug fixes, see
http://libvirt.org/news.html
- Dropped patches:
e4d131b8-mv-virDomainDefPostParseInternal.patch,
3e428670-post-parse-implicit-video.patch,
538012c8-default-vram.patch, 96b21fb0-vram-tests.patch,
400e716d-libxl-noprope-emulator.patch,
b90c4b5f-tests-use-qemu-xen.patch,
fccf2725-libxl-API-4.4.patch,
5325123d-libxl-migv2-save-restore.patch,
f9edcfa4-libxl-migv2-migration.patch,
a1c9a81a-libxl-rbd-fix.patch,
ba566428-libxl-dom-iface-addrs.patch
- spec: simplify and cleanup by removing many conditionals that
are never toogled. Also drop conditionals for suse_version <
1310
OBS-URL: https://build.opensuse.org/request/show/400351
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=538
2016-06-07 04:00:39 +02:00
|
|
|
Index: libvirt-1.3.5/src/xenconfig/xen_sxpr.c
|
2008-11-07 15:20:28 +01:00
|
|
|
===================================================================
|
Accepting request 400351 from home:jfehlig:branches:Virtualization
- Update to libvirt 1.3.5
- Many incremental improvements and bug fixes, see
http://libvirt.org/news.html
- Dropped patches:
e4d131b8-mv-virDomainDefPostParseInternal.patch,
3e428670-post-parse-implicit-video.patch,
538012c8-default-vram.patch, 96b21fb0-vram-tests.patch,
400e716d-libxl-noprope-emulator.patch,
b90c4b5f-tests-use-qemu-xen.patch,
fccf2725-libxl-API-4.4.patch,
5325123d-libxl-migv2-save-restore.patch,
f9edcfa4-libxl-migv2-migration.patch,
a1c9a81a-libxl-rbd-fix.patch,
ba566428-libxl-dom-iface-addrs.patch
- spec: simplify and cleanup by removing many conditionals that
are never toogled. Also drop conditionals for suse_version <
1310
OBS-URL: https://build.opensuse.org/request/show/400351
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=538
2016-06-07 04:00:39 +02:00
|
|
|
--- libvirt-1.3.5.orig/src/xenconfig/xen_sxpr.c
|
|
|
|
+++ libvirt-1.3.5/src/xenconfig/xen_sxpr.c
|
2016-03-01 18:58:15 +01:00
|
|
|
@@ -392,7 +392,7 @@ xenParseSxprVifRate(const char *rate, un
|
2010-11-01 23:38:39 +01:00
|
|
|
static int
|
2011-03-31 22:22:32 +02:00
|
|
|
xenParseSxprDisks(virDomainDefPtr def,
|
|
|
|
const struct sexpr *root,
|
2016-01-18 20:32:30 +01:00
|
|
|
- int hvm)
|
|
|
|
+ int hvm ATTRIBUTE_UNUSED)
|
2010-11-01 23:38:39 +01:00
|
|
|
{
|
|
|
|
const struct sexpr *cur, *node;
|
2016-01-18 20:32:30 +01:00
|
|
|
virDomainDiskDefPtr disk = NULL;
|
2016-03-01 18:58:15 +01:00
|
|
|
@@ -442,7 +442,6 @@ xenParseSxprDisks(virDomainDefPtr def,
|
2010-10-02 00:46:48 +02:00
|
|
|
/* There is a case without the uname to the CD-ROM device */
|
|
|
|
offset = strchr(dst, ':');
|
|
|
|
if (!offset ||
|
|
|
|
- !hvm ||
|
|
|
|
STRNEQ(offset, ":cdrom")) {
|
2012-09-12 17:08:18 +02:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("domain information incomplete, vbd has no src"));
|