* [PATCH] irqchip/gic-v3: move reading of GICR_TYPER later
@ 2023-09-25 2:34 Rex Nie
2023-09-26 16:39 ` Marc Zyngier
0 siblings, 1 reply; 3+ messages in thread
From: Rex Nie @ 2023-09-25 2:34 UTC (permalink / raw)
To: tglx, maz; +Cc: linux-kernel, Rex Nie
This changeset will reduce one reading of GICR_TYPER register
when any of next 2 condictions meets:
1. found redistributor for current cpu
2. single_redist is true for gic_data.redist_regions[i]
Signed-off-by: Rex Nie <rex.nie@jaguarmicro.com>
---
drivers/irqchip/irq-gic-v3.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
index eedfa8e9f077..d08a4773f631 100644
--- a/drivers/irqchip/irq-gic-v3.c
+++ b/drivers/irqchip/irq-gic-v3.c
@@ -982,7 +982,6 @@ static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
}
do {
- typer = gic_read_typer(ptr + GICR_TYPER);
ret = fn(gic_data.redist_regions + i, ptr);
if (!ret)
return 0;
@@ -990,6 +989,7 @@ static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
if (gic_data.redist_regions[i].single_redist)
break;
+ typer = gic_read_typer(ptr + GICR_TYPER);
if (gic_data.redist_stride) {
ptr += gic_data.redist_stride;
} else {
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] irqchip/gic-v3: move reading of GICR_TYPER later
2023-09-25 2:34 [PATCH] irqchip/gic-v3: move reading of GICR_TYPER later Rex Nie
@ 2023-09-26 16:39 ` Marc Zyngier
2023-10-08 12:55 ` 答复: " Rex Nie
0 siblings, 1 reply; 3+ messages in thread
From: Marc Zyngier @ 2023-09-26 16:39 UTC (permalink / raw)
To: Rex Nie; +Cc: tglx, linux-kernel
On Mon, 25 Sep 2023 03:34:08 +0100,
Rex Nie <rex.nie@jaguarmicro.com> wrote:
>
> This changeset will reduce one reading of GICR_TYPER register
> when any of next 2 condictions meets:
> 1. found redistributor for current cpu
> 2. single_redist is true for gic_data.redist_regions[i]
>
> Signed-off-by: Rex Nie <rex.nie@jaguarmicro.com>
> ---
> drivers/irqchip/irq-gic-v3.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
> index eedfa8e9f077..d08a4773f631 100644
> --- a/drivers/irqchip/irq-gic-v3.c
> +++ b/drivers/irqchip/irq-gic-v3.c
> @@ -982,7 +982,6 @@ static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
> }
>
> do {
> - typer = gic_read_typer(ptr + GICR_TYPER);
> ret = fn(gic_data.redist_regions + i, ptr);
> if (!ret)
> return 0;
> @@ -990,6 +989,7 @@ static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
> if (gic_data.redist_regions[i].single_redist)
> break;
>
> + typer = gic_read_typer(ptr + GICR_TYPER);
> if (gic_data.redist_stride) {
> ptr += gic_data.redist_stride;
> } else {
I personally prefer establishing the exit condition for the loop as
early as possible. Doing it later makes this code slightly more
fragile, and I somehow doubt that you will notice the extra reads.
Can you at least quantify the improvement?
M.
--
Without deviation from the norm, progress is not possible.
^ permalink raw reply [flat|nested] 3+ messages in thread* 答复: [PATCH] irqchip/gic-v3: move reading of GICR_TYPER later
2023-09-26 16:39 ` Marc Zyngier
@ 2023-10-08 12:55 ` Rex Nie
0 siblings, 0 replies; 3+ messages in thread
From: Rex Nie @ 2023-10-08 12:55 UTC (permalink / raw)
To: Marc Zyngier; +Cc: tglx@linutronix.de, linux-kernel@vger.kernel.org
HI Marc,
Thanks for your code review, Agree with you about the changeset will make this code more fragile.
BRs
Rex Nie
-----邮件原件-----
发件人: Marc Zyngier <maz@kernel.org>
发送时间: 2023年9月27日 0:40
收件人: Rex Nie <rex.nie@jaguarmicro.com>
抄送: tglx@linutronix.de; linux-kernel@vger.kernel.org
主题: Re: [PATCH] irqchip/gic-v3: move reading of GICR_TYPER later
On Mon, 25 Sep 2023 03:34:08 +0100,
Rex Nie <rex.nie@jaguarmicro.com> wrote:
>
> This changeset will reduce one reading of GICR_TYPER register when any
> of next 2 condictions meets:
> 1. found redistributor for current cpu 2. single_redist is true for
> gic_data.redist_regions[i]
>
> Signed-off-by: Rex Nie <rex.nie@jaguarmicro.com>
> ---
> drivers/irqchip/irq-gic-v3.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/irqchip/irq-gic-v3.c
> b/drivers/irqchip/irq-gic-v3.c index eedfa8e9f077..d08a4773f631 100644
> --- a/drivers/irqchip/irq-gic-v3.c
> +++ b/drivers/irqchip/irq-gic-v3.c
> @@ -982,7 +982,6 @@ static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
> }
>
> do {
> - typer = gic_read_typer(ptr + GICR_TYPER);
> ret = fn(gic_data.redist_regions + i, ptr);
> if (!ret)
> return 0;
> @@ -990,6 +989,7 @@ static int gic_iterate_rdists(int (*fn)(struct redist_region *, void __iomem *))
> if (gic_data.redist_regions[i].single_redist)
> break;
>
> + typer = gic_read_typer(ptr + GICR_TYPER);
> if (gic_data.redist_stride) {
> ptr += gic_data.redist_stride;
> } else {
I personally prefer establishing the exit condition for the loop as early as possible. Doing it later makes this code slightly more fragile, and I somehow doubt that you will notice the extra reads.
Can you at least quantify the improvement?
M.
--
Without deviation from the norm, progress is not possible.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-10-08 12:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-25 2:34 [PATCH] irqchip/gic-v3: move reading of GICR_TYPER later Rex Nie
2023-09-26 16:39 ` Marc Zyngier
2023-10-08 12:55 ` 答复: " Rex Nie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox