All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] KVM fixes for Linux 5.11-rc6
@ 2021-01-27 10:22 Paolo Bonzini
  2021-01-27 13:58 ` Paolo Bonzini
  2021-01-27 19:08 ` pr-tracker-bot
  0 siblings, 2 replies; 3+ messages in thread
From: Paolo Bonzini @ 2021-01-27 10:22 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, kvm

Linus,

I sent this yesterday but I cannot find it in the archives (weird),
so I am resending it.

The following changes since commit 7c53f6b671f4aba70ff15e1b05148b10d58c2837:

  Linux 5.11-rc3 (2021-01-10 14:34:50 -0800)

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 9a78e15802a87de2b08dfd1bd88e855201d2c8fa:

  KVM: x86: allow KVM_REQ_GET_NESTED_STATE_PAGES outside guest mode for VMX (2021-01-25 18:54:09 -0500)

----------------------------------------------------------------
* x86 bugfixes
* Documentation fixes
* Avoid performance regression due to SEV-ES patches

ARM:
- Don't allow tagged pointers to point to memslots
- Filter out ARMv8.1+ PMU events on v8.0 hardware
- Hide PMU registers from userspace when no PMU is configured
- More PMU cleanups
- Don't try to handle broken PSCI firmware
- More sys_reg() to reg_to_encoding() conversions

----------------------------------------------------------------
Alexandru Elisei (1):
      KVM: arm64: Use the reg_to_encoding() macro instead of sys_reg()

David Brazdil (1):
      KVM: arm64: Allow PSCI SYSTEM_OFF/RESET to return

Jay Zhou (1):
      KVM: x86: get smi pending status correctly

Like Xu (2):
      KVM: x86/pmu: Fix UBSAN shift-out-of-bounds warning in intel_pmu_refresh()
      KVM: x86/pmu: Fix HW_REF_CPU_CYCLES event pseudo-encoding in intel_arch_events[]

Lorenzo Brescia (1):
      kvm: tracing: Fix unmatched kvm_entry and kvm_exit events

Marc Zyngier (4):
      KVM: arm64: Hide PMU registers from userspace when not available
      KVM: arm64: Simplify handling of absent PMU system registers
      KVM: arm64: Filter out v8.1+ events on v8.0 HW
      KVM: Forbid the use of tagged userspace addresses for memslots

Maxim Levitsky (1):
      KVM: nVMX: Sync unsync'd vmcs02 state to vmcs12 on migration

Paolo Bonzini (2):
      Merge tag 'kvmarm-fixes-5.11-2' of git://git.kernel.org/.../kvmarm/kvmarm into HEAD
      KVM: x86: allow KVM_REQ_GET_NESTED_STATE_PAGES outside guest mode for VMX

Quentin Perret (1):
      KVM: Documentation: Fix spec for KVM_CAP_ENABLE_CAP_VM

Sean Christopherson (3):
      KVM: x86: Add more protection against undefined behavior in rsvd_bits()
      KVM: SVM: Unconditionally sync GPRs to GHCB on VMRUN of SEV-ES guest
      KVM: x86: Revert "KVM: x86: Mark GPRs dirty when written"

Steven Price (1):
      KVM: arm64: Compute TPIDR_EL2 ignoring MTE tag

Zenghui Yu (1):
      KVM: Documentation: Update description of KVM_{GET,CLEAR}_DIRTY_LOG

 Documentation/virt/kvm/api.rst       | 21 ++++----
 arch/arm64/kvm/arm.c                 |  3 +-
 arch/arm64/kvm/hyp/nvhe/psci-relay.c | 13 ++---
 arch/arm64/kvm/pmu-emul.c            | 10 ++--
 arch/arm64/kvm/sys_regs.c            | 93 ++++++++++++++++++++++--------------
 arch/x86/kvm/kvm_cache_regs.h        | 51 ++++++++++----------
 arch/x86/kvm/mmu.h                   |  9 +++-
 arch/x86/kvm/svm/nested.c            |  3 ++
 arch/x86/kvm/svm/sev.c               | 15 +++---
 arch/x86/kvm/svm/svm.c               |  2 +
 arch/x86/kvm/vmx/nested.c            | 44 ++++++++++++-----
 arch/x86/kvm/vmx/pmu_intel.c         |  6 ++-
 arch/x86/kvm/vmx/vmx.c               |  2 +
 arch/x86/kvm/x86.c                   | 11 +++--
 virt/kvm/kvm_main.c                  |  1 +
 15 files changed, 172 insertions(+), 112 deletions(-)


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] KVM fixes for Linux 5.11-rc6
  2021-01-27 10:22 [GIT PULL] KVM fixes for Linux 5.11-rc6 Paolo Bonzini
@ 2021-01-27 13:58 ` Paolo Bonzini
  2021-01-27 19:08 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: Paolo Bonzini @ 2021-01-27 13:58 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, kvm

On 27/01/21 11:22, Paolo Bonzini wrote:
> Linus,
> 
> I sent this yesterday but I cannot find it in the archives (weird),
> so I am resending it.

Nevermind, I now see that you've pulled it already, though I've gotten 
no pr-tracker-bot reply either.  Sorry about the noise.

Paolo

> The following changes since commit 7c53f6b671f4aba70ff15e1b05148b10d58c2837:
> 
>    Linux 5.11-rc3 (2021-01-10 14:34:50 -0800)
> 
> 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 9a78e15802a87de2b08dfd1bd88e855201d2c8fa:
> 
>    KVM: x86: allow KVM_REQ_GET_NESTED_STATE_PAGES outside guest mode for VMX (2021-01-25 18:54:09 -0500)
> 
> ----------------------------------------------------------------
> * x86 bugfixes
> * Documentation fixes
> * Avoid performance regression due to SEV-ES patches
> 
> ARM:
> - Don't allow tagged pointers to point to memslots
> - Filter out ARMv8.1+ PMU events on v8.0 hardware
> - Hide PMU registers from userspace when no PMU is configured
> - More PMU cleanups
> - Don't try to handle broken PSCI firmware
> - More sys_reg() to reg_to_encoding() conversions
> 
> ----------------------------------------------------------------
> Alexandru Elisei (1):
>        KVM: arm64: Use the reg_to_encoding() macro instead of sys_reg()
> 
> David Brazdil (1):
>        KVM: arm64: Allow PSCI SYSTEM_OFF/RESET to return
> 
> Jay Zhou (1):
>        KVM: x86: get smi pending status correctly
> 
> Like Xu (2):
>        KVM: x86/pmu: Fix UBSAN shift-out-of-bounds warning in intel_pmu_refresh()
>        KVM: x86/pmu: Fix HW_REF_CPU_CYCLES event pseudo-encoding in intel_arch_events[]
> 
> Lorenzo Brescia (1):
>        kvm: tracing: Fix unmatched kvm_entry and kvm_exit events
> 
> Marc Zyngier (4):
>        KVM: arm64: Hide PMU registers from userspace when not available
>        KVM: arm64: Simplify handling of absent PMU system registers
>        KVM: arm64: Filter out v8.1+ events on v8.0 HW
>        KVM: Forbid the use of tagged userspace addresses for memslots
> 
> Maxim Levitsky (1):
>        KVM: nVMX: Sync unsync'd vmcs02 state to vmcs12 on migration
> 
> Paolo Bonzini (2):
>        Merge tag 'kvmarm-fixes-5.11-2' of git://git.kernel.org/.../kvmarm/kvmarm into HEAD
>        KVM: x86: allow KVM_REQ_GET_NESTED_STATE_PAGES outside guest mode for VMX
> 
> Quentin Perret (1):
>        KVM: Documentation: Fix spec for KVM_CAP_ENABLE_CAP_VM
> 
> Sean Christopherson (3):
>        KVM: x86: Add more protection against undefined behavior in rsvd_bits()
>        KVM: SVM: Unconditionally sync GPRs to GHCB on VMRUN of SEV-ES guest
>        KVM: x86: Revert "KVM: x86: Mark GPRs dirty when written"
> 
> Steven Price (1):
>        KVM: arm64: Compute TPIDR_EL2 ignoring MTE tag
> 
> Zenghui Yu (1):
>        KVM: Documentation: Update description of KVM_{GET,CLEAR}_DIRTY_LOG
> 
>   Documentation/virt/kvm/api.rst       | 21 ++++----
>   arch/arm64/kvm/arm.c                 |  3 +-
>   arch/arm64/kvm/hyp/nvhe/psci-relay.c | 13 ++---
>   arch/arm64/kvm/pmu-emul.c            | 10 ++--
>   arch/arm64/kvm/sys_regs.c            | 93 ++++++++++++++++++++++--------------
>   arch/x86/kvm/kvm_cache_regs.h        | 51 ++++++++++----------
>   arch/x86/kvm/mmu.h                   |  9 +++-
>   arch/x86/kvm/svm/nested.c            |  3 ++
>   arch/x86/kvm/svm/sev.c               | 15 +++---
>   arch/x86/kvm/svm/svm.c               |  2 +
>   arch/x86/kvm/vmx/nested.c            | 44 ++++++++++++-----
>   arch/x86/kvm/vmx/pmu_intel.c         |  6 ++-
>   arch/x86/kvm/vmx/vmx.c               |  2 +
>   arch/x86/kvm/x86.c                   | 11 +++--
>   virt/kvm/kvm_main.c                  |  1 +
>   15 files changed, 172 insertions(+), 112 deletions(-)
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] KVM fixes for Linux 5.11-rc6
  2021-01-27 10:22 [GIT PULL] KVM fixes for Linux 5.11-rc6 Paolo Bonzini
  2021-01-27 13:58 ` Paolo Bonzini
@ 2021-01-27 19:08 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2021-01-27 19:08 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: torvalds, linux-kernel, kvm

The pull request you sent on Wed, 27 Jan 2021 05:22:46 -0500:

> 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/4992eb41ab1b5d08479193afdc94f9678e5ded13

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-01-27 19:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-27 10:22 [GIT PULL] KVM fixes for Linux 5.11-rc6 Paolo Bonzini
2021-01-27 13:58 ` Paolo Bonzini
2021-01-27 19:08 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.