Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e75e863d authored by Stanislaw Gruszka's avatar Stanislaw Gruszka Committed by Ingo Molnar
Browse files

sched: Fix user time incorrectly accounted as system time on 32-bit

We have 32-bit variable overflow possibility when multiply in
task_times() and thread_group_times() functions. When the
overflow happens then the scaled utime value becomes erroneously
small and the scaled stime becomes i erroneously big.

Reported here:

 https://bugzilla.redhat.com/show_bug.cgi?id=633037
 https://bugzilla.kernel.org/show_bug.cgi?id=16559



Reported-by: default avatarMichael Chapman <redhat-bugzilla@very.puzzling.org>
Reported-by: default avatarCiriaco Garcia de Celis <sysman@etherpilot.com>
Signed-off-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Cc: <stable@kernel.org>  # 2.6.32.19+ (partially) and 2.6.33+
LKML-Reference: <20100914143513.GB8415@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 9c03f162
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -3513,9 +3513,9 @@ void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
	rtime = nsecs_to_cputime(p->se.sum_exec_runtime);

	if (total) {
		u64 temp;
		u64 temp = rtime;

		temp = (u64)(rtime * utime);
		temp *= utime;
		do_div(temp, total);
		utime = (cputime_t)temp;
	} else
@@ -3546,9 +3546,9 @@ void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
	rtime = nsecs_to_cputime(cputime.sum_exec_runtime);

	if (total) {
		u64 temp;
		u64 temp = rtime;

		temp = (u64)(rtime * cputime.utime);
		temp *= cputime.utime;
		do_div(temp, total);
		utime = (cputime_t)temp;
	} else