diff options
author | Xiao Guangrong <guangrong.xiao@linux.intel.com> | 2015-06-15 10:55:22 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-19 17:16:26 +0200 |
commit | ff53604b40b439cbb235f89bda99839ca81d3b9d (patch) | |
tree | b96b8481746d9bcab3f2565c0a0a1d6e02148b7c /arch/x86/kvm/vmx.c | |
parent | KVM: x86: fix CR0.CD virtualization (diff) | |
download | linux-ff53604b40b439cbb235f89bda99839ca81d3b9d.tar.xz linux-ff53604b40b439cbb235f89bda99839ca81d3b9d.zip |
KVM: x86: move MTRR related code to a separate file
MTRR code locates in x86.c and mmu.c so that move them to a separate file to
make the organization more clearer and it will be the place where we fully
implement vMTRR
Signed-off-by: Xiao Guangrong <guangrong.xiao@linux.intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r-- | arch/x86/kvm/vmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 2764381a1b02..44eafdb440c9 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -8659,7 +8659,7 @@ static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio) goto exit; } - cache = kvm_get_guest_memory_type(vcpu, gfn); + cache = kvm_mtrr_get_guest_memory_type(vcpu, gfn); exit: return (cache << VMX_EPT_MT_EPTE_SHIFT) | ipat; |