a18ef09a88
virtinst-add-default-rng-device.patch - Fix GUI failure to display addition of a second disk Dropped virtman-device-flags.patch - bnc#885380 - virt-install: by default generates raw format against various virtual disk formats virtinst-supported-disk-formats.patch virtman-supported-disk-formats.patch - Dropped virtinst-qed.patch, virtman-qed.patch - bnc#869026 - Build0198: Unable to complete install: 'XML error: No PCI buses available' virtman-add-s390x-arch-support.patch - Upstream bug fixes 53ac1f8d-createnet-validate-last-page-before-creating-network.patch 53ac1f8d-fix-show_err-typo.patch 53b39a13-dont-create-disk-images-world-readable-executable.patch 53b409bc-add-keep-alive-method-and-connection-check.patch 53b409bd-console-prevent-access-to-deleted-objects.patch 53b728c6-report-error-during-connection-bring-up.patch 53b728c6-connection-handle-unsupported-KeepAlive.patch 53bb1995-network-refresh-XML-definition-on-state-update.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=188
30 lines
1016 B
Diff
30 lines
1016 B
Diff
Index: virt-manager-1.0.1/virtinst/guest.py
|
|
===================================================================
|
|
--- virt-manager-1.0.1.orig/virtinst/guest.py
|
|
+++ virt-manager-1.0.1/virtinst/guest.py
|
|
@@ -346,6 +346,12 @@ class Guest(XMLBuilder):
|
|
self.on_reboot = action
|
|
self.on_crash = action
|
|
|
|
+ # At install time only set the target disk to 'unsafe' for
|
|
+ # better performance
|
|
+ if install:
|
|
+ target_disk = self.get_devices("disk")[0]
|
|
+ saved_cache = target_disk.driver_cache
|
|
+ target_disk.driver_cache = "unsafe"
|
|
self._set_defaults()
|
|
|
|
self.bootloader = None
|
|
@@ -365,7 +371,10 @@ class Guest(XMLBuilder):
|
|
self.bootloader = "/usr/bin/pygrub"
|
|
self.os.clear()
|
|
|
|
- return self.get_xml_config()
|
|
+ xml_config = self.get_xml_config()
|
|
+ if install:
|
|
+ target_disk.driver_cache = saved_cache
|
|
+ return xml_config
|
|
|
|
def get_continue_inst(self):
|
|
"""
|