[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2] sched/null: skip vCPUs on the waitqueue that are blocked
Avoid scheduling vCPUs that are blocked, there's no point in assigning them to a pCPU because they are not going to run anyway. Since blocked vCPUs are not assigned to pCPUs after this change, force a rescheduling when a vCPU is brought up if it's on the waitqueue. Also when scheduling try to pick a vCPU from the runqueue if the pCPU is running idle. Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- Cc: George Dunlap <george.dunlap@xxxxxxxxxxxxx> Cc: Dario Faggioli <raistlin@xxxxxxxx> --- Changes since v1: - Force a rescheduling when a vCPU is brought up. - Try to pick a vCPU from the runqueue if running the idle vCPU. --- xen/common/sched_null.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/xen/common/sched_null.c b/xen/common/sched_null.c index b4a24baf8e..bacfb31cb3 100644 --- a/xen/common/sched_null.c +++ b/xen/common/sched_null.c @@ -574,6 +574,8 @@ static void null_vcpu_wake(const struct scheduler *ops, struct vcpu *v) { /* Not exactly "on runq", but close enough for reusing the counter */ SCHED_STAT_CRANK(vcpu_wake_onrunq); + /* Force a rescheduling in case some CPU is idle can pick this vCPU */ + cpumask_raise_softirq(&cpu_online_map, SCHEDULE_SOFTIRQ); return; } @@ -761,9 +763,10 @@ static struct task_slice null_schedule(const struct scheduler *ops, /* * We may be new in the cpupool, or just coming back online. In which * case, there may be vCPUs in the waitqueue that we can assign to us - * and run. + * and run. Also check whether this CPU is running idle, in which case try + * to pick a vCPU from the waitqueue. */ - if ( unlikely(ret.task == NULL) ) + if ( unlikely(ret.task == NULL || ret.task == idle_vcpu[cpu]) ) { spin_lock(&prv->waitq_lock); @@ -781,6 +784,10 @@ static struct task_slice null_schedule(const struct scheduler *ops, { list_for_each_entry( wvc, &prv->waitq, waitq_elem ) { + if ( test_bit(_VPF_down, &wvc->vcpu->pause_flags) ) + /* Skip vCPUs that are down. */ + continue; + if ( bs == BALANCE_SOFT_AFFINITY && !has_soft_affinity(wvc->vcpu, wvc->vcpu->cpu_hard_affinity) ) continue; -- 2.15.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |