The patch titled x86_64 irq: Properly update vector_irq has been removed from the -mm tree. Its filename is x86_64-irq-properly-update-vector_irq.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: x86_64 irq: Properly update vector_irq From: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> This patch fixes my one line thinko where I was clearing the vector_irq entries on the wrong cpus. Signed-off-by: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/kernel/io_apic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86_64/kernel/io_apic.c~x86_64-irq-properly-update-vector_irq arch/x86_64/kernel/io_apic.c --- a/arch/x86_64/kernel/io_apic.c~x86_64-irq-properly-update-vector_irq +++ a/arch/x86_64/kernel/io_apic.c @@ -660,7 +660,7 @@ next: } if (old_vector >= 0) { int old_cpu; - for_each_cpu_mask(old_cpu, domain) + for_each_cpu_mask(old_cpu, irq_domain[irq]) per_cpu(vector_irq, old_cpu)[old_vector] = -1; } for_each_cpu_mask(new_cpu, domain) _ Patches currently in -mm which might be from ebiederm@xxxxxxxxxxxx are origin.patch x86_64-overlapping-program-headers-in-physical-addr-space-fix.patch insert-local-and-io-apics-into-resource-map.patch pidhash-temporary-debug-checks.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html