]> git.proxmox.com Git - mirror_qemu.git/commitdiff
target/i386: fix feature check in hyperv-stub.c
authorAlex Bennée <alex.bennee@linaro.org>
Mon, 24 Jun 2019 12:33:58 +0000 (13:33 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Thu, 4 Jul 2019 18:23:07 +0000 (19:23 +0100)
Commit 2d384d7c8 broken the build when built with:

  configure --without-default-devices --disable-user

The reason was the conversion of cpu->hyperv_synic to
cpu->hyperv_synic_kvm_only although the rest of the patch introduces a
feature checking mechanism. So I've fixed the KVM_EXIT_HYPERV_SYNIC in
hyperv-stub to do the same feature check as in the real hyperv.c

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Roman Kagan <rkagan@virtuozzo.com>
Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
target/i386/hyperv-stub.c

index fe548cbae2f1b51ffdcb881d13b41bf741ae61a8..0028527e79774a4e99d54602bf87d8ad7819eb0c 100644 (file)
@@ -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;
         }