Skip to content

Commit 0e4363a

Browse files
committed
Merge tag 'irq_urgent_for_v6.8_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull irq fix from Borislav Petkov: - Initialize the resend node of each IRQ descriptor, not only the first one * tag 'irq_urgent_for_v6.8_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: genirq: Initialize resend_node hlist for all interrupt descriptors
2 parents 90db544 + b184c8c commit 0e4363a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/irq/irqdesc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ int __init early_irq_init(void)
600600
mutex_init(&desc[i].request_mutex);
601601
init_waitqueue_head(&desc[i].wait_for_threads);
602602
desc_set_defaults(i, &desc[i], node, NULL, NULL);
603-
irq_resend_init(desc);
603+
irq_resend_init(&desc[i]);
604604
}
605605
return arch_early_irq_init();
606606
}

0 commit comments

Comments
 (0)