Skip to content

Commit 610192c

Browse files
committed
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
2 parents 9094662 + fbbd7ce commit 610192c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/irq/manage.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ setup_irq_thread(struct irqaction *new, unsigned int irq, bool secondary)
14141414
* Ensure the thread adjusts the affinity once it reaches the
14151415
* thread function.
14161416
*/
1417-
new->thread_flags = BIT(IRQTF_AFFINITY);
1417+
set_bit(IRQTF_AFFINITY, &new->thread_flags);
14181418

14191419
return 0;
14201420
}

0 commit comments

Comments
 (0)