diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-12 00:35:07 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-12 00:35:07 +0000 |
commit | ca2b53c30a3c2dea1d2610319ea0f4913ecae2e4 (patch) | |
tree | 517264cd64f493b4abe59243171390dc9f665161 /fs/proc | |
parent | 2bab1036f931dad0ae1633669c92fb201b229789 (diff) |
Make HZ_TO_STD macro name lowercase.
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/array.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/proc/array.c b/fs/proc/array.c index 535c8c527..22c9af395 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c @@ -366,10 +366,10 @@ int proc_pid_stat(struct task_struct *task, char * buffer) task->cmin_flt, task->maj_flt, task->cmaj_flt, - 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), + 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 */, @@ -688,14 +688,14 @@ int proc_pid_cpu(struct task_struct *task, char * buffer) len = sprintf(buffer, "cpu %lu %lu\n", - HZ_TO_STD(task->times.tms_utime), - HZ_TO_STD(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, - HZ_TO_STD(task->per_cpu_utime[cpu_logical_map(i)]), - HZ_TO_STD(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; } |