linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] O3int interactivity for 2.5.74-mm2
@ 2003-07-06 17:16 Con Kolivas
  2003-07-06 18:36 ` Felipe Alfaro Solana
  0 siblings, 1 reply; 31+ messages in thread
From: Con Kolivas @ 2003-07-06 17:16 UTC (permalink / raw)
  To: linux kernel mailing list; +Cc: Andrew Morton

[-- Attachment #1: clearsigned data --]
[-- Type: Text/Plain, Size: 1204 bytes --]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Attached is an incremental patch against 2.5.74-mm2 with more interactivity 
work. Audio should be quite resistant to skips with this, and it should not 
induce further unfairness.

Changes:
The sleep_avg buffer was not needed with the improved semantics in O2int so it 
has been removed entirely as it created regressions in O2int.

A small change to the idle detection code to only make tasks with enough 
accumulated sleep_avg become idle.

Minor cleanups and clarified code.


Other issues:
Jerky mouse with heavy page rendering in web browsers remains. This is a 
different issue to the audio and will need some more thought.

The patch is also available for download here:
http://kernel.kolivas.org/2.5

Note for those who wish to get smooth X desktop feel now for their own use, 
the granularity patch on that website will do wonders on top of O3int, but a 
different approach will be needed for mainstream consumption.

Con
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/CFmHF6dfvkL3i1gRAkqTAKCjE3lRwBWomZbn/asWtv+OWiFovQCfZo0P
UfqOKVgv88faks6+vPq5BGM=
=ZR4Y
-----END PGP SIGNATURE-----

[-- Attachment #2: patch-O3int-0307070226 --]
[-- Type: text/x-diff, Size: 1553 bytes --]

--- linux-2.5.74/kernel/sched.c	2003-07-07 02:13:57.000000000 +1000
+++ linux-2.5.74-test/kernel/sched.c	2003-07-07 02:58:47.000000000 +1000
@@ -77,6 +77,7 @@
 #define MAX_SLEEP_AVG		(10*HZ)
 #define STARVATION_LIMIT	(10*HZ)
 #define NODE_THRESHOLD		125
+#define MAX_BONUS		((MAX_USER_PRIO - MAX_RT_PRIO) * PRIO_BONUS_RATIO / 100)
 
 /*
  * If a task is 'interactive' then we reinsert it in the active
@@ -306,7 +307,7 @@ static inline void normalise_sleep(task_
 {
 	unsigned long old_avg_time = jiffies - p->avg_start;
 
-	if (old_avg_time < MIN_SLEEP_AVG)
+	if (unlikely(old_avg_time < MIN_SLEEP_AVG))
 		return;
 
 	if (p->sleep_avg > MAX_SLEEP_AVG)
@@ -406,21 +407,16 @@ static inline void activate_task(task_t 
 		 */
 		if (runtime < MAX_SLEEP_AVG)
 			p->sleep_avg += (runtime - p->sleep_avg) * (MAX_SLEEP_AVG - runtime) *
-				(10 - INTERACTIVE_DELTA) / 10 / MAX_SLEEP_AVG;
+				(MAX_BONUS - INTERACTIVE_DELTA) / MAX_BONUS / MAX_SLEEP_AVG;
 
-		/*
-		 * Keep a buffer of 10% sleep_avg
-		 * to prevent short bursts of cpu activity from making
-		 * interactive tasks lose their bonus
-		 */
-		if (p->sleep_avg > MAX_SLEEP_AVG * 11/10)
-			p->sleep_avg = MAX_SLEEP_AVG * 11/10;
+		if (p->sleep_avg > MAX_SLEEP_AVG)
+			p->sleep_avg = MAX_SLEEP_AVG;
 
 		/*
 		 * Tasks that sleep a long time are categorised as idle and
 		 * get their static priority only
 		 */
-		if (sleep_time > MIN_SLEEP_AVG)
+		if ((sleep_time > MIN_SLEEP_AVG) && (p->sleep_avg > runtime / 2))
 			p->sleep_avg = runtime / 2;
 
 		if (unlikely(p->avg_start > jiffies)){

^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-06 17:16 [PATCH] O3int interactivity for 2.5.74-mm2 Con Kolivas
@ 2003-07-06 18:36 ` Felipe Alfaro Solana
  2003-07-06 21:14   ` Con Kolivas
                     ` (2 more replies)
  0 siblings, 3 replies; 31+ messages in thread
From: Felipe Alfaro Solana @ 2003-07-06 18:36 UTC (permalink / raw)
  To: Con Kolivas; +Cc: linux kernel mailing list, Andrew Morton

On Sun, 2003-07-06 at 19:16, Con Kolivas wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Attached is an incremental patch against 2.5.74-mm2 with more interactivity 
> work. Audio should be quite resistant to skips with this, and it should not 
> induce further unfairness.
> 
> Changes:
> The sleep_avg buffer was not needed with the improved semantics in O2int so it 
> has been removed entirely as it created regressions in O2int.
> 
> A small change to the idle detection code to only make tasks with enough 
> accumulated sleep_avg become idle.
> 
> Minor cleanups and clarified code.
> 
> 
> Other issues:
> Jerky mouse with heavy page rendering in web browsers remains. This is a 
> different issue to the audio and will need some more thought.
> 
> The patch is also available for download here:
> http://kernel.kolivas.org/2.5
> 
> Note for those who wish to get smooth X desktop feel now for their own use, 
> the granularity patch on that website will do wonders on top of O3int, but a 
> different approach will be needed for mainstream consumption.

I'm seeing extreme X starvation with this patch under 2.5.74-mm2 when
starting a CPU hogger:

1. Start a KDE session.
2. Launch a Konsole
3. Launch Konqueror
4. Launch XMMS
5. Make XMMS play an MP3 file
6. On the Konsole terminal, run "while true; do a=2; done"

