summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/x86.c
diff options
context:
space:
mode:
authorPaolo Bonzini2018-10-08 21:28:09 +0200
committerPaolo Bonzini2018-10-17 00:30:04 +0200
commite173299101affc677db085b2894a43be4a17a94b (patch)
tree5c6cdf4c5293c49547606ecdcc66f21f9deba604 /arch/x86/kvm/x86.c
parentx86/kvm/mmu: introduce guest_mmu (diff)
downloadkernel-qcow2-linux-e173299101affc677db085b2894a43be4a17a94b.tar.gz
kernel-qcow2-linux-e173299101affc677db085b2894a43be4a17a94b.tar.xz
kernel-qcow2-linux-e173299101affc677db085b2894a43be4a17a94b.zip
x86/kvm/mmu: get rid of redundant kvm_mmu_setup()
Just inline the contents into the sole caller, kvm_init_mmu is now public. Suggested-by: Vitaly Kuznetsov <vkuznets@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Sean Christopherson <sean.j.christopherson@intel.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r--arch/x86/kvm/x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index a87e879373fe..2750270b7a39 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -8484,7 +8484,7 @@ int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
kvm_vcpu_mtrr_init(vcpu);
vcpu_load(vcpu);
kvm_vcpu_reset(vcpu, false);
- kvm_mmu_setup(vcpu);
+ kvm_init_mmu(vcpu, false);
vcpu_put(vcpu);
return 0;
}