Linus, The following changes since commit f8d221d2e0e1572d0d60174c118e3554d1aa79fa: Merge tag 'kvm-s390-master-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into kvm-master (2019-06-01 00:49:02 +0200) are available in the git repository at: https://git.kernel.org/pub/scm/virt/kvm/kvm.git tags/for-linus for you to fetch changes up to b21e31b253048b7f9768ca7cc270e67765fd6ba2: Merge tag 'kvmarm-fixes-for-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into HEAD (2019-06-20 18:24:18 +0200) ---------------------------------------------------------------- Fixes for ARM and x86, plus selftest patches and nicer structs for nested state save/restore. ---------------------------------------------------------------- Aaron Lewis (2): kvm: tests: Sort tests in the Makefile alphabetically tests: kvm: Check for a kernel warning Andrew Jones (1): KVM: arm/arm64: Fix emulated ptimer irq injection Dave Martin (2): KVM: arm64: Filter out invalid core register IDs in KVM_GET_REG_LIST KVM: arm/arm64: vgic: Fix kvm_device leak in vgic_its_destroy Dennis Restle (1): KVM: fix typo in documentation Liran Alon (1): KVM: x86: Modify struct kvm_nested_state to have explicit fields for data Paolo Bonzini (2): KVM: nVMX: reorganize initial steps of vmx_set_nested_state Merge tag 'kvmarm-fixes-for-5.2-2' of git://git.kernel.org/.../kvmarm/kvmarm into HEAD Sean Christopherson (1): KVM: x86/mmu: Allocate PAE root array when using SVM's 32-bit NPT Viresh Kumar (1): KVM: arm64: Implement vq_present() as a macro Vitaly Kuznetsov (1): KVM: nVMX: use correct clean fields when copying from eVMCS Documentation/virtual/kvm/api.txt | 48 +++++--- arch/arm64/kvm/guest.c | 65 +++++++---- arch/x86/include/uapi/asm/kvm.h | 33 ++++-- arch/x86/kvm/mmu.c | 16 ++- arch/x86/kvm/vmx/nested.c | 103 +++++++++-------- arch/x86/kvm/vmx/vmcs12.h | 5 +- tools/arch/x86/include/uapi/asm/kvm.h | 2 +- tools/testing/selftests/kvm/.gitignore | 1 + tools/testing/selftests/kvm/Makefile | 21 ++-- tools/testing/selftests/kvm/include/kvm_util.h | 2 + .../selftests/kvm/include/x86_64/processor.h | 2 + tools/testing/selftests/kvm/lib/kvm_util.c | 36 ++++++ tools/testing/selftests/kvm/lib/x86_64/processor.c | 16 +++ .../selftests/kvm/x86_64/mmio_warning_test.c | 126 +++++++++++++++++++++ .../kvm/x86_64/vmx_set_nested_state_test.c | 68 ++++++----- virt/kvm/arm/arch_timer.c | 5 +- virt/kvm/arm/vgic/vgic-its.c | 1 + 17 files changed, 405 insertions(+), 145 deletions(-) create mode 100644 tools/testing/selftests/kvm/x86_64/mmio_warning_test.c