summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/vmx/vmcs.h
diff options
context:
space:
mode:
authorSean Christopherson <sean.j.christopherson@intel.com>2018-12-03 13:53:06 -0800
committerPaolo Bonzini <pbonzini@redhat.com>2018-12-14 14:00:06 +0100
commit75edce8a45486fe5fa5becdb43a7c36354b2a379 (patch)
treecf07c5d0a4e8b4eb9dccfbb4cc59f3e1bc3ab8bd /arch/x86/kvm/vmx/vmcs.h
parent8373d25d25d14fe644feae007c15a5a10cf8e888 (diff)
downloadlinux-75edce8a45486fe5fa5becdb43a7c36354b2a379.tar.bz2
KVM: VMX: Move eVMCS code to dedicated files
The header, evmcs.h, already exists and contains a fair amount of code, but there are a few pieces in vmx.c that can be moved verbatim. In addition, move an array definition to evmcs.c to prepare for multiple consumers of evmcs.h. Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx/vmcs.h')
-rw-r--r--arch/x86/kvm/vmx/vmcs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kvm/vmx/vmcs.h b/arch/x86/kvm/vmx/vmcs.h
index 3b8da04203e4..6def3ba88e3b 100644
--- a/arch/x86/kvm/vmx/vmcs.h
+++ b/arch/x86/kvm/vmx/vmcs.h
@@ -22,6 +22,8 @@ struct vmcs {
char data[0];
};
+DECLARE_PER_CPU(struct vmcs *, current_vmcs);
+
/*
* vmcs_host_state tracks registers that are loaded from the VMCS on VMEXIT
* and whose values change infrequently, but are not constant. I.e. this is