When the "while..." is run, X starves completely for ~5 seconds (e.g.
the mouse cursor doesn't respond to my input events). After those 5
seconds, the mouse cursor goes jerky for a while (~2 seconds) and then
the system gets responsive.

PS: There are no user processes reniced.


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-06 18:36 ` Felipe Alfaro Solana
@ 2003-07-06 21:14   ` Con Kolivas
  2003-07-06 21:17   ` Con Kolivas
  2003-07-07  3:19   ` Con Kolivas
  2 siblings, 0 replies; 31+ messages in thread
From: Con Kolivas @ 2003-07-06 21:14 UTC (permalink / raw)
  To: Felipe Alfaro Solana; +Cc: linux kernel mailing list, Andrew Morton

On Mon, 7 Jul 2003 04:36, Felipe Alfaro Solana wrote:
> On Sun, 2003-07-06 at 19:16, Con Kolivas wrote:
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> >
> > Attached is an incremental patch against 2.5.74-mm2 with more
> > interactivity work. Audio should be quite resistant to skips with this,
> > and it should not induce further unfairness.
> >
> > Changes:
> > The sleep_avg buffer was not needed with the improved semantics in O2int
> > so it has been removed entirely as it created regressions in O2int.
> >
> > A small change to the idle detection code to only make tasks with enough
> > accumulated sleep_avg become idle.
> >
> > Minor cleanups and clarified code.
> >
> >
> > Other issues:
> > Jerky mouse with heavy page rendering in web browsers remains. This is a
> > different issue to the audio and will need some more thought.
> >
> > The patch is also available for download here:
> > http://kernel.kolivas.org/2.5
> >
> > Note for those who wish to get smooth X desktop feel now for their own
> > use, the granularity patch on that website will do wonders on top of
> > O3int, but a different approach will be needed for mainstream
> > consumption.
>
> I'm seeing extreme X starvation with this patch under 2.5.74-mm2 when
> starting a CPU hogger:
>
> 1. Start a KDE session.
> 2. Launch a Konsole
> 3. Launch Konqueror
> 4. Launch XMMS
> 5. Make XMMS play an MP3 file
> 6. On the Konsole terminal, run "while true; do a=2; done"
>
> When the "while..." is run, X starves completely for ~5 seconds (e.g.
> the mouse cursor doesn't respond to my input events). After those 5
> seconds, the mouse cursor goes jerky for a while (~2 seconds) and then
> the system gets responsive.

Cool you beat the idle detection code. Leave the konsole for just a few 
seconds before trying this and see if it's any different. Having not slept 
because of this patch and now going to work I think it can wait a little 
before I work on it any more.

Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-06 18:36 ` Felipe Alfaro Solana
  2003-07-06 21:14   ` Con Kolivas
@ 2003-07-06 21:17   ` Con Kolivas
  2003-07-07  3:19   ` Con Kolivas
  2 siblings, 0 replies; 31+ messages in thread
From: Con Kolivas @ 2003-07-06 21:17 UTC (permalink / raw)
  To: Felipe Alfaro Solana; +Cc: linux kernel mailing list, Andrew Morton

On Mon, 7 Jul 2003 04:36, Felipe Alfaro Solana wrote:
> On Sun, 2003-07-06 at 19:16, Con Kolivas wrote:
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> >
> > Attached is an incremental patch against 2.5.74-mm2 with more
> > interactivity work. Audio should be quite resistant to skips with this,
> > and it should not induce further unfairness.
> >
> > Changes:
> > The sleep_avg buffer was not needed with the improved semantics in O2int
> > so it has been removed entirely as it created regressions in O2int.
> >
> > A small change to the idle detection code to only make tasks with enough
> > accumulated sleep_avg become idle.
> >
> > Minor cleanups and clarified code.
> >
> >
> > Other issues:
> > Jerky mouse with heavy page rendering in web browsers remains. This is a
> > different issue to the audio and will need some more thought.
> >
> > The patch is also available for download here:
> > http://kernel.kolivas.org/2.5
> >
> > Note for those who wish to get smooth X desktop feel now for their own
> > use, the granularity patch on that website will do wonders on top of
> > O3int, but a different approach will be needed for mainstream
> > consumption.
>
> I'm seeing extreme X starvation with this patch under 2.5.74-mm2 when
> starting a CPU hogger:
>
> 1. Start a KDE session.
> 2. Launch a Konsole
> 3. Launch Konqueror
> 4. Launch XMMS
> 5. Make XMMS play an MP3 file
> 6. On the Konsole terminal, run "while true; do a=2; done"
>
> When the "while..." is run, X starves completely for ~5 seconds (e.g.
> the mouse cursor doesn't respond to my input events). After those 5
> seconds, the mouse cursor goes jerky for a while (~2 seconds) and then
> the system gets responsive.

Oh one more thing if you dare. Try commenting out these lines in sched.c ~650:


	normalise_sleep(p);
	normalise_sleep(p->parent);
 	if (p->sleep_avg < p->parent->sleep_avg)
 		p->parent->sleep_avg = (p->parent->sleep_avg * EXIT_WEIGHT +
 			p->sleep_avg) / (EXIT_WEIGHT + 1);


Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-06 18:36 ` Felipe Alfaro Solana
  2003-07-06 21:14   ` Con Kolivas
  2003-07-06 21:17   ` Con Kolivas
@ 2003-07-07  3:19   ` Con Kolivas
  2003-07-07  9:13     ` Felipe Alfaro Solana
                       ` (5 more replies)
  2 siblings, 6 replies; 31+ messages in thread
From: Con Kolivas @ 2003-07-07  3:19 UTC (permalink / raw)
  To: Felipe Alfaro Solana; +Cc: linux kernel mailing list, Andrew Morton

[-- Attachment #1: Type: text/plain, Size: 2001 bytes --]

On Mon, 7 Jul 2003 04:36, Felipe Alfaro Solana wrote:
> On Sun, 2003-07-06 at 19:16, Con Kolivas wrote:
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> >
> > Attached is an incremental patch against 2.5.74-mm2 with more
> > interactivity work. Audio should be quite resistant to skips with this,
> > and it should not induce further unfairness.
> >
> > Changes:
> > The sleep_avg buffer was not needed with the improved semantics in O2int
> > so it has been removed entirely as it created regressions in O2int.
> >
> > A small change to the idle detection code to only make tasks with enough
> > accumulated sleep_avg become idle.
> >
> > Minor cleanups and clarified code.
> >
> >
> > Other issues:
> > Jerky mouse with heavy page rendering in web browsers remains. This is a
> > different issue to the audio and will need some more thought.
> >
> > The patch is also available for download here:
> > http://kernel.kolivas.org/2.5
> >
> > Note for those who wish to get smooth X desktop feel now for their own
> > use, the granularity patch on that website will do wonders on top of
> > O3int, but a different approach will be needed for mainstream
> > consumption.
>
> I'm seeing extreme X starvation with this patch under 2.5.74-mm2 when
> starting a CPU hogger:
>
> 1. Start a KDE session.
> 2. Launch a Konsole
> 3. Launch Konqueror
> 4. Launch XMMS
> 5. Make XMMS play an MP3 file
> 6. On the Konsole terminal, run "while true; do a=2; done"
>
> When the "while..." is run, X starves completely for ~5 seconds (e.g.
> the mouse cursor doesn't respond to my input events). After those 5
> seconds, the mouse cursor goes jerky for a while (~2 seconds) and then
> the system gets responsive.

Aha!

Thanks to Felipe who picked this up I was able to find the one bug causing me 
grief. The idle detection code was allowing the sleep_avg to get to 
ridiculously high levels. This is corrected in the following replacement 
O3int patch. Note this fixes the mozilla issue too. Kick arse!!

Con

[-- Attachment #2: patch-O3int-0307071315 --]
[-- Type: text/x-diff, Size: 1635 bytes --]

--- linux-2.5.74/kernel/sched.c	2003-07-07 02:13:57.000000000 +1000
+++ linux-2.5.74-test/kernel/sched.c	2003-07-07 13:15:04.000000000 +1000
@@ -77,6 +77,7 @@
 #define MAX_SLEEP_AVG		(10*HZ)
 #define STARVATION_LIMIT	(10*HZ)
 #define NODE_THRESHOLD		125
+#define MAX_BONUS		((MAX_USER_PRIO - MAX_RT_PRIO) * PRIO_BONUS_RATIO / 100)
 
 /*
  * If a task is 'interactive' then we reinsert it in the active
@@ -306,7 +307,7 @@ static inline void normalise_sleep(task_
 {
 	unsigned long old_avg_time = jiffies - p->avg_start;
 
-	if (old_avg_time < MIN_SLEEP_AVG)
+	if (unlikely(old_avg_time < MIN_SLEEP_AVG))
 		return;
 
 	if (p->sleep_avg > MAX_SLEEP_AVG)
@@ -406,22 +407,19 @@ static inline void activate_task(task_t 
 		 */
 		if (runtime < MAX_SLEEP_AVG)
 			p->sleep_avg += (runtime - p->sleep_avg) * (MAX_SLEEP_AVG - runtime) *
-				(10 - INTERACTIVE_DELTA) / 10 / MAX_SLEEP_AVG;
+				(MAX_BONUS - INTERACTIVE_DELTA) / MAX_BONUS / MAX_SLEEP_AVG;
 
-		/*
-		 * Keep a buffer of 10% sleep_avg
-		 * to prevent short bursts of cpu activity from making
-		 * interactive tasks lose their bonus
-		 */
-		if (p->sleep_avg > MAX_SLEEP_AVG * 11/10)
-			p->sleep_avg = MAX_SLEEP_AVG * 11/10;
+		if (p->sleep_avg > MAX_SLEEP_AVG)
+			p->sleep_avg = MAX_SLEEP_AVG;
 
 		/*
 		 * Tasks that sleep a long time are categorised as idle and
 		 * get their static priority only
 		 */
-		if (sleep_time > MIN_SLEEP_AVG)
-			p->sleep_avg = runtime / 2;
+		if (sleep_time > MIN_SLEEP_AVG){
+			p->avg_start = jiffies - MIN_SLEEP_AVG;
+			p->sleep_avg = MIN_SLEEP_AVG / 2;
+		}
 
 		if (unlikely(p->avg_start > jiffies)){
 			p->avg_start = jiffies;

^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07  3:19   ` Con Kolivas
@ 2003-07-07  9:13     ` Felipe Alfaro Solana
  2003-07-07  9:40     ` Mike Galbraith
                       ` (4 subsequent siblings)
  5 siblings, 0 replies; 31+ messages in thread
From: Felipe Alfaro Solana @ 2003-07-07  9:13 UTC (permalink / raw)
  To: Con Kolivas; +Cc: linux kernel mailing list, Andrew Morton

On Mon, 2003-07-07 at 05:19, Con Kolivas wrote:
> On Mon, 7 Jul 2003 04:36, Felipe Alfaro Solana wrote:
> > I'm seeing extreme X starvation with this patch under 2.5.74-mm2 when
> > starting a CPU hogger:
> >
> > 1. Start a KDE session.
> > 2. Launch a Konsole
> > 3. Launch Konqueror
> > 4. Launch XMMS
> > 5. Make XMMS play an MP3 file
> > 6. On the Konsole terminal, run "while true; do a=2; done"
> >
> > When the "while..." is run, X starves completely for ~5 seconds (e.g.
> > the mouse cursor doesn't respond to my input events). After those 5
> > seconds, the mouse cursor goes jerky for a while (~2 seconds) and then
> > the system gets responsive.
> 
> Aha!
> 
> Thanks to Felipe who picked this up I was able to find the one bug causing me 
> grief. The idle detection code was allowing the sleep_avg to get to 
> ridiculously high levels. This is corrected in the following replacement 
> O3int patch. Note this fixes the mozilla issue too. Kick arse!!

Yeah! I can't reproduce the bug anymore :-) Good work!

Is there any tunable to make the scheduler adjust the interactivity/CPU
usage a little bit faster? Just after launching XMMS and make it play,
moving the Konqueror window like crazy makes XMMS skip for a few
seconds.


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07  3:19   ` Con Kolivas
  2003-07-07  9:13     ` Felipe Alfaro Solana
@ 2003-07-07  9:40     ` Mike Galbraith
  2003-07-07 10:25       ` Con Kolivas
  2003-07-07 10:51     ` Nick Sanders
                       ` (3 subsequent siblings)
  5 siblings, 1 reply; 31+ messages in thread
From: Mike Galbraith @ 2003-07-07  9:40 UTC (permalink / raw)
  To: Con Kolivas
  Cc: Felipe Alfaro Solana, linux kernel mailing list, Andrew Morton

At 01:19 PM 7/7/2003 +1000, Con Kolivas wrote:
>On Mon, 7 Jul 2003 04:36, Felipe Alfaro Solana wrote:
> > On Sun, 2003-07-06 at 19:16, Con Kolivas wrote:
> > > -----BEGIN PGP SIGNED MESSAGE-----
> > > Hash: SHA1
> > >
> > > Attached is an incremental patch against 2.5.74-mm2 with more
> > > interactivity work. Audio should be quite resistant to skips with this,
> > > and it should not induce further unfairness.
> > >
> > > Changes:
> > > The sleep_avg buffer was not needed with the improved semantics in O2int
> > > so it has been removed entirely as it created regressions in O2int.
> > >
> > > A small change to the idle detection code to only make tasks with enough
> > > accumulated sleep_avg become idle.
> > >
> > > Minor cleanups and clarified code.
> > >
> > >
> > > Other issues:
> > > Jerky mouse with heavy page rendering in web browsers remains. This is a
> > > different issue to the audio and will need some more thought.
> > >
> > > The patch is also available for download here:
> > > http://kernel.kolivas.org/2.5
> > >
> > > Note for those who wish to get smooth X desktop feel now for their own
> > > use, the granularity patch on that website will do wonders on top of
> > > O3int, but a different approach will be needed for mainstream
> > > consumption.
> >
> > I'm seeing extreme X starvation with this patch under 2.5.74-mm2 when
> > starting a CPU hogger:
> >
> > 1. Start a KDE session.
> > 2. Launch a Konsole
> > 3. Launch Konqueror
> > 4. Launch XMMS
> > 5. Make XMMS play an MP3 file
> > 6. On the Konsole terminal, run "while true; do a=2; done"
> >
> > When the "while..." is run, X starves completely for ~5 seconds (e.g.
> > the mouse cursor doesn't respond to my input events). After those 5
> > seconds, the mouse cursor goes jerky for a while (~2 seconds) and then
> > the system gets responsive.
>
>Aha!
>
>Thanks to Felipe who picked this up I was able to find the one bug causing me
>grief. The idle detection code was allowing the sleep_avg to get to
>ridiculously high levels. This is corrected in the following replacement
>O3int patch. Note this fixes the mozilla issue too. Kick arse!!

I took this out for a spin in stock 74.  If I do while true; do sh -c 'ps l 
$$'; date; sleep 1; done, the shell is running at priority 22.  In the face 
of any load, that leads to quite long response times.  With a make -j5 
bzImage running, I frequently saw response times of over a second.  In X, 
with a make -j2 bzImage running, opening a new shell takes too long, and X 
loses interactive status considerably quicker than stock when doing window 
wiggle.  Init is at 20, and kernel threads bounce around between 15 and 20 
depending on how active they are (doesn't seem good considering they're 
using practically no cpu).

Thud is still dead, but maybe _too_ dead ;-)  I never saw it get above the 
lowest priority, which is very unfair considering the amount of sleeping it 
does.

         -Mike 


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07  9:40     ` Mike Galbraith
@ 2003-07-07 10:25       ` Con Kolivas
  2003-07-07 14:06         ` Mike Galbraith
  0 siblings, 1 reply; 31+ messages in thread
From: Con Kolivas @ 2003-07-07 10:25 UTC (permalink / raw)
  To: Mike Galbraith
  Cc: Felipe Alfaro Solana, linux kernel mailing list, Andrew Morton

On Mon, 7 Jul 2003 19:40, Mike Galbraith wrote:
> At 01:19 PM 7/7/2003 +1000, Con Kolivas wrote:
> >Thanks to Felipe who picked this up I was able to find the one bug causing
> > me grief. The idle detection code was allowing the sleep_avg to get to
> > ridiculously high levels. This is corrected in the following replacement
> > O3int patch. Note this fixes the mozilla issue too. Kick arse!!
>
> I took this out for a spin in stock 74.  If I do while true; do sh -c 'ps l
> $$'; date; sleep 1; done, the shell is running at priority 22.  In the face

You're hitting spot on the idle detection code. Sleep for a second or longer 
and this patch makes you get only your static priority. This way if you 
suddenly become a cpu hog you cant starve the machine. ie. it works with your 
test exactly as I planned it.

> of any load, that leads to quite long response times.  With a make -j5
> bzImage running, I frequently saw response times of over a second.  In X,
> with a make -j2 bzImage running, opening a new shell takes too long, and X

Yes I was planning on increasing the child penalty to 95 once the other things 
settled down. This will speed up start time.

> loses interactive status considerably quicker than stock when doing window

The sleep avg decrements at the same place and at the same rate in my patch as 
it does in stock, so I can't see how that's happening.

> wiggle.  Init is at 20, and kernel threads bounce around between 15 and 20
> depending on how active they are (doesn't seem good considering they're
> using practically no cpu).

They're idle. Why do they need higher priority?

> Thud is still dead, but maybe _too_ dead ;-)  I never saw it get above the
> lowest priority, which is very unfair considering the amount of sleeping it
> does.

It sounds like you're applying your idea of what you expect the priority to be 
based on previous algorithms rather than judging it on it's own merits. I 
didn't see any mention of whether audio skips less or mouse moves smoother 
which is what it's addressing. The data shows it doesn't unfairly 
disadvantage other tasks. CPU hogs get treated as such.

Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07  3:19   ` Con Kolivas
  2003-07-07  9:13     ` Felipe Alfaro Solana
  2003-07-07  9:40     ` Mike Galbraith
@ 2003-07-07 10:51     ` Nick Sanders
  2003-07-07 12:19       ` Marc-Christian Petersen
  2003-07-07 13:25     ` Helge Hafting
                       ` (2 subsequent siblings)
  5 siblings, 1 reply; 31+ messages in thread
From: Nick Sanders @ 2003-07-07 10:51 UTC (permalink / raw)
  To: linux-kernel


>
> Aha!
>
> Thanks to Felipe who picked this up I was able to find the one bug causing
> me grief. The idle detection code was allowing the sleep_avg to get to
> ridiculously high levels. This is corrected in the following replacement
> O3int patch. Note this fixes the mozilla issue too. Kick arse!!
>
> Con

Just booted with patch-O3int-0307071315 on top of 2.5.74-mm2 and the mouse 
stuttering under high CPU load has gone and no audio skipping.

Truly brilliant work

Thank you

Nick


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07 10:51     ` Nick Sanders
@ 2003-07-07 12:19       ` Marc-Christian Petersen
  2003-07-07 13:14         ` Con Kolivas
  2003-07-08  0:31         ` Zwane Mwaikambo
  0 siblings, 2 replies; 31+ messages in thread
From: Marc-Christian Petersen @ 2003-07-07 12:19 UTC (permalink / raw)
  To: Con Kolivas, linux-kernel, Mike Galbraith
  Cc: Nick Sanders, Andrew Morton, Felipe Alfaro Solana

On Monday 07 July 2003 12:51, Nick Sanders wrote:

Hi Con, Hi Andrew,

> > Thanks to Felipe who picked this up I was able to find the one bug
> > causing me grief. The idle detection code was allowing the sleep_avg to
> > get to ridiculously high levels. This is corrected in the following
> > replacement O3int patch. Note this fixes the mozilla issue too. Kick
> > arse!!
> Just booted with patch-O3int-0307071315 on top of 2.5.74-mm2 and the mouse
> stuttering under high CPU load has gone and no audio skipping.
> Truly brilliant work
> Thank you
> Nick
Hmm, this becomes better and better, but it's still not perfect [tm].

- An Xterm needs ~30 seconds to open up while "make -j16 bzImage modules"
- An Xterm needs ~15 seconds to open up while "make -j8 bzImage modules"
- XMMS does _not_ skip mp3's while above.
- Kmail is almost unusable while above (stops for about 5 secs every 15-20
  secs). KMail is also very slow while the machine is doing nothing.
- X runs with nice 0, prio 15 (nice -11 is prio 4, does not make difference)

Over all, the whole system seems in a ~snail mode.

Andrew, two things:

1. I'll test it with high job numbers, because it _must_ be possible to use
   that w/o any stops of xmms music, w/o X running like a dog etc.
2. I use anticipatory scheduler for sure. Best I've ever seen, never had
   any problems. :)

ciao, Marc


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07 12:19       ` Marc-Christian Petersen
@ 2003-07-07 13:14         ` Con Kolivas
  2003-07-08  0:31         ` Zwane Mwaikambo
  1 sibling, 0 replies; 31+ messages in thread
From: Con Kolivas @ 2003-07-07 13:14 UTC (permalink / raw)
  To: Marc-Christian Petersen, linux-kernel, Mike Galbraith
  Cc: Nick Sanders, Andrew Morton, Felipe Alfaro Solana

On Mon, 7 Jul 2003 22:19, Marc-Christian Petersen wrote:
> On Monday 07 July 2003 12:51, Nick Sanders wrote:
>
> Hi Con, Hi Andrew,
>
> > > Thanks to Felipe who picked this up I was able to find the one bug
> > > causing me grief. The idle detection code was allowing the sleep_avg to
> > > get to ridiculously high levels. This is corrected in the following
> > > replacement O3int patch. Note this fixes the mozilla issue too. Kick
> > > arse!!
> >
> > Just booted with patch-O3int-0307071315 on top of 2.5.74-mm2 and the
> > mouse stuttering under high CPU load has gone and no audio skipping.
> > Truly brilliant work
> > Thank you
> > Nick
>
> Hmm, this becomes better and better, but it's still not perfect [tm].

Thanks for feedback. I will keep working on it while I still have ideas and 
direction based on the feedback. 

> - An Xterm needs ~30 seconds to open up while "make -j16 bzImage modules"
> - An Xterm needs ~15 seconds to open up while "make -j8 bzImage modules"
> - XMMS does _not_ skip mp3's while above.
> - Kmail is almost unusable while above (stops for about 5 secs every 15-20
>   secs). KMail is also very slow while the machine is doing nothing.
> - X runs with nice 0, prio 15 (nice -11 is prio 4, does not make
> difference)

Noted; and considered the next major hurdle (was also the most notable 
complaint from Mike).

Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07  3:19   ` Con Kolivas
                       ` (2 preceding siblings ...)
  2003-07-07 10:51     ` Nick Sanders
@ 2003-07-07 13:25     ` Helge Hafting
  2003-07-08  6:35     ` Alex Riesen
  2003-07-08  7:11     ` Szonyi Calin
  5 siblings, 0 replies; 31+ messages in thread
From: Helge Hafting @ 2003-07-07 13:25 UTC (permalink / raw)
  To: Con Kolivas; +Cc: linux-kernel

I tried this one and it looks fine.
Big latex jobs are no longer noticeable when I play
xgalaga waiting for them to finish.  I have
to look at the load meter now!

Helge Hafting


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07 10:25       ` Con Kolivas
@ 2003-07-07 14:06         ` Mike Galbraith
  2003-07-07 14:10           ` Con Kolivas
  0 siblings, 1 reply; 31+ messages in thread
From: Mike Galbraith @ 2003-07-07 14:06 UTC (permalink / raw)
  To: Con Kolivas
  Cc: Felipe Alfaro Solana, linux kernel mailing list, Andrew Morton

At 08:25 PM 7/7/2003 +1000, Con Kolivas wrote:
>On Mon, 7 Jul 2003 19:40, Mike Galbraith wrote:
> > At 01:19 PM 7/7/2003 +1000, Con Kolivas wrote:
> > >Thanks to Felipe who picked this up I was able to find the one bug causing
> > > me grief. The idle detection code was allowing the sleep_avg to get to
> > > ridiculously high levels. This is corrected in the following replacement
> > > O3int patch. Note this fixes the mozilla issue too. Kick arse!!
> >
> > I took this out for a spin in stock 74.  If I do while true; do sh -c 'ps l
> > $$'; date; sleep 1; done, the shell is running at priority 22.  In the face
>
>You're hitting spot on the idle detection code. Sleep for a second or longer
>and this patch makes you get only your static priority. This way if you
>suddenly become a cpu hog you cant starve the machine. ie. it works with your
>test exactly as I planned it.

That one is a definite regression in my book.

> > of any load, that leads to quite long response times.  With a make -j5
> > bzImage running, I frequently saw response times of over a second.  In X,
> > with a make -j2 bzImage running, opening a new shell takes too long, and X
>
>Yes I was planning on increasing the child penalty to 95 once the other 
>things
>settled down. This will speed up start time.
>
> > loses interactive status considerably quicker than stock when doing window
>
>The sleep avg decrements at the same place and at the same rate in my 
>patch as
>it does in stock, so I can't see how that's happening.

(dunno, just an observation)

> > wiggle.  Init is at 20, and kernel threads bounce around between 15 and 20
> > depending on how active they are (doesn't seem good considering they're
> > using practically no cpu).
>
>They're idle. Why do they need higher priority?

So they can preempt the waker?  kswapd doesn't need to be sitting around 
twiddling it's thumbs after somebody wakes it up, it needs to start working 
right now.  The same for all of it's buddies.  These guys don't need their 
priorities being bounced around.

> > Thud is still dead, but maybe _too_ dead ;-)  I never saw it get above the
> > lowest priority, which is very unfair considering the amount of sleeping it
> > does.
>
>It sounds like you're applying your idea of what you expect the priority 
>to be
>based on previous algorithms rather than judging it on it's own merits. I

Perhaps, but I don't think so... see below.

>didn't see any mention of whether audio skips less or mouse moves smoother
>which is what it's addressing.

You have enough folks testing sound and whatnot.  I'm commenting on general 
effects that poked me in the eye during "take it for a spin around the 
block" session.

>  The data shows it doesn't unfairly

That's contest data right?  Contest doesn't have any bursty loads that I 
know of...

>  disadvantage other tasks. CPU hogs get treated as such.

...and given the scheduler's reaction to thud, I can only assume (yeah, I 
know;) that a bursty load will suffer in the presence of a sustained 
runner.  If you treat all cpu hungry loads the same, you may as well switch 
to two priorities, interactive and not interactive no?  That's what I meant 
by too dead.

         -Mike 


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07 14:06         ` Mike Galbraith
@ 2003-07-07 14:10           ` Con Kolivas
  0 siblings, 0 replies; 31+ messages in thread
From: Con Kolivas @ 2003-07-07 14:10 UTC (permalink / raw)
  To: Mike Galbraith
  Cc: Felipe Alfaro Solana, linux kernel mailing list, Andrew Morton

On Tue, 8 Jul 2003 00:06, Mike Galbraith wrote:
> At 08:25 PM 7/7/2003 +1000, Con Kolivas wrote:
> >On Mon, 7 Jul 2003 19:40, Mike Galbraith wrote:
> > > At 01:19 PM 7/7/2003 +1000, Con Kolivas wrote:
> > > >Thanks to Felipe who picked this up I was able to find the one bug
> > > > causing me grief. The idle detection code was allowing the sleep_avg
> > > > to get to ridiculously high levels. This is corrected in the
> > > > following replacement O3int patch. Note this fixes the mozilla issue
> > > > too. Kick arse!!
> > >
> > > I took this out for a spin in stock 74.  If I do while true; do sh -c
> > > 'ps l $$'; date; sleep 1; done, the shell is running at priority 22. 
> > > In the face
> >
> >You're hitting spot on the idle detection code. Sleep for a second or
> > longer and this patch makes you get only your static priority. This way
> > if you suddenly become a cpu hog you cant starve the machine. ie. it
> > works with your test exactly as I planned it.
>
> That one is a definite regression in my book.
>
> > > of any load, that leads to quite long response times.  With a make -j5
> > > bzImage running, I frequently saw response times of over a second.  In
> > > X, with a make -j2 bzImage running, opening a new shell takes too long,
> > > and X
> >
> >Yes I was planning on increasing the child penalty to 95 once the other
> >things
> >settled down. This will speed up start time.
> >
> > > loses interactive status considerably quicker than stock when doing
> > > window
> >
> >The sleep avg decrements at the same place and at the same rate in my
> >patch as
> >it does in stock, so I can't see how that's happening.
>
> (dunno, just an observation)
>
> > > wiggle.  Init is at 20, and kernel threads bounce around between 15 and
> > > 20 depending on how active they are (doesn't seem good considering
> > > they're using practically no cpu).
> >
> >They're idle. Why do they need higher priority?
>
> So they can preempt the waker?  kswapd doesn't need to be sitting around
> twiddling it's thumbs after somebody wakes it up, it needs to start working
> right now.  The same for all of it's buddies.  These guys don't need their
> priorities being bounced around.
>
> > > Thud is still dead, but maybe _too_ dead ;-)  I never saw it get above
> > > the lowest priority, which is very unfair considering the amount of
> > > sleeping it does.
> >
> >It sounds like you're applying your idea of what you expect the priority
> >to be
> >based on previous algorithms rather than judging it on it's own merits. I
>
> Perhaps, but I don't think so... see below.
>
> >didn't see any mention of whether audio skips less or mouse moves smoother
> >which is what it's addressing.
>
> You have enough folks testing sound and whatnot.  I'm commenting on general
> effects that poked me in the eye during "take it for a spin around the
> block" session.
>
> >  The data shows it doesn't unfairly
>
> That's contest data right?  Contest doesn't have any bursty loads that I
> know of...
>
> >  disadvantage other tasks. CPU hogs get treated as such.
>
> ...and given the scheduler's reaction to thud, I can only assume (yeah, I
> know;) that a bursty load will suffer in the presence of a sustained
> runner.  If you treat all cpu hungry loads the same, you may as well switch
> to two priorities, interactive and not interactive no?  That's what I meant
> by too dead.

Thanks for all these comments. Will try to consider them in further 
development.

Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07 12:19       ` Marc-Christian Petersen
  2003-07-07 13:14         ` Con Kolivas
@ 2003-07-08  0:31         ` Zwane Mwaikambo
  2003-07-09 10:12           ` Marc-Christian Petersen
  1 sibling, 1 reply; 31+ messages in thread
From: Zwane Mwaikambo @ 2003-07-08  0:31 UTC (permalink / raw)
  To: Marc-Christian Petersen
  Cc: Con Kolivas, linux-kernel, Mike Galbraith, Nick Sanders,
	Andrew Morton, Felipe Alfaro Solana

On Mon, 7 Jul 2003, Marc-Christian Petersen wrote:

> On Monday 07 July 2003 12:51, Nick Sanders wrote:
> 
> - An Xterm needs ~30 seconds to open up while "make -j16 bzImage modules"
> - An Xterm needs ~15 seconds to open up while "make -j8 bzImage modules"
> - XMMS does _not_ skip mp3's while above.

How fast is your box? RAM? disks? I'm personally more interested in 1-2 
make -j2 bzImage going

> - Kmail is almost unusable while above (stops for about 5 secs every 15-20
>   secs). KMail is also very slow while the machine is doing nothing.
> - X runs with nice 0, prio 15 (nice -11 is prio 4, does not make difference)

Looking at above load i'm not entirely surprised, but i presume you're 
going to name a kernel which can handle that and still complete the builds 
withing a sane time frame.

-- 
function.linuxpower.ca

^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07  3:19   ` Con Kolivas
                       ` (3 preceding siblings ...)
  2003-07-07 13:25     ` Helge Hafting
@ 2003-07-08  6:35     ` Alex Riesen
  2003-07-08  7:11     ` Szonyi Calin
  5 siblings, 0 replies; 31+ messages in thread
From: Alex Riesen @ 2003-07-08  6:35 UTC (permalink / raw)
  To: Con Kolivas
  Cc: Felipe Alfaro Solana, linux kernel mailing list, Andrew Morton

Con Kolivas, Mon, Jul 07, 2003 05:19:57 +0200:
> > > Attached is an incremental patch against 2.5.74-mm2 with more
> > > interactivity work. Audio should be quite resistant to skips with this,
> > > and it should not induce further unfairness.
> > >
> > I'm seeing extreme X starvation with this patch under 2.5.74-mm2 when
> > starting a CPU hogger:
> >
> 
> Thanks to Felipe who picked this up I was able to find the one bug causing me 
> grief. The idle detection code was allowing the sleep_avg to get to 
> ridiculously high levels. This is corrected in the following replacement 
> O3int patch. Note this fixes the mozilla issue too. Kick arse!!
> 

still skips. Pan, updating list of newsgroups, VIM compilation and xmms.



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-07  3:19   ` Con Kolivas
                       ` (4 preceding siblings ...)
  2003-07-08  6:35     ` Alex Riesen
@ 2003-07-08  7:11     ` Szonyi Calin
  2003-07-08  7:46       ` Davide Libenzi
  2003-07-08  8:03       ` Con Kolivas
  5 siblings, 2 replies; 31+ messages in thread
From: Szonyi Calin @ 2003-07-08  7:11 UTC (permalink / raw)
  To: kernel; +Cc: linux-kernel, akpm


Con Kolivas said:
>
> Thanks to Felipe who picked this up I was able to find the one bug
> causing me  grief. The idle detection code was allowing the sleep_avg to
> get to  ridiculously high levels. This is corrected in the following
> replacement  O3int patch. Note this fixes the mozilla issue too. Kick
> arse!!
>
> Con

Not really.
No change on my system.
No fancy gui (just fvwm). Testing is very simple:
In one xterm window make bzImage
in other mplayer /some/movie.avi
... and the movie is jerky :-(

In the weekend i did some experiments with the defines in kernel/sched.c
It seems that changing in MAX_TIMESLICE the "200" to "100" or even "50"
helps a little bit. (i was able to do a make bzImage and watch a movie
without noticing that is a kernel compile in background)

system is AMD DURON chipset via KT/KM 133, Ati Radeon VE.

I remeber with nostalgicaly about the times when i could (with a 2.5
kernel) do a make -j 5 bzImage AND watch a movie in the same time

-- 
# fortune
fortune: write error on /dev/null -- please empty the bit bucket


-----------------------------------------
This email was sent using SquirrelMail.
   "Webmail for nuts!"
http://squirrelmail.org/



^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08  7:11     ` Szonyi Calin
@ 2003-07-08  7:46       ` Davide Libenzi
  2003-07-08  7:59         ` Con Kolivas
  2003-07-08  8:03       ` Con Kolivas
  1 sibling, 1 reply; 31+ messages in thread
From: Davide Libenzi @ 2003-07-08  7:46 UTC (permalink / raw)
  To: Szonyi Calin; +Cc: kernel, Linux Kernel Mailing List, Andrew Morton

On Tue, 8 Jul 2003, Szonyi Calin wrote:

> In the weekend i did some experiments with the defines in kernel/sched.c
> It seems that changing in MAX_TIMESLICE the "200" to "100" or even "50"
> helps a little bit. (i was able to do a make bzImage and watch a movie
> without noticing that is a kernel compile in background)

I bet it helps. Something around 100-120 should be fine. Now we need an
exponential function of the priority to assign timeslices to try to
maintain interactivity. This should work :

#define TSDELTA (MAX_TIMESLICE - MIN_TIMESLICE)
#define KTSNORM (TSDELTA * TSDELTA * TSDELTA)

time_slice = MIN_TIMESLICE + (TSDELTA * prio * prio * prio) / KTSNORM;

Or something like :

static const short tsmap[] = {
        10,     10,     10,     10,     10,     10,     10,     10,     10,     11,
        11,     12,     13,     14,     15,     16,     17,     19,     20,     22,
        24,     27,     29,     32,     35,     38,     42,     46,     50,     55,
        60,     65,     70,     76,     82,     89,     96,     103,    111,    120,
};

This is a simple cubic, while a quadratic map looks like :

static const short tsmap[] = {
        10,     10,     10,     10,     11,     11,     12,     13,     14,     15,
        17,     18,     20,     22,     24,     26,     28,     30,     33,     36,
        38,     41,     45,     48,     51,     55,     58,     62,     66,     70,
        75,     79,     84,     88,     93,     98,     103,    109,    114,    120,
};




- Davide


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08  7:46       ` Davide Libenzi
@ 2003-07-08  7:59         ` Con Kolivas
  2003-07-08 15:12           ` Davide Libenzi
  0 siblings, 1 reply; 31+ messages in thread
From: Con Kolivas @ 2003-07-08  7:59 UTC (permalink / raw)
  To: Davide Libenzi, Szonyi Calin; +Cc: Linux Kernel Mailing List, Andrew Morton

On Tue, 8 Jul 2003 17:46, Davide Libenzi wrote:
> On Tue, 8 Jul 2003, Szonyi Calin wrote:
> > In the weekend i did some experiments with the defines in kernel/sched.c
> > It seems that changing in MAX_TIMESLICE the "200" to "100" or even "50"
> > helps a little bit. (i was able to do a make bzImage and watch a movie
> > without noticing that is a kernel compile in background)
>
> I bet it helps. Something around 100-120 should be fine. Now we need an
> exponential function of the priority to assign timeslices to try to
> maintain interactivity. This should work :

This is still decreasing the timeslices. Whether you do it linearly or 
exponentially the timeslices are smaller, which just about everyone will 
resist you doing.

Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08  7:11     ` Szonyi Calin
  2003-07-08  7:46       ` Davide Libenzi
@ 2003-07-08  8:03       ` Con Kolivas
  2003-07-10 16:27         ` Szonyi Calin
  1 sibling, 1 reply; 31+ messages in thread
From: Con Kolivas @ 2003-07-08  8:03 UTC (permalink / raw)
  To: Szonyi Calin; +Cc: linux-kernel, akpm

On Tue, 8 Jul 2003 17:11, Szonyi Calin wrote:
> Con Kolivas said:
> > Thanks to Felipe who picked this up I was able to find the one bug
> > causing me  grief. The idle detection code was allowing the sleep_avg to
> > get to  ridiculously high levels. This is corrected in the following
> > replacement  O3int patch. Note this fixes the mozilla issue too. Kick
> > arse!!
> >
> > Con
>
> Not really.

Ok kick my butt instead so I can try and fix it.

> No change on my system.
> No fancy gui (just fvwm). Testing is very simple:
> In one xterm window make bzImage
> in other mplayer /some/movie.avi
> ... and the movie is jerky :-(

Can you tell me how it compares to vanilla at all, and can you watch top and 
see what dynamic priorities are reported for the cc and mplayer processes 
while it's running?

>
> In the weekend i did some experiments with the defines in kernel/sched.c
> It seems that changing in MAX_TIMESLICE the "200" to "100" or even "50"
> helps a little bit. (i was able to do a make bzImage and watch a movie
> without noticing that is a kernel compile in background)

Strong resistance to dropping the timeslices will remain. If you want to do 
this, try adding the granularity patch instead which works better. Neither 
will become mainline changes I'm afraid.

>
> system is AMD DURON chipset via KT/KM 133, Ati Radeon VE.
>
> I remeber with nostalgicaly about the times when i could (with a 2.5
> kernel) do a make -j 5 bzImage AND watch a movie in the same time

<sigh> If it were still the case I wouldn't be spending hundreds of hours 
doing this :|

Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08  7:59         ` Con Kolivas
@ 2003-07-08 15:12           ` Davide Libenzi
  2003-07-08 20:54             ` Con Kolivas
  0 siblings, 1 reply; 31+ messages in thread
From: Davide Libenzi @ 2003-07-08 15:12 UTC (permalink / raw)
  To: Con Kolivas; +Cc: Szonyi Calin, Linux Kernel Mailing List, Andrew Morton

On Tue, 8 Jul 2003, Con Kolivas wrote:

> On Tue, 8 Jul 2003 17:46, Davide Libenzi wrote:
> > On Tue, 8 Jul 2003, Szonyi Calin wrote:
> > > In the weekend i did some experiments with the defines in kernel/sched.c
> > > It seems that changing in MAX_TIMESLICE the "200" to "100" or even "50"
> > > helps a little bit. (i was able to do a make bzImage and watch a movie
> > > without noticing that is a kernel compile in background)
> >
> > I bet it helps. Something around 100-120 should be fine. Now we need an
> > exponential function of the priority to assign timeslices to try to
> > maintain interactivity. This should work :
>
> This is still decreasing the timeslices. Whether you do it linearly or
> exponentially the timeslices are smaller, which just about everyone will
> resist you doing.

Maybe you (and this Mr Everyone) might be interested in knowing that the
interactivity is not given by the absolute length of the timeslice but by
the ratio between timeslices. If you have three processes running with
timeslices :

A = 400
B = 200
C = 100

the interactivity is the same of the one if you have :

A = 100
B = 50
C = 25

What changes is the maxiomum CPU blackout time that each task has to see
before re-emerging again from the expired array. In the first case in
"only" 700ms while in the first case is 175ms.



- Davide


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08 15:12           ` Davide Libenzi
@ 2003-07-08 20:54             ` Con Kolivas
  2003-07-08 20:55               ` Davide Libenzi
  0 siblings, 1 reply; 31+ messages in thread
From: Con Kolivas @ 2003-07-08 20:54 UTC (permalink / raw)
  To: Davide Libenzi; +Cc: Szonyi Calin, Linux Kernel Mailing List, Andrew Morton

On Wed, 9 Jul 2003 01:12, Davide Libenzi wrote:
> On Tue, 8 Jul 2003, Con Kolivas wrote:
> > On Tue, 8 Jul 2003 17:46, Davide Libenzi wrote:
> > > On Tue, 8 Jul 2003, Szonyi Calin wrote:
> > > > In the weekend i did some experiments with the defines in
> > > > kernel/sched.c It seems that changing in MAX_TIMESLICE the "200" to
> > > > "100" or even "50" helps a little bit. (i was able to do a make
> > > > bzImage and watch a movie without noticing that is a kernel compile
> > > > in background)
> > >
> > > I bet it helps. Something around 100-120 should be fine. Now we need an
> > > exponential function of the priority to assign timeslices to try to
> > > maintain interactivity. This should work :
> >
> > This is still decreasing the timeslices. Whether you do it linearly or
> > exponentially the timeslices are smaller, which just about everyone will
> > resist you doing.
>
> Maybe you (and this Mr Everyone) might be interested in knowing that the
> interactivity is not given by the absolute length of the timeslice but by
> the ratio between timeslices. If you have three processes running with
> timeslices :
>
> A = 400
> B = 200
> C = 100
>
> the interactivity is the same of the one if you have :
>
> A = 100
> B = 50
> C = 25
>
> What changes is the maxiomum CPU blackout time that each task has to see
> before re-emerging again from the expired array. In the first case in
> "only" 700ms while in the first case is 175ms.

and what happens to the throughput?


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08 20:54             ` Con Kolivas
@ 2003-07-08 20:55               ` Davide Libenzi
  0 siblings, 0 replies; 31+ messages in thread
From: Davide Libenzi @ 2003-07-08 20:55 UTC (permalink / raw)
  To: Con Kolivas; +Cc: Szonyi Calin, Linux Kernel Mailing List, Andrew Morton

On Wed, 9 Jul 2003, Con Kolivas wrote:

> > the ratio between timeslices. If you have three processes running with
> > timeslices :
> >
> > A = 400
> > B = 200
> > C = 100
> >
> > the interactivity is the same of the one if you have :
> >
> > A = 100
> > B = 50
> > C = 25
> >
> > What changes is the maxiomum CPU blackout time that each task has to see
> > before re-emerging again from the expired array. In the first case in
> > "only" 700ms while in the first case is 175ms.
>
> and what happens to the throughput?

Nothing. You'll have more context switches in average but if you think
that the context switch time will be diluted in tenths on ms runs you'll
get nothing. I really don't like to talk w/out being backed up by numbers
but currently I am really overbooked with other tasks and I cannot follow
up this (even if I'd like to). I am currently working 12-14 hours/day on
average, and I am one of those unperfect machines that still needs 6-7
hours rest somewhere during the day :)
(but I'll do it later if Ingo does not return from Mars or if someone else
does not do it)



- Davide


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08  0:31         ` Zwane Mwaikambo
@ 2003-07-09 10:12           ` Marc-Christian Petersen
  2003-07-09 10:13             ` Marc-Christian Petersen
  2003-07-09 10:22             ` Con Kolivas
  0 siblings, 2 replies; 31+ messages in thread
From: Marc-Christian Petersen @ 2003-07-09 10:12 UTC (permalink / raw)
  To: Zwane Mwaikambo
  Cc: Con Kolivas, linux-kernel, Mike Galbraith, Nick Sanders,
	Andrew Morton, Felipe Alfaro Solana

On Tuesday 08 July 2003 02:31, Zwane Mwaikambo wrote:

Hi Zwane,

> > - An Xterm needs ~30 seconds to open up while "make -j16 bzImage modules"
> > - An Xterm needs ~15 seconds to open up while "make -j8 bzImage modules"
> > - XMMS does _not_ skip mp3's while above.
> How fast is your box? RAM? disks? I'm personally more interested in 1-2
> make -j2 bzImage going
- Celeron 1,3GHz
- 512MB RAM
- 1GB SWAP (2 IDE disks, ~512MB on each disk)
- ATA100 Maxtor 60GB HDD
- ATA100 Fujitsu 40GB

Now I am running 2.5.74-mm3, xterm needs about 5 seconds to open up, but the 
whole system is again in a snail mode. XMMS does not skip.

> > - Kmail is almost unusable while above (stops for about 5 secs every
> > 15-20 secs). KMail is also very slow while the machine is doing nothing.
> > - X runs with nice 0, prio 15 (nice -11 is prio 4, does not make
> > difference)
> Looking at above load i'm not entirely surprised, but i presume you're
> going to name a kernel which can handle that and still complete the builds
> withing a sane time frame.
For example, my wolk4 tree can handle it very well. 2.4-aa can handle it very 
well too.

ciao, Marc


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-09 10:12           ` Marc-Christian Petersen
@ 2003-07-09 10:13             ` Marc-Christian Petersen
  2003-07-09 10:22             ` Con Kolivas
  1 sibling, 0 replies; 31+ messages in thread
From: Marc-Christian Petersen @ 2003-07-09 10:13 UTC (permalink / raw)
  To: Zwane Mwaikambo
  Cc: Con Kolivas, linux-kernel, Mike Galbraith, Nick Sanders,
	Andrew Morton, Felipe Alfaro Solana

On Wednesday 09 July 2003 12:12, Marc-Christian Petersen wrote:

Hi again,

> Now I am running 2.5.74-mm3, xterm needs about 5 seconds to open up, but
> the whole system is again in a snail mode. XMMS does not skip.
forgot to mention: Running "make -j2 bzImage modules" like you requested :)

ciao, Marc


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-09 10:12           ` Marc-Christian Petersen
  2003-07-09 10:13             ` Marc-Christian Petersen
@ 2003-07-09 10:22             ` Con Kolivas
  2003-07-09 10:23               ` Marc-Christian Petersen
  1 sibling, 1 reply; 31+ messages in thread
From: Con Kolivas @ 2003-07-09 10:22 UTC (permalink / raw)
  To: Marc-Christian Petersen, Zwane Mwaikambo
  Cc: linux-kernel, Mike Galbraith, Nick Sanders, Andrew Morton,
	Felipe Alfaro Solana

On Wed, 9 Jul 2003 20:12, Marc-Christian Petersen wrote:
> On Tuesday 08 July 2003 02:31, Zwane Mwaikambo wrote:
>
> Hi Zwane,
>
> > > - An Xterm needs ~30 seconds to open up while "make -j16 bzImage
> > > modules" - An Xterm needs ~15 seconds to open up while "make -j8
> > > bzImage modules" - XMMS does _not_ skip mp3's while above.
> >
> > How fast is your box? RAM? disks? I'm personally more interested in 1-2
> > make -j2 bzImage going
>
> - Celeron 1,3GHz
> - 512MB RAM
> - 1GB SWAP (2 IDE disks, ~512MB on each disk)
> - ATA100 Maxtor 60GB HDD
> - ATA100 Fujitsu 40GB
>
> Now I am running 2.5.74-mm3, xterm needs about 5 seconds to open up, but
> the whole system is again in a snail mode. XMMS does not skip.

Well this is no different to the O3 patch on mm2 so it's no surprise :)

Con

>
> > > - Kmail is almost unusable while above (stops for about 5 secs every
> > > 15-20 secs). KMail is also very slow while the machine is doing
> > > nothing. - X runs with nice 0, prio 15 (nice -11 is prio 4, does not
> > > make difference)
> >
> > Looking at above load i'm not entirely surprised, but i presume you're
> > going to name a kernel which can handle that and still complete the
> > builds withing a sane time frame.
>
> For example, my wolk4 tree can handle it very well. 2.4-aa can handle it
> very well too.
>
> ciao, Marc


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-09 10:22             ` Con Kolivas
@ 2003-07-09 10:23               ` Marc-Christian Petersen
  2003-07-09 10:37                 ` Con Kolivas
  0 siblings, 1 reply; 31+ messages in thread
From: Marc-Christian Petersen @ 2003-07-09 10:23 UTC (permalink / raw)
  To: Con Kolivas, Zwane Mwaikambo
  Cc: linux-kernel, Mike Galbraith, Nick Sanders, Andrew Morton,
	Felipe Alfaro Solana

On Wednesday 09 July 2003 12:22, Con Kolivas wrote:

Hi Con,

> > Now I am running 2.5.74-mm3, xterm needs about 5 seconds to open up, but
> > the whole system is again in a snail mode. XMMS does not skip.
> Well this is no different to the O3 patch on mm2 so it's no surprise :)
sure, but wait up the next mail. I forgot to mention that I do "-j2" now and 
not -j8 or -j16 ;)

ciao, Marc


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-09 10:23               ` Marc-Christian Petersen
@ 2003-07-09 10:37                 ` Con Kolivas
  2003-07-09 10:40                   ` Marc-Christian Petersen
  0 siblings, 1 reply; 31+ messages in thread
From: Con Kolivas @ 2003-07-09 10:37 UTC (permalink / raw)
  To: Marc-Christian Petersen, Zwane Mwaikambo
  Cc: linux-kernel, Mike Galbraith, Nick Sanders, Andrew Morton,
	Felipe Alfaro Solana

On Wed, 9 Jul 2003 20:23, Marc-Christian Petersen wrote:
> On Wednesday 09 July 2003 12:22, Con Kolivas wrote:
>
> Hi Con,
>
> > > Now I am running 2.5.74-mm3, xterm needs about 5 seconds to open up,
> > > but the whole system is again in a snail mode. XMMS does not skip.
> >
> > Well this is no different to the O3 patch on mm2 so it's no surprise :)
>
> sure, but wait up the next mail. I forgot to mention that I do "-j2" now
> and not -j8 or -j16 ;)
>
> ciao, Marc

You saying this is somehow slower than before?

Ciao Marc,
Con


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-09 10:37                 ` Con Kolivas
@ 2003-07-09 10:40                   ` Marc-Christian Petersen
  0 siblings, 0 replies; 31+ messages in thread
From: Marc-Christian Petersen @ 2003-07-09 10:40 UTC (permalink / raw)
  To: Con Kolivas, Zwane Mwaikambo
  Cc: linux-kernel, Mike Galbraith, Nick Sanders, Andrew Morton,
	Felipe Alfaro Solana

On Wednesday 09 July 2003 12:37, Con Kolivas wrote:

Hi Con,

> > > > Now I am running 2.5.74-mm3, xterm needs about 5 seconds to open up,
> > > > but the whole system is again in a snail mode. XMMS does not skip.
> > > Well this is no different to the O3 patch on mm2 so it's no surprise :)
> > sure, but wait up the next mail. I forgot to mention that I do "-j2" now
> > and not -j8 or -j16 ;)

> You saying this is somehow slower than before?
No. Where did I say that? :)

recall: I do "-j2" now and not "-j8/-j16" like before in my previous report.

There is no difference with -j8/-j16 comparing .74-mm2 + O3int and .74-mm3

ciao, Marc


^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
  2003-07-08  8:03       ` Con Kolivas
@ 2003-07-10 16:27         ` Szonyi Calin
  0 siblings, 0 replies; 31+ messages in thread
From: Szonyi Calin @ 2003-07-10 16:27 UTC (permalink / raw)
  To: kernel; +Cc: linux-kernel, akpm

[-- Attachment #1: Type: text/plain, Size: 1847 bytes --]

Hi

Sorry for my late answer. I hope it helps even if it's late.

Con Kolivas said:
>
> Ok kick my butt instead so I can try and fix it.
>
>
> Can you tell me how it compares to vanilla at all, and can you watch top
> and  see what dynamic priorities are reported for the cc and mplayer
> processes  while it's running?
>

Test setup: same config (attached) for kernel. Slackware in runlevel 1
(no daemons).
Kernels tested: 2.5.74 vanila, 2.5.74-mm1, 2.5.74-mm2 with your
 patch.
Opening three xterm windows in fvwm2: in one top is feeding
only the running processes in one file, in the
second one "make bzImage" after a make clean with linux-2.4.21
sources and in the third one mplayer /some/movie.avi.
The movie is the same every time.

Results (see atched files):
Vanila kernel is a little bit better than mm. On vanila mplayer has
a smaller priority than cc1 but it still skips frames though is much
smoother. On mm they have the same priority and mplayer skips
worse than on vanila kernel
It seems that gcc uses a lot of cpu while mplayer uses little
cpu so the kernel is favouring the process which eats more cpu .

>> I remeber with nostalgicaly about the times when i could (with a 2.5
>> kernel) do a make -j 5 bzImage AND watch a movie in the same time
>
> <sigh> If it were still the case I wouldn't be spending hundreds of
> hours  doing this :|
>

Sorry if I upset you. I apreciate your's (and other's) work on linux
kernel. I'm not a native english speaker and i was just trying to
give an order of magnitude of how the worse kernel is today
(in terms of multimedia) compared with past times.

> Con

Thanks

Bye
Calin

-- 
# fortune
fortune: write error on /dev/null --- please empty the bit bucket


-----------------------------------------
This email was sent using SquirrelMail.
   "Webmail for nuts!"
http://squirrelmail.org/


[-- Attachment #2: config --]
[-- Type: application/octet-stream, Size: 5706 bytes --]

CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y

CONFIG_EXPERIMENTAL=y

CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSCTL=y
CONFIG_LOG_BUF_SHIFT=14
CONFIG_FUTEX=y
CONFIG_EPOLL=y

CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
CONFIG_KMOD=y

CONFIG_X86_PC=y
CONFIG_MK7=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_USE_3DNOW=y
CONFIG_PREEMPT=y
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
CONFIG_X86_CPUID=y
CONFIG_NOHIGHMEM=y
CONFIG_1GB=y
CONFIG_MTRR=y
CONFIG_HAVE_DEC_LOCK=y

CONFIG_PM=y

CONFIG_APM=y
CONFIG_APM_DO_ENABLE=y
CONFIG_APM_RTC_IS_GMT=y


CONFIG_PCI=y
CONFIG_PCI_GODIRECT=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y
CONFIG_ISA=y

CONFIG_KCORE_ELF=y
CONFIG_BINFMT_ELF=y



CONFIG_PARPORT=y
CONFIG_PARPORT_PC=y
CONFIG_PARPORT_PC_CML1=y
CONFIG_PARPORT_PC_FIFO=y
CONFIG_PARPORT_PC_SUPERIO=y
CONFIG_PARPORT_1284=y

CONFIG_PNP=y
CONFIG_PNP_NAMES=y
CONFIG_PNP_DEBUG=y

CONFIG_ISAPNP=y
CONFIG_PNPBIOS=y

CONFIG_BLK_DEV_FD=y
CONFIG_BLK_DEV_LOOP=y

CONFIG_IDE=y

CONFIG_BLK_DEV_IDE=y

CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECD=y
CONFIG_IDE_TASKFILE_IO=y

CONFIG_BLK_DEV_IDEPCI=y
CONFIG_BLK_DEV_GENERIC=y
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
CONFIG_IDEDMA_PCI_AUTO=y
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_BLK_DEV_ADMA=y
CONFIG_BLK_DEV_VIA82CXXX=y
CONFIG_IDEDMA_AUTO=y
CONFIG_IDEDMA_IVB=y
CONFIG_BLK_DEV_IDE_MODES=y







CONFIG_NET=y

CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_NETLINK_DEV=y
CONFIG_NETFILTER=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_ARPD=y

CONFIG_IP_NF_CONNTRACK=y
CONFIG_IP_NF_FTP=y
CONFIG_IP_NF_IRC=y
CONFIG_IP_NF_TFTP=y
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_MATCH_LIMIT=y
CONFIG_IP_NF_MATCH_MAC=y
CONFIG_IP_NF_MATCH_PKTTYPE=y
CONFIG_IP_NF_MATCH_MARK=y
CONFIG_IP_NF_MATCH_MULTIPORT=y
CONFIG_IP_NF_MATCH_TOS=y
CONFIG_IP_NF_MATCH_RECENT=y
CONFIG_IP_NF_MATCH_ECN=y
CONFIG_IP_NF_MATCH_DSCP=y
CONFIG_IP_NF_MATCH_AH_ESP=y
CONFIG_IP_NF_MATCH_LENGTH=y
CONFIG_IP_NF_MATCH_TTL=y
CONFIG_IP_NF_MATCH_TCPMSS=y
CONFIG_IP_NF_MATCH_HELPER=y
CONFIG_IP_NF_MATCH_STATE=y
CONFIG_IP_NF_MATCH_CONNTRACK=y
CONFIG_IP_NF_MATCH_UNCLEAN=y
CONFIG_IP_NF_MATCH_OWNER=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_TARGET_MIRROR=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
CONFIG_IP_NF_TARGET_REDIRECT=y
CONFIG_IP_NF_NAT_LOCAL=y
CONFIG_IP_NF_NAT_SNMP_BASIC=y
CONFIG_IP_NF_NAT_IRC=y
CONFIG_IP_NF_NAT_FTP=y
CONFIG_IP_NF_NAT_TFTP=y
CONFIG_IP_NF_MANGLE=y
CONFIG_IP_NF_TARGET_TOS=y
CONFIG_IP_NF_TARGET_ECN=y
CONFIG_IP_NF_TARGET_DSCP=y
CONFIG_IP_NF_TARGET_MARK=y
CONFIG_IP_NF_TARGET_LOG=y
CONFIG_IP_NF_TARGET_ULOG=y
CONFIG_IP_NF_TARGET_TCPMSS=y
CONFIG_IP_NF_ARPTABLES=y
CONFIG_IP_NF_ARPFILTER=y

CONFIG_IPV6_SCTP__=y


CONFIG_NETDEVICES=y


CONFIG_NET_ETHERNET=y
CONFIG_MII=y

CONFIG_NET_PCI=y
CONFIG_8139TOO=y




CONFIG_SHAPER=y






CONFIG_INPUT=y

CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768

CONFIG_SOUND_GAMEPORT=y
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y

CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=y

CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y

CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_DETECT_IRQ=y

CONFIG_SERIAL_CORE=y
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=512
CONFIG_PRINTER=y
CONFIG_LP_CONSOLE=y

CONFIG_I2C=y
CONFIG_I2C_ALGOBIT=y
CONFIG_I2C_CHARDEV=y

CONFIG_I2C_VIAPRO=y

CONFIG_SENSORS_VIA686A=y
CONFIG_I2C_SENSOR=y



CONFIG_NVRAM=y
CONFIG_RTC=y

CONFIG_AGP=y
CONFIG_AGP_VIA=y
CONFIG_DRM=y
CONFIG_DRM_RADEON=y

CONFIG_VIDEO_DEV=y

CONFIG_VIDEO_PROC_FS=y

CONFIG_VIDEO_BT848=y


CONFIG_VIDEO_VIDEOBUF=y
CONFIG_VIDEO_TUNER=y
CONFIG_VIDEO_BUF=y
CONFIG_VIDEO_BTCX=y

CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_JBD=y
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=y
CONFIG_JFS_FS=y
CONFIG_JFS_POSIX_ACL=y
CONFIG_FS_POSIX_ACL=y
CONFIG_XFS_FS=y

CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y
CONFIG_UDF_FS=y

CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y

CONFIG_PROC_FS=y
CONFIG_DEVPTS_FS=y
CONFIG_TMPFS=y
CONFIG_RAMFS=y

CONFIG_UFS_FS=y

CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
CONFIG_NFS_DIRECTIO=y
CONFIG_NFSD=y
CONFIG_NFSD_V3=y
CONFIG_NFSD_TCP=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=y
CONFIG_SUNRPC=y
CONFIG_SMB_FS=y

CONFIG_PARTITION_ADVANCED=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_SMB_NLS=y
CONFIG_NLS=y

CONFIG_NLS_DEFAULT="iso8859-2"
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_CODEPAGE_850=y
CONFIG_NLS_CODEPAGE_852=y
CONFIG_NLS_CODEPAGE_1250=y
CONFIG_NLS_ISO8859_1=y
CONFIG_NLS_ISO8859_2=y
CONFIG_NLS_ISO8859_15=y
CONFIG_NLS_UTF8=y

CONFIG_VIDEO_SELECT=y

CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y

CONFIG_SOUND=y


CONFIG_SOUND_PRIME=y
CONFIG_SOUND_BT878=y
CONFIG_SOUND_OSS=y
CONFIG_SOUND_TRACEINIT=y
CONFIG_SOUND_DMAP=y
CONFIG_SOUND_CS4232=y
CONFIG_SOUND_MPU401=y
CONFIG_SOUND_TVMIXER=y




CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_STACKOVERFLOW=y
CONFIG_DEBUG_SLAB=y
CONFIG_DEBUG_IOVIRT=y
CONFIG_MAGIC_SYSRQ=y
CONFIG_DEBUG_PAGEALLOC=y
CONFIG_KALLSYMS=y
CONFIG_DEBUG_INFO=y



CONFIG_ZLIB_INFLATE=y
CONFIG_X86_BIOS_REBOOT=y

[-- Attachment #3: dmesg --]
[-- Type: application/octet-stream, Size: 10097 bytes --]

Linux version 2.5.74-mm2 (root@grinch) (gcc version 2.95.3 20010315 (release)) #1 Mon Jul 7 23:26:53 EEST 2003
Video mode to be used for restore is 309
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000000fff0000 (usable)
 BIOS-e820: 000000000fff0000 - 000000000fff3000 (ACPI NVS)
 BIOS-e820: 000000000fff3000 - 0000000010000000 (ACPI data)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
255MB LOWMEM available.
On node 0 totalpages: 65520
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 61424 pages, LIFO batch:14
  HighMem zone: 0 pages, LIFO batch:1
Building zonelist for node : 0
Kernel command line: BOOT_IMAGE=k2574mm2 ro root=306 ide0=ata66 ide1=ata66
ide_setup: ide0=ata66
ide_setup: ide1=ata66
Initializing CPU#0
PID hash table entries: 1024 (order 10: 8192 bytes)
Detected 700.407 MHz processor.
Console: colour VGA+ 132x25
Calibrating delay loop... 1372.16 BogoMIPS
Memory: 254736k/262080k available (2202k kernel code, 6616k reserved, 890k data, 320k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
-> /dev
-> /dev/console
-> /root
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 64K (64 bytes/line)
CPU:     After generic, caps: 0183f9f7 c1c7f9ff 00000000 00000020
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: AMD Duron(tm) Processor stepping 01
Enabling fast FPU save and restore... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
mtrr: v2.0 (20020519)
Initializing RT netlink socket
PCI: Using configuration type 1
BIO: pool of 256 setup, 14Kb (56 bytes/bio)
biovec pool[0]:   1 bvecs: 256 entries (12 bytes)
biovec pool[1]:   4 bvecs: 256 entries (48 bytes)
biovec pool[2]:  16 bvecs: 256 entries (192 bytes)
biovec pool[3]:  64 bvecs: 256 entries (768 bytes)
biovec pool[4]: 128 bvecs: 256 entries (1536 bytes)
biovec pool[5]: 256 bvecs: 256 entries (3072 bytes)
Linux Plug and Play Support v0.96 (c) Adam Belay
pnp: the driver 'system' has been registered
PnPBIOS: Scanning system for PnP BIOS support...
PnPBIOS: Found PnP BIOS installation structure at 0xc00fbdf0
PnPBIOS: PnP BIOS version 1.0, entry 0xf0000:0xbe20, dseg 0xf0000
pnp: match found with the PnP device '00:07' and the driver 'system'
pnp: match found with the PnP device '00:08' and the driver 'system'
pnp: match found with the PnP device '00:0b' and the driver 'system'
PnPBIOS: 16 nodes reported by PnP BIOS; 16 recorded by driver
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
Disabling VIA memory write queue (PCI ID 0305, rev 02): [55] 81 & 1f -> 01
PCI: Using IRQ router VIA [1106/0686] at 0000:00:07.0
pty: 512 Unix98 ptys configured
Machine check exception polling timer started.
apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
Enabling SEP on CPU 0
Coda Kernel/Venus communications, v5.3.15, coda@cs.cmu.edu
Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
udf: registering filesystem
isapnp: Scanning for PnP cards...
isapnp: Card 'Crystal Codec'
isapnp: 1 Plug & Play card detected total
request_module: failed /sbin/modprobe -- parport_lowlevel. error = -16
lp: driver loaded but no devices found
Real Time Clock Driver v1.11
Non-volatile memory driver v1.2
Linux agpgart interface v0.100 (c) Dave Jones
agpgart: Detected VIA Apollo Pro KT133/KM133/TwisterK chipset
agpgart: Maximum main memory to use for agp memory: 203M
agpgart: AGP aperture is 128M @ 0xd0000000
[drm] Initialized radeon 1.8.0 20020828 on minor 0
Serial: 8250/16550 driver $Revision: 1.90 $ IRQ sharing disabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
pnp: the driver 'serial' has been registered
pnp: match found with the PnP device '00:0d' and the driver 'serial'
pnp: match found with the PnP device '00:0e' and the driver 'serial'
pnp: the driver 'parport_pc' has been registered
pnp: match found with the PnP device '00:10' and the driver 'parport_pc'
parport0: PC-style at 0x3bc (0x7bc) [PCSPP,TRISTATE]
parport0: cpp_daisy: aa5500ff(38)
parport0: assign_addrs: aa5500ff(38)
parport0: cpp_daisy: aa5500ff(38)
parport0: assign_addrs: aa5500ff(38)
lp0: using parport0 (polling).
lp0: console ready
parport_pc: Via 686A parallel port: io=0x3BC
anticipatory scheduling elevator
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
loop: loaded (max 8 devices)
8139too Fast Ethernet driver 0.9.26
PCI: Found IRQ 10 for device 0000:00:08.0
eth0: RealTek RTL8139 Fast Ethernet at 0xd0884000, 00:40:f4:72:99:b3, IRQ 10
eth0:  Identified 8139 chip type 'RTL-8139C'
PCI: Found IRQ 11 for device 0000:00:0a.0
eth1: RealTek RTL8139 Fast Ethernet at 0xd0886000, 00:40:f4:74:6d:fb, IRQ 11
eth1:  Identified 8139 chip type 'RTL-8139C'
Linux video capture interface: v1.00
bttv: driver version 0.9.4 loaded
bttv: using 8 buffers with 2080k (520 pages) each for capture
bttv: Host bridge is VIA Technologies, In VT8363/8365 [KT133/K
bttv: Host bridge is VIA Technologies, In VT82C686 [Apollo Sup
bttv: Bt8xx card found (0).
PCI: Found IRQ 9 for device 0000:00:09.0
PCI: Sharing IRQ 9 with 0000:00:09.1
bttv0: Bt878 (rev 2) at 0000:00:09.0, irq: 9, latency: 32, mmio: 0xe2001000
bttv0: detected: AVermedia TVCapture 98 [card=13], PCI subsystem ID is 1461:0002
bttv0: using: BT878(AVerMedia TVCapture 98) [card=13,autodetected]
bttv0: Avermedia eeprom[0x4011]: tuner=5 radio:no remote control:yes
bttv0: using tuner=5
bttv0: i2c: checking for MSP34xx @ 0x80... not found
bttv0: i2c: checking for TDA9875 @ 0xb0... not found
bttv0: i2c: checking for TDA7432 @ 0x8a... not found
bttv0: registered device video0
bttv0: registered device vbi0
bttv0: PLL: 28636363 => 35468950 .. ok
tvaudio: TV audio decoder + audio/video mux driver
tvaudio: known chips: tda9840,tda9873h,tda9874h/a,tda9850,tda9855,tea6300,tea6420,tda8425,pic16c54 (PV951),ta8874z
tuner: chip found @ 0xc2
tuner: type set to 5 (Philips PAL_BG (FI1216 and compatibles))
registering 0-0061
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
VP_IDE: IDE controller at PCI slot 0000:00:07.1
VP_IDE: chipset revision 16
VP_IDE: not 100% native mode: will probe irqs later
VP_IDE: VIA vt82c686a (rev 22) IDE UDMA66 controller on pci0000:00:07.1
    ide0: BM-DMA at 0xd000-0xd007, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0xd008-0xd00f, BIOS settings: hdc:DMA, hdd:pio
hda: Maxtor 2F040J0, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hdc: SONY CDU4811, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 128KiB
hda: host protected area => 1
hda: 80293248 sectors (41110 MB) w/2048KiB Cache, CHS=79656/16/63, UDMA(66)
 hda: hda1 hda2 hda3 hda4 < hda5 hda6 hda7 hda8 hda9 >
hdc: ATAPI 48X CD-ROM drive, 120kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.12
mice: PS/2 mouse device common for all mice
input: PC Speaker
input: PS/2 Generic Mouse on isa0060/serio1
serio: i8042 AUX port at 0x60,0x64 irq 12
input: AT Set 2 keyboard on isa0060/serio0
serio: i8042 KBD port at 0x60,0x64 irq 1
i2c /dev entries driver module version 2.7.0 (20021208)
pnp: the driver 'cs4232' has been registered
pnp: match found with the PnP device '01:01.00' and the driver 'cs4232'
pnp: Device 01:01.00 activated.
<Crystal audio controller (CS4239)> at 0x534 irq 5 dma 1,1
ad1848: Interrupt test failed (IRQ5)
ad1848/cs4248 codec driver Copyright (C) by Hannu Savolainen 1993-1996
ad1848: No ISAPnP cards found, trying standard ones...
btaudio: driver version 0.7 loaded [digital+analog]
PCI: Found IRQ 9 for device 0000:00:09.1
PCI: Sharing IRQ 9 with 0000:00:09.0
btaudio: Bt878 (rev 2) at 00:09.1, irq: 9, latency: 32, mmio: 0xe2002000
btaudio: using card config "default"
btaudio: registered device dsp1 [digital]
btaudio: registered device dsp2 [analog]
btaudio: registered device mixer1
NET4: Linux TCP/IP 1.0 for NET4.0
IP: routing cache hash table of 2048 buckets, 16Kbytes
TCP: Hash tables configured (established 16384 bind 16384)
ip_conntrack version 2.1 (2047 buckets, 16376 max) - 304 bytes per conntrack
ip_tables: (C) 2000-2002 Netfilter core team
ipt_recent v0.3.1: Stephen Frost <sfrost@snowman.net>.  http://snowman.net/projects/ipt_recent/
arp_tables: (C) 2002 David S. Miller
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
You didn't specify the type of your ufs filesystem

mount -t ufs -o ufstype=sun|sunx86|44bsd|old|hp|nextstep|netxstep-cd|openstep ...

>>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is ufstype=old
ufs_read_super: bad magic number
UDF-fs DEBUG fs/udf/lowlevel.c:65:udf_get_last_session: CDROMMULTISESSION not supported: rc=-22
UDF-fs DEBUG fs/udf/super.c:1472:udf_fill_super: Multi-session=0
UDF-fs DEBUG fs/udf/super.c:460:udf_vrs: Starting at sector 16 (2048 byte sectors)
UDF-fs: No VRS found
VFS: Mounted root (jfs filesystem) readonly.
Freeing unused kernel memory: 320k freed
Adding 530108k swap on /dev/hda7.  Priority:-1 extents:1
eth0: Setting half-duplex based on auto-negotiated partner ability 0000.
process `syslogd' is using obsolete setsockopt SO_BSDCOMPAT
eth1: Setting half-duplex based on auto-negotiated partner ability 0000.
agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0.
agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode
agpgart: Putting AGP V2 device at 0000:01:00.0 into 4x mode
cdrom: open failed.
cdrom: open failed.
ISO 9660 Extensions: Microsoft Joliet Level 3
ISOFS: changing to secondary root
spurious 8259A interrupt: IRQ7.
ISO 9660 Extensions: Microsoft Joliet Level 3
ISO 9660 Extensions: RRIP_1991A
ISO 9660 Extensions: Microsoft Joliet Level 3
ISOFS: changing to secondary root
cdrom: open failed.
cdrom: open failed.

[-- Attachment #4: toprun-2574.txt --]
[-- Type: text/plain, Size: 25000 bytes --]

top - 23:27:42 up 2 min,  4 users,  load average: 0.12, 0.08, 0.02
Tasks:  36 total,   1 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):   4.3% user,   6.2% system,   0.0% nice,  73.5% idle,  16.0% IO-wait
Mem:    255016k total,   104540k used,   150476k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58776k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  203 root      20   0  1872  956 1764 R  2.0  0.4   0:00.02 top                  


top - 23:27:42 up 2 min,  4 users,  load average: 0.12, 0.08, 0.02
Tasks:  36 total,   1 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):   0.0% user,   0.0% system,   0.0% nice, 100.0% idle,   0.0% IO-wait
Mem:    255016k total,   104540k used,   150476k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58780k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  203 root      20   0  1884 1024 1764 R  2.0  0.4   0:00.03 top                  


top - 23:27:43 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  36 total,   1 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):   2.0% user,   5.9% system,   0.0% nice,  92.2% idle,   0.0% IO-wait
Mem:    255016k total,   104540k used,   150476k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58780k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  203 root      19   0  1884 1024 1764 R  2.0  0.4   0:00.04 top                  


top - 23:27:43 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  36 total,   1 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):   3.8% user,   3.8% system,   0.0% nice,  92.3% idle,   0.0% IO-wait
Mem:    255016k total,   104540k used,   150476k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58780k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  203 root      19   0  1884 1024 1764 R  2.0  0.4   0:00.05 top                  


top - 23:27:44 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  37 total,   2 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):  12.0% user,   6.0% system,   0.0% nice,  82.0% idle,   0.0% IO-wait
Mem:    255016k total,   105276k used,   149740k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58780k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0  8964 2080 7964 R  7.8  0.8   0:00.04 mplayer              
  203 root      18   0  1884 1024 1764 R  2.0  0.4   0:00.06 top                  


