mbox series

[v3,00/11] KVM: arm64: Accelerate lookup of vcpus by MPIDR values (and other fixes)

Message ID 20230927090911.3355209-1-maz@kernel.org (mailing list archive)
Headers show
Series KVM: arm64: Accelerate lookup of vcpus by MPIDR values (and other fixes) | expand

Message

Marc Zyngier Sept. 27, 2023, 9:09 a.m. UTC
This is a follow-up on [2], which addresses both the O(n) SGI injection
issue, and cleans up a number of embarassing bugs steaming form the
vcpuid/vcpu_idx confusion.

See the changelog below for details.

Oliver, assuming that you haven't changed your mind and that
nobody shouts, feel free to queue this in -next.

* From v2 [2]:
  - Killed a number of online_vcpus comparisons, which didn't make
    much sense (Zenghui)
  - Added missing commit logs (oops)
  - Fixed some comments
  - Collected RBs, with thanks

* From v1 [1]:
  - Added a bunch of patches fixing the vcpu_id[x] ambiguity
  - Added a documentation update spelling out some extra ordering requirements
  - Collected RBs/TBs, with thanks

[1] https://lore.kernel.org/r/20230907100931.1186690-1-maz@kernel.org
[2] https://lore.kernel.org/r/20230920181731.2232453-1-maz@kernel.org

Marc Zyngier (11):
  KVM: arm64: vgic: Make kvm_vgic_inject_irq() take a vcpu pointer
  KVM: arm64: vgic-its: Treat the collection target address as a vcpu_id
  KVM: arm64: vgic-v3: Refactor GICv3 SGI generation
  KVM: arm64: vgic-v2: Use cpuid from userspace as vcpu_id
  KVM: arm64: vgic: Use vcpu_idx for the debug information
  KVM: arm64: Use vcpu_idx for invalidation tracking
  KVM: arm64: Simplify kvm_vcpu_get_mpidr_aff()
  KVM: arm64: Build MPIDR to vcpu index cache at runtime
  KVM: arm64: Fast-track kvm_mpidr_to_vcpu() when mpidr_data is
    available
  KVM: arm64: vgic-v3: Optimize affinity-based SGI injection
  KVM: arm64: Clarify the ordering requirements for vcpu/RD creation

 .../virt/kvm/devices/arm-vgic-v3.rst          |   7 +
 arch/arm64/include/asm/kvm_emulate.h          |   2 +-
 arch/arm64/include/asm/kvm_host.h             |  28 ++++
 arch/arm64/kvm/arch_timer.c                   |   2 +-
 arch/arm64/kvm/arm.c                          |  93 +++++++++--
 arch/arm64/kvm/pmu-emul.c                     |   2 +-
 arch/arm64/kvm/vgic/vgic-debug.c              |   6 +-
 arch/arm64/kvm/vgic/vgic-irqfd.c              |   2 +-
 arch/arm64/kvm/vgic/vgic-its.c                |  49 +++---
 arch/arm64/kvm/vgic/vgic-kvm-device.c         |   8 +-
 arch/arm64/kvm/vgic/vgic-mmio-v3.c            | 150 +++++++-----------
 arch/arm64/kvm/vgic/vgic.c                    |  12 +-
 include/kvm/arm_vgic.h                        |   4 +-
 13 files changed, 212 insertions(+), 153 deletions(-)

Comments

Oliver Upton Sept. 30, 2023, 6:27 p.m. UTC | #1
On Wed, 27 Sep 2023 10:09:00 +0100, Marc Zyngier wrote:
> This is a follow-up on [2], which addresses both the O(n) SGI injection
> issue, and cleans up a number of embarassing bugs steaming form the
> vcpuid/vcpu_idx confusion.
> 
> See the changelog below for details.
> 
> Oliver, assuming that you haven't changed your mind and that
> nobody shouts, feel free to queue this in -next.
> 
> [...]

Applied to kvmarm/next, thanks!

[01/11] KVM: arm64: vgic: Make kvm_vgic_inject_irq() take a vcpu pointer
        https://git.kernel.org/kvmarm/kvmarm/c/9a0a75d3ccee
[02/11] KVM: arm64: vgic-its: Treat the collection target address as a vcpu_id
        https://git.kernel.org/kvmarm/kvmarm/c/d455d366c451
[03/11] KVM: arm64: vgic-v3: Refactor GICv3 SGI generation
        https://git.kernel.org/kvmarm/kvmarm/c/f3f60a565391
[04/11] KVM: arm64: vgic-v2: Use cpuid from userspace as vcpu_id
        https://git.kernel.org/kvmarm/kvmarm/c/4e7728c81a54
[05/11] KVM: arm64: vgic: Use vcpu_idx for the debug information
        https://git.kernel.org/kvmarm/kvmarm/c/ac0fe56d46c0
[06/11] KVM: arm64: Use vcpu_idx for invalidation tracking
        https://git.kernel.org/kvmarm/kvmarm/c/5f4bd815ec71
[07/11] KVM: arm64: Simplify kvm_vcpu_get_mpidr_aff()
        https://git.kernel.org/kvmarm/kvmarm/c/0a2acd38d23b
[08/11] KVM: arm64: Build MPIDR to vcpu index cache at runtime
        https://git.kernel.org/kvmarm/kvmarm/c/5544750efd51
[09/11] KVM: arm64: Fast-track kvm_mpidr_to_vcpu() when mpidr_data is available
        https://git.kernel.org/kvmarm/kvmarm/c/54a8006d0b49
[10/11] KVM: arm64: vgic-v3: Optimize affinity-based SGI injection
        https://git.kernel.org/kvmarm/kvmarm/c/b5daffb120bb
[11/11] KVM: arm64: Clarify the ordering requirements for vcpu/RD creation
        https://git.kernel.org/kvmarm/kvmarm/c/f9940416f193

--
Best,
Oliver