Blame view

Documentation/scheduler/sched-design-CFS.txt 9.52 KB
f58e2c33f   Claudio Scordino   sched: new docume...
1
2
3
                        =============
                        CFS Scheduler
                        =============
5e7eaade5   Ingo Molnar   sched: add CFS do...
4

5cb350baf   Dhaval Giani   sched: group sche...
5

f58e2c33f   Claudio Scordino   sched: new docume...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  1.  OVERVIEW
  
  CFS stands for "Completely Fair Scheduler," and is the new "desktop" process
  scheduler implemented by Ingo Molnar and merged in Linux 2.6.23.  It is the
  replacement for the previous vanilla scheduler's SCHED_OTHER interactivity
  code.
  
  80% of CFS's design can be summed up in a single sentence: CFS basically models
  an "ideal, precise multi-tasking CPU" on real hardware.
  
  "Ideal multi-tasking CPU" is a (non-existent  :-)) CPU that has 100% physical
  power and which can run each task at precise equal speed, in parallel, each at
  1/nr_running speed.  For example: if there are 2 tasks running, then it runs
  each at 50% physical power --- i.e., actually in parallel.
  
  On real hardware, we can run only a single task at once, so we have to
  introduce the concept of "virtual runtime."  The virtual runtime of a task
  specifies when its next timeslice would start execution on the ideal
  multi-tasking CPU described above.  In practice, the virtual runtime of a task
  is its actual runtime normalized to the total number of running tasks.
  
  
  
  2.  FEW IMPLEMENTATION DETAILS
  
  In CFS the virtual runtime is expressed and tracked via the per-task
  p->se.vruntime (nanosec-unit) value.  This way, it's possible to accurately
  timestamp and measure the "expected CPU time" a task should have gotten.
  
  [ small detail: on "ideal" hardware, at any time all tasks would have the same
    p->se.vruntime value --- i.e., tasks would execute simultaneously and no task
    would ever get "out of balance" from the "ideal" share of CPU time.  ]
  
  CFS's task picking logic is based on this p->se.vruntime value and it is thus
  very simple: it always tries to run the task with the smallest p->se.vruntime
  value (i.e., the task which executed least so far).  CFS always tries to split
  up CPU time between runnable tasks as close to "ideal multitasking hardware" as
  possible.
  
  Most of the rest of CFS's design just falls out of this really simple concept,
  with a few add-on embellishments like nice levels, multiprocessing and various
  algorithm variants to recognize sleepers.
  
  
  
  3.  THE RBTREE
  
  CFS's design is quite radical: it does not use the old data structures for the
  runqueues, but it uses a time-ordered rbtree to build a "timeline" of future
  task execution, and thus has no "array switch" artifacts (by which both the
  previous vanilla scheduler and RSDL/SD are affected).
  
  CFS also maintains the rq->cfs.min_vruntime value, which is a monotonic
  increasing value tracking the smallest vruntime among all tasks in the
  runqueue.  The total amount of work done by the system is tracked using
  min_vruntime; that value is used to place newly activated entities on the left
  side of the tree as much as possible.
  
  The total number of running tasks in the runqueue is accounted through the
  rq->cfs.load value, which is the sum of the weights of the tasks queued on the
  runqueue.
  
  CFS maintains a time-ordered rbtree, where all runnable tasks are sorted by the
3b524d609   Li Bin   sched/Documentati...
69
  p->se.vruntime key. CFS picks the "leftmost" task from this tree and sticks to it.
f58e2c33f   Claudio Scordino   sched: new docume...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  As the system progresses forwards, the executed tasks are put into the tree
  more and more to the right --- slowly but surely giving a chance for every task
  to become the "leftmost task" and thus get on the CPU within a deterministic
  amount of time.
  
  Summing up, CFS works like this: it runs a task a bit, and when the task
  schedules (or a scheduler tick happens) the task's CPU usage is "accounted
  for": the (small) time it just spent using the physical CPU is added to
  p->se.vruntime.  Once p->se.vruntime gets high enough so that another task
  becomes the "leftmost task" of the time-ordered rbtree it maintains (plus a
  small amount of "granularity" distance relative to the leftmost task so that we
  do not over-schedule tasks and trash the cache), then the new leftmost task is
  picked and the current task is preempted.
  
  
  
  4.  SOME FEATURES OF CFS
  
  CFS uses nanosecond granularity accounting and does not rely on any jiffies or
  other HZ detail.  Thus the CFS scheduler has no notion of "timeslices" in the
  way the previous scheduler had, and has no heuristics whatsoever.  There is
  only one central tunable (you have to switch on CONFIG_SCHED_DEBUG):
