]> xenbits.xensource.com Git - xen.git/commitdiff
xen: credit1: fix mask to be used for tickling in Credit1
authorDario Faggioli <dario.faggioli@citrix.com>
Wed, 28 Sep 2016 15:01:49 +0000 (17:01 +0200)
committerJan Beulich <jbeulich@suse.com>
Wed, 28 Sep 2016 15:01:49 +0000 (17:01 +0200)
If there are idle pcpus inside the waking vcpu's
soft-affinity mask, we should really tickle one
of them (this is one of the purposes of the
__runq_tickle() function itself!), not just
any idle pcpu.

The issue has been introduced in 02ea5031825d
("credit1: properly deal with pCPUs not in any cpupool"),
where the usage of idle_mask is changed, without
updating the bottom of the function, where it
is also referenced.

Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com>
Acked-by: George Dunlap <george.dunlap@citrix.com>
master commit: f83fc393b2bb0a8b97bca07d810684a2c709aaa8
master date: 2016-09-15 12:39:47 +0100

xen/common/sched_credit.c

index eabdf0ab9bc9b6add449ec83219202462f0b573b..2716603815859863d1d17bb8f62e9c459a8384c0 100644 (file)
@@ -462,11 +462,12 @@ __runq_tickle(unsigned int cpu, struct csched_vcpu *new)
                 if ( opt_tickle_one_idle )
                 {
                     this_cpu(last_tickle_cpu) =
-                        cpumask_cycle(this_cpu(last_tickle_cpu), &idle_mask);
+                        cpumask_cycle(this_cpu(last_tickle_cpu),
+                                      csched_balance_mask(cpu));
                     __cpumask_set_cpu(this_cpu(last_tickle_cpu), &mask);
                 }
                 else
-                    cpumask_or(&mask, &mask, &idle_mask);
+                    cpumask_or(&mask, &mask, csched_balance_mask(cpu));
             }
 
             /* Did we find anyone? */