summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge remote-tracking branch 'kvm/next' into kvm-next-5.20Paolo Bonzini2022-08-01114-5200/+5590
|\
| * KVM: selftests: Verify VMX MSRs can be restored to KVM-supported valuesSean Christopherson2022-07-284-0/+87
| * KVM: selftests: Add an option to run vCPUs while disabling dirty loggingSean Christopherson2022-07-281-3/+27
| * KVM: selftests: Drop unused SVM_CPUID_FUNC macroSean Christopherson2022-07-141-2/+0
| * KVM: selftests: Use the common cpuid() helper in cpu_vendor_string_is()Sean Christopherson2022-07-141-8/+2
| * KVM: selftests: Clean up requirements for XFD-aware XSAVE featuresSean Christopherson2022-07-143-5/+10
| * KVM: selftests: Skip AMX test if ARCH_REQ_XCOMP_GUEST_PERM isn't supportedSean Christopherson2022-07-141-8/+1
| * KVM: selftests: Check KVM's supported CPUID, not host CPUID, for XFDSean Christopherson2022-07-142-17/+3
| * KVM: selftests: Inline "get max CPUID leaf" helpersSean Christopherson2022-07-142-12/+9
| * KVM: selftests: Rename kvm_get_supported_cpuid_index() to __..._entry()Sean Christopherson2022-07-141-3/+3
| * KVM: selftests: Drop unnecessary use of kvm_get_supported_cpuid_index()Sean Christopherson2022-07-143-4/+4
| * KVM: selftests: Use this_cpu_has() to detect SVM support in L1Sean Christopherson2022-07-143-16/+3
| * KVM: selftests: Use this_cpu_has() in CR4/CPUID sync testSean Christopherson2022-07-142-15/+2
| * KVM: selftests: Add this_cpu_has() to query X86_FEATURE_* via cpuid()Sean Christopherson2022-07-142-8/+13
| * KVM: selftests: Set input function/index in raw CPUID helper(s)Sean Christopherson2022-07-144-33/+26
| * KVM: selftests: Make get_supported_cpuid() returns "const"Sean Christopherson2022-07-146-49/+36
| * KVM: selftests: Use vcpu_clear_cpuid_feature() to clear x2APICSean Christopherson2022-07-142-9/+2
| * KVM: selftests: Use vcpu_{set,clear}_cpuid_feature() in nVMX state testSean Christopherson2022-07-142-19/+2
| * KVM: selftests: Use vcpu_get_cpuid_entry() in CPUID testSean Christopherson2022-07-141-3/+2
| * KVM: selftests: Use vCPU's CPUID directly in Hyper-V testSean Christopherson2022-07-143-89/+64
| * KVM: selftests: Use vcpu_get_cpuid_entry() in PV features test (sort of)Sean Christopherson2022-07-143-11/+13
| * KVM: selftests: Use vcpu_clear_cpuid_feature() in monitor_mwait_testSean Christopherson2022-07-141-9/+1
| * KVM: selftests: Add and use helper to set vCPU's CPUID maxphyaddrSean Christopherson2022-07-143-9/+11
| * KVM: selftests: Use vm->pa_bits to generate reserved PA bitsSean Christopherson2022-07-141-6/+2
| * KVM: selftests: Add helpers to get and modify a vCPU's CPUID entriesSean Christopherson2022-07-142-0/+48
| * KVM: selftests: Use get_cpuid_entry() in kvm_get_supported_cpuid_index()Sean Christopherson2022-07-142-39/+7
| * KVM: selftests: Rename and tweak get_cpuid() to get_cpuid_entry()Sean Christopherson2022-07-143-10/+9
| * KVM: selftests: Don't use a static local in vcpu_get_supported_hv_cpuid()Sean Christopherson2022-07-141-3/+1
| * KVM: selftests: Cache CPUID in struct kvm_vcpuSean Christopherson2022-07-1411-50/+69
| * KVM: selftests: Split out kvm_cpuid2_size() from allocate_kvm_cpuid2()Sean Christopherson2022-07-142-41/+30
| * KVM: selftests: Verify that kvm_cpuid2.entries layout is unchanged by KVMSean Christopherson2022-07-141-28/+21
| * KVM: selftests: Use kvm_cpu_has() for nSVM soft INT injection testSean Christopherson2022-07-142-8/+2
| * KVM: selftests: Use kvm_cpu_has() for KVM's PV steal timeSean Christopherson2022-07-142-3/+23
| * KVM: selftests: Remove the obsolete/dead MMU role testSean Christopherson2022-07-144-142/+0
| * KVM: selftests: Use kvm_cpu_has() for XSAVE in cr4_cpuid_sync_testSean Christopherson2022-07-141-3/+1
| * KVM: selftests: Use kvm_cpu_has() in AMX testSean Christopherson2022-07-142-11/+9
| * KVM: selftests: Check for _both_ XTILE data and cfg in AMX testSean Christopherson2022-07-141-1/+2
| * KVM: selftests: Use kvm_cpu_has() for XSAVES in XSS MSR testSean Christopherson2022-07-142-7/+2
| * KVM: selftests: Drop redundant vcpu_set_cpuid() from PMU selftestSean Christopherson2022-07-141-3/+0
| * KVM: selftests: Use kvm_cpu_has() to query PDCM in PMU selftestSean Christopherson2022-07-142-5/+3
| * KVM: selftests: Use kvm_cpu_has() for nested VMX checksSean Christopherson2022-07-1416-29/+15
| * KVM: selftests: Use kvm_cpu_has() for nested SVM checksSean Christopherson2022-07-148-21/+6
| * KVM: selftests: Use kvm_cpu_has() in the SEV migration testSean Christopherson2022-07-142-11/+4
| * KVM: selftests: Add framework to query KVM CPUID bitsSean Christopherson2022-07-143-28/+128
| * KVM: sefltests: Use CPUID_* instead of X86_FEATURE_* for one-off usageSean Christopherson2022-07-145-15/+12
| * KVM: selftests: Set KVM's supported CPUID as vCPU's CPUID during recreateSean Christopherson2022-07-147-7/+26
| * KVM: selftests: Fix filename reporting in guest assertsColton Lewis2022-07-1441-102/+68
| * KVM: selftests: Write REPORT_GUEST_ASSERT macros to pair with GUEST_ASSERTColton Lewis2022-07-141-0/+42
| * KVM: selftests: Increase UCALL_MAX_ARGS to 7Colton Lewis2022-07-141-1/+1
| * KVM: selftests: enumerate GUEST_ASSERT argumentsColton Lewis2022-07-141-0/+8