top - 23:27:44 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  37 total,   2 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):  58.0% user,  28.0% system,   0.0% nice,  14.0% idle,   0.0% IO-wait
Mem:    255016k total,   114468k used,   140548k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58996k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17724  11m 8260 R 49.0  4.7   0:00.29 mplayer              
  203 root      18   0  1884 1024 1764 R  2.0  0.4   0:00.07 top                  


top - 23:27:45 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  37 total,   2 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):  18.9% user,   7.5% system,   0.0% nice,  73.6% idle,   0.0% IO-wait
Mem:    255016k total,   114692k used,   140324k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58996k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R  7.8  4.8   0:00.33 mplayer              
  203 root      17   0  1884 1024 1764 R  0.0  0.4   0:00.07 top                  


top - 23:27:46 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  37 total,   2 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):  23.5% user,   5.9% system,   0.0% nice,  70.6% idle,   0.0% IO-wait
Mem:    255016k total,   114692k used,   140324k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    58996k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 13.7  4.8   0:00.40 mplayer              
  203 root      17   0  1884 1024 1764 R  3.9  0.4   0:00.09 top                  


top - 23:27:46 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  38 total,   3 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):  30.0% user,  18.0% system,   0.0% nice,  52.0% idle,   0.0% IO-wait
Mem:    255016k total,   115324k used,   139692k free,     8600k buffers
Swap:   530108k total,        0k used,   530108k free,    59004k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 11.8  4.8   0:00.46 mplayer              
  209 root      23   0  1844 1044 1356 R 11.8  0.4   0:00.06 make                 
  203 root      16   0  1884 1024 1764 R  2.0  0.4   0:00.10 top                  


top - 23:27:47 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  42 total,   3 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  28.8% user,  13.5% system,   0.0% nice,   0.0% idle,  57.7% IO-wait
Mem:    255016k total,   116500k used,   138516k free,     8716k buffers
Swap:   530108k total,        0k used,   530108k free,    59172k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 11.7  4.8   0:00.52 mplayer              
  203 root      16   0  1884 1024 1764 R  2.0  0.4   0:00.11 top                  
  224 root      25   0  1444  500 1320 D  0.0  0.2   0:00.00 cpp0                 
  225 root      25   0  3060 1004 2860 D  0.0  0.4   0:00.00 cc1                  
  226 root      25   0  2024  288 1960 R  0.0  0.1   0:00.00 as                   


top - 23:27:47 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  17.6% user,   7.8% system,   0.0% nice,   0.0% idle,  74.5% IO-wait
Mem:    255016k total,   117564k used,   137452k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    59784k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 13.7  4.8   0:00.59 mplayer              
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.13 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.15 xsnow                
  224 root      24   0  1712  740 1320 R  0.0  0.3   0:00.00 cpp0                 


top - 23:27:48 up 2 min,  4 users,  load average: 0.11, 0.08, 0.02
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  21.6% user,   5.9% system,   0.0% nice,   0.0% idle,  72.5% IO-wait
Mem:    255016k total,   118068k used,   136948k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    60080k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 13.7  4.8   0:00.66 mplayer              
  224 root      24   0  1980  992 1320 R  7.8  0.4   0:00.04 cpp0                 
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.15 xsnow                
  203 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.13 top                  


