aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/mmu.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2022-02-10 07:41:19 -0500
committerPaolo Bonzini <pbonzini@redhat.com>2022-04-29 12:49:58 -0400
commita972e29c1d6c957242a23b42f355b1fdf721cbd4 (patch)
treefff267720c2d2d254c39d8aeb3f4ce7d64b06941 /arch/x86/kvm/mmu.h
parentKVM: x86/mmu: pull CPU mode computation to kvm_init_mmu (diff)
downloadlinux-dev-a972e29c1d6c957242a23b42f355b1fdf721cbd4.tar.xz
linux-dev-a972e29c1d6c957242a23b42f355b1fdf721cbd4.zip
KVM: x86/mmu: replace shadow_root_level with root_role.level
root_role.level is always the same value as shadow_level: - it's kvm_mmu_get_tdp_level(vcpu) when going through init_kvm_tdp_mmu - it's the level argument when going through kvm_init_shadow_ept_mmu - it's assigned directly from new_role.base.level when going through shadow_mmu_init_context Remove the duplication and get the level directly from the role. Reviewed-by: Sean Christopherson <seanjc@google.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/mmu.h')
-rw-r--r--arch/x86/kvm/mmu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.h b/arch/x86/kvm/mmu.h
index a335e7f1f69e..c242e26cfa80 100644
--- a/arch/x86/kvm/mmu.h
+++ b/arch/x86/kvm/mmu.h
@@ -138,7 +138,7 @@ static inline void kvm_mmu_load_pgd(struct kvm_vcpu *vcpu)
return;
static_call(kvm_x86_load_mmu_pgd)(vcpu, root_hpa,
- vcpu->arch.mmu->shadow_root_level);
+ vcpu->arch.mmu->root_role.level);
}
struct kvm_page_fault {