From ddbbc23d3447ceb1503bf549a000e0cace5cc723 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 22 Sep 2022 09:16:41 +0100 Subject: [PATCH] Replace discrete Hyper-V Enlightenments with hv_passthrough https://www.qemu.org/docs/master/system/i386/hyperv.html#supplementary-features --- quickemu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickemu b/quickemu index 2758d99..8a72223 100755 --- a/quickemu +++ b/quickemu @@ -568,7 +568,7 @@ function vm_boot() { fi ;; windows) - CPU="-cpu host,kvm=on,+hypervisor,+invtsc,l3-cache=on,migratable=no,hv_frequencies,kvm_pv_unhalt,hv_reenlightenment,hv_relaxed,hv_spinlocks=8191,hv_stimer,hv_synic,hv_time,hv_vapic,hv_vendor_id=1234567890ab,hv_vpindex" + CPU="-cpu host,kvm=on,+hypervisor,+invtsc,l3-cache=on,migratable=no,hv_passthrough" if [ "${HOST_CPU_VENDOR}" == "AuthenticAMD" ]; then CPU="${CPU},topoext" fi