Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

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