public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* glitch1 results - 2.6.21.3-cfs-v15
@ 2007-06-04 21:56 Bill Davidsen
  2007-06-05 19:20 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Bill Davidsen @ 2007-06-04 21:56 UTC (permalink / raw)
  To: Linux Kernel M/L

I have added cfs15 to the chart at 
www.tmr.com/~davidsen/sched_smooth_05.html and updated the source of the 
test at www.tmr.com/~public/source if anyone wants to run test on their 
hardware.

I feel that on my hardware cfs-13 was the smoothest for this test and 
for watching videos. Even relatively light load:
   nice -10 make -j4 -s
of a kernel would cause jumps on the video, gears or youtube.

-- 
Bill Davidsen <davidsen@tmr.com>
   "We have more to fear from the bungling of the incompetent than from
the machinations of the wicked."  - from Slashdot

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

* Re: glitch1 results - 2.6.21.3-cfs-v15
  2007-06-04 21:56 glitch1 results - 2.6.21.3-cfs-v15 Bill Davidsen
@ 2007-06-05 19:20 ` Ingo Molnar
  0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2007-06-05 19:20 UTC (permalink / raw)
  To: Bill Davidsen; +Cc: Linux Kernel M/L


* Bill Davidsen <davidsen@tmr.com> wrote:

> I have added cfs15 to the chart at 
> www.tmr.com/~davidsen/sched_smooth_05.html and updated the source of 
> the test at www.tmr.com/~public/source if anyone wants to run test on 
> their hardware.

thanks!

> I feel that on my hardware cfs-13 was the smoothest for this test and 
> for watching videos. Even relatively light load:
>   nice -10 make -j4 -s
> of a kernel would cause jumps on the video, gears or youtube.

ah, found this bug i think! Does the patch below fix it for you and does 
it bring back v13's smoothness for the reniced kernel build?

	Ingo

Index: linux/kernel/sched_fair.c
===================================================================
--- linux.orig/kernel/sched_fair.c
+++ linux/kernel/sched_fair.c
@@ -385,6 +374,7 @@ static void enqueue_sleeper(struct rq *r
 	 * during the whole sleep period:
 	 */
 	delta_fair = div64_s(delta_fair * load, load + p->load_weight);
+	delta_fair = div64_s(delta_fair * p->load_weight, NICE_0_LOAD);
 
 	prev_runtime = p->wait_runtime;
 	__add_wait_runtime(rq, p, delta_fair);

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

end of thread, other threads:[~2007-06-05 19:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-04 21:56 glitch1 results - 2.6.21.3-cfs-v15 Bill Davidsen
2007-06-05 19:20 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox