Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'irq-urgent-2025-12-21' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq fix from Ingo Molnar:
"Fix IRQ thread affinity flags setup regression"

* tag 'irq-urgent-2025-12-21' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
genirq: Don't overwrite interrupt thread flags on setup

+1 -1
+1 -1
kernel/irq/manage.c
··· 1414 1414 * Ensure the thread adjusts the affinity once it reaches the 1415 1415 * thread function. 1416 1416 */ 1417 - new->thread_flags = BIT(IRQTF_AFFINITY); 1417 + set_bit(IRQTF_AFFINITY, &new->thread_flags); 1418 1418 1419 1419 return 0; 1420 1420 }