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 * Ensure the thread adjusts the affinity once it reaches the 1415 * thread function. 1416 */ 1417 - new->thread_flags = BIT(IRQTF_AFFINITY); 1418 1419 return 0; 1420 }
··· 1414 * Ensure the thread adjusts the affinity once it reaches the 1415 * thread function. 1416 */ 1417 + set_bit(IRQTF_AFFINITY, &new->thread_flags); 1418 1419 return 0; 1420 }