From: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
To: Yury Norov <yury.norov@gmail.com>
Cc: Florian Fainelli <f.fainelli@gmail.com>,
linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] MIPS: SGI-IP27: micro-optimize arch_init_irq()
Date: Mon, 15 Apr 2024 10:31:37 +0200 [thread overview]
Message-ID: <Zhzl6TE57LCjdJXL@alpha.franken.de> (raw)
In-Reply-To: <20240413184913.69268-1-yury.norov@gmail.com>
On Sat, Apr 13, 2024 at 11:49:13AM -0700, Yury Norov wrote:
> The function sets adjasted groups of bits in hub_irq_map by using
> for-loops. There's a bitmap_set() function dedicated to do this.
>
> Because [0, CPU_CALL_B_IRQ] and [NI_BRDCAST_ERR_A, MSC_PANIC_INTR]
> ranges belong to the same machine word, bitmap_set() would boil down
> to an inline wrapper in both cases, avoiding generating a loop, whth
> the associate overhead.
>
> Signed-off-by: Yury Norov <yury.norov@gmail.com>
> ---
> arch/mips/sgi-ip27/ip27-irq.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/arch/mips/sgi-ip27/ip27-irq.c b/arch/mips/sgi-ip27/ip27-irq.c
> index e6ca34cc9853..3c3a4b56ab95 100644
> --- a/arch/mips/sgi-ip27/ip27-irq.c
> +++ b/arch/mips/sgi-ip27/ip27-irq.c
> @@ -279,11 +279,8 @@ void __init arch_init_irq(void)
> * Mark these as reserved right away so they won't be used accidentally
> * later.
> */
> - for (i = 0; i <= CPU_CALL_B_IRQ; i++)
> - set_bit(i, hub_irq_map);
> -
> - for (i = NI_BRDCAST_ERR_A; i <= MSC_PANIC_INTR; i++)
> - set_bit(i, hub_irq_map);
> + bitmap_set(hub_irq_map, 0, CPU_CALL_B_IRQ + 1);
> + bitmap_set(hub_irq_map, NI_BRDCAST_ERR_A, MSC_PANIC_INTR - NI_BRDCAST_ERR_A + 1);
>
> fn = irq_domain_alloc_named_fwnode("HUB");
> WARN_ON(fn == NULL);
> --
> 2.40.1
applied to mips-next.
Thomas.
--
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea. [ RFC1925, 2.3 ]
prev parent reply other threads:[~2024-04-15 8:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-13 18:49 [PATCH] MIPS: SGI-IP27: micro-optimize arch_init_irq() Yury Norov
2024-04-15 8:31 ` Thomas Bogendoerfer [this message]
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=Zhzl6TE57LCjdJXL@alpha.franken.de \
--to=tsbogend@alpha.franken.de \
--cc=f.fainelli@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@vger.kernel.org \
--cc=yury.norov@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox