summaryrefslogtreecommitdiffstats
path: root/arch (follow)
Commit message (Expand)AuthorAgeFilesLines
* KVM: MMU: change mmu->page_fault() arguments to kvm_page_faultPaolo Bonzini2021-10-014-24/+24
* KVM: MMU: Introduce struct kvm_page_faultPaolo Bonzini2021-10-011-3/+31
* KVM: MMU: pass unadulterated gpa to direct_page_faultPaolo Bonzini2021-10-011-1/+1
* KVM: x86: Fix potential race in KVM_GET_CLOCKOliver Upton2021-10-011-13/+23
* KVM: x86: extract KVM_GET_CLOCK/KVM_SET_CLOCK to separate functionsPaolo Bonzini2021-10-011-47/+52
* kvm: x86: abstract locking around pvclock_update_vm_gtod_copyPaolo Bonzini2021-10-012-34/+29
* KVM: X86: Move PTE present check from loop body to __shadow_walk_next()Lai Jiangshan2021-10-012-12/+3
* KVM: x86: nSVM: implement nested TSC scalingMaxim Levitsky2021-10-015-6/+63
* KVM: x86: SVM: add module param to control TSC scalingMaxim Levitsky2021-10-011-6/+18
* KVM: x86: SVM: don't set VMLOAD/VMSAVE intercepts on vCPU resetPaolo Bonzini2021-10-011-27/+34
* KVM: x86: SVM: add module param to control LBR virtualizationMaxim Levitsky2021-09-301-1/+12
* KVM: x86: nSVM: don't copy pause related settingsMaxim Levitsky2021-09-301-8/+0
* kvm: irqfd: avoid update unmodified entries of the routingLongpeng(Mike)2021-09-301-0/+9
* KVM: X86: Don't check unsync if the original spte is writibleLai Jiangshan2021-09-301-2/+2
* KVM: X86: Don't unsync pagetables when speculativeLai Jiangshan2021-09-303-3/+8
* KVM: X86: Remove FNAME(update_pte)Lai Jiangshan2021-09-301-9/+1
* KVM: X86: Zap the invalid list after remote tlb flushingLai Jiangshan2021-09-301-1/+1
* KVM: X86: Change kvm_sync_page() to return true when remote flush is neededLai Jiangshan2021-09-302-19/+23
* KVM: X86: Remove kvm_mmu_flush_or_zap()Lai Jiangshan2021-09-301-20/+6
* KVM: X86: Don't flush current tlb on shadow page modificationLai Jiangshan2021-09-302-6/+0
* KVM: x86/mmu: Complete prefetch for trailing SPTEs for direct, legacy MMUSean Christopherson2021-09-301-1/+3
* KVM: x86: Manually retrieve CPUID.0x1 when getting FMS for RESET/INITSean Christopherson2021-09-301-7/+5
* KVM: x86: WARN on non-zero CRs at RESET to detect improper initalizationSean Christopherson2021-09-301-0/+10
* KVM: SVM: Move RESET emulation to svm_vcpu_reset()Sean Christopherson2021-09-303-16/+21
* KVM: VMX: Move RESET emulation to vmx_vcpu_reset()Sean Christopherson2021-09-301-31/+32
* KVM: VMX: Drop explicit zeroing of MSR guest values at vCPU creationSean Christopherson2021-09-301-5/+1
* KVM: x86: Fold fx_init() into kvm_arch_vcpu_create()Sean Christopherson2021-09-301-12/+4
* KVM: x86: Remove defunct setting of XCR0 for guest during vCPU createSean Christopherson2021-09-301-6/+1
* KVM: x86: Remove defunct setting of CR0.ET for guests during vCPU createSean Christopherson2021-09-301-2/+0
* KVM: x86: Do not mark all registers as avail/dirty during RESET/INITSean Christopherson2021-09-302-2/+3
* KVM: x86: Simplify retrieving the page offset when loading PDTPRsSean Christopherson2021-09-301-2/+2
* KVM: x86: Subsume nested GPA read helper into load_pdptrs()Sean Christopherson2021-09-302-41/+18
* kvm: rename KVM_MAX_VCPU_ID to KVM_MAX_VCPU_IDSJuergen Gross2021-09-309-11/+11
* Revert "x86/kvm: fix vcpu-id indexed array sizes"Juergen Gross2021-09-302-3/+3
* KVM: Make kvm_make_vcpus_request_mask() use pre-allocated cpu_kick_maskVitaly Kuznetsov2021-09-303-13/+2
* KVM: Drop 'except' parameter from kvm_make_vcpus_request_mask()Vitaly Kuznetsov2021-09-302-2/+2
* KVM: x86: hyper-v: Avoid calling kvm_make_vcpus_request_mask() with vcpu_mask...Vitaly Kuznetsov2021-09-301-6/+9
* KVM: nVMX: Reset vmxon_ptr upon VMXOFF emulation.Vitaly Kuznetsov2021-09-302-0/+2
* KVM: nVMX: Use INVALID_GPA for pointers used in nVMX.Yu Zhang2021-09-302-32/+32
* KVM: x86: Swap order of CPUID entry "index" vs. "significant flag" checksSean Christopherson2021-09-301-2/+2
* x86/kvmclock: Move this_cpu_pvti into kvmclock.hZelin Deng2021-09-302-11/+16
* KVM: VMX: Fix a TSX_CTRL_CPUID_CLEAR field mask issueZhenzhong Duan2021-09-271-1/+1
* Merge tag 'kvmarm-fixes-5.15-1' of git://git.kernel.org/pub/scm/linux/kernel/...Paolo Bonzini2021-09-243-5/+9
|\
| * KVM: arm64: Fix PMU probe orderingMarc Zyngier2021-09-202-4/+8
| * KVM: arm64: nvhe: Fix missing FORCE for hyp-reloc.S build ruleZenghui Yu2021-09-201-1/+1
* | KVM: X86: Synchronize the shadow pagetable before link itLai Jiangshan2021-09-232-9/+31
* | KVM: X86: Fix missed remote tlb flush in rmap_write_protect()Lai Jiangshan2021-09-231-21/+2
* | KVM: x86: nSVM: don't copy virt_ext from vmcb12Maxim Levitsky2021-09-231-1/+0
* | KVM: x86: nSVM: test eax for 4K alignment for GP errata workaroundMaxim Levitsky2021-09-231-0/+4
* | KVM: x86: nSVM: restore int_vector in svm_clear_vintrMaxim Levitsky2021-09-231-0/+2