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 branch 'irq-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip

* 'irq-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
genirq: Fix UP compile failure caused by irq_thread_check_affinity

+5
+5
kernel/irq/manage.c
··· 451 451 return -1; 452 452 } 453 453 454 + #ifdef CONFIG_SMP 454 455 /* 455 456 * Check whether we need to change the affinity of the interrupt thread. 456 457 */ ··· 479 478 set_cpus_allowed_ptr(current, mask); 480 479 free_cpumask_var(mask); 481 480 } 481 + #else 482 + static inline void 483 + irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action) { } 484 + #endif 482 485 483 486 /* 484 487 * Interrupt handler thread