forked from pool/libvirt
061a75b436
- qemu: Fix segmentation fault in qemuDomainUndefineFlags 823a62ec-qemu-fix-undefine-crash.patch - Update to libvirt 8.1.0 - Many incremental improvements and bug fixes, see https://libvirt.org/news.html#v8-1-0-2022-03-01 - Dropped patches: 3be5ba11-libvirt-guests-install.patch, 16172741-libvirt-guests-manpage.patch, 8eb44616-remove-sysconfig-files.patch, 31e937fb-libxl-save-lock-indicator.patch, 105dace2-revert-virProcessGetStatInfo.patch, e0241f33-libxl-mark-allocated-graphics-ports.patch, 18ec405a-libxl-release-graphics-ports.patch, 76deb656-qemu-fix-snapshot-revert.patch, 454b927d-libxl-fix-dom-restore.patch OBS-URL: https://build.opensuse.org/request/show/959272 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=925
61 lines
2.2 KiB
Diff
61 lines
2.2 KiB
Diff
libxl: set script field of libxl_device_disk
|
|
|
|
Add a hack to the libvirt libxl driver to set
|
|
libxl_device_disk->script when the disk configuration starts
|
|
with some well-known Xen external block scripts: dmmd, drbd,
|
|
and npiv.
|
|
|
|
For more details, see bsc#954872 and FATE#319810
|
|
|
|
Index: libvirt-8.1.0/src/libxl/libxl_conf.c
|
|
===================================================================
|
|
--- libvirt-8.1.0.orig/src/libxl/libxl_conf.c
|
|
+++ libvirt-8.1.0/src/libxl/libxl_conf.c
|
|
@@ -944,6 +944,20 @@ libxlDiskSetDiscard(libxl_device_disk *x
|
|
}
|
|
|
|
static void
|
|
+libxlDiskSetScript(libxl_device_disk *x_disk, const char *disk_spec)
|
|
+{
|
|
+ if (disk_spec == NULL)
|
|
+ return;
|
|
+
|
|
+ if (STRPREFIX(disk_spec, "dmmd:"))
|
|
+ x_disk->script = g_strdup("block-dmmd");
|
|
+ else if (STRPREFIX(disk_spec, "drbd:"))
|
|
+ x_disk->script = g_strdup("block-drbd");
|
|
+ else if (STRPREFIX(disk_spec, "npiv:"))
|
|
+ x_disk->script = g_strdup("block-npiv");
|
|
+}
|
|
+
|
|
+static void
|
|
libxlDiskSetCacheMode(libxl_device_disk *x_disk, int cachemode)
|
|
{
|
|
switch (cachemode) {
|
|
@@ -1086,6 +1100,7 @@ libxlMakeNetworkDiskSrc(virStorageSource
|
|
int
|
|
libxlMakeDisk(virDomainDiskDef *l_disk, libxl_device_disk *x_disk)
|
|
{
|
|
+ const char *src = virDomainDiskGetSource(l_disk);
|
|
const char *driver = virDomainDiskGetDriver(l_disk);
|
|
int format = virDomainDiskGetFormat(l_disk);
|
|
int actual_type = virStorageSourceGetActualType(l_disk->src);
|
|
@@ -1099,7 +1114,7 @@ libxlMakeDisk(virDomainDiskDef *l_disk,
|
|
if (libxlMakeNetworkDiskSrc(l_disk->src, &x_disk->pdev_path) < 0)
|
|
return -1;
|
|
} else {
|
|
- x_disk->pdev_path = g_strdup(virDomainDiskGetSource(l_disk));
|
|
+ x_disk->pdev_path = g_strdup(src);
|
|
}
|
|
|
|
x_disk->vdev = g_strdup(l_disk->dst);
|
|
@@ -1205,6 +1220,8 @@ libxlMakeDisk(virDomainDiskDef *l_disk,
|
|
x_disk->is_cdrom = l_disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM ? 1 : 0;
|
|
libxlDiskSetDiscard(x_disk, l_disk->discard);
|
|
libxlDiskSetCacheMode(x_disk, l_disk->cachemode);
|
|
+ libxlDiskSetScript(x_disk, src);
|
|
+
|
|
/* An empty CDROM must have the empty format, otherwise libxl fails. */
|
|
if (x_disk->is_cdrom && !x_disk->pdev_path)
|
|
x_disk->format = LIBXL_DISK_FORMAT_EMPTY;
|