diff options
author | Yinghai Lu <yinghai@kernel.org> | 2008-12-19 16:48:34 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-19 16:56:02 -0500 |
commit | b909895739427874c089bc0e03dc119f99cab2dd (patch) | |
tree | bded0a68688cf8a43897b8234a6ef4abaf727985 /arch/x86 | |
parent | 078a55db075bf4dcc03115dc94875b3dd83f69d4 (diff) |
sparseirq: fix numa_migrate_irq_desc dependency and comments
Impact: reduce kconfig variable scope and clean up
Bartlomiej pointed out that the config dependencies and comments are not right.
update it depend to NUMA, and fix some comments
Reported-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/Kconfig | 2 | ||||
-rw-r--r-- | arch/x86/kernel/io_apic.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 60a008857a38..5c243826334a 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -250,7 +250,7 @@ config SPARSE_IRQ | |||
250 | 250 | ||
251 | config NUMA_MIGRATE_IRQ_DESC | 251 | config NUMA_MIGRATE_IRQ_DESC |
252 | bool "Move irq desc when changing irq smp_affinity" | 252 | bool "Move irq desc when changing irq smp_affinity" |
253 | depends on SPARSE_IRQ && SMP | 253 | depends on SPARSE_IRQ && NUMA |
254 | default n | 254 | default n |
255 | help | 255 | help |
256 | This enables moving irq_desc to cpu/node that irq will use handled. | 256 | This enables moving irq_desc to cpu/node that irq will use handled. |
diff --git a/arch/x86/kernel/io_apic.c b/arch/x86/kernel/io_apic.c index bfe1245b1a3e..a74887b416cc 100644 --- a/arch/x86/kernel/io_apic.c +++ b/arch/x86/kernel/io_apic.c | |||
@@ -2471,7 +2471,7 @@ static void irq_complete_move(struct irq_desc **descp) | |||
2471 | if (likely(!cfg->move_desc_pending)) | 2471 | if (likely(!cfg->move_desc_pending)) |
2472 | return; | 2472 | return; |
2473 | 2473 | ||
2474 | /* domain is not change, but affinity is changed */ | 2474 | /* domain has not changed, but affinity did */ |
2475 | me = smp_processor_id(); | 2475 | me = smp_processor_id(); |
2476 | if (cpu_isset(me, desc->affinity)) { | 2476 | if (cpu_isset(me, desc->affinity)) { |
2477 | *descp = desc = move_irq_desc(desc, me); | 2477 | *descp = desc = move_irq_desc(desc, me); |