2022-09-02 00:07:34 +02:00
|
|
|
From 9b37c98cf768eb02afb384522a72ec36850876bf Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jim Fehlig <jfehlig@suse.com>
|
|
|
|
Date: Tue, 5 Jul 2022 11:27:47 -0600
|
|
|
|
Subject: libxl: Allow setting disk cache mode
|
|
|
|
|
2016-06-24 19:07:56 +02:00
|
|
|
https://bugzilla.novell.com/show_bug.cgi?id=879425
|
2022-09-02 00:07:34 +02:00
|
|
|
|
|
|
|
Signed-off-by: Jim Fehlig <jfehlig@suse.com>
|
2016-06-24 19:07:56 +02:00
|
|
|
---
|
2022-09-02 00:07:34 +02:00
|
|
|
src/libxl/libxl_conf.c | 23 +++++++++++++++++++++++
|
|
|
|
1 file changed, 23 insertions(+)
|
2016-06-24 19:07:56 +02:00
|
|
|
|
Accepting request 1068569 from home:jfehlig:branches:Virtualization
- Update to libvirt 9.1.0
- Many incremental improvements and bug fixes, see
https://libvirt.org/news.html#v9-1-0-2023-03-01
- spec: Remove obsolete Groups tag
- spec: Integrate upstream spec file changes that split the
libvirt-daemon package, allowing more modular, customized
installations
- spec: New subpackages libvirt-daemon-common, libvirt-daemon-lock,
libvirt-daemon-log, libvirt-daemon-proxy, and
libvirt-daemon-plugin-lockd
- spec: Renamed subpackage libvirt-lock-sanlock to
libvirt-daemon-plugin-sanlock
- Dropped patches:
ef482951-apparmor-Allow-umount-dev.patch,
d6a8b9ee-qemu-Fix-managed-no-when-creating-ethdev.patch,
c3f16cea-qemu-cleanup-label-on-umount-failure.patch,
697c16e3-qemu_process-better-debug-message.patch,
5155ab4b-qemu_namespace-nested-mounts-when-umount.patch
OBS-URL: https://build.opensuse.org/request/show/1068569
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=968
2023-03-02 01:49:27 +01:00
|
|
|
Index: libvirt-9.1.0/src/libxl/libxl_conf.c
|
2016-06-24 19:07:56 +02:00
|
|
|
===================================================================
|
Accepting request 1068569 from home:jfehlig:branches:Virtualization
- Update to libvirt 9.1.0
- Many incremental improvements and bug fixes, see
https://libvirt.org/news.html#v9-1-0-2023-03-01
- spec: Remove obsolete Groups tag
- spec: Integrate upstream spec file changes that split the
libvirt-daemon package, allowing more modular, customized
installations
- spec: New subpackages libvirt-daemon-common, libvirt-daemon-lock,
libvirt-daemon-log, libvirt-daemon-proxy, and
libvirt-daemon-plugin-lockd
- spec: Renamed subpackage libvirt-lock-sanlock to
libvirt-daemon-plugin-sanlock
- Dropped patches:
ef482951-apparmor-Allow-umount-dev.patch,
d6a8b9ee-qemu-Fix-managed-no-when-creating-ethdev.patch,
c3f16cea-qemu-cleanup-label-on-umount-failure.patch,
697c16e3-qemu_process-better-debug-message.patch,
5155ab4b-qemu_namespace-nested-mounts-when-umount.patch
OBS-URL: https://build.opensuse.org/request/show/1068569
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=968
2023-03-02 01:49:27 +01:00
|
|
|
--- libvirt-9.1.0.orig/src/libxl/libxl_conf.c
|
|
|
|
+++ libvirt-9.1.0/src/libxl/libxl_conf.c
|
2023-01-18 23:49:05 +01:00
|
|
|
@@ -949,6 +949,28 @@ libxlDiskSetDiscard(libxl_device_disk *x
|
2021-09-01 18:17:27 +02:00
|
|
|
}
|
2016-06-24 19:07:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+static void
|
|
|
|
+libxlDiskSetCacheMode(libxl_device_disk *x_disk, int cachemode)
|
|
|
|
+{
|
|
|
|
+ switch (cachemode) {
|
|
|
|
+#if defined(LIBXL_HAVE_LIBXL_DEVICE_DISK_DISABLE_FLUSH_MAGIC)
|
|
|
|
+ case VIR_DOMAIN_DISK_CACHE_UNSAFE:
|
|
|
|
+ if (x_disk->readwrite)
|
|
|
|
+ x_disk->readwrite = (x_disk->readwrite & LIBXL_HAVE_LIBXL_DEVICE_DISK_DISABLE_FLUSH_MASK) | LIBXL_HAVE_LIBXL_DEVICE_DISK_DISABLE_FLUSH_MAGIC;
|
|
|
|
+ break;
|
|
|
|
+#endif
|
|
|
|
+ case VIR_DOMAIN_DISK_CACHE_DIRECTSYNC:
|
|
|
|
+ x_disk->direct_io_safe = true;
|
|
|
|
+ break;
|
|
|
|
+ case VIR_DOMAIN_DISK_CACHE_DEFAULT:
|
|
|
|
+ case VIR_DOMAIN_DISK_CACHE_DISABLE:
|
|
|
|
+ case VIR_DOMAIN_DISK_CACHE_WRITETHRU:
|
|
|
|
+ case VIR_DOMAIN_DISK_CACHE_WRITEBACK:
|
|
|
|
+ default:
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
2016-07-01 18:39:05 +02:00
|
|
|
static char *
|
2021-05-18 00:14:02 +02:00
|
|
|
libxlMakeNetworkDiskSrcStr(virStorageSource *src,
|
2016-07-01 18:39:05 +02:00
|
|
|
const char *username,
|
Accepting request 1068569 from home:jfehlig:branches:Virtualization
- Update to libvirt 9.1.0
- Many incremental improvements and bug fixes, see
https://libvirt.org/news.html#v9-1-0-2023-03-01
- spec: Remove obsolete Groups tag
- spec: Integrate upstream spec file changes that split the
libvirt-daemon package, allowing more modular, customized
installations
- spec: New subpackages libvirt-daemon-common, libvirt-daemon-lock,
libvirt-daemon-log, libvirt-daemon-proxy, and
libvirt-daemon-plugin-lockd
- spec: Renamed subpackage libvirt-lock-sanlock to
libvirt-daemon-plugin-sanlock
- Dropped patches:
ef482951-apparmor-Allow-umount-dev.patch,
d6a8b9ee-qemu-Fix-managed-no-when-creating-ethdev.patch,
c3f16cea-qemu-cleanup-label-on-umount-failure.patch,
697c16e3-qemu_process-better-debug-message.patch,
5155ab4b-qemu_namespace-nested-mounts-when-umount.patch
OBS-URL: https://build.opensuse.org/request/show/1068569
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=968
2023-03-02 01:49:27 +01:00
|
|
|
@@ -1183,6 +1205,7 @@ libxlMakeDisk(virDomainDiskDef *l_disk,
|
2021-09-01 18:17:27 +02:00
|
|
|
x_disk->readwrite = !l_disk->src->readonly;
|
2016-06-24 19:07:56 +02:00
|
|
|
x_disk->is_cdrom = l_disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM ? 1 : 0;
|
2021-09-01 18:17:27 +02:00
|
|
|
libxlDiskSetDiscard(x_disk, l_disk->discard);
|
2016-06-24 19:07:56 +02:00
|
|
|
+ libxlDiskSetCacheMode(x_disk, l_disk->cachemode);
|
|
|
|
/* 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;
|