Message ID | 20190624124911.31795-1-vkuznets@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | i386/kvm: fix build with CONFIG_HYPERV=n | expand |
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; }
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 <alex.bennee@linaro.org> Fixes: 2d384d7c8361 ("i386/kvm: convert hyperv enlightenments properties from bools to bits") Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com> --- target/i386/hyperv-stub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)