diff options
author | Justin Terry (VM) | 2018-01-22 22:07:49 +0100 |
---|---|---|
committer | Paolo Bonzini | 2018-02-07 14:09:26 +0100 |
commit | 19306806ae30b7fb5fe61a9130c6995402acad00 (patch) | |
tree | 3ed9d6941e20b66649f28a2d955e1e92bca79101 /target/i386/helper.c | |
parent | Introduce the WHPX impl (diff) | |
download | qemu-19306806ae30b7fb5fe61a9130c6995402acad00.tar.gz qemu-19306806ae30b7fb5fe61a9130c6995402acad00.tar.xz qemu-19306806ae30b7fb5fe61a9130c6995402acad00.zip |
Add the WHPX acceleration enlightenments
Implements the WHPX accelerator cpu enlightenments to actually use the whpx-all
accelerator on Windows platforms.
Signed-off-by: Justin Terry (VM) <juterry@microsoft.com>
Message-Id: <1516655269-1785-5-git-send-email-juterry@microsoft.com>
[Register/unregister VCPU thread with RCU. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/helper.c')
-rw-r--r-- | target/i386/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/helper.c b/target/i386/helper.c index f63eb3d3f4..9fba146b7f 100644 --- a/target/i386/helper.c +++ b/target/i386/helper.c @@ -986,7 +986,7 @@ void cpu_report_tpr_access(CPUX86State *env, TPRAccess access) X86CPU *cpu = x86_env_get_cpu(env); CPUState *cs = CPU(cpu); - if (kvm_enabled()) { + if (kvm_enabled() || whpx_enabled()) { env->tpr_access_type = access; cpu_interrupt(cs, CPU_INTERRUPT_TPR); |