top - 23:27:48 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  17.6% user,   9.8% system,   0.0% nice,   0.0% idle,  72.5% IO-wait
Mem:    255016k total,   118572k used,   136444k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    60388k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 15.6  4.8   0:00.74 mplayer              
  224 root      24   0  2068 1132 1320 R  3.9  0.4   0:00.06 cpp0                 
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.14 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.15 xsnow                


top - 23:27:49 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   3 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  31.4% user,  15.7% system,   0.0% nice,   0.0% idle,  52.9% IO-wait
Mem:    255016k total,   119196k used,   135820k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    60732k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 15.6  4.8   0:00.82 mplayer              
  224 root      23   0  2388 1404 1320 R  7.8  0.6   0:00.10 cpp0                 
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.16 top                  


top - 23:27:49 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  27.5% user,   7.8% system,   0.0% nice,   0.0% idle,  64.7% IO-wait
Mem:    255016k total,   120148k used,   134868k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    61104k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      21   0 17940  11m 8260 R 13.6  4.8   0:00.89 mplayer              
  203 root      15   0  1888 1028 1764 R  1.9  0.4   0:00.17 top                  
  225 root      25   0  3116 1264 2860 R  1.9  0.5   0:00.01 cc1                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.16 xsnow                


top - 23:27:50 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  75.0% user,   9.6% system,   0.0% nice,   0.0% idle,  15.4% IO-wait
Mem:    255016k total,   122556k used,   132460k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    61300k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  225 root      25   0  5352 3840 2860 R 54.5  1.5   0:00.29 cc1                  
  204 root      21   0 17940  11m 8260 R 15.6  4.8   0:00.97 mplayer              
  203 root      15   0  1888 1028 1764 R  1.9  0.4   0:00.18 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.16 xsnow                


