Skip to content
Snippets Groups Projects
Unverified Commit ce5737aa authored by Zexi Li's avatar Zexi Li Committed by GitHub
Browse files

Merge pull request #13037 from swordqiu/automated-cherry-pick-of-#13036-upstream-release-3.8

Automated cherry pick of #13036: fix: enable kvm_pv_eoi by default
parents 0616dbd1 166e3624
No related branches found
No related tags found
No related merge requests found
......@@ -514,8 +514,11 @@ function nic_mtu() {
cpuType = "Penryn,vendor=GenuineIntel"
} else if options.HostOptions.HostCpuPassthrough {
cpuType = "host"
// https://unix.stackexchange.com/questions/216925/nmi-received-for-unknown-reason-20-do-you-have-a-strange-power-saving-mode-ena
cpuType += ",+kvm_pv_eoi"
} else {
cpuType = "qemu64"
cpuType += ",+kvm_pv_eoi"
if sysutils.IsProcessorIntel() {
cpuType += ",+vmx"
cpuType += ",+ssse3,+sse4.1,+sse4.2,-x2apic,+aes,+avx"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment