mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
[PATCH] x86_64 irq: Properly update vector_irq
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@xmission.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
c25d518044
commit
994bd4f9f5
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user