mbox series

[GIT,PULL] KVM fixes for Linux 6.6-rc3

Message ID 20230924092700.1192123-1-pbonzini@redhat.com (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] KVM fixes for Linux 6.6-rc3 | expand

Pull-request

https://git.kernel.org/pub/scm/virt/kvm/kvm.git tags/for-linus

Message

Paolo Bonzini Sept. 24, 2023, 9:27 a.m. UTC
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(-)

Comments

Zenghui Yu Sept. 24, 2023, 10:32 a.m. UTC | #1
Hi Paolo,

On 2023/9/24 17:27, Paolo Bonzini wrote:
> 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"

Want to point out that this doesn't describe the *real* kvmarm stuff in
the original PR [*] and doesn't match what you had written in the merge
commit. Not sure what has gone wrong.

[*] https://lore.kernel.org/r/20230914144802.1637804-1-maz@kernel.org

Zenghui
Paolo Bonzini Sept. 24, 2023, 3:20 p.m. UTC | #2
On 9/24/23 12:32, Zenghui Yu wrote:
> Hi Paolo,
> 
> On 2023/9/24 17:27, Paolo Bonzini wrote:
>> 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"
> 
> Want to point out that this doesn't describe the *real* kvmarm stuff in
> the original PR [*] and doesn't match what you had written in the merge
> commit. Not sure what has gone wrong.

Used the wrong "git log --merges" incantation to generate the draft, 
which pulled in a message from the last merge commit in origin/master.

I have replaced the tag in place, but the commit is the same.  The new 
tag message is as follows:

---------------------------------
ARM:

* Fix EL2 Stage-1 MMIO mappings where a random address was used

* Fix SMCCC function number comparison when the SVE hint is set

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
---------------------------------

Paolo

> [*] https://lore.kernel.org/r/20230914144802.1637804-1-maz@kernel.org
> 
> Zenghui
>
pr-tracker-bot@kernel.org Sept. 24, 2023, 9:24 p.m. UTC | #3
The pull request you sent on Sun, 24 Sep 2023 05:27:00 -0400:

> https://git.kernel.org/pub/scm/virt/kvm/kvm.git tags/for-linus

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/8a511e7efc5a72173f64d191f01cda236d54e27a

Thank you!