summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/Makefile
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/Makefile
parent8373d25d25d14fe644feae007c15a5a10cf8e888 (diff)
downloadlinux-stable-75edce8a45486fe5fa5becdb43a7c36354b2a379.tar.gz
linux-stable-75edce8a45486fe5fa5becdb43a7c36354b2a379.tar.bz2
linux-stable-75edce8a45486fe5fa5becdb43a7c36354b2a379.zip
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/Makefile')
-rw-r--r--arch/x86/kvm/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/Makefile b/arch/x86/kvm/Makefile
index 79d97d837cf3..7f3f50aaa203 100644
--- a/arch/x86/kvm/Makefile
+++ b/arch/x86/kvm/Makefile
@@ -16,7 +16,7 @@ kvm-y += x86.o mmu.o emulate.o i8259.o irq.o lapic.o \
i8254.o ioapic.o irq_comm.o cpuid.o pmu.o mtrr.o \
hyperv.o page_track.o debugfs.o
-kvm-intel-y += vmx/vmx.o vmx/pmu_intel.o vmx/vmcs12.o
+kvm-intel-y += vmx/vmx.o vmx/pmu_intel.o vmx/vmcs12.o vmx/evmcs.o
kvm-amd-y += svm.o pmu_amd.o
obj-$(CONFIG_KVM) += kvm.o