]> git.proxmox.com Git - qemu-server.git/commitdiff
add_hyperv_enlightenments: do not add hv_evmcs for now at all
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 25 Jun 2019 12:32:05 +0000 (14:32 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 25 Jun 2019 12:32:06 +0000 (14:32 +0200)
as Windows VMs on hosts with AMD CPUs do not start at all with
that...

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/QemuServer.pm

index 8339e298dfd67a28dbe555051406605084517508..bf71210ccd724cff7bb728804d3a92ad52bb53ab 100644 (file)
@@ -7178,7 +7178,8 @@ sub add_hyperv_enlightenments {
        if (qemu_machine_feature_enabled ($machine_type, $kvmver, 3, 1)) {
            push @$cpuFlags , 'hv_tlbflush';
            push @$cpuFlags , 'hv_ipi';
-           push @$cpuFlags , 'hv_evmcs';
+           # FIXME: AMD does not supports this currently, only add with special flag??
+           #push @$cpuFlags , 'hv_evmcs';
        }
     }
 }