]> xenbits.xensource.com Git - xen.git/commitdiff
complete conversion set_bit() -> __cpumask_set_cpu() by 4aaca0e9cd
authorJan Beulich <jbeulich@suse.com>
Thu, 26 Mar 2015 07:20:11 +0000 (08:20 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 26 Mar 2015 07:20:11 +0000 (08:20 +0100)
While converting to __cpumask_set_cpu() was correct, the first argument
passed should have been corrected to be "cpu" instead of "nr" at once.
The wrong construct results in problems on systems with relatively few
CPUs.

Reported-by: Sander Eikelenboom <linux@eikelenboom.it>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citirx.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
master commit: 5dbdf33c57e3c95125b92f86d847ed8432e28f1c
master date: 2015-02-27 16:09:27 +0100

xen/common/softirq.c

index 22e417ada79e05571d2bab60017d99221b09ea45..33d5d8627e6f32289f5c7c9d7c1f31142f456fff 100644 (file)
@@ -106,7 +106,7 @@ void cpu_raise_softirq(unsigned int cpu, unsigned int nr)
     if ( !per_cpu(batching, this_cpu) || in_irq() )
         smp_send_event_check_cpu(cpu);
     else
-        set_bit(nr, &per_cpu(batch_mask, this_cpu));
+        cpumask_set_cpu(cpu, &per_cpu(batch_mask, this_cpu));
 }
 
 void cpu_raise_softirq_batch_begin(void)