Linus, The following changes since commit b7bfaa761d760e72a969d116517eaa12e404c262: Linux 6.2-rc3 (2023-01-08 11:49:43 -0600) 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 310bc39546a435c83cc27a0eba878afac0d74714: KVM: x86/xen: Avoid deadlock by adding kvm->arch.xen.xen_lock leaf node lock (2023-01-11 17:45:58 -0500) ---------------------------------------------------------------- ARM: * Fix the PMCR_EL0 reset value after the PMU rework * Correctly handle S2 fault triggered by a S1 page table walk by not always classifying it as a write, as this breaks on R/O memslots * Document why we cannot exit with KVM_EXIT_MMIO when taking a write fault from a S1 PTW on a R/O memslot * Put the Apple M2 on the naughty list for not being able to correctly implement the vgic SEIS feature, just like the M1 before it * Reviewer updates: Alex is stepping down, replaced by Zenghui x86: * Fix various rare locking issues in Xen emulation and teach lockdep to detect them * Documentation improvements * Do not return host topology information from KVM_GET_SUPPORTED_CPUID ---------------------------------------------------------------- Alexandru Elisei (1): MAINTAINERS: Remove myself as a KVM/arm64 reviewer David Woodhouse (4): KVM: x86/xen: Fix lockdep warning on "recursive" gpc locking KVM: x86/xen: Fix potential deadlock in kvm_xen_update_runstate_guest() KVM: Ensure lockdep knows about kvm->lock vs. vcpu->mutex ordering rule KVM: x86/xen: Avoid deadlock by adding kvm->arch.xen.xen_lock leaf node lock James Clark (1): KVM: arm64: PMU: Fix PMCR_EL0 reset value Marc Zyngier (8): KVM: arm64: Fix S1PTW handling on RO memslots KVM: arm64: Document the behaviour of S1PTW faults on RO memslots KVM: arm64: Convert FSC_* over to ESR_ELx_FSC_* KVM: arm64: vgic: Add Apple M2 cpus to the list of broken SEIS implementations Merge branch kvm-arm64/pmu-fixes-6.2 into kvmarm-master/fixes Merge branch kvm-arm64/s1ptw-write-fault into kvmarm-master/fixes MAINTAINERS: Add Zenghui Yu as a KVM/arm64 reviewer Merge branch kvm-arm64/MAINTAINERS into kvmarm-master/fixes Paolo Bonzini (4): KVM: nSVM: clarify recalc_intercepts() wrt CR8 KVM: x86: Do not return host topology information from KVM_GET_SUPPORTED_CPUID Documentation: kvm: fix SRCU locking order docs Merge tag 'kvmarm-fixes-6.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into kvm-master Documentation/virt/kvm/api.rst | 22 ++++++++ Documentation/virt/kvm/locking.rst | 25 ++++----- MAINTAINERS | 2 +- arch/arm64/include/asm/cputype.h | 4 ++ arch/arm64/include/asm/esr.h | 9 ++++ arch/arm64/include/asm/kvm_arm.h | 15 ------ arch/arm64/include/asm/kvm_emulate.h | 42 ++++++++++----- arch/arm64/kvm/hyp/include/hyp/fault.h | 2 +- arch/arm64/kvm/hyp/include/hyp/switch.h | 2 +- arch/arm64/kvm/mmu.c | 21 ++++---- arch/arm64/kvm/sys_regs.c | 2 +- arch/arm64/kvm/vgic/vgic-v3.c | 2 + arch/x86/include/asm/kvm_host.h | 1 + arch/x86/kvm/cpuid.c | 32 ++++++------ arch/x86/kvm/svm/nested.c | 12 ++--- arch/x86/kvm/xen.c | 90 ++++++++++++++++++--------------- virt/kvm/kvm_main.c | 7 +++ 17 files changed, 175 insertions(+), 115 deletions(-)