diff options
author | Vitaly Kuznetsov <vkuznets@redhat.com> | 2018-12-10 18:21:55 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-12-14 17:59:54 +0100 |
commit | e2e871ab2f02dc9ca5f06065234475393dcec38b (patch) | |
tree | 991cd58f1454c2200eb91eed84a4580c962db112 /arch/x86/include/asm/kvm_host.h | |
parent | x86/hyper-v: Drop HV_X64_CONFIGURE_PROFILER definition (diff) | |
download | linux-e2e871ab2f02dc9ca5f06065234475393dcec38b.tar.xz linux-e2e871ab2f02dc9ca5f06065234475393dcec38b.zip |
x86/kvm/hyper-v: Introduce nested_get_evmcs_version() helper
The upcoming KVM_GET_SUPPORTED_HV_CPUID ioctl will need to return
Enlightened VMCS version in HYPERV_CPUID_NESTED_FEATURES.EAX when
it was enabled.
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/kvm_host.h')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index fbda5a917c5b..f5c2ce4f01e8 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -1186,6 +1186,7 @@ struct kvm_x86_ops { int (*nested_enable_evmcs)(struct kvm_vcpu *vcpu, uint16_t *vmcs_version); + uint16_t (*nested_get_evmcs_version)(struct kvm_vcpu *vcpu); }; struct kvm_arch_async_pf { |