All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Christoffer Dall <christoffer.dall@linaro.org>,
	kvmarm@lists.cs.columbia.edu,
	linux-arm-kernel@lists.infradead.org
Cc: Marc Zyngier <marc.zyngier@arm.com>, kvm@vger.kernel.org
Subject: Re: [PULL 00/12] KVM/ARM Fixes for v4.8-rc3
Date: Thu, 18 Aug 2016 12:19:41 +0200	[thread overview]
Message-ID: <3b5c3520-da99-e255-6961-2d2706f39c81@redhat.com> (raw)
In-Reply-To: <20160817193859.15726-1-christoffer.dall@linaro.org>



On 17/08/2016 21:38, Christoffer Dall wrote:
> Hi Paolo and Radim,
> 
> Here's a set of KVM/ARM fixes for v4.8-rc3 or as soon as you can make
> it.  They address:
>  - ITS init issues
>  - ITS error handling issues
>  - ITS IRQ leakage fix
>  - Plug a couple of ITS race conditions
>  - An erratum workaround for timers
>  - Some removal of misleading use of errors and comments
>  - A fix for GICv3 on 32-bit guests
> 
> Note that the patch previously submitted 'KVM: arm64: vgic-its: Grab
> kvm->lock when reading kvm->devices', was dropped from this series
> because we were already holding the kvm->lock in the call path to the
> ITS code.
> 
> The following changes since commit 29b4817d4018df78086157ea3a55c1d9424a7cfc:
> 
>   Linux 4.8-rc1 (2016-08-07 18:18:00 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git kvm-arm-for-v4.8-rc3
> 
> for you to fetch changes up to f7f6f2d94f0027242ddfd665289b107a873fde43:
> 
>   arm64: KVM: report configured SRE value to 32-bit world (2016-08-17 12:46:23 +0200)
> 
> Thanks,
> -Christoffer
> 
> ----------------------------------------------------------------
> Andre Przywara (4):
>       KVM: arm64: ITS: return 1 on successful MSI injection
>       KVM: arm64: ITS: move ITS registration into first VCPU run
>       KVM: arm64: check for ITS device on MSI injection
>       KVM: arm64: ITS: avoid re-mapping LPIs
> 
> Christoffer Dall (4):
>       KVM: arm64: vgic-its: Handle errors from vgic_add_lpi
>       KVM: arm64: vgic-its: Plug race in vgic_put_irq
>       KVM: arm64: vgic-its: Make updates to propbaser/pendbaser atomic
>       KVM: arm/arm64: Change misleading use of is_error_pfn
> 
> Marc Zyngier (2):
>       arm64: Document workaround for Cortex-A72 erratum #853709
>       KVM: arm/arm64: timer: Workaround misconfigured timer interrupt
> 
> Vladimir Murzin (2):
>       arm64: KVM: remove misleading comment on pmu status
>       arm64: KVM: report configured SRE value to 32-bit world
> 
>  Documentation/arm64/silicon-errata.txt |   1 +
>  arch/arm/kvm/mmu.c                     |   2 +-
>  arch/arm64/kvm/hyp/switch.c            |   2 +-
>  arch/arm64/kvm/sys_regs.c              |  10 +--
>  include/linux/irqchip/arm-gic-v3.h     |   1 +
>  virt/kvm/arm/arch_timer.c              |  11 ++-
>  virt/kvm/arm/vgic/vgic-its.c           | 158 ++++++++++++++++++++++++---------
>  virt/kvm/arm/vgic/vgic-mmio-v3.c       |  26 +++---
>  virt/kvm/arm/vgic/vgic-v3.c            |   8 ++
>  virt/kvm/arm/vgic/vgic.c               |  10 +--
>  virt/kvm/arm/vgic/vgic.h               |   6 ++
>  11 files changed, 164 insertions(+), 71 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

Pulled, thanks.

Paolo

WARNING: multiple messages have this Message-ID (diff)
From: pbonzini@redhat.com (Paolo Bonzini)
To: linux-arm-kernel@lists.infradead.org
Subject: [PULL 00/12] KVM/ARM Fixes for v4.8-rc3
Date: Thu, 18 Aug 2016 12:19:41 +0200	[thread overview]
Message-ID: <3b5c3520-da99-e255-6961-2d2706f39c81@redhat.com> (raw)
In-Reply-To: <20160817193859.15726-1-christoffer.dall@linaro.org>



On 17/08/2016 21:38, Christoffer Dall wrote:
> Hi Paolo and Radim,
> 
> Here's a set of KVM/ARM fixes for v4.8-rc3 or as soon as you can make
> it.  They address:
>  - ITS init issues
>  - ITS error handling issues
>  - ITS IRQ leakage fix
>  - Plug a couple of ITS race conditions
>  - An erratum workaround for timers
>  - Some removal of misleading use of errors and comments
>  - A fix for GICv3 on 32-bit guests
> 
> Note that the patch previously submitted 'KVM: arm64: vgic-its: Grab
> kvm->lock when reading kvm->devices', was dropped from this series
> because we were already holding the kvm->lock in the call path to the
> ITS code.
> 
> The following changes since commit 29b4817d4018df78086157ea3a55c1d9424a7cfc:
> 
>   Linux 4.8-rc1 (2016-08-07 18:18:00 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git kvm-arm-for-v4.8-rc3
> 
> for you to fetch changes up to f7f6f2d94f0027242ddfd665289b107a873fde43:
> 
>   arm64: KVM: report configured SRE value to 32-bit world (2016-08-17 12:46:23 +0200)
> 
> Thanks,
> -Christoffer
> 
> ----------------------------------------------------------------
> Andre Przywara (4):
>       KVM: arm64: ITS: return 1 on successful MSI injection
>       KVM: arm64: ITS: move ITS registration into first VCPU run
>       KVM: arm64: check for ITS device on MSI injection
>       KVM: arm64: ITS: avoid re-mapping LPIs
> 
> Christoffer Dall (4):
>       KVM: arm64: vgic-its: Handle errors from vgic_add_lpi
>       KVM: arm64: vgic-its: Plug race in vgic_put_irq
>       KVM: arm64: vgic-its: Make updates to propbaser/pendbaser atomic
>       KVM: arm/arm64: Change misleading use of is_error_pfn
> 
> Marc Zyngier (2):
>       arm64: Document workaround for Cortex-A72 erratum #853709
>       KVM: arm/arm64: timer: Workaround misconfigured timer interrupt
> 
> Vladimir Murzin (2):
>       arm64: KVM: remove misleading comment on pmu status
>       arm64: KVM: report configured SRE value to 32-bit world
> 
>  Documentation/arm64/silicon-errata.txt |   1 +
>  arch/arm/kvm/mmu.c                     |   2 +-
>  arch/arm64/kvm/hyp/switch.c            |   2 +-
>  arch/arm64/kvm/sys_regs.c              |  10 +--
>  include/linux/irqchip/arm-gic-v3.h     |   1 +
>  virt/kvm/arm/arch_timer.c              |  11 ++-
>  virt/kvm/arm/vgic/vgic-its.c           | 158 ++++++++++++++++++++++++---------
>  virt/kvm/arm/vgic/vgic-mmio-v3.c       |  26 +++---
>  virt/kvm/arm/vgic/vgic-v3.c            |   8 ++
>  virt/kvm/arm/vgic/vgic.c               |  10 +--
>  virt/kvm/arm/vgic/vgic.h               |   6 ++
>  11 files changed, 164 insertions(+), 71 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

Pulled, thanks.

Paolo

  parent reply	other threads:[~2016-08-18 10:19 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-17 19:38 [PULL 00/12] KVM/ARM Fixes for v4.8-rc3 Christoffer Dall
2016-08-17 19:38 ` Christoffer Dall
2016-08-17 19:38 ` [PULL 01/12] KVM: arm64: ITS: return 1 on successful MSI injection Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 02/12] KVM: arm64: vgic-its: Handle errors from vgic_add_lpi Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 03/12] KVM: arm64: vgic-its: Plug race in vgic_put_irq Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 04/12] KVM: arm64: vgic-its: Make updates to propbaser/pendbaser atomic Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 05/12] KVM: arm64: ITS: move ITS registration into first VCPU run Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 06/12] KVM: arm64: check for ITS device on MSI injection Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 07/12] KVM: arm64: ITS: avoid re-mapping LPIs Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 08/12] KVM: arm/arm64: Change misleading use of is_error_pfn Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 09/12] arm64: Document workaround for Cortex-A72 erratum #853709 Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 10/12] KVM: arm/arm64: timer: Workaround misconfigured timer interrupt Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 11/12] arm64: KVM: remove misleading comment on pmu status Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-17 19:38 ` [PULL 12/12] arm64: KVM: report configured SRE value to 32-bit world Christoffer Dall
2016-08-17 19:38   ` Christoffer Dall
2016-08-18 10:19 ` Paolo Bonzini [this message]
2016-08-18 10:19   ` [PULL 00/12] KVM/ARM Fixes for v4.8-rc3 Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3b5c3520-da99-e255-6961-2d2706f39c81@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=christoffer.dall@linaro.org \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.cs.columbia.edu \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=marc.zyngier@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.