* [announce] procps 2.0.11
@ 2002-12-11 20:50 Robert Love
2002-12-11 21:48 ` Andrei Ivanov
0 siblings, 1 reply; 4+ messages in thread
From: Robert Love @ 2002-12-11 20:50 UTC (permalink / raw)
To: procps-list; +Cc: linux-kernel, riel
Rik and I are pleased to announce version 2.0.11 of procps, the package
that contains ps, top, free, vmstat, etc.
Newer versions of procps are required for 2.5 kernels.
Most notable in this release is a handful of bug fixes, support for
/proc/pid/wchan, and an all-new free(1) implementation.
Source tarball and RPM packages are available from:
http://tech9.net/rml/procps/
Procps discussion, bugs, and patches are welcome at:
procps-list@redhat.com
NEWS for 2.0.11:
* add CPU field to top (Dave Miller)
* ensure top CPU stat spacing is always aligned (Rik van Riel)
* vmstat divide by zero fix (Jens Axboe)
* support pre-decoded wchan from 2.5 in /proc/#/wchan (Robert Love)
* Makefile cleanups (Maciej W. Rozycki)
* removed XConsole from the package (Robert Love)
* removed kill and kill.1 - they are in util-linux (Robert Love)
* provide crucial typo fixes (Chris Rivera)
* all-new implementation of free (Robert Love)
* improved print_uptime and sprint_uptime (Robert Love)
* default install permissions are now 755 (Robert Love)
Enjoy,
Robert Love
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [announce] procps 2.0.11
2002-12-11 20:50 [announce] procps 2.0.11 Robert Love
@ 2002-12-11 21:48 ` Andrei Ivanov
2002-12-18 1:27 ` Andreas Steinmetz
0 siblings, 1 reply; 4+ messages in thread
From: Andrei Ivanov @ 2002-12-11 21:48 UTC (permalink / raw)
To: Robert Love; +Cc: procps-list, linux-kernel, riel
top reports this:
7 root 18446744073709551615 -20 0 0 0 SW< 0.0 0.0 A0:00 0 mdrecoveryd
8 root 18446744073709551615 -20 0 0 0 SW< 0.0 0.0 0:00 0 raid1d
is this strange or what ?
ps aux says:
root 7 0.0 0.0 0 0 ? SW< Dec09 0:00 [mdrecoveryd]
root 8 0.0 0.0 0 0 ? SW< Dec09 0:00 [raid1d]
(both from 2.0.11)
kernel 2.4.20-pre6
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [announce] procps 2.0.11
2002-12-11 21:48 ` Andrei Ivanov
@ 2002-12-18 1:27 ` Andreas Steinmetz
2002-12-18 2:36 ` Robert Love
0 siblings, 1 reply; 4+ messages in thread
From: Andreas Steinmetz @ 2002-12-18 1:27 UTC (permalink / raw)
To: Andrei Ivanov; +Cc: Robert Love, procps-list, linux-kernel, riel
[-- Attachment #1: Type: text/plain, Size: 261 bytes --]
Andrei Ivanov wrote:
> top reports this:
>
> 7 root 18446744073709551615 -20 0 0 0 SW< 0.0 0.0 A0:00 0 mdrecoveryd
> 8 root 18446744073709551615 -20 0 0 0 SW< 0.0 0.0 0:00 0 raid1d
>
> is this strange or what ?
>
The attached patch does fix this.
[-- Attachment #2: procps.diff --]
[-- Type: text/plain, Size: 440 bytes --]
diff -rNu procps-2.0.11-orig/top.c procps-2.0.11/top.c
--- procps-2.0.11-orig/top.c 2002-11-24 00:01:58.000000000 +0100
+++ procps-2.0.11/top.c 2002-12-17 20:36:28.000000000 +0100
@@ -1125,7 +1125,7 @@
if (task->priority < -99)
sprintf(tmp, " RT ");
else
- sprintf(tmp, "%3llu ", task->priority);
+ sprintf(tmp, "%3lld ", task->priority);
break;
case P_NICE:
sprintf(tmp, "%3.3s ", scale_k(task->nice, 3, 0));
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [announce] procps 2.0.11
2002-12-18 1:27 ` Andreas Steinmetz
@ 2002-12-18 2:36 ` Robert Love
0 siblings, 0 replies; 4+ messages in thread
From: Robert Love @ 2002-12-18 2:36 UTC (permalink / raw)
To: Andreas Steinmetz; +Cc: Andrei Ivanov, procps-list, linux-kernel, riel
On Tue, 2002-12-17 at 20:27, Andreas Steinmetz wrote:
> The attached patch does fix this.
Indeed, this is correct - thanks.
I committed the patch to CVS.
Robert Love
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2002-12-18 2:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-11 20:50 [announce] procps 2.0.11 Robert Love
2002-12-11 21:48 ` Andrei Ivanov
2002-12-18 1:27 ` Andreas Steinmetz
2002-12-18 2:36 ` Robert Love
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox