Skip to content

Commit 2548d54

Browse files
Peter ZijlstraIngo Molnar
authored andcommitted
nohz/full, sched/rt: Fix missed tick-reenabling bug in sched_can_stop_tick()
Chris Metcalf reported a that sched_can_stop_tick() sometimes fails to re-enable the tick. His observed problem is that rq->cfs.nr_running can be 1 even though there are multiple runnable CFS tasks. This happens in the cgroup case, in which case cfs.nr_running is the number of runnable entities for that level. If there is a single runnable cgroup (which can have an arbitrary number of runnable child entries itself) rq->cfs.nr_running will be 1. However, looking at that function I think there's more problems with it. It seems to assume that if there's FIFO tasks, those will run. This is incorrect. The FIFO task can have a lower prio than an RR task, in which case the RR task will run. So the whole fifo_nr_running test seems misplaced, it should go after the rr_nr_running tests. That is, only if !rr_nr_running, can we use fifo_nr_running like this. Reported-by: Chris Metcalf <cmetcalf@mellanox.com> Tested-by: Chris Metcalf <cmetcalf@mellanox.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Christoph Lameter <cl@linux.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Luiz Capitulino <lcapitulino@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Rik van Riel <riel@redhat.com> Cc: Stephane Eranian <eranian@google.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vince Weaver <vincent.weaver@maine.edu> Cc: Viresh Kumar <viresh.kumar@linaro.org> Cc: Wanpeng Li <kernellwp@gmail.com> Fixes: 76d92ac ("sched: Migrate sched to use new tick dependency mask model") Link: http://lkml.kernel.org/r/20160421160315.GK24771@twins.programming.kicks-ass.net Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent 02da2d7 commit 2548d54

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

kernel/sched/core.c

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -596,17 +596,8 @@ bool sched_can_stop_tick(struct rq *rq)
596596
return false;
597597

598598
/*
599-
* FIFO realtime policy runs the highest priority task (after DEADLINE).
600-
* Other runnable tasks are of a lower priority. The scheduler tick
601-
* isn't needed.
602-
*/
603-
fifo_nr_running = rq->rt.rt_nr_running - rq->rt.rr_nr_running;
604-
if (fifo_nr_running)
605-
return true;
606-
607-
/*
608-
* Round-robin realtime tasks time slice with other tasks at the same
609-
* realtime priority.
599+
* If there are more than one RR tasks, we need the tick to effect the
600+
* actual RR behaviour.
610601
*/
611602
if (rq->rt.rr_nr_running) {
612603
if (rq->rt.rr_nr_running == 1)
@@ -615,8 +606,20 @@ bool sched_can_stop_tick(struct rq *rq)
615606
return false;
616607
}
617608

618-
/* Normal multitasking need periodic preemption checks */
619-
if (rq->cfs.nr_running > 1)
609+
/*
610+
* If there's no RR tasks, but FIFO tasks, we can skip the tick, no
611+
* forced preemption between FIFO tasks.
612+
*/
613+
fifo_nr_running = rq->rt.rt_nr_running - rq->rt.rr_nr_running;
614+
if (fifo_nr_running)
615+
return true;
616+
617+
/*
618+
* If there are no DL,RR/FIFO tasks, there must only be CFS tasks left;
619+
* if there's more than one we need the tick for involuntary
620+
* preemption.
621+
*/
622+
if (rq->nr_running > 1)
620623
return false;
621624

622625
return true;

0 commit comments

Comments
 (0)