On Tue, Jul 6, 2021 at 5:05 PM Paolo Bonzini <pbonzini@xxxxxxxxxx> wrote:
It's a bit tricky, because HLE and RTM won't really behave well. An old
guest that sees RTM=1 might end up retrying and aborting transactions
too much. So I'm not sure that a QEMU "-cpu host" guest should have HLE
and RTM enabled.
Is the purpose of GET_SUPPORTED_CPUID to return what is supported by
KVM, or to return what "-cpu host" should enable by default? They are
conflicting requirements in this case.
Returning HLE=1,RTM=1 in GET_SUPPORTED_CPUID makes existing userspace
take bad decisions until it's updated.
Returning HLE=0,RTM=0 in GET_SUPPORTED_CPUID prevents existing
userspace from resuming existing VMs (despite being technically
possible).
The first option has an easy workaround that doesn't require a
software update (disabling HLE/RTM in the VM configuration). The
second option doesn't have a workaround. I'm inclined towards the
first option.