4078e359c   Jiri Kosina   sched: fix docume...
92
     /proc/sys/kernel/sched_min_granularity_ns
f58e2c33f   Claudio Scordino   sched: new docume...
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  
  which can be used to tune the scheduler from "desktop" (i.e., low latencies) to
  "server" (i.e., good batching) workloads.  It defaults to a setting suitable
  for desktop workloads.  SCHED_BATCH is handled by the CFS scheduler module too.
  
  Due to its design, the CFS scheduler is not prone to any of the "attacks" that
  exist today against the heuristics of the stock scheduler: fiftyp.c, thud.c,
  chew.c, ring-test.c, massive_intr.c all work fine and do not impact
  interactivity and produce the expected behavior.
  
  The CFS scheduler has a much stronger handling of nice levels and SCHED_BATCH
  than the previous vanilla scheduler: both types of workloads are isolated much
  more aggressively.
  
  SMP load-balancing has been reworked/sanitized: the runqueue-walking
  assumptions are gone from the load-balancing code now, and iterators of the
  scheduling modules are used.  The balancing code got quite a bit simpler as a
  result.
1a73ef6ac   Martin Steigerwald   CFS scheduler: do...
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  5. Scheduling policies
  
  CFS implements three scheduling policies:
  
    - SCHED_NORMAL (traditionally called SCHED_OTHER): The scheduling
      policy that is used for regular tasks.
  
    - SCHED_BATCH: Does not preempt 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. This is well suited for
      batch jobs.
  
    - SCHED_IDLE: This is even weaker than nice 19, but its not a true
      idle timer scheduler in order to avoid to get into priority
      inversion problems which would deadlock the machine.
489a71b02   Hiroshi Shimamoto   sched: Update doc...
126
  SCHED_FIFO/_RR are implemented in sched/rt.c and are as specified by
1a73ef6ac   Martin Steigerwald   CFS scheduler: do...
127
128
129
130
131
132
133
134
  POSIX.
  
  The command chrt from util-linux-ng 2.13.1.1 can set all of these except
  SCHED_IDLE.
  
  
  
  6.  SCHEDULING CLASSES
f58e2c33f   Claudio Scordino   sched: new docume...
135
136
137
138
139
  
  The new CFS scheduler has been designed in such a way to introduce "Scheduling
  Classes," an extensible hierarchy of scheduler modules.  These modules
  encapsulate scheduling policy details and are handled by the scheduler core
  without the core code assuming too much about them.
489a71b02   Hiroshi Shimamoto   sched: Update doc...
140
  sched/fair.c implements the CFS scheduler described above.
5cb350baf   Dhaval Giani   sched: group sche...
141

489a71b02   Hiroshi Shimamoto   sched: Update doc...
142
  sched/rt.c implements SCHED_FIFO and SCHED_RR semantics, in a simpler way than
f58e2c33f   Claudio Scordino   sched: new docume...
143
144
145
  the previous vanilla scheduler did.  It uses 100 runqueues (for all 100 RT
  priority levels, instead of 140 in the previous scheduler) and it needs no
  expired array.
5cb350baf   Dhaval Giani   sched: group sche...
146

f58e2c33f   Claudio Scordino   sched: new docume...
147
148
149
150
151
152
153
154
155
156
157
  Scheduling classes are implemented through the sched_class structure, which
  contains hooks to functions that must be called whenever an interesting event
  occurs.
  
  This is the (partial) list of the hooks:
  
   - enqueue_task(...)
  
     Called when a task enters a runnable state.
     It puts the scheduling entity (task) into the red-black tree and
     increments the nr_running variable.
