[PATCH] x86-64: typo in __assign_irq_vector when updating pos for vector and offset

typo with cpu instead of new_cpu

Signed-off-by: Yinghai Lu <yinghai.lu@amd.com>
Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
Yinghai Lu
2006-10-21 18:37:01 +02:00
committed by Andi Kleen
parent 926fafebc4
commit 45edfd1db0

View File

@@ -651,12 +651,12 @@ next:
if (vector == IA32_SYSCALL_VECTOR) if (vector == IA32_SYSCALL_VECTOR)
goto next; goto next;
for_each_cpu_mask(new_cpu, domain) for_each_cpu_mask(new_cpu, domain)
if (per_cpu(vector_irq, cpu)[vector] != -1) if (per_cpu(vector_irq, new_cpu)[vector] != -1)
goto next; goto next;
/* Found one! */ /* Found one! */
for_each_cpu_mask(new_cpu, domain) { for_each_cpu_mask(new_cpu, domain) {
pos[cpu].vector = vector; pos[new_cpu].vector = vector;
pos[cpu].offset = offset; pos[new_cpu].offset = offset;
} }
if (old_vector >= 0) { if (old_vector >= 0) {
int old_cpu; int old_cpu;