lkml.org 
[lkml]   [2008]   [Sep]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: documentation about scheduling policies
From
Date
On Mon, 2008-09-22 at 17:29 +0200, Martin Steigerwald wrote:
> Please CC to me as I am not subscribed to linux-kernel.
>
>
> Hi!
>
> I wonder about scheduling policies in CFS. I find these:
>
> ms@mango> grep "case SCHED_" sched.c sched_fair.c | sort | uniq
> ~/lokal/Kernel/linux-2.6.26/kernel
> sched.c: case SCHED_BATCH:
> sched.c: case SCHED_FIFO:
> sched.c: case SCHED_IDLE:
> sched.c: case SCHED_NORMAL:
> sched.c: case SCHED_RR:
>
> sched_fair.c seems to differentiate SCHED_PATCH only:
>
> ms@mango> egrep "(SCHED_I|SCHED_B)" sched_fair.c
> ~/lokal/Kernel/linux-2.6.26/kernel
> * Completely Fair Scheduling (CFS) Class (SCHED_NORMAL/SCHED_BATCH)
> if (likely(!sysctl_sched_compat_yield) && curr->policy != SCHED_BATCH)
> {
> if (unlikely(p->policy == SCHED_BATCH))
>
>
> The documentation on scheduling policies in Documentation/scheduler appears
> rather scarse to me.

> I am willing to create documentation patches provided someone explains these
> to me ;-).

SCHED_NORMAL (traditionally called SCHED_OTHER)
SCHED_BATCH
SCHED_IDLE

are all implemented in sched_fair.c which constitute a proportional fair
scheduler.

SCHED_BATCH differentiates itself by not preempting nearly as often as
regular tasks would, thereby allowing tasks to run longer and make
better use of caches but at the cost of interactivity.

SCHED_IDLE is basically an even weaker nice 19, its not a true idle time
scheduler because we can easily get into priority inversion problems
with that which would deadlock the machine.

SCHED_FIFO/_RR are implemented in sched_rt.c and are as specified by
POSIX.



\
 
 \ /
  Last update: 2008-09-22 18:21    [W:0.033 / U:0.508 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site