linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] KVM/arm64 fixes for 6.6, take #2
@ 2023-10-13 21:30 Marc Zyngier
  2023-10-15 12:23 ` Paolo Bonzini
  0 siblings, 1 reply; 2+ messages in thread
From: Marc Zyngier @ 2023-10-13 21:30 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Anshuman Khandual, Ganapatrao Kulkarni, James Morse, Joey Gouly,
	kvmarm, linux-arm-kernel, linux-kernel, Oliver Upton,
	Suzuki K Poulose, Zenghui Yu, kvm

 Paolo,

Here's a set of additional fixes for 6.6. The most important part is
the fix for a breakage of the Permission Indirection feature, which is
a regression. The other (less important) part is a fix for the physical
timer offset.

Please pull,

        M.

The following changes since commit 373beef00f7d781a000b12c31fb17a5a9c25969c:

  KVM: arm64: nvhe: Ignore SVE hint in SMCCC function ID (2023-09-12 13:07:37 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git tags/kvmarm-fixes-6.6-2

for you to fetch changes up to 9404673293b065cbb16b8915530147cac7e80b4d:

  KVM: arm64: timers: Correctly handle TGE flip with CNTPOFF_EL2 (2023-10-12 16:55:21 +0100)

----------------------------------------------------------------
KVM/arm64 fixes for 6.6, take #2

- Fix the handling of the phycal timer offset when FEAT_ECV
  and CNTPOFF_EL2 are implemented.

- Restore the functionnality of Permission Indirection that
  was broken by the Fine Grained Trapping rework

- Cleanup some PMU event sharing code

----------------------------------------------------------------
Anshuman Khandual (1):
      KVM: arm64: pmu: Drop redundant check for non-NULL kvm_pmu_events

Joey Gouly (2):
      KVM: arm64: Add nPIR{E0}_EL1 to HFG traps
      KVM: arm64: POR{E0}_EL1 do not need trap handlers

Marc Zyngier (1):
      KVM: arm64: timers: Correctly handle TGE flip with CNTPOFF_EL2

 arch/arm64/include/asm/kvm_arm.h |  4 ++--
 arch/arm64/kvm/arch_timer.c      | 13 +++---------
 arch/arm64/kvm/emulate-nested.c  |  2 ++
 arch/arm64/kvm/hyp/vhe/switch.c  | 44 ++++++++++++++++++++++++++++++++++++++++
 arch/arm64/kvm/pmu.c             |  4 ++--
 arch/arm64/kvm/sys_regs.c        |  4 ++--
 include/kvm/arm_arch_timer.h     |  7 +++++++
 7 files changed, 62 insertions(+), 16 deletions(-)

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

* Re: [GIT PULL] KVM/arm64 fixes for 6.6, take #2
  2023-10-13 21:30 [GIT PULL] KVM/arm64 fixes for 6.6, take #2 Marc Zyngier
@ 2023-10-15 12:23 ` Paolo Bonzini
  0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2023-10-15 12:23 UTC (permalink / raw)
  To: Marc Zyngier
  Cc: Anshuman Khandual, Ganapatrao Kulkarni, James Morse, Joey Gouly,
	kvmarm, linux-arm-kernel, linux-kernel, Oliver Upton,
	Suzuki K Poulose, Zenghui Yu, kvm

On Fri, Oct 13, 2023 at 11:31 PM Marc Zyngier <maz@kernel.org> wrote:
>
>  Paolo,
>
> Here's a set of additional fixes for 6.6. The most important part is
> the fix for a breakage of the Permission Indirection feature, which is
> a regression. The other (less important) part is a fix for the physical
> timer offset.
>
> Please pull,
>
>         M.
>
> The following changes since commit 373beef00f7d781a000b12c31fb17a5a9c25969c:
>
>   KVM: arm64: nvhe: Ignore SVE hint in SMCCC function ID (2023-09-12 13:07:37 +0100)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git tags/kvmarm-fixes-6.6-2
>
> for you to fetch changes up to 9404673293b065cbb16b8915530147cac7e80b4d:
>
>   KVM: arm64: timers: Correctly handle TGE flip with CNTPOFF_EL2 (2023-10-12 16:55:21 +0100)

Pulled, thanks.

Paolo

> ----------------------------------------------------------------
> KVM/arm64 fixes for 6.6, take #2
>
> - Fix the handling of the phycal timer offset when FEAT_ECV
>   and CNTPOFF_EL2 are implemented.
>
> - Restore the functionnality of Permission Indirection that
>   was broken by the Fine Grained Trapping rework
>
> - Cleanup some PMU event sharing code
>
> ----------------------------------------------------------------
> Anshuman Khandual (1):
>       KVM: arm64: pmu: Drop redundant check for non-NULL kvm_pmu_events
>
> Joey Gouly (2):
>       KVM: arm64: Add nPIR{E0}_EL1 to HFG traps
>       KVM: arm64: POR{E0}_EL1 do not need trap handlers
>
> Marc Zyngier (1):
>       KVM: arm64: timers: Correctly handle TGE flip with CNTPOFF_EL2
>
>  arch/arm64/include/asm/kvm_arm.h |  4 ++--
>  arch/arm64/kvm/arch_timer.c      | 13 +++---------
>  arch/arm64/kvm/emulate-nested.c  |  2 ++
>  arch/arm64/kvm/hyp/vhe/switch.c  | 44 ++++++++++++++++++++++++++++++++++++++++
>  arch/arm64/kvm/pmu.c             |  4 ++--
>  arch/arm64/kvm/sys_regs.c        |  4 ++--
>  include/kvm/arm_arch_timer.h     |  7 +++++++
>  7 files changed, 62 insertions(+), 16 deletions(-)
>


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

end of thread, other threads:[~2023-10-15 12:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-13 21:30 [GIT PULL] KVM/arm64 fixes for 6.6, take #2 Marc Zyngier
2023-10-15 12:23 ` Paolo Bonzini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).