summaryrefslogtreecommitdiffstats
path: root/arch (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'kvm-x86-pat_vmx_msrs-6.12' of https://github.com/kvm-x86/linux int...Paolo Bonzini2024-09-1710-95/+132
|\
| * KVM: nVMX: Use macros and #defines in vmx_restore_vmx_misc()Xin Li2024-08-221-7/+20
| * KVM: VMX: Open code VMX preemption timer rate mask in its accessorXin Li2024-08-222-3/+2
| * KVM VMX: Move MSR_IA32_VMX_MISC bit defines to asm/vmx.hSean Christopherson2024-08-225-16/+16
| * KVM: nVMX: Add a helper to encode VMCS info in MSR_IA32_VMX_BASICSean Christopherson2024-08-222-7/+8
| * KVM: nVMX: Use macros and #defines in vmx_restore_vmx_basic()Xin Li2024-08-221-7/+18
| * KVM: VMX: Track CPU's MSR_IA32_VMX_BASIC as a single 64-bit valueXin Li2024-08-223-18/+21
| * KVM: VMX: Move MSR_IA32_VMX_BASIC bit defines to asm/vmx.hXin Li2024-08-222-8/+7
| * KVM: x86: Stuff vCPU's PAT with default value at RESET, not creationSean Christopherson2024-08-221-2/+2
| * x86/cpu: KVM: Move macro to encode PAT value to common headerSean Christopherson2024-08-223-11/+11
| * x86/cpu: KVM: Add common defines for architectural memory types (PAT, MTRRs, ...Sean Christopherson2024-08-226-26/+37
* | Merge tag 'kvm-x86-mmu-6.12' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini2024-09-177-383/+369
|\ \
| * | KVM: x86/mmu: Use KVM_PAGES_PER_HPAGE() instead of an open coded equivalentSean Christopherson2024-09-101-1/+1
| * | KVM: x86/mmu: Add KVM_RMAP_MANY to replace open coded '1' and '1ul' literalsSean Christopherson2024-09-101-15/+16
| * | KVM: x86/mmu: Fold mmu_spte_age() into kvm_rmap_age_gfn_range()Sean Christopherson2024-09-101-28/+22
| * | KVM: x86/mmu: Morph kvm_handle_gfn_range() into an aging specific helperSean Christopherson2024-09-101-46/+22
| * | KVM: x86/mmu: Honor NEED_RESCHED when zapping rmaps and blocking is allowedSean Christopherson2024-09-101-10/+6
| * | KVM: x86/mmu: Add a helper to walk and zap rmaps for a memslotSean Christopherson2024-09-101-3/+12
| * | KVM: x86/mmu: Plumb a @can_yield parameter into __walk_slot_rmaps()Sean Christopherson2024-09-101-4/+8
| * | KVM: x86/mmu: Move walk_slot_rmaps() up near for_each_slot_rmap_range()Sean Christopherson2024-09-101-53/+53
| * | KVM: x86/mmu: WARN on MMIO cache hit when emulating write-protected gfnSean Christopherson2024-09-101-10/+20
| * | KVM: x86/mmu: Detect if unprotect will do anything based on invalid_listSean Christopherson2024-09-101-4/+7
| * | KVM: x86/mmu: Subsume kvm_mmu_unprotect_page() into the and_retry() versionSean Christopherson2024-09-102-21/+13
| * | KVM: x86: Rename reexecute_instruction()=>kvm_unprotect_and_retry_on_failure()Sean Christopherson2024-09-101-5/+7
| * | KVM: x86: Update retry protection fields when forcing retry on emulation failureSean Christopherson2024-09-103-7/+17
| * | KVM: x86: Apply retry protection to "unprotect on failure" pathSean Christopherson2024-09-101-19/+1
| * | KVM: x86: Check EMULTYPE_WRITE_PF_TO_SP before unprotecting gfnSean Christopherson2024-09-101-9/+19
| * | KVM: x86: Remove manual pfn lookup when retrying #PF after failed emulationSean Christopherson2024-09-101-18/+0
| * | KVM: x86/mmu: Move event re-injection unprotect+retry into common pathSean Christopherson2024-09-101-21/+9
| * | KVM: x86/mmu: Always walk guest PTEs with WRITE access when unprotectingSean Christopherson2024-09-101-1/+1
| * | KVM: x86/mmu: Don't try to unprotect an INVALID_GPASean Christopherson2024-09-101-1/+6
| * | KVM: x86: Fold retry_instruction() into x86_emulate_instruction()Sean Christopherson2024-09-101-21/+9
| * | KVM: x86: Move EMULTYPE_ALLOW_RETRY_PF to x86_emulate_instruction()Sean Christopherson2024-09-101-8/+5
| * | KVM: x86/mmu: Try "unprotect for retry" iff there are indirect SPsSean Christopherson2024-09-101-0/+11
| * | KVM: x86/mmu: Apply retry protection to "fast nTDP unprotect" pathSean Christopherson2024-09-103-27/+40
| * | KVM: x86: Store gpa as gpa_t, not unsigned long, when unprotecting for retrySean Christopherson2024-09-101-1/+2
| * | KVM: x86: Get RIP from vCPU state when storing it to last_retry_eipSean Christopherson2024-09-101-1/+1
| * | KVM: x86: Retry to-be-emulated insn in "slow" unprotect path iff sp is zappedSean Christopherson2024-09-101-4/+4
| * | KVM: x86/mmu: Skip emulation on page fault iff 1+ SPs were unprotectedSean Christopherson2024-09-101-8/+29
| * | KVM: x86/mmu: Trigger unprotect logic only on write-protection page faultsSean Christopherson2024-09-105-37/+50
| * | KVM: x86/mmu: Replace PFERR_NESTED_GUEST_PAGE with a more descriptive helperSean Christopherson2024-09-102-5/+8
| * | KVM: x86/mmu: Reword a misleading comment about checking gpte_changed()Sean Christopherson2024-08-301-2/+8
| * | KVM: x86/mmu: Drop pointless "return" wrapper label in FNAME(fetch)Sean Christopherson2024-08-301-7/+4
| * | KVM: x86/mmu: Decrease indentation in logic to sync new indirect shadow pageSean Christopherson2024-08-301-21/+19
| * | KVM: x86/mmu: Clean up function comments for dirty logging APIsSean Christopherson2024-08-221-33/+15
| |/
* | Merge tag 'kvm-x86-misc-6.12' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini2024-09-1717-475/+600
|\ \
| * | KVM: x86: Remove some unused declarationsYue Haibing2024-09-103-5/+0
| * | KVM: x86: Forcibly leave nested if RSM to L2 hits shutdownSean Christopherson2024-09-103-11/+25
| * | KVM: x86: Add fastpath handling of HLT VM-ExitsSean Christopherson2024-08-304-3/+36
| * | KVM: x86: Reorganize code in x86.c to co-locate vCPU blocking/running helpersSean Christopherson2024-08-301-132/+132