2016-02-23 22:12:48 +00:00
|
|
|
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
|
|
|
|
|
Accepting request 500763 from home:jfehlig:branches:Virtualization
- Update to libvirt 3.4.0
- Many incremental improvements and bug fixes, see
http://libvirt.org/news.html
- Dropped patches:
aeda1b8c-qemu-no-error-shutdown.patch,
8023b21a-conf-ioapic.patch, 6b5c6314-qemu-irqchip.patch,
2020e2c6-conf-intremap.patch, 04028a9d-qemu-intremap.patch,
d12781b4-conf-iommu-cache-mode-attr.patch,
a5691448-qemu-iommu-cache-mode.patch,
3a276c65-conf-iommu-def-stability-check.patch,
935d927a-conf-iommu-ABI-stability-check.patch,
4cd3f241-fix-NULL-disk-source.patch,
975ea20f-loopback-macro.patch,
dbb85e0c-libxl-graphics-listen-addr.patch,
libxl-def-usbctrl.patch, revert-2841e675-mtu.patch
- FATE#321335, bsc#1031056, bsc#1037774, bsc#1040207, bsc#1040213
OBS-URL: https://build.opensuse.org/request/show/500763
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=606
2017-06-02 18:08:28 +00:00
|
|
|
Index: libvirt-3.4.0/src/libxl/libxl_conf.c
|
2016-02-23 22:12:48 +00:00
|
|
|
===================================================================
|
Accepting request 500763 from home:jfehlig:branches:Virtualization
- Update to libvirt 3.4.0
- Many incremental improvements and bug fixes, see
http://libvirt.org/news.html
- Dropped patches:
aeda1b8c-qemu-no-error-shutdown.patch,
8023b21a-conf-ioapic.patch, 6b5c6314-qemu-irqchip.patch,
2020e2c6-conf-intremap.patch, 04028a9d-qemu-intremap.patch,
d12781b4-conf-iommu-cache-mode-attr.patch,
a5691448-qemu-iommu-cache-mode.patch,
3a276c65-conf-iommu-def-stability-check.patch,
935d927a-conf-iommu-ABI-stability-check.patch,
4cd3f241-fix-NULL-disk-source.patch,
975ea20f-loopback-macro.patch,
dbb85e0c-libxl-graphics-listen-addr.patch,
libxl-def-usbctrl.patch, revert-2841e675-mtu.patch
- FATE#321335, bsc#1031056, bsc#1037774, bsc#1040207, bsc#1040213
OBS-URL: https://build.opensuse.org/request/show/500763
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=606
2017-06-02 18:08:28 +00:00
|
|
|
--- libvirt-3.4.0.orig/src/libxl/libxl_conf.c
|
|
|
|
+++ libvirt-3.4.0/src/libxl/libxl_conf.c
|
2017-04-28 16:14:51 +00:00
|
|
|
@@ -645,6 +645,25 @@ libxlDiskSetDiscard(libxl_device_disk *x
|
2016-07-01 16:39:05 +00:00
|
|
|
#endif
|
2016-02-23 22:12:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+static int
|
|
|
|
+libxlDiskSetScript(libxl_device_disk *x_disk, const char *disk_spec)
|
|
|
|
+{
|
2016-03-02 20:40:27 +00:00
|
|
|
+ if (disk_spec == NULL)
|
|
|
|
+ return 0;
|
|
|
|
+
|
2016-02-23 22:12:48 +00:00
|
|
|
+ if (STRPREFIX(disk_spec, "dmmd:")) {
|
|
|
|
+ if (VIR_STRDUP(x_disk->script, "block-dmmd") < 0)
|
|
|
|
+ return -1;
|
|
|
|
+ } else if (STRPREFIX(disk_spec, "drbd:")) {
|
|
|
|
+ if (VIR_STRDUP(x_disk->script, "block-drbd") < 0)
|
|
|
|
+ return -1;
|
|
|
|
+ } else if (STRPREFIX(disk_spec, "npiv:")) {
|
|
|
|
+ if (VIR_STRDUP(x_disk->script, "block-npiv") < 0)
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
2016-07-01 16:39:05 +00:00
|
|
|
static void
|
|
|
|
libxlDiskSetCacheMode(libxl_device_disk *x_disk, int cachemode)
|
|
|
|
{
|
2017-04-28 16:14:51 +00:00
|
|
|
@@ -789,6 +808,7 @@ libxlMakeNetworkDiskSrc(virStorageSource
|
2016-02-23 22:12:48 +00:00
|
|
|
int
|
|
|
|
libxlMakeDisk(virDomainDiskDefPtr l_disk, libxl_device_disk *x_disk)
|
|
|
|
{
|
|
|
|
+ const char *src = virDomainDiskGetSource(l_disk);
|
2016-05-25 14:57:57 +00:00
|
|
|
const char *driver = virDomainDiskGetDriver(l_disk);
|
|
|
|
int format = virDomainDiskGetFormat(l_disk);
|
2016-03-01 17:58:15 +00:00
|
|
|
int actual_type = virStorageSourceGetActualType(l_disk->src);
|
2017-04-28 16:14:51 +00:00
|
|
|
@@ -804,7 +824,7 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
2016-03-01 17:58:15 +00:00
|
|
|
if (libxlMakeNetworkDiskSrc(l_disk->src, &x_disk->pdev_path) < 0)
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
- if (VIR_STRDUP(x_disk->pdev_path, virDomainDiskGetSource(l_disk)) < 0)
|
|
|
|
+ if (VIR_STRDUP(x_disk->pdev_path, src) < 0)
|
2016-02-23 22:12:48 +00:00
|
|
|
return -1;
|
2016-03-01 17:58:15 +00:00
|
|
|
}
|
2016-02-23 22:12:48 +00:00
|
|
|
|
2017-04-28 16:14:51 +00:00
|
|
|
@@ -917,6 +937,9 @@ libxlMakeDisk(virDomainDiskDefPtr l_disk
|
2016-02-23 22:12:48 +00:00
|
|
|
if (libxlDiskSetDiscard(x_disk, l_disk->discard) < 0)
|
|
|
|
return -1;
|
2016-06-24 17:07:56 +00:00
|
|
|
libxlDiskSetCacheMode(x_disk, l_disk->cachemode);
|
2016-02-23 22:12:48 +00:00
|
|
|
+ if (libxlDiskSetScript(x_disk, src) < 0)
|
|
|
|
+ return -1;
|
|
|
|
+
|
|
|
|
/* 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;
|