top - 23:27:50 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   124740k used,   130276k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    61300k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  225 root      25   0  7552 6040 2860 R 70.3  2.4   0:00.65 cc1                  
  204 root      22   0 17940  11m 8260 R 17.6  4.8   0:01.06 mplayer              
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.20 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.16 xsnow                


top - 23:27:51 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  41 total,   3 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  75.0% user,  11.5% system,   0.0% nice,   0.0% idle,  13.5% IO-wait
Mem:    255016k total,   124340k used,   130676k free,     8724k buffers
Swap:   530108k total,        0k used,   530108k free,    61576k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  225 root      25   0  8344 7296 2860 R 56.6  2.9   0:00.94 cc1                  
  204 root      22   0 17940  11m 8260 R 17.6  4.8   0:01.15 mplayer              
  203 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.21 top                  


top - 23:27:51 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  41 total,   3 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  41.2% user,  21.6% system,   0.0% nice,   0.0% idle,  37.3% IO-wait
Mem:    255016k total,   119364k used,   135652k free,     8760k buffers
Swap:   530108k total,        0k used,   530108k free,    62120k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  204 root      22   0 17940  11m 8260 R 13.7  4.8   0:01.22 mplayer              
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.22 top                  
  266 root      25   0  1052  600  956 R  0.0  0.2   0:00.00 sh                   


top - 23:27:52 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  68.6% user,  17.6% system,   0.0% nice,   0.0% idle,  13.7% IO-wait
Mem:    255016k total,   122244k used,   132772k free,     8760k buffers
Swap:   530108k total,        0k used,   530108k free,    62308k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  275 root      25   0  4256 2728 2860 R 23.4  1.1   0:00.12 cc1                  
  274 root      25   0  2880 1628 1320 R 21.5  0.6   0:00.11 cpp0                 
  204 root      22   0 17940  11m 8260 R 15.6  4.8   0:01.30 mplayer              
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.24 top                  


top - 23:27:52 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  88.2% user,  11.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   124428k used,   130588k free,     8760k buffers
Swap:   530108k total,        0k used,   530108k free,    62308k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  275 root      25   0  6436 4924 2860 R 70.3  1.9   0:00.48 cc1                  
  204 root      22   0 17940  11m 8260 R 17.6  4.8   0:01.39 mplayer              
  203 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.24 top                  
  274 root      25   0  2880 1628 1320 R  0.0  0.6   0:00.11 cpp0                 


top - 23:27:53 up 2 min,  4 users,  load average: 0.18, 0.09, 0.03
Tasks:  42 total,   3 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   126164k used,   128852k free,     8760k buffers
Swap:   530108k total,        0k used,   530108k free,    62308k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  275 root      25   0  8148 7100 2860 R 70.3  2.8   0:00.84 cc1                  
  204 root      22   0 17940  11m 8260 R 17.6  4.8   0:01.48 mplayer              
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.25 top                  


top - 23:27:53 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  40 total,   4 running,  36 sleeping,   0 stopped,   0 zombie
Cpu(s):  78.8% user,  17.3% system,   0.0% nice,   0.0% idle,   3.8% IO-wait
Mem:    255016k total,   120604k used,   134412k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62344k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  278 root      25   0  2008 1240 1356 R 19.5  0.5   0:00.10 make                 
  204 root      22   0 17940  11m 8260 R 17.6  4.8   0:01.57 mplayer              
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.27 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.16 xsnow                


top - 23:27:54 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  44 total,   5 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  68.6% user,  19.6% system,   0.0% nice,   0.0% idle,  11.8% IO-wait
Mem:    255016k total,   124116k used,   130900k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62448k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  281 root      25   0  4568 3048 2860 R 31.2  1.2   0:00.16 cc1                  
  204 root      22   0 17940  11m 8260 R 15.6  4.8   0:01.65 mplayer              
  280 root      25   0  2728 1528 1320 R 15.6  0.6   0:00.08 cpp0                 
  203 root      15   0  1888 1028 1764 R  1.9  0.4   0:00.28 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.16 xsnow                


top - 23:27:54 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  44 total,   5 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.2% user,   7.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   126244k used,   128772k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62452k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  281 root      25   0  6700 5188 2860 R 70.2  2.0   0:00.52 cc1                  
  204 root      22   0 17940  11m 8260 R 17.6  4.8   0:01.74 mplayer              
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.29 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.16 xsnow                
  280 root      25   0  2728 1528 1320 R  0.0  0.6   0:00.08 cpp0                 


top - 23:27:55 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  44 total,   5 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   127252k used,   127764k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62452k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  281 root      25   0  7516 6472 2860 R 74.2  2.5   0:00.90 cc1                  
  204 root      22   0 17940  11m 8260 R 13.7  4.8   0:01.81 mplayer              
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.31 top                  
  113 root      15   0  2484 1044 2340 R  0.0  0.4   0:00.16 xsnow                
  280 root      25   0  2728 1528 1320 R  0.0  0.6   0:00.08 cpp0                 


top - 23:27:55 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  44 total,   4 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.2% user,   7.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   127476k used,   127540k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62452k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  281 root      25   0  7708 6664 2860 R 70.2  2.6   0:01.26 cc1                  
  204 root      22   0 17940  11m 8260 R 15.6  4.8   0:01.89 mplayer              
  203 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.31 top                  
  280 root      25   0  2728 1528 1320 R  0.0  0.6   0:00.08 cpp0                 


top - 23:27:56 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.4% user,   9.6% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   127756k used,   127260k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62452k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  281 root      25   0  8116 7072 2860 R 72.3  2.8   0:01.63 cc1                  
  204 root      22   0 17940  11m 8260 R 15.6  4.8   0:01.97 mplayer              
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.33 top                  


top - 23:27:56 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   126516k used,   128500k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62452k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  281 root      25   0  7860 6820 2860 R 66.3  2.7   0:01.97 cc1                  
  204 root      22   0 17940  11m 8260 R 11.7  4.8   0:02.03 mplayer              
  203 root      15   0  1888 1028 1764 R  1.9  0.4   0:00.34 top                  


top - 23:27:57 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  44 total,   4 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  84.3% user,  15.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   124172k used,   130844k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62484k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  287 root      25   0  4728 3208 2860 R 39.1  1.3   0:00.20 cc1                  
  286 root      25   0  2476 1408 1320 R 13.7  0.6   0:00.07 cpp0                 
  204 root      23   0 17940  11m 8260 R 11.7  4.8   0:02.09 mplayer              
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.35 top                  


top - 23:27:57 up 2 min,  4 users,  load average: 0.33, 0.12, 0.04
Tasks:  44 total,   4 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.3% user,  13.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   126244k used,   128772k free,     8764k buffers
Swap:   530108k total,        0k used,   530108k free,    62484k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  287 root      25   0  6796 5284 2860 R 68.4  2.1   0:00.55 cc1                  
  204 root      23   0 17940  11m 8260 R 11.7  4.8   0:02.15 mplayer              
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.36 top                  
  286 root      25   0  2476 1408 1320 R  0.0  0.6   0:00.07 cpp0                 


top - 23:27:58 up 2 min,  4 users,  load average: 0.46, 0.16, 0.05
Tasks:  44 total,   4 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  75.0% user,  19.2% system,   0.0% nice,   0.0% idle,   5.8% IO-wait
Mem:    255016k total,   124060k used,   130956k free,     8768k buffers
Swap:   530108k total,        0k used,   530108k free,    62540k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  293 root      25   0  4448 2928 2860 R 29.2  1.1   0:00.15 cc1                  
  292 root      25   0  2452 1532 1320 R 15.6  0.6   0:00.08 cpp0                 
  204 root      23   0 17940  11m 8260 R 13.6  4.8   0:02.22 mplayer              
  203 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.38 top                  


top - 23:27:58 up 2 min,  4 users,  load average: 0.46, 0.16, 0.05
Tasks:  44 total,   4 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  88.2% user,  11.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   126524k used,   128492k free,     8768k buffers
Swap:   530108k total,        0k used,   530108k free,    62540k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  293 root      25   0  6896 5384 2860 R 78.0  2.1   0:00.55 cc1                  
  204 root      23   0 17940  11m 8260 R 13.7  4.8   0:02.29 mplayer              
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.39 top                  
  292 root      25   0  2452 1532 1320 R  0.0  0.6   0:00.08 cpp0                 


top - 23:27:59 up 2 min,  4 users,  load average: 0.46, 0.16, 0.05
Tasks:  44 total,   4 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255016k total,   127476k used,   127540k free,     8768k buffers
Swap:   530108k total,        0k used,   530108k free,    62564k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  293 root      25   0  7640 6588 2860 R 80.1  2.6   0:00.96 cc1                  
  204 root      23   0 17940  11m 8260 R 15.6  4.8   0:02.37 mplayer              
  203 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.40 top                  
  292 root      25   0  2452 1532 1320 R  0.0  0.6   0:00.08 cpp0                 


top - 23:27:59 up 2 min,  4 users,  load average: 0.46, 0.16, 0.05
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  82.4% user,  15.7% system,   0.0% nice,   0.0% idle,   2.0% IO-wait
Mem:    255016k total,   122508k used,   132508k free,     8768k buffers
Swap:   530108k total,        0k used,   530108k free,    62612k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  298 root      25   0  2384 1272 1320 R 11.7  0.5   0:00.06 cpp0                 

