OSDN Git Service

sched/cputime: Fix accounting on multi-threaded processes
[android-x86/kernel.git] / kernel / sched / cputime.c
index ed12cbb..e93cca9 100644 (file)
@@ -310,7 +310,7 @@ void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times)
 
        t = tsk;
        do {
-               task_cputime(tsk, &utime, &stime);
+               task_cputime(t, &utime, &stime);
                times->utime += utime;
                times->stime += stime;
                times->sum_exec_runtime += task_sched_runtime(t);