diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-08-09 18:46:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-08-09 18:46:29 -0400 |
commit | 7f20fd23377ac3356657ce35fcaf19ee2fea8345 (patch) | |
tree | 3b275e1a0fc8df2567a02d9e40ca219ac3f09c6f /tools | |
parent | 15abf14202a2fe7e5c5fc0e815587f45de4fd500 (diff) | |
parent | a738b5e75b4c13be3485c82eb62c30047aa9f164 (diff) |
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
Pull kvm fixes from Paolo Bonzini:
"Bugfixes (arm and x86) and cleanups"
* tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
selftests: kvm: Adding config fragments
KVM: selftests: Update gitignore file for latest changes
kvm: remove unnecessary PageReserved check
KVM: arm/arm64: vgic: Reevaluate level sensitive interrupts on enable
KVM: arm: Don't write junk to CP15 registers on reset
KVM: arm64: Don't write junk to sysregs on reset
KVM: arm/arm64: Sync ICH_VMCR_EL2 back when about to block
x86: kvm: remove useless calls to kvm_para_available
KVM: no need to check return value of debugfs_create functions
KVM: remove kvm_arch_has_vcpu_debugfs()
KVM: Fix leak vCPU's VMCS value into other pCPU
KVM: Check preempted_in_kernel for involuntary preemption
KVM: LAPIC: Don't need to wakeup vCPU twice afer timer fire
arm64: KVM: hyp: debug-sr: Mark expected switch fall-through
KVM: arm64: Update kvm_arm_exception_class and esr_class_str for new EC
KVM: arm: vgic-v3: Mark expected switch fall-through
arm64: KVM: regmap: Fix unexpected switch fall-through
KVM: arm/arm64: Introduce kvm_pmu_vcpu_init() to setup PMU counter index
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/kvm/.gitignore | 3 | ||||
-rw-r--r-- | tools/testing/selftests/kvm/config | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore index 41266af0d3dc..b35da375530a 100644 --- a/tools/testing/selftests/kvm/.gitignore +++ b/tools/testing/selftests/kvm/.gitignore | |||
@@ -1,7 +1,7 @@ | |||
1 | /s390x/sync_regs_test | ||
1 | /x86_64/cr4_cpuid_sync_test | 2 | /x86_64/cr4_cpuid_sync_test |
2 | /x86_64/evmcs_test | 3 | /x86_64/evmcs_test |
3 | /x86_64/hyperv_cpuid | 4 | /x86_64/hyperv_cpuid |
4 | /x86_64/kvm_create_max_vcpus | ||
5 | /x86_64/mmio_warning_test | 5 | /x86_64/mmio_warning_test |
6 | /x86_64/platform_info_test | 6 | /x86_64/platform_info_test |
7 | /x86_64/set_sregs_test | 7 | /x86_64/set_sregs_test |
@@ -13,3 +13,4 @@ | |||
13 | /x86_64/vmx_tsc_adjust_test | 13 | /x86_64/vmx_tsc_adjust_test |
14 | /clear_dirty_log_test | 14 | /clear_dirty_log_test |
15 | /dirty_log_test | 15 | /dirty_log_test |
16 | /kvm_create_max_vcpus | ||
diff --git a/tools/testing/selftests/kvm/config b/tools/testing/selftests/kvm/config new file mode 100644 index 000000000000..63ed533f73d6 --- /dev/null +++ b/tools/testing/selftests/kvm/config | |||
@@ -0,0 +1,3 @@ | |||
1 | CONFIG_KVM=y | ||
2 | CONFIG_KVM_INTEL=y | ||
3 | CONFIG_KVM_AMD=y | ||