Commit 610192c2 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

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
parents 9094662f fbbd7ce6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1414,7 +1414,7 @@ setup_irq_thread(struct irqaction *new, unsigned int irq, bool secondary)
	 * Ensure the thread adjusts the affinity once it reaches the
	 * thread function.
	 */
	new->thread_flags = BIT(IRQTF_AFFINITY);
	set_bit(IRQTF_AFFINITY, &new->thread_flags);

	return 0;
}