add_hyperv_enlightenments: do not add hv_evmcs for now at all

as Windows VMs on hosts with AMD CPUs do not start at all with
that...

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-06-25 14:32:05 +02:00
parent 391b1598b0
commit 71a1e5680b

View 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';
}
}
}