summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds2015-03-28 19:17:32 +0100
committerLinus Torvalds2015-03-28 19:17:32 +0100
commit19dba4f3e9f7fef811cf446e15f578887762528a (patch)
tree9475909710cffb7bd2ee62f66e48089f0f145412
parentMerge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/ke... (diff)
parentsched: Fix RLIMIT_RTTIME when PI-boosting to RT (diff)
downloadkernel-qcow2-linux-19dba4f3e9f7fef811cf446e15f578887762528a.tar.gz
kernel-qcow2-linux-19dba4f3e9f7fef811cf446e15f578887762528a.tar.xz
kernel-qcow2-linux-19dba4f3e9f7fef811cf446e15f578887762528a.zip
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
-rw-r--r--kernel/sched/core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index f0f831e8a345..62671f53202a 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -3034,6 +3034,8 @@ void rt_mutex_setprio(struct task_struct *p, int prio)
} else {
if (dl_prio(oldprio))
p->dl.dl_boosted = 0;
+ if (rt_prio(oldprio))
+ p->rt.timeout = 0;
p->sched_class = &fair_sched_class;
}