qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] i386/kvm: fix build with CONFIG_HYPERV=n


From: Vitaly Kuznetsov
Subject: [Qemu-devel] [PATCH] i386/kvm: fix build with CONFIG_HYPERV=n
Date: Mon, 24 Jun 2019 14:49:11 +0200

When switching from boolean properties to bits to represent Hyper-V
enlightenments we forgot to update hyperv-stub.c for CONFIG_HYPERV=n
builds.

Reported-by: Alex Bennée <address@hidden>
Fixes: 2d384d7c8361 ("i386/kvm: convert hyperv enlightenments properties from 
bools to bits")
Signed-off-by: Vitaly Kuznetsov <address@hidden>
---
 target/i386/hyperv-stub.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/i386/hyperv-stub.c b/target/i386/hyperv-stub.c
index fe548cbae2..0028527e79 100644
--- a/target/i386/hyperv-stub.c
+++ b/target/i386/hyperv-stub.c
@@ -15,7 +15,7 @@ int kvm_hv_handle_exit(X86CPU *cpu, struct kvm_hyperv_exit 
*exit)
 {
     switch (exit->type) {
     case KVM_EXIT_HYPERV_SYNIC:
-        if (!cpu->hyperv_synic) {
+        if (!hyperv_feat_enabled(cpu, HYPERV_FEAT_SYNIC)) {
             return -1;
         }
 
-- 
2.20.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]