diff options
| author | Yinghai Lu <[email protected]> | 2009-08-04 09:01:33 -0700 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2009-08-08 17:06:03 +0200 |
| commit | ad7d6c7a0654a4bbda3e109f56af713267e96274 (patch) | |
| tree | 4090be64f42e9c721a797d6798611ad9c07d2a2e | |
| parent | 7b2aa037e878c939676675969983284a02958ae3 (diff) | |
x86/irq: Fix move_irq_desc() for nodes without ram
Don't move it if target node is -1.
Signed-off-by: Yinghai Lu <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | kernel/irq/numa_migrate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/numa_migrate.c b/kernel/irq/numa_migrate.c index 2f69bee57bf2..3fd30197da2e 100644 --- a/kernel/irq/numa_migrate.c +++ b/kernel/irq/numa_migrate.c @@ -107,8 +107,8 @@ out_unlock: struct irq_desc *move_irq_desc(struct irq_desc *desc, int node) { - /* those all static, do move them */ - if (desc->irq < NR_IRQS_LEGACY) + /* those static or target node is -1, do not move them */ + if (desc->irq < NR_IRQS_LEGACY || node == -1) return desc; if (desc->node != node) |