Skip to content

Commit 40e20fb

Browse files
YuryNorovtsbogend
authored andcommitted
MIPS: SGI-IP27: micro-optimize arch_init_irq()
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 <[email protected]> Signed-off-by: Thomas Bogendoerfer <[email protected]>
1 parent b8f8e5a commit 40e20fb

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

arch/mips/sgi-ip27/ip27-irq.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,8 @@ void __init arch_init_irq(void)
286286
* Mark these as reserved right away so they won't be used accidentally
287287
* later.
288288
*/
289-
for (i = 0; i <= CPU_CALL_B_IRQ; i++)
290-
set_bit(i, hub_irq_map);
291-
292-
for (i = NI_BRDCAST_ERR_A; i <= MSC_PANIC_INTR; i++)
293-
set_bit(i, hub_irq_map);
289+
bitmap_set(hub_irq_map, 0, CPU_CALL_B_IRQ + 1);
290+
bitmap_set(hub_irq_map, NI_BRDCAST_ERR_A, MSC_PANIC_INTR - NI_BRDCAST_ERR_A + 1);
294291

295292
fn = irq_domain_alloc_named_fwnode("HUB");
296293
WARN_ON(fn == NULL);

0 commit comments

Comments
 (0)