summaryrefslogtreecommitdiff
path: root/arch/x86/kvm/mmu/mmu.c
AgeCommit message (Expand)AuthorFilesLines
2023-07-01Merge tag 'kvm-x86-vmx-6.5' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini1-0/+4
2023-07-01Merge tag 'kvm-x86-mmu-6.5' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini1-5/+44
2023-06-13KVM: x86/mmu: Add "never" option to allow sticky disabling of nx_huge_pagesSean Christopherson1-5/+36
2023-06-07KVM: x86/mmu: Trigger APIC-access page reload iff vendor code caresSean Christopherson1-1/+2
2023-06-07KVM: x86: Use standard mmu_notifier invalidate hooks for APIC access pageSean Christopherson1-0/+3
2023-06-03KVM: x86/mmu: Grab memslot for correct address space in NX recovery workerSean Christopherson1-1/+4
2023-05-26KVM: x86/mmu: Assert on @mmu in the __kvm_mmu_invalidate_addr()Like Xu1-0/+8
2023-04-26Merge tag 'kvm-x86-pmu-6.4' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini1-1/+1
2023-04-26Merge tag 'kvm-x86-mmu-6.4' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini1-207/+295
2023-04-11KVM: x86/mmu: Refresh CR0.WP prior to checking for emulated permission faultsSean Christopherson1-0/+15
2023-04-11KVM: x86/mmu: Move filling of Hyper-V's TLB range struct into Hyper-V codeSean Christopherson1-6/+2
2023-04-11KVM: x86: Rename Hyper-V remote TLB hooks to match established schemeSean Christopherson1-6/+6
2023-04-07KVM: x86: Add a helper to query whether or not a vCPU has ever runSean Christopherson1-1/+1
2023-03-22KVM: x86/mmu: Avoid indirect call for get_cr3Paolo Bonzini1-11/+20
2023-03-18KVM: x86/mmu: Clean up mmu.c functions that put return type on separate lineSean Christopherson1-30/+27
2023-03-18KVM: x86/mmu: Replace comment with an actual lockdep assertion on mmu_lockSean Christopherson1-1/+2
2023-03-18KVM: x86/mmu: Rename slot rmap walkers to add clarity and clean up codeSean Christopherson1-33/+33
2023-03-18KVM: x86/mmu: Use gfn_t in kvm_flush_remote_tlbs_range()David Matlack1-2/+3
2023-03-18KVM: x86/mmu: Rename kvm_flush_remote_tlbs_with_address()David Matlack1-9/+5
2023-03-18KVM: x86/mmu: Collapse kvm_flush_remote_tlbs_with_{range,address}() togetherDavid Matlack1-13/+6
2023-03-17KVM: x86/mmu: Track tail count in pte_list_desc to optimize guest fork()Lai Jiangshan1-44/+65
2023-03-17KVM: x86/mmu: Skip calling mmu->sync_spte() when the spte is 0Lai Jiangshan1-2/+10
2023-03-17KVM: x86/mmu: Remove FNAME(invlpg) and use FNAME(sync_spte) to update vTLB in...Lai Jiangshan1-17/+33
2023-03-17KVM: x86/mmu: Allow the roots to be invalid in FNAME(invlpg)Lai Jiangshan1-2/+1
2023-03-17KVM: x86/mmu: Use kvm_mmu_invalidate_addr() in nested_ept_invalidate_addr()Lai Jiangshan1-0/+1
2023-03-17KVM: x86/mmu: Use kvm_mmu_invalidate_addr() in kvm_mmu_invpcid_gva()Lai Jiangshan1-14/+7
2023-03-17kvm: x86/mmu: Use KVM_MMU_ROOT_XXX for kvm_mmu_invalidate_addr()Lai Jiangshan1-19/+19
2023-03-17KVM: x86/mmu: Sanity check input to kvm_mmu_free_roots()Sean Christopherson1-0/+2
2023-03-17KVM: x86/mmu: Move the code out of FNAME(sync_page)'s loop body into mmu.cLai Jiangshan1-7/+27
2023-03-16KVM: x86/mmu: Set mmu->sync_page as NULL for direct pagingLai Jiangshan1-8/+2
2023-03-16KVM: x86/mmu: Check mmu->sync_page pointer in kvm_sync_page_check()Lai Jiangshan1-1/+1
2023-03-16KVM: x86/mmu: Move the check in FNAME(sync_page) as kvm_sync_page_check()Lai Jiangshan1-1/+42
2023-03-16KVM: x86/mmu: Use 64-bit address to invalidate to fix a subtle bugLai Jiangshan1-8/+8
2023-03-14KVM: x86/mmu: Use EMULTYPE flag to track write #PFs to shadow pagesSean Christopherson1-2/+3
2023-02-16KVM: x86/mmu: Make tdp_mmu_allowed staticDavid Matlack1-1/+1
2023-01-24KVM: x86/mmu: Use kstrtobool() instead of strtobool()Christophe JAILLET1-1/+2
2023-01-24KVM: x86/mmu: Cleanup range-based flushing for given pageHou Wenlong1-3/+2
2023-01-24KVM: x86/mmu: Fix wrong gfn range of tlb flushing in validate_direct_spte()Hou Wenlong1-1/+1
2023-01-24KVM: x86/mmu: Fix wrong start gfn of tlb flushing with rangeHou Wenlong1-6/+14
2023-01-24KVM: x86/mmu: Fix wrong gfn range of tlb flushing in kvm_set_pte_rmapp()Hou Wenlong1-1/+1
2023-01-24KVM: x86/mmu: Move round_gfn_for_level() helper into mmu_internal.hHou Wenlong1-2/+3
2023-01-24KVM: x86/mmu: fix an incorrect comment in kvm_mmu_new_pgd()Wei Liu1-3/+5
2022-12-29KVM: x86: Unify pr_fmt to use module name for all KVM modulesSean Christopherson1-3/+3
2022-12-29Merge branch 'kvm-late-6.1' into HEADPaolo Bonzini1-98/+173
2022-12-29KVM: x86/mmu: Pivot on "TDP MMU enabled" when handling direct page faultsSean Christopherson1-1/+1
2022-12-29KVM: x86/mmu: Pivot on "TDP MMU enabled" to check if active MMU is TDP MMUSean Christopherson1-3/+8
2022-12-29KVM: x86/mmu: Replace open coded usage of tdp_mmu_page with is_tdp_mmu_page()Sean Christopherson1-1/+1
2022-12-29KVM: x86/mmu: Rename __direct_map() to direct_map()David Matlack1-7/+7
2022-12-29KVM: x86/mmu: Stop needlessly making MMU pages available for TDP MMU faultsDavid Matlack1-4/+0
2022-12-29KVM: x86/mmu: Split out TDP MMU page fault handlingDavid Matlack1-14/+48