1a980429d2
option leaks password via command line argument 58c68764-unattended-Read-the-passwords-from-a-file.patch 51d28f04-unattended-Dont-log-user-admin-passwords.patch - Upstream bug fix (bsc#1027942) 5312a961-virt-install-Revive-wait-0-as-alias-for-noautoconsole.patch - Update to virt-manager 2.2.0 (fate#326786) virt-manager-2.2.0.tar.bz2 * libvirt XML viewing and editing UI for new and existing domain, pools, volumes, networks * virt-install: libosinfo –unattended support (Fabiano Fidêncio, Cole Robinson) * Improve CPU model security defaults (Pavel Hrdina) * virt-install: new –install option. Ex: virt-install –install fedora29 * virt-install: new –install kernel=,initrd= * virt-install: –disk, –memory, –name defaults from libosinfo (Fabiano Fidêncio, Cole Robinson) * virt-install: add device suboption aliases which consistently match libvirt XML naming * virt-xml: new –start, –no-define options (Marc Hartmayer) * virt-install: Add driver_queues argument to –controller (Vasudeva Kamath) * RISC-V support (Andrea Bolognani) * Device default improvements for non-x86 KVM (Andrea Bolognani) * Redesigned ‘New Network’ wizard * libguestfs inspection improvements (Pino Toscano) * virt-install: Add support for xenbus controller (Jim Fehlig) * cli: Add –disk wwn=,rawio= (Athina Plaskasoviti) * cli: Add –memballoon autodeflate=,stats.period= (Athina Plaskasoviti) * cli: Add –iothreads (Athina Plaskasoviti) * cli: Add –numatune memory.placement (Athina Plaskasoviti) * cli: Add –launchSecurity option (Erik Skultety) * cli: Fill in –memorybacking options * cli: –smartcard: support database= and certificate[0-9]*= OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=476
37 lines
1.7 KiB
Diff
37 lines
1.7 KiB
Diff
References: bsc#1067018 - L3: KVM Guest creation failed - Property .cmt not found
|
|
|
|
Some hardware has the .cmt cpu feature but qemu doesn't support it. libvirt
|
|
includes it in the cpu capabilities read in by virt-manager. Using 'host-model'
|
|
was known to have issues in the past and so a copy method was set up to
|
|
manually copy cpu features one at a time (including the unsupported cmt flag).
|
|
This patch simply avoids the special copy feature when "Copy host CPU definition"
|
|
is set in the Preferences -> New VM -> CPU Default pop-up menu and falls
|
|
back to using 'host-model'.
|
|
|
|
It should be noted that selecting "Customize configuration before install"
|
|
and "CPUs" -> "Copy host CPU definition" also inserts 'host-model' so
|
|
this change mirrors what is already done there.
|
|
|
|
Index: virt-manager-2.2.0/virtinst/domain/cpu.py
|
|
===================================================================
|
|
--- virt-manager-2.2.0.orig/virtinst/domain/cpu.py
|
|
+++ virt-manager-2.2.0/virtinst/domain/cpu.py
|
|
@@ -89,12 +89,16 @@ class DomainCpu(XMLBuilder):
|
|
val = self.SPECIAL_MODE_HOST_MODEL
|
|
|
|
if (val == self.SPECIAL_MODE_HOST_MODEL or
|
|
- val == self.SPECIAL_MODE_HOST_PASSTHROUGH):
|
|
+ val == self.SPECIAL_MODE_HOST_PASSTHROUGH or
|
|
+ val == self.SPECIAL_MODE_HOST_COPY):
|
|
self.model = None
|
|
self.vendor = None
|
|
self.model_fallback = None
|
|
for f in self.features:
|
|
self.remove_child(f)
|
|
+ if val == self.SPECIAL_MODE_HOST_COPY:
|
|
+ val = self.SPECIAL_MODE_HOST_MODEL
|
|
+ self.match = "exact"
|
|
self.mode = val
|
|
elif val == self.SPECIAL_MODE_HOST_COPY:
|
|
self.copy_host_cpu(guest)
|