1232d6132   Borislav Petkov   sched, doc: Updat...
158
   - dequeue_task(...)
f58e2c33f   Claudio Scordino   sched: new docume...
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
  
     When a task is no longer runnable, this function is called to keep the
     corresponding scheduling entity out of the red-black tree.  It decrements
     the nr_running variable.
  
   - yield_task(...)
  
     This function is basically just a dequeue followed by an enqueue, unless the
     compat_yield sysctl is turned on; in that case, it places the scheduling
     entity at the right-most end of the red-black tree.
  
   - check_preempt_curr(...)
  
     This function checks if a task that entered the runnable state should
     preempt the currently running task.
  
   - pick_next_task(...)
  
     This function chooses the most appropriate task eligible to run next.
  
   - set_curr_task(...)
  
     This function is called when a task changes its scheduling class or changes
     its task group.
  
   - task_tick(...)
  
     This function is mostly called from time tick functions; it might lead to
     process switch.  This drives the running preemption.
f58e2c33f   Claudio Scordino   sched: new docume...
188

1a73ef6ac   Martin Steigerwald   CFS scheduler: do...
189
  7.  GROUP SCHEDULER EXTENSIONS TO CFS
f58e2c33f   Claudio Scordino   sched: new docume...
190
191
192
193
194
195
  
  Normally, the scheduler operates on individual tasks and strives to provide
  fair CPU time to each task.  Sometimes, it may be desirable to group tasks and
  provide fair CPU time to each such task group.  For example, it may be
  desirable to first provide fair CPU time to each user on the system and then to
  each task belonging to a user.
25c2d55c0   Li Zefan   sched: Remove USE...
196
  CONFIG_CGROUP_SCHED strives to achieve exactly that.  It lets tasks to be
f58e2c33f   Claudio Scordino   sched: new docume...
197
198
199
200
201
202
203
  grouped and divides CPU time fairly among such groups.
  
  CONFIG_RT_GROUP_SCHED permits to group real-time (i.e., SCHED_FIFO and
  SCHED_RR) tasks.
  
  CONFIG_FAIR_GROUP_SCHED permits to group CFS (i.e., SCHED_NORMAL and
  SCHED_BATCH) tasks.
25c2d55c0   Li Zefan   sched: Remove USE...
204
     These options need CONFIG_CGROUPS to be defined, and let the administrator
f58e2c33f   Claudio Scordino   sched: new docume...
205
     create arbitrary groups of tasks, using the "cgroup" pseudo filesystem.  See
45ce80fb6   Li Zefan   cgroups: consolid...
206
     Documentation/cgroups/cgroups.txt for more information about this filesystem.
f58e2c33f   Claudio Scordino   sched: new docume...
207

25c2d55c0   Li Zefan   sched: Remove USE...
208
  When CONFIG_FAIR_GROUP_SCHED is defined, a "cpu.shares" file is created for each
f58e2c33f   Claudio Scordino   sched: new docume...
209
210
  group created using the pseudo filesystem.  See example steps below to create
  task groups and modify their CPU share using the "cgroups" pseudo filesystem.
5cb350baf   Dhaval Giani   sched: group sche...
211

f6e07d380   Jörg Sommer   Documentation: up...
212
213
214
215
  	# mount -t tmpfs cgroup_root /sys/fs/cgroup
  	# mkdir /sys/fs/cgroup/cpu
  	# mount -t cgroup -ocpu none /sys/fs/cgroup/cpu
  	# cd /sys/fs/cgroup/cpu
5cb350baf   Dhaval Giani   sched: group sche...
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
  
  	# mkdir multimedia	# create "multimedia" group of tasks
  	# mkdir browser		# create "browser" group of tasks
  
  	# #Configure the multimedia group to receive twice the CPU bandwidth
  	# #that of browser group
  
  	# echo 2048 > multimedia/cpu.shares
  	# echo 1024 > browser/cpu.shares
  
  	# firefox &	# Launch firefox and move it to "browser" group
  	# echo <firefox_pid> > browser/tasks
  
  	# #Launch gmplayer (or your favourite movie player)
  	# echo <movie_player_pid> > multimedia/tasks