6de106691e
virt-manager-3.0.0.tar.bz2 * virt-install –cloud-init support (Athina Plaskasoviti, Cole Robinson) * The virt-convert tool has been removed. Please use virt-v2v instead * A handful of UI XML configuration options have been removed. The XML editor can be used instead. For a larger discussion see this thread: https://www.redhat.com/archives/virt-tools-list/ 2019-June/msg00117.html * The ‘New VM’ UI now has a ‘Manual Install’ option which creates a VM without any required install media * In the ‘New VM’ UI, the network/pxe install option has been removed. If you need network boot, choose ‘Manual Install’ and set the boot device after initial VM creation * ‘Clone VM’ UI has been reworked and simplified * ‘Migrate VM’ UI now has an XML editor for the destination VM * Global and per-vm option to disable graphical console autoconnect. This makes it easier to use virt-manager alongside another client like virt-viewer * virt-manager: set guest time after VM restore (Michael Weiser) * virt-manager: option to delete storage when removing disk device (Lily Nie) * virt-manager: show warnings if snapshot operation is unsafe (Michael Weiser) * Unattended install improvements (Fabiano Fidêncio) * cli: new –xml XPATH=VAL option for making direct XML changes * virt-install: new –reinstall=DOMAIN option * virt-install: new –autoconsole text|graphical|none option * virt-install: new –os-variant detect=on,require=on suboptions OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=509
35 lines
1.4 KiB
Diff
35 lines
1.4 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-3.0.0/virtinst/storage.py
|
|
===================================================================
|
|
--- virt-manager-3.0.0.orig/virtinst/storage.py
|
|
+++ virt-manager-3.0.0/virtinst/storage.py
|
|
@@ -569,6 +569,11 @@ class StorageVolume(_StorageObject):
|
|
return self._pool_xml.get_disk_type()
|
|
file_type = property(_get_vol_type)
|
|
|
|
+ def _nocow_default_cb(self):
|
|
+ return self.conn.check_support(
|
|
+ self.conn.conn_nocow)
|
|
+ nocow = XMLProperty("./target/nocow", is_bool=True)
|
|
+
|
|
|
|
##################
|
|
# XML properties #
|
|
Index: virt-manager-3.0.0/virtinst/support.py
|
|
===================================================================
|
|
--- virt-manager-3.0.0.orig/virtinst/support.py
|
|
+++ virt-manager-3.0.0/virtinst/support.py
|
|
@@ -269,6 +269,7 @@ class SupportCache:
|
|
conn_vnc_none_auth = _make(hv_version={"qemu": "2.9.0"})
|
|
conn_device_boot_order = _make(hv_version={"qemu": 0, "test": 0})
|
|
conn_riscv_virt_pci_default = _make(version="5.3.0", hv_version={"qemu": "4.0.0"})
|
|
+ conn_nocow = _make(version="1.2.18", hv_version={"qemu": "2.2.0", "test": 0})
|
|
|
|
# We choose qemu 2.11.0 as the first version to target for q35 default.
|
|
# That's not really based on anything except reasonably modern at the
|