[-- Attachment #5: toprun-2574mm1.txt --]
[-- Type: text/plain, Size: 25000 bytes --]

top - 22:43:28 up 2 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  38 total,   1 running,  37 sleeping,   0 stopped,   0 zombie
Cpu(s):  12.5% user,   9.7% system,   0.0% nice,  62.4% idle,  15.4% IO-wait
Mem:    254688k total,   183404k used,    71284k free,     9764k buffers
Swap:   530108k total,        0k used,   530108k free,    68584k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  531 root      16   0  1876  960 1764 R  0.0  0.4   0:00.01 top                  


top - 22:43:28 up 2 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  38 total,   2 running,  36 sleeping,   0 stopped,   0 zombie
Cpu(s):   2.0% user,   5.9% system,   0.0% nice,  92.2% idle,   0.0% IO-wait
Mem:    254688k total,   183404k used,    71284k free,     9764k buffers
Swap:   530108k total,        0k used,   530108k free,    68588k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  531 root      16   0  1884 1024 1764 R  3.9  0.4   0:00.03 top                  
    1 root      20   0   452  220  420 R  0.0  0.1   0:05.08 init                 


top - 22:43:29 up 2 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  39 total,   2 running,  37 sleeping,   0 stopped,   0 zombie
Cpu(s):  25.5% user,  25.5% system,   0.0% nice,  49.0% idle,   0.0% IO-wait
Mem:    254688k total,   190636k used,    64052k free,     9764k buffers
Swap:   530108k total,        0k used,   530108k free,    68588k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      24   0 15796 8632 7964 R 29.4  3.4   0:00.15 mplayer              
  531 root      16   0  1884 1024 1764 R  2.0  0.4   0:00.04 top                  


top - 22:43:30 up 2 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  39 total,   2 running,  37 sleeping,   0 stopped,   0 zombie
Cpu(s):  48.1% user,  30.8% system,   0.0% nice,  21.2% idle,   0.0% IO-wait
Mem:    254688k total,   193444k used,    61244k free,     9764k buffers
Swap:   530108k total,        0k used,   530108k free,    68804k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17724  11m 8260 R 29.3  4.7   0:00.30 mplayer              
  531 root      16   0  1884 1024 1764 R  2.0  0.4   0:00.05 top                  


top - 22:43:30 up 2 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  39 total,   2 running,  37 sleeping,   0 stopped,   0 zombie
Cpu(s):  19.6% user,  19.6% system,   0.0% nice,  60.8% idle,   0.0% IO-wait
Mem:    254688k total,   193668k used,    61020k free,     9764k buffers
Swap:   530108k total,        0k used,   530108k free,    68804k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17940  11m 8260 R 11.8  4.8   0:00.36 mplayer              
  531 root      16   0  1884 1024 1764 R  2.0  0.4   0:00.06 top                  


top - 22:43:31 up 2 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  42.9% user,  22.4% system,   0.0% nice,  26.5% idle,   8.2% IO-wait
Mem:    254688k total,   195668k used,    59020k free,     9764k buffers
Swap:   530108k total,        0k used,   530108k free,    68928k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:00.41 mplayer              
  531 root      16   0  1884 1024 1764 R  2.0  0.4   0:00.07 top                  
  552 root      16   0  1560  624 1320 R  0.0  0.2   0:00.00 cpp0                 


top - 22:43:31 up 2 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  17.3% user,  13.5% system,   0.0% nice,   0.0% idle,  69.2% IO-wait
Mem:    254688k total,   196452k used,    58236k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    69292k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17940  11m 8260 R 11.7  4.8   0:00.47 mplayer              
  552 root      16   0  1980  972 1320 R  7.8  0.4   0:00.04 cpp0                 
  531 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.08 top                  


top - 22:43:32 up 3 min,  4 users,  load average: 0.64, 0.28, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  19.6% user,  13.7% system,   0.0% nice,   0.0% idle,  66.7% IO-wait
Mem:    254688k total,   197012k used,    57676k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    69636k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17940  11m 8260 R 15.6  4.8   0:00.55 mplayer              
  552 root      16   0  2068 1132 1320 R  7.8  0.4   0:00.08 cpp0                 
  531 root      16   0  1888 1028 1764 R  0.0  0.4   0:00.08 top                  


top - 22:43:32 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  21.6% user,  13.7% system,   0.0% nice,   0.0% idle,  64.7% IO-wait
Mem:    254688k total,   197740k used,    56948k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    69992k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17940  11m 8260 R 11.7  4.8   0:00.61 mplayer              
  552 root      16   0  2388 1408 1320 R  9.8  0.6   0:00.13 cpp0                 
  531 root      16   0  1888 1028 1764 R  3.9  0.4   0:00.10 top                  


top - 22:43:33 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  32.7% user,  21.2% system,   0.0% nice,   0.0% idle,  46.2% IO-wait
Mem:    254688k total,   199476k used,    55212k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70328k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  553 root      24   0  3796 2252 2860 R 15.6  0.9   0:00.08 cc1                  
  532 root      25   0 17940  11m 8260 R 11.7  4.8   0:00.67 mplayer              
  531 root      16   0  1888 1028 1764 R  1.9  0.4   0:00.11 top                  


top - 22:43:33 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  84.3% user,  15.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   201828k used,    52860k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70328k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  553 root      25   0  6132 4620 2860 R 68.4  1.8   0:00.43 cc1                  
  532 root      25   0 17940  11m 8260 R 17.6  4.8   0:00.76 mplayer              
  531 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.12 top                  


top - 22:43:34 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  88.2% user,  11.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   203788k used,    50900k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70328k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  553 root      25   0  8084 6992 2860 R 74.4  2.7   0:00.81 cc1                  
  532 root      25   0 17940  11m 8260 R 13.7  4.8   0:00.83 mplayer              
  531 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.13 top                  


top - 22:43:34 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   4 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  64.7% user,  35.3% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   197124k used,    57564k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70348k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17940  11m 8260 R 15.7  4.8   0:00.91 mplayer              
  531 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.14 top                  
  580 root      24   0  1272  328 1240 R  0.0  0.1   0:00.00 hostname             
  581 root      24   0  1048  600  956 R  0.0  0.2   0:00.00 sh                   


top - 22:43:35 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  61.5% user,  34.6% system,   0.0% nice,   0.0% idle,   3.8% IO-wait
Mem:    254688k total,   199700k used,    54988k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70520k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  603 root      25   0  4028 2488 2860 R 19.5  1.0   0:00.10 cc1                  
  532 root      25   0 17940  11m 8260 R 13.6  4.8   0:00.98 mplayer              
  531 root      16   0  1888 1028 1764 R  1.9  0.4   0:00.15 top                  


top - 22:43:35 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.3% user,  13.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   202052k used,    52636k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70520k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  603 root      25   0  6420 4908 2860 R 78.0  1.9   0:00.50 cc1                  
  532 root      25   0 17940  11m 8260 R 11.7  4.8   0:01.04 mplayer              
  531 root      16   0  1888 1028 1764 R  1.9  0.4   0:00.16 top                  


top - 22:43:36 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  44 total,   3 running,  41 sleeping,   0 stopped,   0 zombie
Cpu(s):  82.4% user,  17.6% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   203788k used,    50900k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70520k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  603 root      25   0  8148 7028 2860 R 68.6  2.8   0:00.85 cc1                  
  532 root      25   0 17940  11m 8260 R 13.7  4.8   0:01.11 mplayer              
  531 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.17 top                  


top - 22:43:36 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  43 total,   4 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  82.0% user,  18.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   198348k used,    56340k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70532k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  606 root      25   0  2012 1264 1356 R 21.6  0.5   0:00.11 make                 
  532 root      25   0 17940  11m 8260 R 13.7  4.8   0:01.18 mplayer              
  531 root      16   0  1888 1028 1764 R  3.9  0.4   0:00.19 top                  
  607 root      25   0  1348  416 1300 R  0.0  0.2   0:00.00 gcc                  


top - 22:43:37 up 3 min,  4 users,  load average: 0.67, 0.29, 0.10
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  73.6% user,  15.1% system,   0.0% nice,   0.0% idle,  11.3% IO-wait
Mem:    254688k total,   202404k used,    52284k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70636k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  609 root      25   0  5160 3640 2860 R 52.7  1.4   0:00.27 cc1                  
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.23 mplayer              
  531 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.19 top                  


top - 22:43:37 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  88.2% user,  11.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   204700k used,    49988k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70636k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  609 root      25   0  7500 6060 2860 R 76.3  2.4   0:00.66 cc1                  
  532 root      25   0 17940  11m 8260 R 13.7  4.8   0:01.30 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.20 top                  


top - 22:43:38 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  94.0% user,   6.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   205036k used,    49652k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70640k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  609 root      25   0  7808 6764 2860 R 82.2  2.7   0:01.08 cc1                  
  532 root      25   0 17940  11m 8260 R 11.7  4.8   0:01.36 mplayer              
  531 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.22 top                  


top - 22:43:38 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  94.1% user,   5.9% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   205148k used,    49540k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70640k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  609 root      25   0  7764 6724 2860 R 80.2  2.6   0:01.49 cc1                  
  532 root      25   0 17940  11m 8260 R 11.7  4.8   0:01.42 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.23 top                  


top - 22:43:39 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  45 total,   3 running,  42 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.2% user,   7.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   204188k used,    50500k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70640k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  609 root      25   0  7860 6820 2860 R 76.3  2.7   0:01.88 cc1                  
  532 root      25   0 17940  11m 8260 R 13.7  4.8   0:01.49 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.24 top                  


top - 22:43:39 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  82.4% user,  17.6% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   201788k used,    52900k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70672k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  615 root      25   0  4736 3216 2860 R 39.2  1.3   0:00.20 cc1                  
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.54 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.25 top                  


top - 22:43:40 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  45 total,   3 running,  42 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.5% user,  13.5% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   203180k used,    51508k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70672k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  615 root      25   0  7116 6056 2860 R 80.1  2.4   0:00.61 cc1                  
  532 root      25   0 17940  11m 8260 R 13.7  4.8   0:01.61 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.26 top                  


top - 22:43:40 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  76.5% user,  19.6% system,   0.0% nice,   0.0% idle,   3.9% IO-wait
Mem:    254688k total,   202292k used,    52396k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70728k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  621 root      25   0  5012 3492 2860 R 49.0  1.4   0:00.25 cc1                  
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.66 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.27 top                  


top - 22:43:41 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.0% user,  10.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   204700k used,    49988k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70732k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  621 root      25   0  7396 6292 2860 R 84.0  2.5   0:00.68 cc1                  
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.71 mplayer              
  531 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.29 top                  


top - 22:43:41 up 3 min,  4 users,  load average: 0.77, 0.32, 0.11
Tasks:  45 total,   3 running,  42 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.3% user,   7.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   204020k used,    50668k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70732k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  621 root      25   0  7840 6788 2860 R 84.2  2.7   0:01.11 cc1                  
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.76 mplayer              
  531 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.29 top                  


top - 22:43:42 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  78.4% user,  17.6% system,   0.0% nice,   0.0% idle,   3.9% IO-wait
Mem:    254688k total,   201452k used,    53236k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70792k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  627 root      25   0  4272 2744 2860 R 25.5  1.1   0:00.13 cc1                  
  532 root      25   0 17940  11m 8260 R  7.8  4.8   0:01.80 mplayer              
  531 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.31 top                  


top - 22:43:42 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  45 total,   3 running,  42 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.2% user,   7.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   203012k used,    51676k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70792k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  627 root      25   0  6636 5564 2860 R 86.1  2.2   0:00.57 cc1                  
  532 root      25   0 17940  11m 8260 R  7.8  4.8   0:01.84 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.32 top                  


top - 22:43:43 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  80.4% user,  15.7% system,   0.0% nice,   0.0% idle,   3.9% IO-wait
Mem:    254688k total,   202236k used,    52452k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70820k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  633 root      25   0  5072 3552 2860 R 51.0  1.4   0:00.26 cc1                  
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.89 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.33 top                  


top - 22:43:43 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  82.4% user,  17.6% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   201004k used,    53684k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70852k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.94 mplayer              
  639 root      24   0  3596 2032 2860 R  9.8  0.8   0:00.05 cc1                  
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.34 top                  


top - 22:43:44 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   203804k used,    50884k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70856k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  639 root      25   0  6388 4876 2860 R 82.0  1.9   0:00.47 cc1                  
  532 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.99 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.35 top                  


top - 22:43:44 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   198908k used,    55780k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70868k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  531 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.37 top                  
  532 root      25   0 17940  11m 8260 R  3.9  4.8   0:02.01 mplayer              
  641 root      23   0  1044  452  956 R  0.0  0.2   0:00.00 sh                   


top - 22:43:45 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  76.9% user,  21.2% system,   0.0% nice,   0.0% idle,   1.9% IO-wait
Mem:    254688k total,   203188k used,    51500k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70912k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  645 root      25   0  5664 4152 2860 R 64.7  1.6   0:00.33 cc1                  
  532 root      25   0 17940  11m 8260 R  3.9  4.8   0:02.03 mplayer              
  531 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.37 top                  


top - 22:43:45 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.2% user,   7.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   205036k used,    49652k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70912k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  645 root      25   0  7412 6348 2860 R 91.8  2.5   0:00.80 cc1                  
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.38 top                  
  532 root      25   0 17940  11m 8260 R  2.0  4.8   0:02.04 mplayer              


top - 22:43:46 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   3 running,  43 sleeping,   0 stopped,   0 zombie
Cpu(s):  94.1% user,   5.9% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   205260k used,    49428k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70912k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  645 root      25   0  7548 6496 2860 R 88.1  2.6   0:01.25 cc1                  
  532 root      25   0 17940  11m 8260 R  5.9  4.8   0:02.07 mplayer              
  531 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.39 top                  


top - 22:43:46 up 3 min,  4 users,  load average: 0.87, 0.35, 0.12
Tasks:  46 total,   4 running,  42 sleeping,   0 stopped,   0 zombie
Cpu(s):  88.2% user,  11.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    254688k total,   200164k used,    54524k free,     9772k buffers
Swap:   530108k total,        0k used,   530108k free,    70956k cached

  PID USER      PR  NI  V

[-- Attachment #6: toprun-2574mm2.txt --]
[-- Type: text/plain, Size: 25001 bytes --]

top - 22:52:13 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  35 total,   1 running,  34 sleeping,   0 stopped,   0 zombie
Cpu(s):  44.1% user,  11.6% system,   0.0% nice,  33.5% idle,  10.8% IO-wait
Mem:    255396k total,   191108k used,    64288k free,     9164k buffers
Swap:   530108k total,        0k used,   530108k free,    82832k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  882 root      17   0  1872  956 1764 R  0.0  0.4   0:00.01 top                  


top - 22:52:13 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  35 total,   1 running,  34 sleeping,   0 stopped,   0 zombie
Cpu(s):   2.0% user,   6.0% system,   0.0% nice,  92.0% idle,   0.0% IO-wait
Mem:    255396k total,   191108k used,    64288k free,     9164k buffers
Swap:   530108k total,        0k used,   530108k free,    82836k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  882 root      17   0  1884 1024 1764 R  3.9  0.4   0:00.03 top                  


top - 22:52:14 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  35 total,   1 running,  34 sleeping,   0 stopped,   0 zombie
Cpu(s):   5.8% user,   7.7% system,   0.0% nice,  86.5% idle,   0.0% IO-wait
Mem:    255396k total,   191108k used,    64288k free,     9164k buffers
Swap:   530108k total,        0k used,   530108k free,    82836k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  882 root      17   0  1884 1024 1764 R  0.0  0.4   0:00.03 top                  


top - 22:52:14 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  36 total,   2 running,  34 sleeping,   0 stopped,   0 zombie
Cpu(s):  59.6% user,  33.3% system,   0.0% nice,   7.0% idle,   0.0% IO-wait
Mem:    255396k total,   200588k used,    54808k free,     9164k buffers
Swap:   530108k total,        0k used,   530108k free,    82836k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  883 root      21   0 17292  11m 8044 R 49.8  4.5   0:00.29 mplayer              
  882 root      16   0  1884 1024 1764 R  1.7  0.4   0:00.04 top                  


top - 22:52:15 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  36 total,   2 running,  34 sleeping,   0 stopped,   0 zombie
Cpu(s):  17.6% user,  15.7% system,   0.0% nice,  66.7% idle,   0.0% IO-wait
Mem:    255396k total,   201260k used,    54136k free,     9164k buffers
Swap:   530108k total,        0k used,   530108k free,    83052k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  883 root      23   0 17940  11m 8260 R  9.8  4.8   0:00.34 mplayer              
  882 root      17   0  1884 1024 1764 R  3.9  0.4   0:00.06 top                  


top - 22:52:15 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  36 total,   3 running,  33 sleeping,   0 stopped,   0 zombie
Cpu(s):  22.6% user,  15.1% system,   0.0% nice,  62.3% idle,   0.0% IO-wait
Mem:    255396k total,   201260k used,    54136k free,     9164k buffers
Swap:   530108k total,        0k used,   530108k free,    83052k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  883 root      24   0 17940  11m 8260 R 13.7  4.8   0:00.41 mplayer              
  112 root      16   0  2484 1048 2340 R  3.9  0.4   0:00.86 xsnow                
  882 root      16   0  1884 1024 1764 R  0.0  0.4   0:00.06 top                  


top - 22:52:16 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  41 total,   3 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  52.9% user,  25.5% system,   0.0% nice,  17.6% idle,   3.9% IO-wait
Mem:    255396k total,   203764k used,    51632k free,     9168k buffers
Swap:   530108k total,        0k used,   530108k free,    83072k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  903 root      24   0  2324 1288 1320 R 11.7  0.5   0:00.06 cpp0                 
  883 root      24   0 17940  11m 8260 R  9.7  4.8   0:00.46 mplayer              
  882 root      16   0  1884 1024 1764 R  3.9  0.4   0:00.08 top                  


top - 22:52:17 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  41 total,   3 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  62.7% user,  13.7% system,   0.0% nice,   0.0% idle,  23.5% IO-wait
Mem:    255396k total,   206340k used,    49056k free,     9168k buffers
Swap:   530108k total,        0k used,   530108k free,    83288k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  904 root      25   0  4820 3300 2860 R 41.1  1.3   0:00.21 cc1                  
  883 root      25   0 17940  11m 8260 R 15.7  4.8   0:00.54 mplayer              
  882 root      16   0  1888 1028 1764 R  0.0  0.4   0:00.08 top                  


top - 22:52:17 up 3 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  41 total,   3 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.3% user,  13.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   208692k used,    46704k free,     9168k buffers
Swap:   530108k total,        0k used,   530108k free,    83288k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  904 root      25   0  7128 5616 2860 R 76.5  2.2   0:00.60 cc1                  
  883 root      25   0 17940  11m 8260 R 11.8  4.8   0:00.60 mplayer              
  882 root      16   0  1888 1028 1764 R  3.9  0.4   0:00.10 top                  


top - 22:52:18 up 4 min,  4 users,  load average: 1.40, 0.75, 0.28
Tasks:  38 total,   3 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.3% user,  13.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   202564k used,    52832k free,     9168k buffers
Swap:   530108k total,        0k used,   530108k free,    83300k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  883 root      25   0 17940  11m 8260 R 15.7  4.8   0:00.68 mplayer              
  882 root      16   0  1888 1028 1764 R  0.0  0.4   0:00.10 top                  
  906 root      22   0  1044  616  956 R  0.0  0.2   0:00.00 sh                   


top - 22:52:18 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  41 total,   4 running,  37 sleeping,   0 stopped,   0 zombie
Cpu(s):  52.9% user,  43.1% system,   0.0% nice,   0.0% idle,   3.9% IO-wait
Mem:    255396k total,   204548k used,    50848k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83440k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  953 root      25   0  2880 1628 1320 R 19.6  0.6   0:00.10 cpp0                 
  883 root      25   0 17940  11m 8260 R 13.7  4.8   0:00.75 mplayer              
  882 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.11 top                  
  954 root      25   0  3188 1572 2860 R  2.0  0.6   0:00.01 cc1                  


top - 22:52:19 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  41 total,   4 running,  37 sleeping,   0 stopped,   0 zombie
Cpu(s):  82.0% user,  18.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   207012k used,    48384k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83440k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  954 root      25   0  5640 4128 2860 R 68.5  1.6   0:00.36 cc1                  
  883 root      25   0 17940  11m 8260 R 17.6  4.8   0:00.84 mplayer              
  882 root      16   0  1888 1028 1764 R  3.9  0.4   0:00.13 top                  
  953 root      25   0  2880 1628 1320 R  0.0  0.6   0:00.10 cpp0                 


top - 22:52:19 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  41 total,   4 running,  37 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.5% user,  13.5% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   209084k used,    46312k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83440k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  954 root      25   0  7716 6204 2860 R 74.1  2.4   0:00.74 cc1                  
  883 root      25   0 17940  11m 8260 R 13.6  4.8   0:00.91 mplayer              
  882 root      16   0  1888 1028 1764 R  0.0  0.4   0:00.13 top                  
  953 root      25   0  2880 1628 1320 R  0.0  0.6   0:00.10 cpp0                 


top - 22:52:20 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  38 total,   3 running,  35 sleeping,   0 stopped,   0 zombie
Cpu(s):  84.3% user,  15.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   203236k used,    52160k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83456k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  956 root      22   0  1980 1152 1356 R 13.7  0.5   0:00.07 make                 
  883 root      25   0 17940  11m 8260 R 11.8  4.8   0:00.97 mplayer              
  882 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.14 top                  


top - 22:52:20 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  70.6% user,  25.5% system,   0.0% nice,   0.0% idle,   3.9% IO-wait
Mem:    255396k total,   206692k used,    48704k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83524k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  883 root      25   0 17940  11m 8260 R 15.7  4.8   0:01.05 mplayer              
  960 root      25   0  3748 2200 2860 R 13.8  0.9   0:00.07 cc1                  
  882 root      16   0  1888 1028 1764 R  3.9  0.4   0:00.16 top                  


top - 22:52:21 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.3% user,  13.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   209100k used,    46296k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83524k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  883 root      25   0 17940  11m 8260 R 11.7  4.8   0:01.11 mplayer              
  882 root      16   0  1888 1028 1764 R  2.0  0.4   0:00.17 top                  
  959 root      25   0  2728 1528 1320 R  0.0  0.6   0:00.10 cpp0                 


top - 22:52:21 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  80.8% user,  19.2% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   210500k used,    44896k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83524k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  960 root      25   0  7588 6388 2860 R 56.9  2.5   0:00.72 cc1                  
  883 root      25   0 17940  11m 8260 R 15.7  4.8   0:01.19 mplayer              
  882 root      16   0  1888 1028 1764 R  0.0  0.4   0:00.17 top                  


top - 22:52:22 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.2% user,   7.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   210724k used,    44672k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83524k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  960 root      25   0  7808 6764 2860 R 74.5  2.6   0:01.10 cc1                  
  883 root      25   0 17940  11m 8260 R 13.7  4.8   0:01.26 mplayer              
  882 root      16   0  1888 1028 1764 R  3.9  0.4   0:00.19 top                  


top - 22:52:22 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  94.0% user,   6.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   210836k used,    44560k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83524k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  960 root      25   0  7708 6664 2860 R 68.6  2.6   0:01.45 cc1                  
  883 root      25   0 17940  11m 8260 R 11.8  4.8   0:01.32 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.20 top                  


top - 22:52:23 up 4 min,  4 users,  load average: 1.61, 0.80, 0.30
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.3% user,   7.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   209876k used,    45520k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83528k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  960 root      25   0  7860 6820 2860 R 74.4  2.7   0:01.83 cc1                  
  883 root      25   0 17940  11m 8260 R 11.7  4.8   0:01.38 mplayer              
  100 root      15  -1 58944  13m  45m R  7.8  5.5   0:11.10 X                    
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.21 top                  


top - 22:52:23 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   4 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  84.0% user,  16.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   206748k used,    48648k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83560k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  966 root      23   0  3940 2396 2860 R 17.6  0.9   0:00.09 cc1                  
  965 root      24   0  2476 1408 1320 R 15.7  0.6   0:00.08 cpp0                 
  883 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.43 mplayer              
  882 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.21 top                  


top - 22:52:24 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  88.5% user,  11.5% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   208820k used,    46576k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83560k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  966 root      25   0  6024 4512 2860 R 60.7  1.8   0:00.40 cc1                  
  883 root      25   0 17940  11m 8260 R 19.6  4.8   0:01.53 mplayer              
  882 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.23 top                  


top - 22:52:24 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   4 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  80.0% user,  18.0% system,   0.0% nice,   0.0% idle,   2.0% IO-wait
Mem:    255396k total,   206076k used,    49320k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83600k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  971 root      24   0  2452 1532 1320 R 17.7  0.6   0:00.09 cpp0                 
  883 root      25   0 17940  11m 8260 R 11.8  4.8   0:01.59 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.24 top                  
  972 root      22   0  3160 1544 2860 R  2.0  0.6   0:00.01 cc1                  


top - 22:52:25 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   208820k used,    46576k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83600k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  972 root      25   0  5912 4400 2860 R 74.4  1.7   0:00.39 cc1                  
  883 root      25   0 17940  11m 8260 R 13.7  4.8   0:01.66 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.25 top                  


top - 22:52:25 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   4 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.2% user,   9.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   210444k used,    44952k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83604k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  972 root      25   0  7536 6464 2860 R 70.6  2.5   0:00.75 cc1                  
  883 root      25   0 17940  11m 8260 R 11.8  4.8   0:01.72 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.26 top                  
  112 root      15   0  2484 1048 2340 R  0.0  0.4   0:00.97 xsnow                


top - 22:52:26 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  42 total,   4 running,  38 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.3% user,   7.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   209708k used,    45688k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83604k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  972 root      25   0  7920 6864 2860 R 76.5  2.7   0:01.14 cc1                  
  100 root      15  -1 58944  13m  45m R 11.8  5.5   0:11.42 X                    
  883 root      25   0 17940  11m 8260 R  7.8  4.8   0:01.76 mplayer              
  882 root      15   0  1888 1028 1764 R  0.0  0.4   0:00.26 top                  


top - 22:52:26 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  84.0% user,  16.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   207196k used,    48200k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83628k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  978 root      24   0  4468 2948 2860 R 31.4  1.2   0:00.16 cc1                  
  883 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.81 mplayer              
  882 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.28 top                  


top - 22:52:27 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  42 total,   3 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.5% user,  13.5% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   208588k used,    46808k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83628k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  978 root      25   0  6600 5516 2860 R 72.4  2.2   0:00.53 cc1                  
  883 root      25   0 17940  11m 8260 R  9.8  4.8   0:01.86 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.29 top                  


top - 22:52:27 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   4 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  78.4% user,  19.6% system,   0.0% nice,   0.0% idle,   2.0% IO-wait
Mem:    255396k total,   207532k used,    47864k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83656k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  984 root      24   0  4808 3288 2860 R 39.2  1.3   0:00.20 cc1                  
  100 root      15  -1 58944  13m  45m R 11.8  5.5   0:11.59 X                    
  883 root      25   0 17940  11m 8260 R 11.8  4.8   0:01.92 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.30 top                  


top - 22:52:28 up 4 min,  4 users,  load average: 1.64, 0.82, 0.31
Tasks:  43 total,   4 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  86.3% user,  13.7% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   205796k used,    49600k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83684k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  989 root      22   0  2380 1256 1320 R  9.7  0.5   0:00.05 cpp0                 
  883 root      25   0 17940  11m 8260 R  5.8  4.8   0:01.95 mplayer              
  112 root      15   0  2484 1048 2340 R  1.9  0.4   0:01.00 xsnow                
  882 root      15   0  1888 1028 1764 R  1.9  0.4   0:00.31 top                  


top - 22:52:28 up 4 min,  4 users,  load average: 1.67, 0.84, 0.32
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  88.5% user,  11.5% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   208764k used,    46632k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83692k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  990 root      25   0  5736 4224 2860 R 70.5  1.7   0:00.36 cc1                  
  883 root      25   0 17940  11m 8260 R 11.7  4.8   0:02.01 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.32 top                  


top - 22:52:29 up 4 min,  4 users,  load average: 1.67, 0.84, 0.32
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.0% user,  10.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   210444k used,    44952k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83692k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  990 root      25   0  7600 6412 2860 R 72.6  2.5   0:00.73 cc1                  
  883 root      25   0 17940  11m 8260 R 11.8  4.8   0:02.07 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.33 top                  


top - 22:52:29 up 4 min,  4 users,  load average: 1.67, 0.84, 0.32
Tasks:  43 total,   4 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  80.4% user,  13.7% system,   0.0% nice,   0.0% idle,   5.9% IO-wait
Mem:    255396k total,   206916k used,    48480k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83748k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  995 root      24   0  2412 1520 1320 R 17.6  0.6   0:00.09 cpp0                 
  996 root      23   0  3852 2308 2860 R 15.7  0.9   0:00.08 cc1                  
  883 root      25   0 17940  11m 8260 R  3.9  4.8   0:02.09 mplayer              
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.34 top                  


top - 22:52:30 up 4 min,  4 users,  load average: 1.67, 0.84, 0.32
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  90.4% user,   9.6% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   209772k used,    45624k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83748k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  996 root      25   0  6700 5188 2860 R 90.0  2.0   0:00.54 cc1                  
  882 root      15   0  1888 1028 1764 R  3.9  0.4   0:00.36 top                  
  883 root      25   0 17940  11m 8260 R  3.9  4.8   0:02.11 mplayer              


top - 22:52:30 up 4 min,  4 users,  load average: 1.67, 0.84, 0.32
Tasks:  43 total,   3 running,  40 sleeping,   0 stopped,   0 zombie
Cpu(s):  92.2% user,   7.8% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   210780k used,    44616k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83748k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  996 root      25   0  7548 6496 2860 R 92.2  2.5   0:01.01 cc1                  
  882 root      15   0  1888 1028 1764 R  2.0  0.4   0:00.37 top                  
  883 root      25   0 17940  11m 8260 R  2.0  4.8   0:02.12 mplayer              


top - 22:52:31 up 4 min,  4 users,  load average: 1.67, 0.84, 0.32
Tasks:  42 total,   3 running,  39 sleeping,   0 stopped,   0 zombie
Cpu(s):  96.0% user,   4.0% system,   0.0% nice,   0.0% idle,   0.0% IO-wait
Mem:    255396k total,   209764k used,    45632k free,     9172k buffers
Swap:   530108k total,        0k used,   530108k free,    83748k cached

  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  Command              
  996 root      25   0  7776 6724 2860 R 86.3  2.6   0

^ permalink raw reply	[flat|nested] 31+ messages in thread

* Re: [PATCH] O3int interactivity for 2.5.74-mm2
@ 2003-07-09 15:08 Luis Miguel Garcia
  0 siblings, 0 replies; 31+ messages in thread
From: Luis Miguel Garcia @ 2003-07-09 15:08 UTC (permalink / raw)
  To: linux-kernel

If the prople is all the time complaining about the good that was the
interactivity in the first 2.5 series, is it completly imposible to
revert some of the changes in order to see what has happened?

Perhaps this way, a bug can be identified, or a bad piece of code.

Does this make sense?

Regards,
-- 
Luis Miguel Garcia
Palencia / Spain


^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2003-07-10 16:09 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-06 17:16 [PATCH] O3int interactivity for 2.5.74-mm2 Con Kolivas
2003-07-06 18:36 ` Felipe Alfaro Solana
2003-07-06 21:14   ` Con Kolivas
2003-07-06 21:17   ` Con Kolivas
2003-07-07  3:19   ` Con Kolivas
2003-07-07  9:13     ` Felipe Alfaro Solana
2003-07-07  9:40     ` Mike Galbraith
2003-07-07 10:25       ` Con Kolivas
2003-07-07 14:06         ` Mike Galbraith
2003-07-07 14:10           ` Con Kolivas
2003-07-07 10:51     ` Nick Sanders
2003-07-07 12:19       ` Marc-Christian Petersen
2003-07-07 13:14         ` Con Kolivas
2003-07-08  0:31         ` Zwane Mwaikambo
2003-07-09 10:12           ` Marc-Christian Petersen
2003-07-09 10:13             ` Marc-Christian Petersen
2003-07-09 10:22             ` Con Kolivas
2003-07-09 10:23               ` Marc-Christian Petersen
2003-07-09 10:37                 ` Con Kolivas
2003-07-09 10:40                   ` Marc-Christian Petersen
2003-07-07 13:25     ` Helge Hafting
2003-07-08  6:35     ` Alex Riesen
2003-07-08  7:11     ` Szonyi Calin
2003-07-08  7:46       ` Davide Libenzi
2003-07-08  7:59         ` Con Kolivas
2003-07-08 15:12           ` Davide Libenzi
2003-07-08 20:54             ` Con Kolivas
2003-07-08 20:55               ` Davide Libenzi
2003-07-08  8:03       ` Con Kolivas
2003-07-10 16:27         ` Szonyi Calin
2003-07-09 15:08 Luis Miguel Garcia

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).