提交 ad7d6c7a 编写于 作者: Y Yinghai Lu 提交者: Ingo Molnar

x86/irq: Fix move_irq_desc() for nodes without ram

Don't move it if target node is -1.
Signed-off-by: NYinghai Lu <yinghai@kernel.org>
LKML-Reference: <4A785B5D.4070702@kernel.org>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 7b2aa037
...@@ -107,8 +107,8 @@ static struct irq_desc *__real_move_irq_desc(struct irq_desc *old_desc, ...@@ -107,8 +107,8 @@ static struct irq_desc *__real_move_irq_desc(struct irq_desc *old_desc,
struct irq_desc *move_irq_desc(struct irq_desc *desc, int node) struct irq_desc *move_irq_desc(struct irq_desc *desc, int node)
{ {
/* those all static, do move them */ /* those static or target node is -1, do not move them */
if (desc->irq < NR_IRQS_LEGACY) if (desc->irq < NR_IRQS_LEGACY || node == -1)
return desc; return desc;
if (desc->node != node) if (desc->node != node)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册