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:
x86/irq: Fix move_irq_desc() for nodes without ram

+2 -2
+2 -2
kernel/irq/numa_migrate.c
··· 107 107 108 108 struct irq_desc *move_irq_desc(struct irq_desc *desc, int node) 109 109 { 110 - /* those all static, do move them */ 111 - if (desc->irq < NR_IRQS_LEGACY) 110 + /* those static or target node is -1, do not move them */ 111 + if (desc->irq < NR_IRQS_LEGACY || node == -1) 112 112 return desc; 113 113 114 114 if (desc->node != node)