Re: [PATCH] sched.c: Be a bit more conservative in SMP
- From: Vincent Pelletier <vincent.plr@xxxxxxxxxx>
- Date: Sun, 3 Sep 2006 19:10:56 +0200
Forgot the signed-off-by line in previous mail. Reposting same patch just in
case. CC to maintainer as advised in the FAQ.
Signed-off-by: Vincent Pelletier <vincent.plr@xxxxxxxxxx>
--- linux-2.6-2.6.17/kernel/sched.c 2006-06-18 03:49:35.000000000 +0200
+++ linux-2.6-2.6.17-conservative/kernel/sched.c 2006-09-03
13:18:11.000000000 +0200
@@ -952,7 +952,7 @@ void kick_process(task_t *p)
static inline unsigned long source_load(int cpu, int type)
{
runqueue_t *rq = cpu_rq(cpu);
- unsigned long load_now = rq->nr_running * SCHED_LOAD_SCALE;
+ unsigned long load_now = (max(rq->nr_running - 1, 0)) *
SCHED_LOAD_SCALE;
if (type == 0)
return load_now;
--
VGER BF report: U 0.500348
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- Re: [PATCH] sched.c: Be a bit more conservative in SMP
- From: Vincent Pelletier
- Re: [PATCH] sched.c: Be a bit more conservative in SMP
- References:
- [PATCH] sched.c: Be a bit more conservative in SMP
- From: Vincent Pelletier
- [PATCH] sched.c: Be a bit more conservative in SMP
- Prev by Date: Re: 2.6.18-rc5-mm1 + all hotfixes -- BUG: MAX_STACK_TRACE_ENTRIES too low!
- Next by Date: Re: [PATCH] Export CPU Scheduler Tunables via DebugFS
- Previous by thread: [PATCH] sched.c: Be a bit more conservative in SMP
- Next by thread: Re: [PATCH] sched.c: Be a bit more conservative in SMP
- Index(es):
Relevant Pages
|