summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/svm.c
AgeCommit message (Expand)AuthorFilesLines
2020-04-03kVM SVM: Move SVM related files to own sub-directoryJoerg Roedel1-7514/+0
2020-04-02Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds1-222/+185
2020-03-31KVM: SVM: Annotate svm_x86_ops as __initdataSean Christopherson1-1/+1
2020-03-31KVM: x86: Copy kvm_x86_ops by value to eliminate layer of indirectionSean Christopherson1-1/+1
2020-03-31KVM: x86: Move init-only kvm_x86_ops to separate structSean Christopherson1-5/+10
2020-03-31Merge tag 'kvmarm-5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmar...Paolo Bonzini1-1/+4
2020-03-30Merge branch 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kern...Linus Torvalds1-1/+2
2020-03-25Merge branch 'x86/cpu' into perf/core, to resolve conflictIngo Molnar1-1/+2
2020-03-24x86/kvm: Convert to new CPU match macrosThomas Gleixner1-1/+1
2020-03-24x86/devicetable: Move x86 specific macro out of generic codeThomas Gleixner1-0/+1
2020-03-23KVM: SVM: Issue WBINVD after deactivating an SEV guestTom Lendacky1-8/+14
2020-03-20KVM: SVM: document KVM_MEM_ENCRYPT_OP, let userspace detect if SEV is availablePaolo Bonzini1-0/+3
2020-03-18KVM: nSVM: check for EFER.SVME=1 before entering guestPaolo Bonzini1-0/+3
2020-03-16KVM: nSVM: Remove an obsolete comment.Miaohe Lin1-3/+0
2020-03-16kvm: svm: Introduce GA Log tracepoint for AVICSuravee Suthikulpanit1-0/+1
2020-03-16KVM: nSVM: avoid loss of pending IRQ/NMI before entering L2Paolo Bonzini1-0/+18
2020-03-16KVM: nSVM: implement check_nested_events for interruptsPaolo Bonzini1-38/+30
2020-03-16KVM: nSVM: ignore L1 interrupt window while running L2 with V_INTR_MASKING=1Paolo Bonzini1-18/+37
2020-03-16KVM: nSVM: do not change host intercepts while nested VM is runningPaolo Bonzini1-13/+18
2020-03-16KVM: x86: rename set_cr3 callback and related flags to load_mmu_pgdPaolo Bonzini1-2/+3
2020-03-16KVM: x86: unify callbacks to load paging rootPaolo Bonzini1-24/+18
2020-03-16KVM: x86: Refactor kvm_cpuid() param that controls out-of-range logicSean Christopherson1-1/+1
2020-03-16KVM: CPUID: add support for supervisor statesPaolo Bonzini1-0/+2
2020-03-16KVM: x86: Move nSVM CPUID 0x8000000A handling into common x86 codeSean Christopherson1-19/+0
2020-03-16KVM: nSVM: Advertise and enable NRIPS for L1 iff nrips is enabledSean Christopherson1-2/+3
2020-03-16KVM: nSVM: Expose SVM features to L1 iff nested is enabledSean Christopherson1-9/+13
2020-03-16KVM: x86/mmu: Configure max page level during hardware setupSean Christopherson1-8/+1
2020-03-16KVM: x86/mmu: Merge kvm_{enable,disable}_tdp() into a common functionSean Christopherson1-4/+1
2020-03-16KVM: SVM: Refactor logging of NPT enabled/disabledSean Christopherson1-6/+4
2020-03-16KVM: VMX: Directly query Intel PT mode when refreshing PMUsSean Christopherson1-7/+0
2020-03-16KVM: x86: Use KVM cpu caps to detect MSR_TSC_AUX virt supportSean Christopherson1-6/+0
2020-03-16KVM: x86: Set emulated/transmuted feature bits via kvm_cpu_capsSean Christopherson1-13/+5
2020-03-16KVM: x86: Override host CPUID results with kvm_cpu_capsSean Christopherson1-2/+1
2020-03-16KVM: x86: Use KVM cpu caps to track UMIP emulationSean Christopherson1-6/+0
2020-03-16KVM: x86: Add a helper to check kernel support when setting cpu capSean Christopherson1-2/+1
2020-03-16KVM: x86: Move XSAVES CPUID adjust to VMX's KVM cpu cap updateSean Christopherson1-6/+0
2020-03-16KVM: SVM: Convert feature updates from CPUID to KVM cpu capsSean Christopherson1-16/+30
2020-03-16KVM: x86: Introduce kvm_cpu_caps to replace runtime CPUID maskingSean Christopherson1-0/+2
2020-03-16KVM: x86: Handle PKU CPUID adjustment in VMX codeSean Christopherson1-6/+0
2020-03-16KVM: x86: Handle INVPCID CPUID adjustment in VMX codeSean Christopherson1-6/+0
2020-03-16KVM: x86: Introduce cpuid_entry_{change,set,clear}() mutatorsSean Christopherson1-7/+4
2020-03-16KVM: x86: Drop explicit @func param from ->set_supported_cpuid()Sean Christopherson1-2/+2
2020-03-16KVM: x86: Use supported_xcr0 to detect MPX supportSean Christopherson1-6/+0
2020-03-16KVM: x86: Calculate the supported xcr0 mask at load timeSean Christopherson1-0/+2
2020-03-16KVM: x86: Explicitly pass an exception struct to check_interceptSean Christopherson1-1/+2
2020-03-16KVM: x86/mmu: Rename kvm_mmu->get_cr3() to ->get_guest_pgd()Sean Christopherson1-1/+1
2020-03-16KVM: SVM: Inhibit APIC virtualization for X2APIC guestOliver Upton1-6/+9
2020-03-16KVM: x86: Consolidate VM allocation and free for VMX and SVMSean Christopherson1-15/+1
2020-03-16KVM: x86: Directly return __vmalloc() result in ->vm_alloc()Sean Christopherson1-8/+4
2020-03-16KVM: x86: Gracefully handle __vmalloc() failure during VM allocationSean Christopherson1-0/+4