Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull scheduler fix from Ingo Molnar:
"A single sched/rt corner case fix for RLIMIT_RTIME correctness"

* 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
sched: Fix RLIMIT_RTTIME when PI-boosting to RT

Changed files
+2
kernel
sched
+2
kernel/sched/core.c
··· 3034 3034 } else { 3035 3035 if (dl_prio(oldprio)) 3036 3036 p->dl.dl_boosted = 0; 3037 + if (rt_prio(oldprio)) 3038 + p->rt.timeout = 0; 3037 3039 p->sched_class = &fair_sched_class; 3038 3040 } 3039 3041