forked from pool/libvirt
5016413cf6
- add LXC from native conversion tool - vbox: add support for v4.2.20+ and v4.3.4+ - CVE-2013-6456 (bnc#857490) - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Drop upstream patches: 37564b47-xend-parse-response.patch, 4f20084-fix-apparmor-install-patch.patch - Add local disable-virCgroupGetPercpuStats-test.patch to disable failing virCgroupGetPercpuStats test in 'make check' OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=354
46 lines
1.3 KiB
Diff
46 lines
1.3 KiB
Diff
Index: libvirt-1.2.2/src/libxl/libxl_conf.c
|
|
===================================================================
|
|
--- libvirt-1.2.2.orig/src/libxl/libxl_conf.c
|
|
+++ libvirt-1.2.2/src/libxl/libxl_conf.c
|
|
@@ -565,6 +565,30 @@ libxlMakeChrdevStr(virDomainChrDefPtr de
|
|
}
|
|
|
|
static int
|
|
+libxlFixupDomBuildInfo(virDomainDefPtr def, libxl_domain_config *d_config)
|
|
+{
|
|
+ libxl_domain_build_info *b_info = &d_config->b_info;
|
|
+ int hvm = STREQ(def->os.type, "hvm");
|
|
+ libxl_device_vfb vfb;
|
|
+
|
|
+ if (!hvm)
|
|
+ return 0;
|
|
+
|
|
+ if (d_config->num_vfbs) {
|
|
+ vfb = d_config->vfbs[0];
|
|
+ if (libxl_defbool_val(vfb.vnc.enable))
|
|
+ memcpy(&b_info->u.hvm.vnc, &vfb.vnc, sizeof(libxl_vnc_info));
|
|
+ else if (libxl_defbool_val(vfb.sdl.enable))
|
|
+ memcpy(&b_info->u.hvm.sdl, &vfb.sdl, sizeof(libxl_sdl_info));
|
|
+ else
|
|
+ return -1;
|
|
+ }
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+
|
|
+static int
|
|
libxlMakeDomBuildInfo(virDomainObjPtr vm, libxl_domain_config *d_config)
|
|
{
|
|
virDomainDefPtr def = vm->def;
|
|
@@ -1195,6 +1219,9 @@ libxlBuildDomainConfig(libxlDriverPrivat
|
|
if (libxlMakeVfbList(driver, def, d_config) < 0)
|
|
return -1;
|
|
|
|
+ if (libxlFixupDomBuildInfo(def, d_config) < 0)
|
|
+ return -1;
|
|
+
|
|
d_config->on_reboot = def->onReboot;
|
|
d_config->on_poweroff = def->onPoweroff;
|
|
d_config->on_crash = def->onCrash;
|