aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorStanislaw Gruszka <sgruszka@redhat.com>2013-04-30 05:35:05 -0400
committerIngo Molnar <mingo@kernel.org>2013-04-30 13:13:04 -0400
commit772c808a252594692972773f6ee41c289b8e0b2a (patch)
tree1c1c2631ca1133df1bfe0c5a47d2d49dfe864895 /kernel
parent55eaa7c1f511af5fb6ef808b5328804f4d4e5243 (diff)
sched: Do not account bogus utime
Due to rounding in scale_stime(), for big numbers, scaled stime values will grow in chunks. Since rtime grow in jiffies and we calculate utime like below: prev->stime = max(prev->stime, stime); prev->utime = max(prev->utime, rtime - prev->stime); we could erroneously account stime values as utime. To prevent that only update prev->{u,s}time values when they are smaller than current rtime. Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: rostedt@goodmis.org Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Dave Hansen <dave@sr71.net> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1367314507-9728-2-git-send-email-sgruszka@redhat.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sched/cputime.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/sched/cputime.c b/kernel/sched/cputime.c
index e9198abfca53..1b7c2161f5cd 100644
--- a/kernel/sched/cputime.c
+++ b/kernel/sched/cputime.c
@@ -581,6 +581,14 @@ static void cputime_adjust(struct task_cputime *curr,
581 */ 581 */
582 rtime = nsecs_to_cputime(curr->sum_exec_runtime); 582 rtime = nsecs_to_cputime(curr->sum_exec_runtime);
583 583
584 /*
585 * Update userspace visible utime/stime values only if actual execution
586 * time is bigger than already exported. Note that can happen, that we
587 * provided bigger values due to scaling inaccuracy on big numbers.
588 */
589 if (prev->stime + prev->utime >= rtime)
590 goto out;
591
584 if (!rtime) { 592 if (!rtime) {
585 stime = 0; 593 stime = 0;
586 } else if (!total) { 594 } else if (!total) {
@@ -598,6 +606,7 @@ static void cputime_adjust(struct task_cputime *curr,
598 prev->stime = max(prev->stime, stime); 606 prev->stime = max(prev->stime, stime);
599 prev->utime = max(prev->utime, rtime - prev->stime); 607 prev->utime = max(prev->utime, rtime - prev->stime);
600 608
609out:
601 *ut = prev->utime; 610 *ut = prev->utime;
602 *st = prev->stime; 611 *st = prev->stime;
603} 612}