diff mbox series

[v2,8/9] i386/kvm: hv-evmcs requires hv-vapic

Message ID 20190517141924.19024-9-vkuznets@redhat.com
State New
Headers show
Series i386/kvm/hyper-v: refactor andimplement 'hv-stimer-direct' and 'hv-passthrough' enlightenments | expand

Commit Message

Vitaly Kuznetsov May 17, 2019, 2:19 p.m. UTC
Enlightened VMCS is enabled by writing to a field in VP assist page and
these require virtual APIC.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
---
 target/i386/kvm.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/target/i386/kvm.c b/target/i386/kvm.c
index 7fc97b749e..7ae2f63f72 100644
--- a/target/i386/kvm.c
+++ b/target/i386/kvm.c
@@ -791,7 +791,8 @@  static struct {
         .flags = {
             {.fw = FEAT_HV_RECOMM_EAX,
              .bits = HV_ENLIGHTENED_VMCS_RECOMMENDED}
-        }
+        },
+        .dependencies = BIT(HYPERV_FEAT_VAPIC)
     },
     [HYPERV_FEAT_IPI] = {
         .desc = "paravirtualized IPI (hv-ipi)",