浏览代码

sched: group scheduler wakeup latency fix

group scheduler wakeup latency fix: when checking for preemption
we must check cross-group too, not just intra-group.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Srivatsa Vaddagiri 17 年之前
父节点
当前提交
8651a86c34
共有 1 个文件被更改,包括 16 次插入5 次删除
  1. 16 5
      kernel/sched_fair.c

+ 16 - 5
kernel/sched_fair.c

@@ -796,7 +796,8 @@ static void yield_task_fair(struct rq *rq)
 static void check_preempt_wakeup(struct rq *rq, struct task_struct *p)
 static void check_preempt_wakeup(struct rq *rq, struct task_struct *p)
 {
 {
 	struct task_struct *curr = rq->curr;
 	struct task_struct *curr = rq->curr;
-	struct cfs_rq *cfs_rq = task_cfs_rq(curr);
+	struct cfs_rq *cfs_rq = task_cfs_rq(curr), *pcfs_rq;
+	struct sched_entity *se = &curr->se, *pse = &p->se;
 
 
 	if (unlikely(rt_prio(p->prio))) {
 	if (unlikely(rt_prio(p->prio))) {
 		update_rq_clock(rq);
 		update_rq_clock(rq);
@@ -804,11 +805,21 @@ static void check_preempt_wakeup(struct rq *rq, struct task_struct *p)
 		resched_task(curr);
 		resched_task(curr);
 		return;
 		return;
 	}
 	}
-	if (is_same_group(curr, p)) {
-		s64 delta = curr->se.vruntime - p->se.vruntime;
 
 
-		if (delta > (s64)sysctl_sched_wakeup_granularity)
-			resched_task(curr);
+	for_each_sched_entity(se) {
+		cfs_rq = cfs_rq_of(se);
+		pcfs_rq = cfs_rq_of(pse);
+
+		if (cfs_rq == pcfs_rq) {
+			s64 delta = se->vruntime - pse->vruntime;
+
+			if (delta > (s64)sysctl_sched_wakeup_granularity)
+				resched_task(curr);
+			break;
+		}
+#ifdef CONFIG_FAIR_GROUP_SCHED
+		pse = pse->parent;
+#endif
 	}
 	}
 }
 }