[Qemu-devel] [PULL 07/12] target/i386: fix feature check in hyperv-stub.c

2019-07-05 Thread Paolo Bonzini
From: Alex Bennée 

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 
Cc: Vitaly Kuznetsov 
Cc: Paolo Bonzini 
Cc: Roman Kagan 
Message-Id: <20190624123835.28869-1-alex.ben...@linaro.org>
Reviewed-by: Vitaly Kuznetsov 
Signed-off-by: Paolo Bonzini 
---
 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 fe548cb..0028527 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;
 }
 
-- 
1.8.3.1





[Qemu-devel] [PULL 07/12] target/i386: fix feature check in hyperv-stub.c

2019-07-05 Thread Paolo Bonzini
From: Alex Bennée 

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 
Cc: Vitaly Kuznetsov 
Cc: Paolo Bonzini 
Cc: Roman Kagan 
Message-Id: <20190624123835.28869-1-alex.ben...@linaro.org>
Reviewed-by: Vitaly Kuznetsov 
Signed-off-by: Paolo Bonzini 
---
 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 fe548cb..0028527 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;
 }
 
-- 
1.8.3.1