sched: fix wait_start_fair condition in update_stats_wait_end()

Peter Zijlstra noticed the following bug in SCHED_FEAT_SKIP_INITIAL (which
is disabled by default at the moment): it relies on se.wait_start_fair
being 0 while update_stats_wait_end() did not recognize a 0 value,
so instead of 'skipping' the initial interval we gave the new child
a maximum boost of +runtime-limit ...

(No impact on the default kernel, but nice to fix for completeness.)

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Mike Galbraith <efault@gmx.de>

+3
+3
kernel/sched_fair.c
··· 489 489 { 490 490 unsigned long delta_fair; 491 491 492 + if (unlikely(!se->wait_start_fair)) 493 + return; 494 + 492 495 delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit), 493 496 (u64)(cfs_rq->fair_clock - se->wait_start_fair)); 494 497