aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
AgeCommit message (Expand)AuthorFilesLines
2022-03-08KVM: x86/mmu: Check for !leaf=>leaf, not PFN change, in TDP MMU SP removalSean Christopherson1-2/+5
2022-03-08KVM: x86/mmu: do not allow readers to acquire references to invalid rootsPaolo Bonzini1-4/+5
2022-03-08KVM: x86/mmu: only perform eager page splitting on valid rootsPaolo Bonzini1-1/+1
2022-03-08KVM: x86/mmu: Require mmu_lock be held for write in unyielding root iterSean Christopherson1-6/+15
2022-03-08KVM: x86/mmu: Document that zapping invalidated roots doesn't need to flushSean Christopherson2-8/+17
2022-03-08KVM: x86/mmu: Formalize TDP MMU's (unintended?) deferred TLB flush logicSean Christopherson2-1/+17
2022-03-08KVM: x86/mmu: Fix wrong/misleading comments in TDP MMU fast zapSean Christopherson2-21/+33
2022-03-08KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMUSean Christopherson1-0/+3
2022-03-08KVM: use __vcalloc for very large allocationsPaolo Bonzini2-5/+6
2022-03-04Merge branch 'kvm-bugfixes' into HEADPaolo Bonzini7-39/+99
2022-03-02KVM: x86: pull kvm->srcu read-side to kvm_arch_vcpu_ioctl_runPaolo Bonzini1-12/+13
2022-03-02KVM: x86/mmu: Passing up the error state of mmu_alloc_shadow_roots()Like Xu1-1/+1
2022-03-01KVM: SVM: Disable preemption across AVIC load/put during APICv refreshSean Christopherson3-50/+59
2022-03-01KVM: SVM: Exit to userspace on ENOMEM/EFAULT GHCB errorsSean Christopherson1-15/+21
2022-03-01KVM: WARN if is_unsync_root() is called on a root without a shadow pageSean Christopherson1-0/+8
2022-03-01KVM: x86/mmu: Zap only obsolete roots if a root shadow page is zappedSean Christopherson3-9/+61
2022-03-01KVM: Drop kvm_reload_remote_mmus(), open code request in x86 usersSean Christopherson1-7/+7
2022-03-01KVM: x86: Invoke kvm_mmu_unload() directly on CR4.PCIDE changeSean Christopherson1-1/+1
2022-03-01KVM: x86/emulator: Move the unhandled outer privilege level logic of far return into __load_segment_descriptor()Hou Wenlong1-6/+8
2022-03-01KVM: x86/emulator: Fix wrong privilege check for code segment in __load_segment_descriptor()Hou Wenlong1-8/+23
2022-03-01KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor()Hou Wenlong1-5/+9
2022-03-01KVM: x86: Make kvm_lapic_set_reg() a "private" xAPIC helperSean Christopherson4-20/+20
2022-03-01KVM: x86: Treat x2APIC's ICR as a 64-bit register, not two 32-bit regsSean Christopherson1-23/+84
2022-03-01KVM: x86: Add helpers to handle 64-bit APIC MSR read/writesSean Christopherson1-30/+29
2022-03-01KVM: x86: Make kvm_lapic_reg_{read,write}() staticSean Christopherson2-8/+3
2022-03-01KVM: x86: WARN if KVM emulates an IPI without clearing the BUSY flagSean Christopherson2-6/+13
2022-03-01KVM: SVM: Don't rewrite guest ICR on AVIC IPI virtualization failureSean Christopherson2-11/+12
2022-03-01KVM: SVM: Use common kvm_apic_write_nodecode() for AVIC write trapsSean Christopherson1-9/+7
2022-03-01KVM: x86: Use "raw" APIC register read for handling APIC-write VM-ExitSean Christopherson1-3/+1
2022-03-01KVM: VMX: Handle APIC-write offset wrangling in VMX codeSean Christopherson2-5/+9
2022-03-01KVM: x86: Do not change ICR on write to APIC_SELF_IPIPaolo Bonzini1-4/+3
2022-03-01KVM: x86: Fix emulation in writing cr8Zhenzhong Duan1-4/+1
2022-03-01KVM: x86: flush TLB separately from MMU resetPaolo Bonzini1-22/+46
2022-02-25KVM: x86/mmu: clear MMIO cache when unloading the MMUPaolo Bonzini1-0/+1
2022-02-25KVM: x86/mmu: Always use current mmu's role when loading new PGDPaolo Bonzini1-25/+4
2022-02-25KVM: x86/mmu: load new PGD after the shadow MMU is initializedPaolo Bonzini3-26/+23
2022-02-25KVM: x86/mmu: look for a cached PGD when going from 32-bit to 64-bitPaolo Bonzini1-23/+59
2022-02-25KVM: x86/mmu: do not pass vcpu to root freeing functionsPaolo Bonzini3-14/+17
2022-02-25KVM: x86/mmu: do not consult levels when freeing rootsPaolo Bonzini1-4/+6
2022-02-25KVM: x86: use struct kvm_mmu_root_info for mmu->rootPaolo Bonzini8-47/+40
2022-02-25KVM: x86/mmu: avoid NULL-pointer dereference on page freeing bugsPaolo Bonzini1-0/+2
2022-02-25KVM: x86: do not deliver asynchronous page faults if CR0.PG=0Paolo Bonzini1-4/+18
2022-02-25KVM: x86: Reinitialize context if host userspace toggles EFER.LMEPaolo Bonzini2-2/+2
2022-02-25KVM: x86: Provide per VM capability for disabling PMU virtualizationDavid Dunn3-2/+20
2022-02-25KVM: VMX: Remove scratch 'cpu' variable that shadows an identical scratch varPeng Hao1-1/+0
2022-02-25kvm: vmx: Fix typos comment in __loaded_vmcs_clear()Peng Hao1-4/+4
2022-02-25KVM: nVMX: Make setup/unsetup under the same conditionsPeng Hao1-1/+1
2022-02-25Merge branch 'kvm-hv-xmm-hypercall-fixes' into HEADPaolo Bonzini1-36/+49
2022-02-25KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercallVitaly Kuznetsov1-18/+34
2022-02-25KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB flush hypercallsVitaly Kuznetsov1-1/+2