summaryrefslogtreecommitdiff
path: root/arch/x86/kvm/mmu/mmu.c
AgeCommit message (Expand)AuthorFilesLines
2023-09-13KVM: x86/mmu: Add "never" option to allow sticky disabling of nx_huge_pagesSean Christopherson1-5/+36
2023-09-13KVM: x86/mmu: Use kstrtobool() instead of strtobool()Christophe JAILLET1-1/+2
2023-08-30KVM: x86/mmu: Fix an sign-extension bug with mmu_seq that hangs vCPUsSean Christopherson1-1/+2
2023-05-17KVM: x86/mmu: Refresh CR0.WP prior to checking for emulated permission faultsSean Christopherson1-0/+15
2023-05-17KVM: x86/mmu: Avoid indirect call for get_cr3Paolo Bonzini1-11/+20
2022-11-24KVM: x86/mmu: Fix race condition in direct_page_faultKazuki Takiguchi1-6/+7
2022-11-11KVM: x86/mmu: Block all page faults during kvm_zap_gfn_range()Sean Christopherson1-2/+2
2022-10-09Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-4/+18
2022-09-26KVM: Add extra information in kvm_page_fault trace pointWonhyuk Yang1-1/+1
2022-09-23KVM: x86/mmu: add missing update to max_mmu_rmap_sizeMiaohe Lin1-0/+2
2022-08-30KVM: x86/mmu: count KVM mmu usage in secondary pagetable stats.Yosry Ahmed1-2/+14
2022-08-24KVM: x86/mmu: fix memoryleak in kvm_mmu_vendor_module_init()Miaohe Lin1-1/+3
2022-08-19kvm: x86: mmu: Always flush TLBs when enabling dirty loggingJunaid Shahid1-38/+7
2022-08-19kvm: x86: mmu: Drop the need_remote_flush() functionJunaid Shahid1-14/+1
2022-08-19KVM: Rename mmu_notifier_* to mmu_invalidate_*Chao Peng1-7/+7
2022-08-10KVM: x86/mmu: rename trace function name for asynchronous page faultMingwei Zhang1-1/+1
2022-08-10KVM: x86/mmu: Fully re-evaluate MMIO caching when SPTE masks changeSean Christopherson1-0/+4
2022-08-10KVM: x86: Tag kvm_mmu_x86_module_init() with __initSean Christopherson1-1/+1
2022-08-06Merge tag 'mm-stable-2022-08-03' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-1/+1
2022-08-01KVM: x86/mmu: remove unused variablePaolo Bonzini1-2/+0
2022-07-28KVM: x86/mmu: Treat NX as a valid SPTE bit for NPTSean Christopherson1-1/+1
2022-07-28KVM: x86/mmu: Document the "rules" for using host_pfn_mapping_level()Sean Christopherson1-7/+35
2022-07-28KVM: x86/mmu: Don't require refcounted "struct page" to create huge SPTEsSean Christopherson1-18/+5
2022-07-28KVM: x86/mmu: Restrict mapping level based on guest MTRR iff they're usedSean Christopherson1-7/+19
2022-07-28KVM: x86/mmu: Remove underscores from __pte_list_remove()Sean Christopherson1-4/+4
2022-07-28KVM: x86/mmu: Rename pte_list_{destroy,remove}() to show they zap SPTEsSean Christopherson1-8/+9
2022-07-28KVM: x86/mmu: Rename rmap zap helpers to eliminate "unmap" wrapperSean Christopherson1-8/+8
2022-07-28KVM: x86/mmu: Rename __kvm_zap_rmaps() to align with other nomenclatureSean Christopherson1-2/+2
2022-07-28KVM: x86/mmu: Drop the "p is for pointer" from rmap helpersSean Christopherson1-22/+21
2022-07-28KVM: x86/mmu: Directly "destroy" PTE list when recycling rmapsSean Christopherson1-1/+1
2022-07-28KVM: x86/mmu: Return a u64 (the old SPTE) from mmu_spte_clear_track_bits()Sean Christopherson1-1/+1
2022-07-14KVM: x86/mmu: Fix typo and tweak comment for split_desc_cache capacitySean Christopherson1-7/+8
2022-07-14KVM: x86/mmu: Expand quadrant comment for PG_LEVEL_4K shadow pagesSean Christopherson1-4/+11
2022-07-14KVM: x86/mmu: Add optimized helper to retrieve an SPTE's indexSean Christopherson1-12/+10
2022-07-04mm: shrinkers: provide shrinkers with namesRoman Gushchin1-1/+1
2022-06-25KVM: x86/mmu: Buffer nested MMU split_desc_cache only by default capacitySean Christopherson1-7/+15
2022-06-25KVM: x86/mmu: Use "unsigned int", not "u32", for SPTEs' @access infoSean Christopherson1-4/+6
2022-06-24KVM: x86/mmu: Avoid unnecessary flush on eager page splitPaolo Bonzini1-12/+20
2022-06-24KVM: x86/mmu: Extend Eager Page Splitting to nested MMUsDavid Matlack1-7/+252
2022-06-24KVM: x86/mmu: pull call to drop_large_spte() into __link_shadow_page()Paolo Bonzini1-22/+21
2022-06-24KVM: x86/mmu: Zap collapsible SPTEs in shadow MMU at all possible levelsDavid Matlack1-7/+13
2022-06-24KVM: x86/mmu: Cache the access bits of shadowed translationsDavid Matlack1-24/+61
2022-06-24KVM: x86/mmu: Update page stats in __rmap_add()David Matlack1-1/+2
2022-06-24KVM: x86/mmu: Decouple rmap_add() and link_shadow_page() from kvm_vcpuDavid Matlack1-18/+29
2022-06-24KVM: x86/mmu: Pass const memslot to rmap_add()David Matlack1-1/+1
2022-06-24KVM: x86/mmu: Allow NULL @vcpu in kvm_mmu_find_shadow_page()David Matlack1-0/+10
2022-06-24KVM: x86/mmu: Pass kvm pointer separately from vcpu to kvm_mmu_find_shadow_pa...David Matlack1-13/+15
2022-06-24KVM: x86/mmu: Replace vcpu with kvm in kvm_mmu_alloc_shadow_page()David Matlack1-6/+6
2022-06-24KVM: x86/mmu: Pass memory caches to allocate SPs separatelyDavid Matlack1-7/+29
2022-06-24KVM: x86/mmu: Move guest PT write-protection to account_shadowed()David Matlack1-4/+4