diff options
author | Sean Christopherson <sean.j.christopherson@intel.com> | 2020-02-19 00:29:49 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-03-16 17:57:52 +0100 |
commit | 2f728d66e8a7d89d7cb141bf0acb30c61ae7ded5 (patch) | |
tree | fb352a189dd7eaee9ed153899090f9a321461d3c /arch/x86/kvm/x86.h | |
parent | KVM: x86: Dynamically allocate per-vCPU emulation context (diff) | |
download | linux-2f728d66e8a7d89d7cb141bf0acb30c61ae7ded5.tar.xz linux-2f728d66e8a7d89d7cb141bf0acb30c61ae7ded5.zip |
KVM: x86: Move kvm_emulate.h into KVM's private directory
Now that the emulation context is dynamically allocated and not embedded
in struct kvm_vcpu, move its header, kvm_emulate.h, out of the public
asm directory and into KVM's private x86 directory.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/x86.h')
-rw-r--r-- | arch/x86/kvm/x86.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kvm/x86.h b/arch/x86/kvm/x86.h index 8409842a25d9..f3c6e55eb5d9 100644 --- a/arch/x86/kvm/x86.h +++ b/arch/x86/kvm/x86.h @@ -5,6 +5,7 @@ #include <linux/kvm_host.h> #include <asm/pvclock.h> #include "kvm_cache_regs.h" +#include "kvm_emulate.h" #define KVM_DEFAULT_PLE_GAP 128 #define KVM_VMX_DEFAULT_PLE_WINDOW 4096 |