Linus, The following changes since commit ce9ecca0238b140b88f43859b211c9fdfd8e5b70: Linux 6.6-rc2 (2023-09-17 14:40:24 -0700) 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 5804c19b80bf625c6a9925317f845e497434d6d3: Merge tag 'kvm-riscv-fixes-6.6-1' of https://github.com/kvm-riscv/linux into HEAD (2023-09-23 05:35:55 -0400) ---------------------------------------------------------------- ARM: * Fix an UV boot crash * Skip spurious ENDBR generation on _THIS_IP_ * Fix ENDBR use in putuser() asm methods * Fix corner case boot crashes on 5-level paging * and fix a false positive WARNING on LTO kernels" RISC-V: * Fix KVM_GET_REG_LIST API for ISA_EXT registers * Fix reading ISA_EXT register of a missing extension * Fix ISA_EXT register handling in get-reg-list test * Fix filtering of AIA registers in get-reg-list test x86: * Fixes for TSC_AUX virtualization * Stop zapping page tables asynchronously, since we don't zap them as often as before ---------------------------------------------------------------- Anup Patel (4): RISC-V: KVM: Fix KVM_GET_REG_LIST API for ISA_EXT registers RISC-V: KVM: Fix riscv_vcpu_get_isa_ext_single() for missing extensions KVM: riscv: selftests: Fix ISA_EXT register handling in get-reg-list KVM: riscv: selftests: Selectively filter-out AIA registers Jean-Philippe Brucker (1): KVM: arm64: nvhe: Ignore SVE hint in SMCCC function ID Marc Zyngier (1): KVM: arm64: Properly return allocated EL2 VA from hyp_alloc_private_va_range() Paolo Bonzini (4): Merge tag 'kvmarm-fixes-6.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into HEAD KVM: x86/mmu: Do not filter address spaces in for_each_tdp_mmu_root_yield_safe() KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway Merge tag 'kvm-riscv-fixes-6.6-1' of https://github.com/kvm-riscv/linux into HEAD Sean Christopherson (3): KVM: selftests: Assert that vasprintf() is successful KVM: x86/mmu: Open code leaf invalidation from mmu_notifier KVM: x86/mmu: Stop zapping invalidated TDP MMU roots asynchronously Tom Lendacky (2): KVM: SVM: Fix TSC_AUX virtualization setup KVM: SVM: Do not use user return MSR support for virtualized TSC_AUX arch/arm64/include/asm/kvm_hyp.h | 2 +- arch/arm64/kvm/hyp/include/nvhe/ffa.h | 2 +- arch/arm64/kvm/hyp/nvhe/ffa.c | 3 +- arch/arm64/kvm/hyp/nvhe/hyp-init.S | 1 + arch/arm64/kvm/hyp/nvhe/hyp-main.c | 8 +- arch/arm64/kvm/hyp/nvhe/psci-relay.c | 3 +- arch/arm64/kvm/mmu.c | 3 + arch/riscv/kvm/vcpu_onereg.c | 7 +- arch/x86/include/asm/kvm_host.h | 3 +- arch/x86/kvm/mmu/mmu.c | 21 +--- arch/x86/kvm/mmu/mmu_internal.h | 15 ++- arch/x86/kvm/mmu/tdp_mmu.c | 152 ++++++++++------------- arch/x86/kvm/mmu/tdp_mmu.h | 5 +- arch/x86/kvm/svm/sev.c | 34 +++-- arch/x86/kvm/svm/svm.c | 43 +++++-- arch/x86/kvm/svm/svm.h | 1 + arch/x86/kvm/x86.c | 5 +- include/linux/arm-smccc.h | 2 + tools/testing/selftests/kvm/lib/test_util.c | 2 +- tools/testing/selftests/kvm/riscv/get-reg-list.c | 60 ++++++--- 20 files changed, 210 insertions(+), 162 deletions(-)