Subject: [PATCH 0/2] KVM: arm64: Ensure VGIC is fully initialized before entering guest
From: Oliver Upton <oliver.upton@linux.dev>
To: kvmarm@lists.linux.dev
Cc: Marc Zyngier <maz@kernel.org>,
	Joey Gouly <joey.gouly@arm.com>,
	Suzuki K Poulose <suzuki.poulose@arm.com>,
	Zenghui Yu <yuzenghui@huawei.com>,
	Oliver Upton <oliver.upton@linux.dev>
Date: Thu, 17 Oct 2024 00:19:45 +0000

.
Subject: [PATCH v2] KVM: arm64: Fix shift-out-of-bounds bug
From: Ilkka Koskinen <ilkka@os.amperecomputing.com>
To: Gavin Shan <gshan@redhat.com>,
	Marc Zyngier <maz@kernel.org>,
	Oliver Upton <oliver.upton@linux.dev>,
	Joey Gouly <joey.gouly@arm.com>,
	Suzuki K Poulose <suzuki.poulose@arm.com>,
	Zenghui Yu <yuzenghui@huawei.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	Akihiko Odaki <akihiko.odaki@daynix.com>
Cc: linux-arm-kernel@lists.infradead.org,
	kvmarm@lists.linux.dev,
	linux-kernel@vger.kernel.org,
	Ilkka Koskinen <ilkka@os.amperecomputing.com>
Date: Wed, 16 Oct 2024 19:57:01 -0700

.
Subject: [PATCH] KVM: arm64: vgic-its: Do not call vgic_put_irq() within vgic_its_inject_cached_translation()
From: WangYuli <wangyuli@uniontech.com>
To: maz@kernel.org,
	oliver.upton@linux.dev,
	james.morse@arm.com,
	suzuki.poulose@arm.com,
	yuzenghui@huawei.com,
	catalin.marinas@arm.com,
	will@kernel.org,
	rdunlap@infradead.org,
	sebott@redhat.com
Cc: linux-arm-kernel@lists.infradead.org,
	kvmarm@lists.linux.dev,
	linux-kernel@vger.kernel.org,
	guanwentao@uniontech.com,
	zhanjun@uniontech.com,
	WangYuli <wangyuli@uniontech.com>,
	stable@vger.kernel.org
Date: Thu, 17 Oct 2024 14:13:34 +0800

.
Subject: [PATCH] KVM: arm64: Make L1Ip feature in CTR_EL0 writable from userspace
From: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
To: <kvmarm@lists.linux.dev>, <maz@kernel.org>, <oliver.upton@linux.dev>
Date: Thu, 17 Oct 2024 09:59:25 +0100

.
Subject: [GIT PULL] KVM/arm64 fixes for 6.12, take #3
From: Marc Zyngier <maz@kernel.org>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: Anshuman Khandual <anshuman.khandual@arm.com>,
	Gavin Shan <gshan@redhat.com>,
	Ilkka Koskinen <ilkka@os.amperecomputing.com>,
	Nathan Chancellor <nathan@kernel.org>,
	Oliver Upton <oliver.upton@linux.dev>,
	Joey Gouly <joey.gouly@arm.com>,
	Suzuki K Poulose <suzuki.poulose@arm.com>,
	Zenghui Yu <yuzenghui@huawei.com>,
	kvmarm@lists.linux.dev,
	kvm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Date: Thu, 17 Oct 2024 10:09:56 +0100

Paolo,

Here's another set of fixes for KVM/arm64, addressing another vgic
init race as well as a build error (full details in the tag below).

I notice that you haven't pulled [1] yet, so hopefully this will also
serve as a gentle reminder.

Please pull,

	M.

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

The following changes since commit df5fd75ee305cb5927e0b1a0b46cc988ad8db2b1:

  KVM: arm64: Don't eagerly teardown the vgic on init error (2024-10-11 13:40:25 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git tags/kvmarm-fixes-6.12-3

for you to fetch changes up to 78a00555550042ed77b33ace7423aced228b3b4e:

  KVM: arm64: Ensure vgic_ready() is ordered against MMIO registration (2024-10-17 09:20:48 +0100)

----------------------------------------------------------------
KVM/arm64 fixes for 6.12, take #3

- Stop wasting space in the HYP idmap, as we are dangerously close
  to the 4kB limit, and this has already exploded in -next

- Fix another race in vgic_init()

- Fix a UBSAN error when faking the cache topology with MTE
  enabled

----------------------------------------------------------------
Ilkka Koskinen (1):
      KVM: arm64: Fix shift-out-of-bounds bug

Marc Zyngier (1):
      KVM: arm64: Shave a few bytes from the EL2 idmap code

Oliver Upton (2):
      KVM: arm64: vgic: Don't check for vgic_ready() when setting NR_IRQS
      KVM: arm64: Ensure vgic_ready() is ordered against MMIO registration

 arch/arm64/include/asm/kvm_asm.h      |  1 +
 arch/arm64/kernel/asm-offsets.c       |  1 +
 arch/arm64/kvm/hyp/nvhe/hyp-init.S    | 52 +++++++++++++++++++----------------
 arch/arm64/kvm/sys_regs.c             |  2 +-
 arch/arm64/kvm/vgic/vgic-init.c       | 13 +++++++--
 arch/arm64/kvm/vgic/vgic-kvm-device.c |  7 ++++-
 6 files changed, 49 insertions(+), 27 deletions(-)

.
Subject: [PATCH v7 00/11] arm64: Support for running as a guest in Arm CCA
From: Steven Price <steven.price@arm.com>
To: kvm@vger.kernel.org,
	kvmarm@lists.linux.dev
Cc: Steven Price <steven.price@arm.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Marc Zyngier <maz@kernel.org>,
	Will Deacon <will@kernel.org>,
	James Morse <james.morse@arm.com>,
	Oliver Upton <oliver.upton@linux.dev>,
	Suzuki K Poulose <suzuki.poulose@arm.com>,
	Zenghui Yu <yuzenghui@huawei.com>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	Joey Gouly <joey.gouly@arm.com>,
	Alexandru Elisei <alexandru.elisei@arm.com>,
	Christoffer Dall <christoffer.dall@arm.com>,
	Fuad Tabba <tabba@google.com>,
	linux-coco@lists.linux.dev,
	Ganapatrao Kulkarni <gankulkarni@os.amperecomputing.com>,
	Gavin Shan <gshan@redhat.com>,
	Shanker Donthineni <sdonthineni@nvidia.com>,
	Alper Gun <alpergun@google.com>,
	Dan Williams <dan.j.williams@intel.com>,
	"Aneesh Kumar K . V" <aneesh.kumar@kernel.org>
Date: Thu, 17 Oct 2024 14:14:23 +0100

.
