diff options
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c index 330deda70d08..ca61a88aed66 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c | |||
@@ -511,7 +511,7 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns, | |||
511 | do { | 511 | do { |
512 | min_flt += t->min_flt; | 512 | min_flt += t->min_flt; |
513 | maj_flt += t->maj_flt; | 513 | maj_flt += t->maj_flt; |
514 | gtime = cputime_add(gtime, task_gtime(t)); | 514 | gtime = cputime_add(gtime, t->gtime); |
515 | t = next_thread(t); | 515 | t = next_thread(t); |
516 | } while (t != task); | 516 | } while (t != task); |
517 | 517 | ||
@@ -536,7 +536,7 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns, | |||
536 | min_flt = task->min_flt; | 536 | min_flt = task->min_flt; |
537 | maj_flt = task->maj_flt; | 537 | maj_flt = task->maj_flt; |
538 | task_times(task, &utime, &stime); | 538 | task_times(task, &utime, &stime); |
539 | gtime = task_gtime(task); | 539 | gtime = task->gtime; |
540 | } | 540 | } |
541 | 541 | ||
542 | /* scale priority and nice values from timeslices to -20..20 */ | 542 | /* scale priority and nice values from timeslices to -20..20 */ |