summaryrefslogtreecommitdiff
path: root/arch/x86/kvm/x86.c
AgeCommit message (Expand)AuthorFilesLines
2022-01-14kvm: x86: Add emulation for IA32_XFDJing Liu1-0/+27
2022-01-07KVM: SVM: include CR3 in initial VMSA state for SEV-ES guestsMichael Roth1-0/+2
2022-01-07KVM: x86: Fix wall clock writes in Xen shared_info not to mark page dirtyDavid Woodhouse1-1/+1
2022-01-07KVM: x86/xen: Add KVM_IRQ_ROUTING_XEN_EVTCHN and event channel deliveryDavid Woodhouse1-1/+2
2022-01-07KVM: x86: Update vPMCs when retiring branch instructionsEric Hankland1-0/+2
2022-01-07KVM: x86: Update vPMCs when retiring instructionsEric Hankland1-0/+3
2022-01-07KVM: x86/mmu: Reconstruct shadow page root if the guest PDPTEs is changedLai Jiangshan1-0/+7
2022-01-07Revert "KVM: X86: Update mmu->pdptrs only when it is changed"Paolo Bonzini1-6/+3
2021-12-21Merge remote-tracking branch 'kvm/master' into HEADPaolo Bonzini1-13/+12
2021-12-20KVM: x86: Always set kvm_run->if_flagMarc Orr1-8/+1
2021-12-20KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_allWei Wang1-1/+1
2021-12-19KVM: x86: Drop guest CPUID check for host initiated writes to MSR_IA32_PERF_C...Vitaly Kuznetsov1-1/+1
2021-12-10KVM: x86: Don't WARN if userspace mucks with RCX during string I/O exitSean Christopherson1-2/+7
2021-12-10KVM: X86: Raise #GP when clearing CR0_PG in 64 bit modeLai Jiangshan1-1/+2
2021-12-09KVM: x86: add a tracepoint for APICv/AVIC interrupt deliveryMaxim Levitsky1-0/+1
2021-12-08KVM: x86: Exit to userspace if emulation prepared a completion callbackHou Wenlong1-0/+3
2021-12-08KVM: x86: Use different callback if msr access comes from the emulatorHou Wenlong1-36/+49
2021-12-08KVM: x86: Add an emulation type to handle completion of user exitsHou Wenlong1-3/+10
2021-12-08KVM: x86: Handle 32-bit wrap of EIP for EMULTYPE_SKIP with flat code segSean Christopherson1-1/+6
2021-12-08KVM: X86: Remove mmu parameter from load_pdptrs()Lai Jiangshan1-6/+6
2021-12-08KVM: X86: Remove mmu->translate_gpaLai Jiangshan1-2/+2
2021-12-08KVM: X86: Add parameter struct kvm_mmu *mmu into mmu->gva_to_gpa()Lai Jiangshan1-14/+25
2021-12-08KVM: X86: Update mmu->pdptrs only when it is changedLai Jiangshan1-3/+6
2021-12-08KVM: X86: Mark CR3 dirty when vcpu->arch.cr3 is changedLai Jiangshan1-2/+2
2021-12-08KVM: X86: Move CR0 pdptr_bits into header file as X86_CR0_PDPTR_BITSLai Jiangshan1-2/+1
2021-12-08KVM: VMX: Add and use X86_CR4_PDPTR_BITS when !enable_eptLai Jiangshan1-3/+1
2021-12-08KVM: X86: Ensure that dirty PDPTRs are loadedLai Jiangshan1-0/+1
2021-12-08KVM: x86: Invoke kvm_vcpu_block() directly for non-HALTED wait statesSean Christopherson1-1/+4
2021-12-08KVM: x86: Directly block (instead of "halting") UNINITIALIZED vCPUsSean Christopherson1-1/+1
2021-12-08KVM: Rename kvm_vcpu_block() => kvm_vcpu_halt()Sean Christopherson1-2/+9
2021-12-08KVM: x86: Tweak halt emulation helper names to free up kvm_vcpu_halt()Sean Christopherson1-6/+7
2021-12-08KVM: x86: Use nr_memslot_pages to avoid traversing the memslots arrayMaciej S. Szmigiero1-3/+7
2021-12-08KVM: x86: Don't call kvm_mmu_change_mmu_pages() if the count hasn't changedMaciej S. Szmigiero1-1/+2
2021-12-08KVM: x86: Don't assume old/new memslots are non-NULL at memslot commitSean Christopherson1-4/+6
2021-12-08KVM: Stop passing kvm_userspace_memory_region to arch memslot hooksSean Christopherson1-2/+0
2021-12-08KVM: x86: Use "new" memslot instead of userspace memory regionSean Christopherson1-4/+3
2021-12-08KVM: Let/force architectures to deal with arch specific memslot dataSean Christopherson1-4/+11
2021-12-08KVM: Use 'unsigned long' as kvm_for_each_vcpu()'s indexMarc Zyngier1-11/+12
2021-12-08KVM: Move wiping of the kvm->vcpus array to common codeMarc Zyngier1-8/+1
2021-12-02KVM: ensure APICv is considered inactive if there is no APICPaolo Bonzini1-4/+5
2021-11-30KVM: x86: check PIR even for vCPUs with disabled APICvPaolo Bonzini1-9/+9
2021-11-26KVM: x86: Forbid KVM_SET_CPUID{,2} after KVM_RUNVitaly Kuznetsov1-0/+19
2021-11-26KVM: nVMX: Abide to KVM_REQ_TLB_FLUSH_GUEST request on nested vmentry/vmexitSean Christopherson1-4/+24
2021-11-26KVM: SEV: expose KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM capabilityPaolo Bonzini1-0/+1
2021-11-26KVM: x86: ignore APICv if LAPIC is not enabledPaolo Bonzini1-1/+1
2021-11-18KVM: x86: Cap KVM_CAP_NR_VCPUS by KVM_CAP_MAX_VCPUSVitaly Kuznetsov1-1/+1
2021-11-18KVM: x86: Assume a 64-bit hypercall for guests with protected stateTom Lendacky1-1/+1
2021-11-18Merge branch 'kvm-5.16-fixes' into kvm-masterPaolo Bonzini1-5/+9
2021-11-18KVM: Fix steal time asm constraintsDavid Woodhouse1-3/+3
2021-11-16KVM: x86: Fix uninitialized eoi_exit_bitmap usage in vcpu_load_eoi_exitmap()黄乐1-2/+6