summaryrefslogtreecommitdiffstats
path: root/fs/proc/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc/array.c')
-rw-r--r--fs/proc/array.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c
index 181cc4e62..eebb1f470 100644
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -339,10 +339,10 @@ int proc_pid_stat(struct task_struct *task, char * buffer)
task->cmin_flt,
task->maj_flt,
task->cmaj_flt,
- task->times.tms_utime,
- task->times.tms_stime,
- task->times.tms_cutime,
- task->times.tms_cstime,
+ HZ_TO_STD(task->times.tms_utime),
+ HZ_TO_STD(task->times.tms_stime),
+ HZ_TO_STD(task->times.tms_cutime),
+ HZ_TO_STD(task->times.tms_cstime),
priority,
nice,
0UL /* removed */,
@@ -642,14 +642,14 @@ int proc_pid_cpu(struct task_struct *task, char * buffer)
len = sprintf(buffer,
"cpu %lu %lu\n",
- task->times.tms_utime,
- task->times.tms_stime);
+ HZ_TO_STD(task->times.tms_utime),
+ HZ_TO_STD(task->times.tms_stime));
for (i = 0 ; i < smp_num_cpus; i++)
len += sprintf(buffer + len, "cpu%d %lu %lu\n",
i,
- task->per_cpu_utime[cpu_logical_map(i)],
- task->per_cpu_stime[cpu_logical_map(i)]);
+ HZ_TO_STD(task->per_cpu_utime[cpu_logical_map(i)]),
+ HZ_TO_STD(task->per_cpu_stime[cpu_logical_map(i)]));
return len;
}