ff660c61ba
virt-manager-1.4.0.tar.bz2 virtman-dont-specify-vte-version.patch * virt-manager: spice GL console support (Marc-André Lureau, Cole Robinson) * Bump gtk and pygobject deps to 3.14 * virt-manager: add checkbox to forget keyring password (Pavel Hrdina) * cli: add --graphics gl= (Marc-André Lureau) * cli: add --video accel3d= (Marc-André Lureau) * cli: add --graphics listen=none (Marc-André Lureau) * cli: add --transient flag (Richard W.M. Jones) * cli: --features gic= support, and set a default for it (Pavel Hrdina) * cli: Expose --video heads, ram, vram, vgamem * cli: add --graphics listen=socket * cli: add device address.type/address.bus/... * cli: add --disk seclabelX.model (and .label, .relabel) * cli: add -cpu cellX.id (and .cpus, and .memory) * cli: add --network rom_bar= and rom_file= * cli: add --disk backing_format= * Many bug fixes and improvements - Dropped the following virt-manager-1.3.2.tar.bz2 89c3638b-fix-detection-that-libvirtd-is-stopped.patch 21fd079e-replace-unar-with-other-archivers.patch eae7dc06-fix-URL-installs-when-content-length-header-missing.patch 1c221fd0-suse-ovmf-paths.patch f11eb00b-virt-convert-decompress-gz-files-before-converting.patch 8ba48f52-add-virtio-device-model-and-accel3d-attribute.patch f454798b-virtman-fix-making-screenshot.patch 5ecc2b44-dont-clear-recommended-machine-if-none-is-selected.patch de9cd87f-return-recommended-machine-for-XEN.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=319
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
Reference: fate#315125:
|
|
Set NOCOW flag to newly created volume by default, to solve performance
|
|
issue on btrfs.
|
|
|
|
Signed-off-by: Chunyan Liu <cyliu@suse.com>
|
|
|
|
Index: virt-manager-1.4.0/virtinst/storage.py
|
|
===================================================================
|
|
--- virt-manager-1.4.0.orig/virtinst/storage.py
|
|
+++ virt-manager-1.4.0/virtinst/storage.py
|
|
@@ -707,6 +707,12 @@ class StorageVolume(_StorageObject):
|
|
return self.TYPE_FILE
|
|
file_type = property(_get_vol_type)
|
|
|
|
+ def _nocow_default_cb(self):
|
|
+ return self.conn.check_support(
|
|
+ self.conn.SUPPORT_CONN_NOCOW)
|
|
+ nocow = XMLProperty("./target/nocow",
|
|
+ is_bool=True, default_cb=_nocow_default_cb)
|
|
+
|
|
|
|
##################
|
|
# XML properties #
|
|
Index: virt-manager-1.4.0/virtinst/support.py
|
|
===================================================================
|
|
--- virt-manager-1.4.0.orig/virtinst/support.py
|
|
+++ virt-manager-1.4.0/virtinst/support.py
|
|
@@ -316,6 +316,8 @@ SUPPORT_CONN_SPICE_GL = _make(version="1
|
|
SUPPORT_CONN_VIDEO_VIRTIO_ACCEL3D = _make(version="1.3.0",
|
|
hv_version={"qemu": "2.7.0", "test": 0})
|
|
SUPPORT_CONN_GRAPHICS_LISTEN_NONE = _make(version="2.0.0")
|
|
+SUPPORT_CONN_NOCOW = _make(
|
|
+ version="1.2.18", hv_version={"qemu": "2.2.0", "test": 0})
|
|
|
|
|
|
# This is for disk <driver name=qemu>. xen supports this, but it's
|