summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
Commit message (Expand)AuthorAgeFilesLines
...
* | | | KVM: x86: Unexport kvm_vcpu_reload_apic_access_page()Liran Alon2019-11-201-1/+0
* | | | KVM: nVMX: add CR4_LA57 bit to nested CR4_FIXED1Chenyi Qiang2019-11-201-0/+1
* | | | KVM: nVMX: Use semi-colon instead of comma for exit-handlers initializationLiran Alon2019-11-201-13/+13
* | | | KVM: x86: Zero the IOAPIC scan request dest vCPUs bitmapNitesh Narayan Lal2019-11-201-0/+1
* | | | KVM: x86: deliver KVM IOAPIC scan request to target vCPUsNitesh Narayan Lal2019-11-154-2/+92
* | | | KVM: nVMX: Add support for capturing highest observable L2 TSCAaron Lewis2019-11-153-7/+101
* | | | kvm: vmx: Rename function find_msr() to vmx_find_msr_index()Aaron Lewis2019-11-151-5/+5
* | | | kvm: vmx: Rename NR_AUTOLOAD_MSRS to NR_LOADSTORE_MSRSAaron Lewis2019-11-152-4/+4
* | | | kvm: nested: Introduce read_and_check_msr_entry()Aaron Lewis2019-11-151-13/+22
* | | | KVM: nVMX: mark functions in the header as "static inline"Paolo Bonzini2019-11-151-3/+3
* | | | KVM: nVMX: Expose load IA32_PERF_GLOBAL_CTRL VM-{Entry,Exit} controlOliver Upton2019-11-153-0/+25
* | | | KVM: nVMX: Load GUEST_IA32_PERF_GLOBAL_CTRL MSR on VM-EntryOliver Upton2019-11-151-0/+5
* | | | KVM: nVMX: Use kvm_set_msr to load IA32_PERF_GLOBAL_CTRL on VM-ExitOliver Upton2019-11-151-2/+12
* | | | KVM: nVMX: Check HOST_IA32_PERF_GLOBAL_CTRL on VM-EntryOliver Upton2019-11-151-0/+5
* | | | KVM: nVMX: Check GUEST_IA32_PERF_GLOBAL_CTRL on VM-EntryOliver Upton2019-11-151-0/+6
* | | | KVM: VMX: Add helper to check reserved bits in IA32_PERF_GLOBAL_CTRLOliver Upton2019-11-152-1/+7
* | | | KVM: x86: Optimization: Requst TLB flush in fast_cr3_switch() instead of do i...Liran Alon2019-11-151-1/+1
* | | | KVM: x86/vPMU: Add lazy mechanism to release perf_event per vPMCLike Xu2019-11-155-0/+70
* | | | KVM: x86/vPMU: Reuse perf_event to avoid unnecessary pmc_reprogram_counterLike Xu2019-11-154-4/+56
* | | | KVM: x86/vPMU: Introduce a new kvm_pmu_ops->msr_idx_to_pmc callbackLike Xu2019-11-154-5/+27
* | | | KVM: x86/vPMU: Rename pmu_ops callbacks from msr_idx to rdpmc_ecxLike Xu2019-11-155-17/+18
* | | | KVM: nVMX: Update vmcs01 TPR_THRESHOLD if L2 changed L1 TPRLiran Alon2019-11-153-1/+10
* | | | KVM: VMX: Refactor update_cr8_intercept()Liran Alon2019-11-151-6/+3
* | | | KVM: SVM: Remove check if APICv enabled in SVM update_cr8_intercept() handlerLiran Alon2019-11-151-2/+1
* | | | KVM: APIC: add helper func to remove duplicate code in kvm_pv_send_ipiMiaohe Lin2019-11-151-36/+29
* | | | KVM: X86: avoid unused setup_syscalls_segments call when SYSCALL check failedMiaohe Lin2019-11-151-4/+2
* | | | KVM: VMX: Consume pending LAPIC INIT event when exit on INIT_SIGNALLiran Alon2019-11-151-0/+1
* | | | KVM: x86: Prevent set vCPU into INIT/SIPI_RECEIVED state when INIT are latchedLiran Alon2019-11-153-3/+12
* | | | KVM: x86: Evaluate latched_init in KVM_SET_VCPU_EVENTS when vCPU not in SMMLiran Alon2019-11-151-6/+7
* | | | KVM: retpolines: x86: eliminate retpoline from svm.c exit handlersAndrea Arcangeli2019-11-151-0/+12
* | | | KVM: retpolines: x86: eliminate retpoline from vmx.c exit handlersAndrea Arcangeli2019-11-151-2/+16
* | | | KVM: x86: optimize more exit handlers in vmx.cAndrea Arcangeli2019-11-151-25/+5
* | | | KVM: x86: get rid of odd out jump label in pdptrs_changedMiaohe Lin2019-11-111-5/+2
* | | | KVM: x86: switch KVMCLOCK base to monotonic raw clockMarcelo Tosatti2019-11-021-22/+37
* | | | kvm: svm: Update svm_xsaves_supportedAaron Lewis2019-10-221-1/+1
* | | | kvm: x86: Move IA32_XSS to kvm_{get,set}_msr_commonAaron Lewis2019-10-222-18/+20
* | | | KVM: x86: Move IA32_XSS-swapping on VM-entry/VM-exit to common x86 codeAaron Lewis2019-10-224-62/+34
* | | | KVM: VMX: Use wrmsr for switching between guest and host IA32_XSS on IntelAaron Lewis2019-10-221-7/+18
* | | | KVM: SVM: Use wrmsr for switching between guest and host IA32_XSS on AMDAaron Lewis2019-10-221-0/+23
* | | | KVM: x86: Remove unneeded kvm_vcpu variable, guest_xcr0_loadedAaron Lewis2019-10-221-11/+5
* | | | KVM: VMX: Fix conditions for guest IA32_XSS supportAaron Lewis2019-10-221-13/+11
* | | | KVM: x86: Introduce vcpu->arch.xsaves_enabledAaron Lewis2019-10-222-0/+8
* | | | KVM: VMX: Rename {vmx,nested_vmx}_vcpu_setup()Xiaoyao Li2019-10-223-6/+7
* | | | KVM: VMX: Initialize vmx->guest_msrs[] right after allocationXiaoyao Li2019-10-221-18/+16
* | | | KVM: VMX: Remove vmx->hv_deadline_tsc initialization from vmx_vcpu_setup()Xiaoyao Li2019-10-221-1/+0
* | | | KVM: VMX: Write VPID to vmcs when creating vcpuXiaoyao Li2019-10-221-3/+3
* | | | KVM: x86/vPMU: Declare kvm_pmu->reprogram_pmi field using DECLARE_BITMAPLike Xu2019-10-221-10/+5
* | | | KVM: remove redundant code in kvm_arch_vm_ioctlMiaohe Lin2019-10-221-3/+0
* | | | kvm: x86: Modify kvm_x86_ops.get_enable_apicv() to use struct kvm parameterSuthikulpanit, Suravee2019-10-223-4/+4
* | | | KVM: x86: Fold decache_cr3() into cache_reg()Sean Christopherson2019-10-223-16/+8