* struct_task->start_time, jiffies or hz_to_std(jiffies)
@ 2001-09-13 5:48 Matt
2001-09-16 22:52 ` Ralf Baechle
0 siblings, 1 reply; 2+ messages in thread
From: Matt @ 2001-09-13 5:48 UTC (permalink / raw)
To: linux-kernel; +Cc: procps-bugs
given
2.4.9-ac10 linux/kernel/fork.c:658
p->start_time = jiffies;
is this
2.4.9-ac10 linux/fs/proc/array.c
task->start_time,
correct? or should it be
hz_to_std(task->start_time),
??
i know this will affect libproc, however libproc appears to be broken
anyway; i changed HZ and CLOCKS_PER_SEC to 1024 in include/asm/param.h
on x86 and top / ps etc are giving me very whacked out numbers.. the
machine itself is stable however and appears to be working just fine.
matt
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: struct_task->start_time, jiffies or hz_to_std(jiffies)
2001-09-13 5:48 struct_task->start_time, jiffies or hz_to_std(jiffies) Matt
@ 2001-09-16 22:52 ` Ralf Baechle
0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2001-09-16 22:52 UTC (permalink / raw)
To: Matt; +Cc: linux-kernel, procps-bugs, Alan Cox
On Thu, Sep 13, 2001 at 03:48:55PM +1000, Matt wrote:
> 2.4.9-ac10 linux/kernel/fork.c:658
> p->start_time = jiffies;
>
> is this
>
> 2.4.9-ac10 linux/fs/proc/array.c
> task->start_time,
>
> correct? or should it be
> hz_to_std(task->start_time),
>
> ??
>
> i know this will affect libproc, however libproc appears to be broken
> anyway; i changed HZ and CLOCKS_PER_SEC to 1024 in include/asm/param.h
> on x86 and top / ps etc are giving me very whacked out numbers.. the
> machine itself is stable however and appears to be working just fine.
Antirely correct; I'll make a patch and send it to Alan in case he doesn't
have this one yet.
A quick grep also shows that kernel accounting also seems to have it's
issues with time granularity. Bad, accounting date should be portable
between architectures.
Alan, real patch below in case this isn't yet in -ac please apply.
Ralf
Index: fs/proc/array.c
===================================================================
RCS file: /home/pub/cvs/linux/fs/proc/array.c,v
retrieving revision 1.48
diff -u -r1.48 array.c
--- fs/proc/array.c 2001/08/24 03:38:51 1.48
+++ fs/proc/array.c 2001/09/16 22:48:28
@@ -365,7 +365,7 @@
nice,
0UL /* removed */,
task->it_real_value,
- task->start_time,
+ hz_to_std(task->start_time),
vsize,
mm ? mm->rss : 0, /* you might want to shift this left 3 */
task->rlim[RLIMIT_RSS].rlim_cur,
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-09-16 22:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-13 5:48 struct_task->start_time, jiffies or hz_to_std(jiffies) Matt
2001-09-16 22:52 ` Ralf Baechle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox