summaryrefslogtreecommitdiff
path: root/arch/x86/kvm/mmu/paging_tmpl.h
AgeCommit message (Expand)AuthorFilesLines
2023-03-22KVM: x86/mmu: Avoid indirect call for get_cr3Paolo Bonzini1-1/+1
2023-03-17KVM: x86/mmu: Skip calling mmu->sync_spte() when the spte is 0Lai Jiangshan1-1/+1
2023-03-17kvm: x86/mmu: Remove @no_dirty_log from FNAME(prefetch_gpte)Lai Jiangshan1-4/+3
2023-03-17KVM: x86/mmu: Remove FNAME(invlpg) and use FNAME(sync_spte) to update vTLB in...Lai Jiangshan1-57/+0
2023-03-17KVM: x86/mmu: Allow the roots to be invalid in FNAME(invlpg)Lai Jiangshan1-3/+1
2023-03-17KVM: x86/mmu: Reduce the update to the spte in FNAME(sync_spte)Lai Jiangshan1-0/+8
2023-03-17KVM: x86/mmu: Move the code out of FNAME(sync_page)'s loop body into mmu.cLai Jiangshan1-67/+47
2023-03-16KVM: x86/mmu: Move the check in FNAME(sync_page) as kvm_sync_page_check()Lai Jiangshan1-27/+0
2023-03-16KVM: x86/mmu: Use 64-bit address to invalidate to fix a subtle bugLai Jiangshan1-3/+4
2023-03-14KVM: x86/mmu: Remove FNAME(is_self_change_mapping)Lai Jiangshan1-44/+7
2023-03-14KVM: x86/mmu: Detect write #PF to shadow pages during FNAME(fetch) walkLai Jiangshan1-7/+5
2023-03-14KVM: x86/mmu: Use EMULTYPE flag to track write #PFs to shadow pagesSean Christopherson1-3/+1
2023-01-24KVM: x86/mmu: Fix wrong start gfn of tlb flushing with rangeHou Wenlong1-2/+1
2023-01-24KVM: x86/mmu: Move round_gfn_for_level() helper into mmu_internal.hHou Wenlong1-1/+1
2023-01-24kvm: x86/mmu: Don't clear write flooding for direct SPLai Jiangshan1-5/+3
2022-12-29KVM: x86/mmu: Handle no-slot faults in kvm_faultin_pfn()David Matlack1-5/+1
2022-12-29KVM: x86/mmu: Grab mmu_invalidate_seq in kvm_faultin_pfn()David Matlack1-5/+1
2022-11-09KVM: x86/mmu: Rename NX huge pages fields/functions for consistencySean Christopherson1-1/+1
2022-11-09KVM: x86/mmu: Tag disallowed NX huge pages even if they're not trackedSean Christopherson1-3/+3
2022-09-26KVM: x86/mmu: fix repeated words in commentsJilin Yuan1-1/+1
2022-08-19KVM: Rename mmu_notifier_* to mmu_invalidate_*Chao Peng1-2/+2
2022-07-14KVM: x86/mmu: Add optimized helper to retrieve an SPTE's indexSean Christopherson1-2/+2
2022-07-13KVM: x86/mmu: Replace UNMAPPED_GVA with INVALID_GPA for gva_to_gpa()Hou Wenlong1-3/+3
2022-06-24KVM: x86/mmu: pull call to drop_large_spte() into __link_shadow_page()Paolo Bonzini1-17/+14
2022-06-24KVM: x86/mmu: Cache the access bits of shadowed translationsDavid Matlack1-2/+7
2022-06-24KVM: x86/mmu: Derive shadow MMU page role from parentDavid Matlack1-4/+5
2022-06-20KVM: x86/mmu: Use common logic for computing the 32/64-bit base PA maskSean Christopherson1-3/+1
2022-06-20KVM: x86/mmu: Truncate paging32's PT_BASE_ADDR_MASK to 32 bitsSean Christopherson1-1/+1
2022-06-20KVM: x86/mmu: Use common macros to compute 32/64-bit paging masksPaolo Bonzini1-14/+11
2022-06-20KVM: x86/mmu: Use separate namespaces for guest PTEs and shadow PTEsSean Christopherson1-3/+3
2022-06-20KVM: x86/mmu: Bury 32-bit PSE paging helpers in paging_tmpl.hSean Christopherson1-1/+17
2022-06-15KVM: x86/mmu: Drop unused CMPXCHG macro from paging_tmpl.hSean Christopherson1-6/+0
2022-06-08KVM: x86/mmu: Comment FNAME(sync_page) to document TLB flushing logicSean Christopherson1-0/+9
2022-06-08KVM: x86/mmu: Drop RWX=0 SPTEs during ept_sync_page()Sean Christopherson1-1/+8
2022-05-12KVM: x86/mmu: Expand and clean up page fault statsSean Christopherson1-1/+0
2022-05-12KVM: x86/mmu: Add RET_PF_CONTINUE to eliminate bool+int* "returns"Sean Christopherson1-2/+4
2022-04-29KVM: X86/MMU: Fix shadowing 5-level NPT for 4-level NPT L1 guestLai Jiangshan1-0/+1
2022-04-29KVM: x86/mmu: replace root_level with cpu_role.base.levelPaolo Bonzini1-2/+2
2022-04-29KVM: x86/mmu: remove extended bits from mmu_role, rename fieldPaolo Bonzini1-2/+2
2022-04-29KVM: x86/mmu: remove ept_ad fieldPaolo Bonzini1-1/+1
2022-04-29KVM: x86/mmu: split cpu_role from mmu_rolePaolo Bonzini1-1/+1
2022-04-29KVM: x86/mmu: rephrase unclear commentPaolo Bonzini1-1/+1
2022-04-13KVM: x86: Use __try_cmpxchg_user() to update guest PTE A/D bitsSean Christopherson1-37/+1
2022-04-13KVM: x86/mmu: Derive EPT violation RWX bits from EPTE RWX bitsSean Christopherson1-1/+7
2022-04-13KVM: VMX: replace 0x180 with EPT_VIOLATION_* definitionSU Hang1-1/+2
2022-04-02KVM: x86/mmu: do compare-and-exchange of gPTE via the user addressPaolo Bonzini1-40/+34
2022-04-02KVM: X86: Change the type of access u32 to u64Lai Jiangshan1-4/+4
2022-02-25KVM: x86: use struct kvm_mmu_root_info for mmu->rootPaolo Bonzini1-1/+1
2022-02-18KVM: x86/mmu: Remove MMU auditingSean Christopherson1-2/+0
2021-12-08KVM: X86: Remove mmu->translate_gpaLai Jiangshan1-4/+3