sched: rt: dont stop the period timer when there are tasks wanting to run

So if the group ever gets throttled, it will never wake up again.

Reported-by: "Daniel K." <dk@uw.no>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Tested-by: Daniel K. <dk@uw.no>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by Peter Zijlstra and committed by Ingo Molnar 8a8cde16 d4abc238

+2 -1
+2 -1
kernel/sched_rt.c
··· 250 if (rt_rq->rt_time || rt_rq->rt_nr_running) 251 idle = 0; 252 spin_unlock(&rt_rq->rt_runtime_lock); 253 - } 254 255 if (enqueue) 256 sched_rt_rq_enqueue(rt_rq);
··· 250 if (rt_rq->rt_time || rt_rq->rt_nr_running) 251 idle = 0; 252 spin_unlock(&rt_rq->rt_runtime_lock); 253 + } else if (rt_rq->rt_nr_running) 254 + idle = 0; 255 256 if (enqueue) 257 sched_rt_rq_enqueue(rt_rq);