From: christoffer.dall@linaro.org (Christoffer Dall)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 3/9] arm/arm64: KVM: vgic: Parametrize VGIC_NR_SHARED_IRQS
Date: Tue, 5 Aug 2014 15:42:13 +0200 [thread overview]
Message-ID: <20140805134213.GG524@cbox> (raw)
In-Reply-To: <1404817748-31302-4-git-send-email-marc.zyngier@arm.com>
On Tue, Jul 08, 2014 at 12:09:02PM +0100, Marc Zyngier wrote:
> Having a dynamic number of supported interrupts means that we
> cannot relly on VGIC_NR_SHARED_IRQS being fixed anymore.
>
> Instead, make it take the distributor structure as a parameter,
> so it can return the right value.
>
> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
> ---
> include/kvm/arm_vgic.h | 1 -
> virt/kvm/arm/vgic.c | 16 +++++++++++-----
> 2 files changed, 11 insertions(+), 6 deletions(-)
>
> diff --git a/include/kvm/arm_vgic.h b/include/kvm/arm_vgic.h
> index 2246f4c..b8a6337 100644
> --- a/include/kvm/arm_vgic.h
> +++ b/include/kvm/arm_vgic.h
> @@ -29,7 +29,6 @@
> #define VGIC_NR_SGIS 16
> #define VGIC_NR_PPIS 16
> #define VGIC_NR_PRIVATE_IRQS (VGIC_NR_SGIS + VGIC_NR_PPIS)
> -#define VGIC_NR_SHARED_IRQS (VGIC_NR_IRQS - VGIC_NR_PRIVATE_IRQS)
> #define VGIC_MAX_CPUS KVM_MAX_VCPUS
>
> #define VGIC_V2_MAX_LRS (1 << 6)
> diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c
> index 754d1cd..6f7cf85 100644
> --- a/virt/kvm/arm/vgic.c
> +++ b/virt/kvm/arm/vgic.c
> @@ -995,11 +995,17 @@ static void vgic_dispatch_sgi(struct kvm_vcpu *vcpu, u32 reg)
> }
> }
>
> +static int vgic_nr_shared_irqs(struct vgic_dist *dist)
> +{
> + return dist->nr_irqs - VGIC_NR_PRIVATE_IRQS;
> +}
> +
> static int compute_pending_for_cpu(struct kvm_vcpu *vcpu)
> {
> struct vgic_dist *dist = &vcpu->kvm->arch.vgic;
> unsigned long *pending, *enabled, *pend_percpu, *pend_shared;
> unsigned long pending_private, pending_shared;
> + int shared = vgic_nr_shared_irqs(dist);
nit: prefer nr_shared
> int vcpu_id;
>
> vcpu_id = vcpu->vcpu_id;
> @@ -1012,15 +1018,15 @@ static int compute_pending_for_cpu(struct kvm_vcpu *vcpu)
>
> pending = vgic_bitmap_get_shared_map(&dist->irq_state);
> enabled = vgic_bitmap_get_shared_map(&dist->irq_enabled);
> - bitmap_and(pend_shared, pending, enabled, VGIC_NR_SHARED_IRQS);
> + bitmap_and(pend_shared, pending, enabled, shared);
> bitmap_and(pend_shared, pend_shared,
> vgic_bitmap_get_shared_map(&dist->irq_spi_target[vcpu_id]),
> - VGIC_NR_SHARED_IRQS);
> + shared);
>
> pending_private = find_first_bit(pend_percpu, VGIC_NR_PRIVATE_IRQS);
> - pending_shared = find_first_bit(pend_shared, VGIC_NR_SHARED_IRQS);
> + pending_shared = find_first_bit(pend_shared, shared);
> return (pending_private < VGIC_NR_PRIVATE_IRQS ||
> - pending_shared < VGIC_NR_SHARED_IRQS);
> + pending_shared < vgic_nr_shared_irqs(dist));
> }
>
> /*
> @@ -1277,7 +1283,7 @@ static void __kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu)
> }
>
> /* SPIs */
> - for_each_set_bit(i, vgic_cpu->pending_shared, VGIC_NR_SHARED_IRQS) {
> + for_each_set_bit(i, vgic_cpu->pending_shared, vgic_nr_shared_irqs(dist)) {
> if (!vgic_queue_hwirq(vcpu, i + VGIC_NR_PRIVATE_IRQS))
> overflow = 1;
> }
> --
> 2.0.0
>
There are a number of places in patch 2 where you do "nr_irqs -
VGIC_NR_PRIVATE_IRQS" which you could change to use this as well now.
Otherwise:
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
WARNING: multiple messages have this Message-ID (diff)
From: Christoffer Dall <christoffer.dall@linaro.org>
To: Marc Zyngier <marc.zyngier@arm.com>
Cc: kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, andre.przywara@arm.com
Subject: Re: [PATCH v3 3/9] arm/arm64: KVM: vgic: Parametrize VGIC_NR_SHARED_IRQS
Date: Tue, 5 Aug 2014 15:42:13 +0200 [thread overview]
Message-ID: <20140805134213.GG524@cbox> (raw)
In-Reply-To: <1404817748-31302-4-git-send-email-marc.zyngier@arm.com>
On Tue, Jul 08, 2014 at 12:09:02PM +0100, Marc Zyngier wrote:
> Having a dynamic number of supported interrupts means that we
> cannot relly on VGIC_NR_SHARED_IRQS being fixed anymore.
>
> Instead, make it take the distributor structure as a parameter,
> so it can return the right value.
>
> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
> ---
> include/kvm/arm_vgic.h | 1 -
> virt/kvm/arm/vgic.c | 16 +++++++++++-----
> 2 files changed, 11 insertions(+), 6 deletions(-)
>
> diff --git a/include/kvm/arm_vgic.h b/include/kvm/arm_vgic.h
> index 2246f4c..b8a6337 100644
> --- a/include/kvm/arm_vgic.h
> +++ b/include/kvm/arm_vgic.h
> @@ -29,7 +29,6 @@
> #define VGIC_NR_SGIS 16
> #define VGIC_NR_PPIS 16
> #define VGIC_NR_PRIVATE_IRQS (VGIC_NR_SGIS + VGIC_NR_PPIS)
> -#define VGIC_NR_SHARED_IRQS (VGIC_NR_IRQS - VGIC_NR_PRIVATE_IRQS)
> #define VGIC_MAX_CPUS KVM_MAX_VCPUS
>
> #define VGIC_V2_MAX_LRS (1 << 6)
> diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c
> index 754d1cd..6f7cf85 100644
> --- a/virt/kvm/arm/vgic.c
> +++ b/virt/kvm/arm/vgic.c
> @@ -995,11 +995,17 @@ static void vgic_dispatch_sgi(struct kvm_vcpu *vcpu, u32 reg)
> }
> }
>
> +static int vgic_nr_shared_irqs(struct vgic_dist *dist)
> +{
> + return dist->nr_irqs - VGIC_NR_PRIVATE_IRQS;
> +}
> +
> static int compute_pending_for_cpu(struct kvm_vcpu *vcpu)
> {
> struct vgic_dist *dist = &vcpu->kvm->arch.vgic;
> unsigned long *pending, *enabled, *pend_percpu, *pend_shared;
> unsigned long pending_private, pending_shared;
> + int shared = vgic_nr_shared_irqs(dist);
nit: prefer nr_shared
> int vcpu_id;
>
> vcpu_id = vcpu->vcpu_id;
> @@ -1012,15 +1018,15 @@ static int compute_pending_for_cpu(struct kvm_vcpu *vcpu)
>
> pending = vgic_bitmap_get_shared_map(&dist->irq_state);
> enabled = vgic_bitmap_get_shared_map(&dist->irq_enabled);
> - bitmap_and(pend_shared, pending, enabled, VGIC_NR_SHARED_IRQS);
> + bitmap_and(pend_shared, pending, enabled, shared);
> bitmap_and(pend_shared, pend_shared,
> vgic_bitmap_get_shared_map(&dist->irq_spi_target[vcpu_id]),
> - VGIC_NR_SHARED_IRQS);
> + shared);
>
> pending_private = find_first_bit(pend_percpu, VGIC_NR_PRIVATE_IRQS);
> - pending_shared = find_first_bit(pend_shared, VGIC_NR_SHARED_IRQS);
> + pending_shared = find_first_bit(pend_shared, shared);
> return (pending_private < VGIC_NR_PRIVATE_IRQS ||
> - pending_shared < VGIC_NR_SHARED_IRQS);
> + pending_shared < vgic_nr_shared_irqs(dist));
> }
>
> /*
> @@ -1277,7 +1283,7 @@ static void __kvm_vgic_flush_hwstate(struct kvm_vcpu *vcpu)
> }
>
> /* SPIs */
> - for_each_set_bit(i, vgic_cpu->pending_shared, VGIC_NR_SHARED_IRQS) {
> + for_each_set_bit(i, vgic_cpu->pending_shared, vgic_nr_shared_irqs(dist)) {
> if (!vgic_queue_hwirq(vcpu, i + VGIC_NR_PRIVATE_IRQS))
> overflow = 1;
> }
> --
> 2.0.0
>
There are a number of places in patch 2 where you do "nr_irqs -
VGIC_NR_PRIVATE_IRQS" which you could change to use this as well now.
Otherwise:
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
next prev parent reply other threads:[~2014-08-05 13:42 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-08 11:08 [PATCH v3 0/9] arm/arm64: KVM: dynamic VGIC sizing Marc Zyngier
2014-07-08 11:08 ` Marc Zyngier
2014-07-08 11:09 ` [PATCH v3 1/9] KVM: ARM: vgic: plug irq injection race Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-07-08 11:09 ` [PATCH v3 2/9] arm/arm64: KVM: vgic: switch to dynamic allocation Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 13:39 ` Christoffer Dall
2014-08-05 13:39 ` Christoffer Dall
2014-07-08 11:09 ` [PATCH v3 3/9] arm/arm64: KVM: vgic: Parametrize VGIC_NR_SHARED_IRQS Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 13:42 ` Christoffer Dall [this message]
2014-08-05 13:42 ` Christoffer Dall
2014-07-08 11:09 ` [PATCH v3 4/9] arm/arm64: KVM: vgic: kill VGIC_MAX_CPUS Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 13:49 ` Christoffer Dall
2014-08-05 13:49 ` Christoffer Dall
2014-07-08 11:09 ` [PATCH v3 5/9] arm/arm64: KVM: vgic: handle out-of-range MMIO accesses Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 13:56 ` Christoffer Dall
2014-08-05 13:56 ` Christoffer Dall
2014-07-08 11:09 ` [PATCH v3 6/9] arm/arm64: KVM: vgic: kill VGIC_NR_IRQS Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 13:58 ` Christoffer Dall
2014-08-05 13:58 ` Christoffer Dall
2014-07-08 11:09 ` [PATCH v3 7/9] arm/arm64: KVM: vgic: delay vgic allocation until init time Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 15:34 ` Christoffer Dall
2014-08-05 15:34 ` Christoffer Dall
2014-07-08 11:09 ` [PATCH v3 8/9] arm/arm64: KVM: vgic: make number of irqs a configurable attribute Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 15:39 ` Christoffer Dall
2014-08-05 15:39 ` Christoffer Dall
2014-07-08 11:09 ` [PATCH v3 9/9] arm64: KVM: vgic: deal with GIC sub-page alignment Marc Zyngier
2014-07-08 11:09 ` Marc Zyngier
2014-08-05 15:43 ` Christoffer Dall
2014-08-05 15:43 ` Christoffer Dall
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=20140805134213.GG524@cbox \
--to=christoffer.dall@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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.