blob: 91a227b436eeaea91b94c2e590b3a0ed52359350 [file] [log] [blame]
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001/*
2 * Completely Fair Scheduling (CFS) Class (SCHED_NORMAL/SCHED_BATCH)
3 *
4 * Copyright (C) 2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
5 *
6 * Interactivity improvements by Mike Galbraith
7 * (C) 2007 Mike Galbraith <efault@gmx.de>
8 *
9 * Various enhancements by Dmitry Adamushko.
10 * (C) 2007 Dmitry Adamushko <dmitry.adamushko@gmail.com>
11 *
12 * Group scheduling enhancements by Srivatsa Vaddagiri
13 * Copyright IBM Corporation, 2007
14 * Author: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
15 *
16 * Scaled math optimizations by Thomas Gleixner
17 * Copyright (C) 2007, Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra21805082007-08-25 18:41:53 +020018 *
19 * Adaptive scheduling granularity, math enhancements by Peter Zijlstra
20 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020021 */
22
23/*
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020024 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
25 */
26#ifdef CONFIG_SCHED_DEBUG
27# define const_debug __read_mostly
28#else
29# define const_debug static const
30#endif
31
32/*
Peter Zijlstra21805082007-08-25 18:41:53 +020033 * Targeted preemption latency for CPU-bound tasks:
34 * (default: 20ms, units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020035 *
Peter Zijlstra21805082007-08-25 18:41:53 +020036 * NOTE: this latency value is not the same as the concept of
37 * 'timeslice length' - timeslices in CFS are of variable length.
38 * (to see the precise effective timeslice length of your workload,
39 * run vmstat and monitor the context-switches field)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020040 *
41 * On SMP systems the value of this is multiplied by the log2 of the
42 * number of CPUs. (i.e. factor 2x on 2-way systems, 3x on 4-way
43 * systems, 4x on 8-way systems, 5x on 16-way systems, etc.)
Peter Zijlstra21805082007-08-25 18:41:53 +020044 * Targeted preemption latency for CPU-bound tasks:
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020045 */
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020046const_debug unsigned int sysctl_sched_latency = 20000000ULL;
47
48/*
49 * After fork, child runs first. (default) If set to 0 then
50 * parent will (try to) run first.
51 */
52const_debug unsigned int sysctl_sched_child_runs_first = 1;
Peter Zijlstra21805082007-08-25 18:41:53 +020053
54/*
55 * Minimal preemption granularity for CPU-bound tasks:
56 * (default: 2 msec, units: nanoseconds)
57 */
Ingo Molnar172ac3d2007-08-25 18:41:53 +020058unsigned int sysctl_sched_min_granularity __read_mostly = 2000000ULL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020059
60/*
Ingo Molnar1799e352007-09-19 23:34:46 +020061 * sys_sched_yield() compat mode
62 *
63 * This option switches the agressive yield implementation of the
64 * old scheduler back on.
65 */
66unsigned int __read_mostly sysctl_sched_compat_yield;
67
68/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020069 * SCHED_BATCH wake-up granularity.
Ingo Molnar71fd3712007-08-24 20:39:10 +020070 * (default: 25 msec, units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020071 *
72 * This option delays the preemption effects of decoupled workloads
73 * and reduces their over-scheduling. Synchronous workloads will still
74 * have immediate wakeup/sleep latencies.
75 */
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020076const_debug unsigned int sysctl_sched_batch_wakeup_granularity = 25000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020077
78/*
79 * SCHED_OTHER wake-up granularity.
80 * (default: 1 msec, units: nanoseconds)
81 *
82 * This option delays the preemption effects of decoupled workloads
83 * and reduces their over-scheduling. Synchronous workloads will still
84 * have immediate wakeup/sleep latencies.
85 */
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020086const_debug unsigned int sysctl_sched_wakeup_granularity = 1000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020087
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020088unsigned int sysctl_sched_runtime_limit __read_mostly;
89
90/*
91 * Debugging: various feature bits
92 */
93enum {
94 SCHED_FEAT_FAIR_SLEEPERS = 1,
95 SCHED_FEAT_SLEEPER_AVG = 2,
96 SCHED_FEAT_SLEEPER_LOAD_AVG = 4,
Ingo Molnara25707f2007-10-15 17:00:03 +020097 SCHED_FEAT_START_DEBIT = 8,
98 SCHED_FEAT_SKIP_INITIAL = 16,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020099};
100
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +0200101const_debug unsigned int sysctl_sched_features =
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200102 SCHED_FEAT_FAIR_SLEEPERS *1 |
Ingo Molnar5d2b3d32007-08-12 18:08:19 +0200103 SCHED_FEAT_SLEEPER_AVG *0 |
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200104 SCHED_FEAT_SLEEPER_LOAD_AVG *1 |
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200105 SCHED_FEAT_START_DEBIT *1 |
106 SCHED_FEAT_SKIP_INITIAL *0;
107
Peter Zijlstrae59c80c2007-10-15 17:00:03 +0200108#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
109
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200110extern struct sched_class fair_sched_class;
111
112/**************************************************************
113 * CFS operations on generic schedulable entities:
114 */
115
116#ifdef CONFIG_FAIR_GROUP_SCHED
117
118/* cpu runqueue to which this cfs_rq is attached */
119static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
120{
121 return cfs_rq->rq;
122}
123
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200124/* An entity is a task if it doesn't "own" a runqueue */
125#define entity_is_task(se) (!se->my_q)
126
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200127#else /* CONFIG_FAIR_GROUP_SCHED */
128
129static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
130{
131 return container_of(cfs_rq, struct rq, cfs);
132}
133
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200134#define entity_is_task(se) 1
135
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200136#endif /* CONFIG_FAIR_GROUP_SCHED */
137
138static inline struct task_struct *task_of(struct sched_entity *se)
139{
140 return container_of(se, struct task_struct, se);
141}
142
143
144/**************************************************************
145 * Scheduling class tree data structure manipulation methods:
146 */
147
148/*
149 * Enqueue an entity into the rb-tree:
150 */
Ingo Molnar19ccd972007-10-15 17:00:04 +0200151static void
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200152__enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
153{
154 struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
155 struct rb_node *parent = NULL;
156 struct sched_entity *entry;
157 s64 key = se->fair_key;
158 int leftmost = 1;
159
160 /*
161 * Find the right place in the rbtree:
162 */
163 while (*link) {
164 parent = *link;
165 entry = rb_entry(parent, struct sched_entity, run_node);
166 /*
167 * We dont care about collisions. Nodes with
168 * the same key stay together.
169 */
170 if (key - entry->fair_key < 0) {
171 link = &parent->rb_left;
172 } else {
173 link = &parent->rb_right;
174 leftmost = 0;
175 }
176 }
177
178 /*
179 * Maintain a cache of leftmost tree entries (it is frequently
180 * used):
181 */
182 if (leftmost)
183 cfs_rq->rb_leftmost = &se->run_node;
184
185 rb_link_node(&se->run_node, parent, link);
186 rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
187 update_load_add(&cfs_rq->load, se->load.weight);
188 cfs_rq->nr_running++;
189 se->on_rq = 1;
Ingo Molnara206c072007-09-05 14:32:49 +0200190
191 schedstat_add(cfs_rq, wait_runtime, se->wait_runtime);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200192}
193
Ingo Molnar19ccd972007-10-15 17:00:04 +0200194static void
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200195__dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
196{
197 if (cfs_rq->rb_leftmost == &se->run_node)
198 cfs_rq->rb_leftmost = rb_next(&se->run_node);
199 rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
200 update_load_sub(&cfs_rq->load, se->load.weight);
201 cfs_rq->nr_running--;
202 se->on_rq = 0;
Ingo Molnara206c072007-09-05 14:32:49 +0200203
204 schedstat_add(cfs_rq, wait_runtime, -se->wait_runtime);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200205}
206
207static inline struct rb_node *first_fair(struct cfs_rq *cfs_rq)
208{
209 return cfs_rq->rb_leftmost;
210}
211
212static struct sched_entity *__pick_next_entity(struct cfs_rq *cfs_rq)
213{
214 return rb_entry(first_fair(cfs_rq), struct sched_entity, run_node);
215}
216
217/**************************************************************
218 * Scheduling class statistics methods:
219 */
220
221/*
Peter Zijlstra21805082007-08-25 18:41:53 +0200222 * Calculate the preemption granularity needed to schedule every
223 * runnable task once per sysctl_sched_latency amount of time.
224 * (down to a sensible low limit on granularity)
225 *
226 * For example, if there are 2 tasks running and latency is 10 msecs,
227 * we switch tasks every 5 msecs. If we have 3 tasks running, we have
228 * to switch tasks every 3.33 msecs to get a 10 msecs observed latency
229 * for each task. We do finer and finer scheduling up to until we
230 * reach the minimum granularity value.
231 *
232 * To achieve this we use the following dynamic-granularity rule:
233 *
234 * gran = lat/nr - lat/nr/nr
235 *
236 * This comes out of the following equations:
237 *
238 * kA1 + gran = kB1
239 * kB2 + gran = kA2
240 * kA2 = kA1
241 * kB2 = kB1 - d + d/nr
242 * lat = d * nr
243 *
244 * Where 'k' is key, 'A' is task A (waiting), 'B' is task B (running),
245 * '1' is start of time, '2' is end of time, 'd' is delay between
246 * 1 and 2 (during which task B was running), 'nr' is number of tasks
247 * running, 'lat' is the the period of each task. ('lat' is the
248 * sched_latency that we aim for.)
249 */
250static long
251sched_granularity(struct cfs_rq *cfs_rq)
252{
253 unsigned int gran = sysctl_sched_latency;
254 unsigned int nr = cfs_rq->nr_running;
255
256 if (nr > 1) {
257 gran = gran/nr - gran/nr/nr;
Ingo Molnar172ac3d2007-08-25 18:41:53 +0200258 gran = max(gran, sysctl_sched_min_granularity);
Peter Zijlstra21805082007-08-25 18:41:53 +0200259 }
260
261 return gran;
262}
263
264/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200265 * We rescale the rescheduling granularity of tasks according to their
266 * nice level, but only linearly, not exponentially:
267 */
268static long
269niced_granularity(struct sched_entity *curr, unsigned long granularity)
270{
271 u64 tmp;
272
Ingo Molnar7cff8cf2007-08-09 11:16:52 +0200273 if (likely(curr->load.weight == NICE_0_LOAD))
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200274 return granularity;
275 /*
Ingo Molnar7cff8cf2007-08-09 11:16:52 +0200276 * Positive nice levels get the same granularity as nice-0:
277 */
278 if (likely(curr->load.weight < NICE_0_LOAD)) {
279 tmp = curr->load.weight * (u64)granularity;
280 return (long) (tmp >> NICE_0_SHIFT);
281 }
282 /*
283 * Negative nice level tasks get linearly finer
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200284 * granularity:
285 */
Ingo Molnar7cff8cf2007-08-09 11:16:52 +0200286 tmp = curr->load.inv_weight * (u64)granularity;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200287
288 /*
289 * It will always fit into 'long':
290 */
Ingo Molnara0dc7262007-09-05 14:32:49 +0200291 return (long) (tmp >> (WMULT_SHIFT-NICE_0_SHIFT));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200292}
293
294static inline void
295limit_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se)
296{
297 long limit = sysctl_sched_runtime_limit;
298
299 /*
300 * Niced tasks have the same history dynamic range as
301 * non-niced tasks:
302 */
303 if (unlikely(se->wait_runtime > limit)) {
304 se->wait_runtime = limit;
305 schedstat_inc(se, wait_runtime_overruns);
306 schedstat_inc(cfs_rq, wait_runtime_overruns);
307 }
308 if (unlikely(se->wait_runtime < -limit)) {
309 se->wait_runtime = -limit;
310 schedstat_inc(se, wait_runtime_underruns);
311 schedstat_inc(cfs_rq, wait_runtime_underruns);
312 }
313}
314
315static inline void
316__add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta)
317{
318 se->wait_runtime += delta;
319 schedstat_add(se, sum_wait_runtime, delta);
320 limit_wait_runtime(cfs_rq, se);
321}
322
323static void
324add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta)
325{
326 schedstat_add(cfs_rq, wait_runtime, -se->wait_runtime);
327 __add_wait_runtime(cfs_rq, se, delta);
328 schedstat_add(cfs_rq, wait_runtime, se->wait_runtime);
329}
330
331/*
332 * Update the current task's runtime statistics. Skip current tasks that
333 * are not in our scheduling class.
334 */
335static inline void
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200336__update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr,
337 unsigned long delta_exec)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200338{
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200339 unsigned long delta, delta_fair, delta_mine;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200340 struct load_weight *lw = &cfs_rq->load;
341 unsigned long load = lw->weight;
342
Ingo Molnar8179ca22007-08-02 17:41:40 +0200343 schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200344
345 curr->sum_exec_runtime += delta_exec;
346 cfs_rq->exec_clock += delta_exec;
347
Ingo Molnarfd8bb432007-08-09 11:16:46 +0200348 if (unlikely(!load))
349 return;
350
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200351 delta_fair = calc_delta_fair(delta_exec, lw);
352 delta_mine = calc_delta_mine(delta_exec, curr->load.weight, lw);
353
Mike Galbraith5f01d512007-08-28 12:53:24 +0200354 if (cfs_rq->sleeper_bonus > sysctl_sched_min_granularity) {
Peter Zijlstraea0aa3b2007-08-24 20:39:10 +0200355 delta = min((u64)delta_mine, cfs_rq->sleeper_bonus);
Ingo Molnarb2133c82007-08-24 20:39:10 +0200356 delta = min(delta, (unsigned long)(
357 (long)sysctl_sched_runtime_limit - curr->wait_runtime));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200358 cfs_rq->sleeper_bonus -= delta;
359 delta_mine -= delta;
360 }
361
362 cfs_rq->fair_clock += delta_fair;
363 /*
364 * We executed delta_exec amount of time on the CPU,
365 * but we were only entitled to delta_mine amount of
366 * time during that period (if nr_running == 1 then
367 * the two values are equal)
368 * [Note: delta_mine - delta_exec is negative]:
369 */
370 add_wait_runtime(cfs_rq, curr, delta_mine - delta_exec);
371}
372
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200373static void update_curr(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200374{
Ingo Molnar429d43bc2007-10-15 17:00:03 +0200375 struct sched_entity *curr = cfs_rq->curr;
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200376 u64 now = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200377 unsigned long delta_exec;
378
379 if (unlikely(!curr))
380 return;
381
382 /*
383 * Get the amount of time the current task was running
384 * since the last time we changed load (this cannot
385 * overflow on 32 bits):
386 */
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200387 delta_exec = (unsigned long)(now - curr->exec_start);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200388
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200389 __update_curr(cfs_rq, curr, delta_exec);
390 curr->exec_start = now;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200391}
392
393static inline void
Ingo Molnar5870db52007-08-09 11:16:47 +0200394update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200395{
396 se->wait_start_fair = cfs_rq->fair_clock;
Ingo Molnard2819182007-08-09 11:16:47 +0200397 schedstat_set(se->wait_start, rq_of(cfs_rq)->clock);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200398}
399
400/*
401 * We calculate fair deltas here, so protect against the random effects
402 * of a multiplication overflow by capping it to the runtime limit:
403 */
404#if BITS_PER_LONG == 32
405static inline unsigned long
406calc_weighted(unsigned long delta, unsigned long weight, int shift)
407{
408 u64 tmp = (u64)delta * weight >> shift;
409
410 if (unlikely(tmp > sysctl_sched_runtime_limit*2))
411 return sysctl_sched_runtime_limit*2;
412 return tmp;
413}
414#else
415static inline unsigned long
416calc_weighted(unsigned long delta, unsigned long weight, int shift)
417{
418 return delta * weight >> shift;
419}
420#endif
421
422/*
423 * Task is being enqueued - update stats:
424 */
Ingo Molnard2417e52007-08-09 11:16:47 +0200425static void update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200426{
427 s64 key;
428
429 /*
430 * Are we enqueueing a waiting task? (for current tasks
431 * a dequeue/enqueue event is a NOP)
432 */
Ingo Molnar429d43bc2007-10-15 17:00:03 +0200433 if (se != cfs_rq->curr)
Ingo Molnar5870db52007-08-09 11:16:47 +0200434 update_stats_wait_start(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200435 /*
436 * Update the key:
437 */
438 key = cfs_rq->fair_clock;
439
440 /*
441 * Optimize the common nice 0 case:
442 */
443 if (likely(se->load.weight == NICE_0_LOAD)) {
444 key -= se->wait_runtime;
445 } else {
446 u64 tmp;
447
448 if (se->wait_runtime < 0) {
449 tmp = -se->wait_runtime;
450 key += (tmp * se->load.inv_weight) >>
451 (WMULT_SHIFT - NICE_0_SHIFT);
452 } else {
453 tmp = se->wait_runtime;
Ingo Molnara69edb52007-08-09 11:16:52 +0200454 key -= (tmp * se->load.inv_weight) >>
455 (WMULT_SHIFT - NICE_0_SHIFT);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200456 }
457 }
458
459 se->fair_key = key;
460}
461
462/*
463 * Note: must be called with a freshly updated rq->fair_clock.
464 */
465static inline void
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200466__update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se,
467 unsigned long delta_fair)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200468{
Ingo Molnard2819182007-08-09 11:16:47 +0200469 schedstat_set(se->wait_max, max(se->wait_max,
470 rq_of(cfs_rq)->clock - se->wait_start));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200471
472 if (unlikely(se->load.weight != NICE_0_LOAD))
473 delta_fair = calc_weighted(delta_fair, se->load.weight,
474 NICE_0_SHIFT);
475
476 add_wait_runtime(cfs_rq, se, delta_fair);
477}
478
479static void
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200480update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200481{
482 unsigned long delta_fair;
483
Ingo Molnarb77d69d2007-08-28 12:53:24 +0200484 if (unlikely(!se->wait_start_fair))
485 return;
486
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200487 delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit),
488 (u64)(cfs_rq->fair_clock - se->wait_start_fair));
489
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200490 __update_stats_wait_end(cfs_rq, se, delta_fair);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200491
492 se->wait_start_fair = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +0200493 schedstat_set(se->wait_start, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200494}
495
496static inline void
Ingo Molnar19b6a2e2007-08-09 11:16:48 +0200497update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200498{
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200499 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200500 /*
501 * Mark the end of the wait period if dequeueing a
502 * waiting task:
503 */
Ingo Molnar429d43bc2007-10-15 17:00:03 +0200504 if (se != cfs_rq->curr)
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200505 update_stats_wait_end(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200506}
507
508/*
509 * We are picking a new current task - update its stats:
510 */
511static inline void
Ingo Molnar79303e92007-08-09 11:16:47 +0200512update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200513{
514 /*
515 * We are starting a new run period:
516 */
Ingo Molnard2819182007-08-09 11:16:47 +0200517 se->exec_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200518}
519
520/*
521 * We are descheduling a task - update its stats:
522 */
523static inline void
Ingo Molnarc7e9b5b2007-08-09 11:16:48 +0200524update_stats_curr_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200525{
526 se->exec_start = 0;
527}
528
529/**************************************************
530 * Scheduling class queueing methods:
531 */
532
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200533static void __enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se,
534 unsigned long delta_fair)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200535{
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200536 unsigned long load = cfs_rq->load.weight;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200537 long prev_runtime;
538
Ingo Molnarb2133c82007-08-24 20:39:10 +0200539 /*
540 * Do not boost sleepers if there's too much bonus 'in flight'
541 * already:
542 */
543 if (unlikely(cfs_rq->sleeper_bonus > sysctl_sched_runtime_limit))
544 return;
545
Peter Zijlstrae59c80c2007-10-15 17:00:03 +0200546 if (sched_feat(SLEEPER_LOAD_AVG))
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200547 load = rq_of(cfs_rq)->cpu_load[2];
548
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200549 /*
550 * Fix up delta_fair with the effect of us running
551 * during the whole sleep period:
552 */
Peter Zijlstrae59c80c2007-10-15 17:00:03 +0200553 if (sched_feat(SLEEPER_AVG))
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200554 delta_fair = div64_likely32((u64)delta_fair * load,
555 load + se->load.weight);
556
557 if (unlikely(se->load.weight != NICE_0_LOAD))
558 delta_fair = calc_weighted(delta_fair, se->load.weight,
559 NICE_0_SHIFT);
560
561 prev_runtime = se->wait_runtime;
562 __add_wait_runtime(cfs_rq, se, delta_fair);
563 delta_fair = se->wait_runtime - prev_runtime;
564
565 /*
566 * Track the amount of bonus we've given to sleepers:
567 */
568 cfs_rq->sleeper_bonus += delta_fair;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200569}
570
Ingo Molnar2396af62007-08-09 11:16:48 +0200571static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200572{
573 struct task_struct *tsk = task_of(se);
574 unsigned long delta_fair;
575
576 if ((entity_is_task(se) && tsk->policy == SCHED_BATCH) ||
Peter Zijlstrae59c80c2007-10-15 17:00:03 +0200577 !sched_feat(FAIR_SLEEPERS))
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200578 return;
579
580 delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit),
581 (u64)(cfs_rq->fair_clock - se->sleep_start_fair));
582
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200583 __enqueue_sleeper(cfs_rq, se, delta_fair);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200584
585 se->sleep_start_fair = 0;
586
587#ifdef CONFIG_SCHEDSTATS
588 if (se->sleep_start) {
Ingo Molnard2819182007-08-09 11:16:47 +0200589 u64 delta = rq_of(cfs_rq)->clock - se->sleep_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200590
591 if ((s64)delta < 0)
592 delta = 0;
593
594 if (unlikely(delta > se->sleep_max))
595 se->sleep_max = delta;
596
597 se->sleep_start = 0;
598 se->sum_sleep_runtime += delta;
599 }
600 if (se->block_start) {
Ingo Molnard2819182007-08-09 11:16:47 +0200601 u64 delta = rq_of(cfs_rq)->clock - se->block_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200602
603 if ((s64)delta < 0)
604 delta = 0;
605
606 if (unlikely(delta > se->block_max))
607 se->block_max = delta;
608
609 se->block_start = 0;
610 se->sum_sleep_runtime += delta;
Ingo Molnar30084fb2007-10-02 14:13:08 +0200611
612 /*
613 * Blocking time is in units of nanosecs, so shift by 20 to
614 * get a milliseconds-range estimation of the amount of
615 * time that the task spent sleeping:
616 */
617 if (unlikely(prof_on == SLEEP_PROFILING)) {
618 profile_hits(SLEEP_PROFILING, (void *)get_wchan(tsk),
619 delta >> 20);
620 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200621 }
622#endif
623}
624
625static void
Ingo Molnar668031c2007-08-09 11:16:48 +0200626enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int wakeup)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200627{
628 /*
629 * Update the fair clock.
630 */
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200631 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200632
633 if (wakeup)
Ingo Molnar2396af62007-08-09 11:16:48 +0200634 enqueue_sleeper(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200635
Ingo Molnard2417e52007-08-09 11:16:47 +0200636 update_stats_enqueue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200637 __enqueue_entity(cfs_rq, se);
638}
639
640static void
Ingo Molnar525c2712007-08-09 11:16:48 +0200641dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int sleep)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200642{
Ingo Molnar19b6a2e2007-08-09 11:16:48 +0200643 update_stats_dequeue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200644 if (sleep) {
645 se->sleep_start_fair = cfs_rq->fair_clock;
646#ifdef CONFIG_SCHEDSTATS
647 if (entity_is_task(se)) {
648 struct task_struct *tsk = task_of(se);
649
650 if (tsk->state & TASK_INTERRUPTIBLE)
Ingo Molnard2819182007-08-09 11:16:47 +0200651 se->sleep_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200652 if (tsk->state & TASK_UNINTERRUPTIBLE)
Ingo Molnard2819182007-08-09 11:16:47 +0200653 se->block_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200654 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200655#endif
656 }
657 __dequeue_entity(cfs_rq, se);
658}
659
660/*
661 * Preempt the current task with a newly woken task if needed:
662 */
Peter Zijlstra7c92e542007-09-05 14:32:49 +0200663static void
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200664__check_preempt_curr_fair(struct cfs_rq *cfs_rq, struct sched_entity *se,
665 struct sched_entity *curr, unsigned long granularity)
666{
667 s64 __delta = curr->fair_key - se->fair_key;
Peter Zijlstra11697832007-09-05 14:32:49 +0200668 unsigned long ideal_runtime, delta_exec;
669
670 /*
671 * ideal_runtime is compared against sum_exec_runtime, which is
672 * walltime, hence do not scale.
673 */
674 ideal_runtime = max(sysctl_sched_latency / cfs_rq->nr_running,
675 (unsigned long)sysctl_sched_min_granularity);
676
677 /*
678 * If we executed more than what the latency constraint suggests,
679 * reduce the rescheduling granularity. This way the total latency
680 * of how much a task is not scheduled converges to
681 * sysctl_sched_latency:
682 */
683 delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
684 if (delta_exec > ideal_runtime)
685 granularity = 0;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200686
687 /*
688 * Take scheduling granularity into account - do not
689 * preempt the current task unless the best task has
690 * a larger than sched_granularity fairness advantage:
Peter Zijlstra11697832007-09-05 14:32:49 +0200691 *
692 * scale granularity as key space is in fair_clock.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200693 */
Peter Zijlstra4a55b452007-09-05 14:32:49 +0200694 if (__delta > niced_granularity(curr, granularity))
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200695 resched_task(rq_of(cfs_rq)->curr);
696}
697
698static inline void
Ingo Molnar8494f412007-08-09 11:16:48 +0200699set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200700{
701 /*
702 * Any task has to be enqueued before it get to execute on
703 * a CPU. So account for the time it spent waiting on the
704 * runqueue. (note, here we rely on pick_next_task() having
705 * done a put_prev_task_fair() shortly before this, which
706 * updated rq->fair_clock - used by update_stats_wait_end())
707 */
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200708 update_stats_wait_end(cfs_rq, se);
Ingo Molnar79303e92007-08-09 11:16:47 +0200709 update_stats_curr_start(cfs_rq, se);
Ingo Molnar429d43bc2007-10-15 17:00:03 +0200710 cfs_rq->curr = se;
Ingo Molnareba1ed42007-10-15 17:00:02 +0200711#ifdef CONFIG_SCHEDSTATS
712 /*
713 * Track our maximum slice length, if the CPU's load is at
714 * least twice that of our own weight (i.e. dont track it
715 * when there are only lesser-weight tasks around):
716 */
717 if (rq_of(cfs_rq)->ls.load.weight >= 2*se->load.weight) {
718 se->slice_max = max(se->slice_max,
719 se->sum_exec_runtime - se->prev_sum_exec_runtime);
720 }
721#endif
Peter Zijlstra4a55b452007-09-05 14:32:49 +0200722 se->prev_sum_exec_runtime = se->sum_exec_runtime;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200723}
724
Ingo Molnar9948f4b2007-08-09 11:16:48 +0200725static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200726{
727 struct sched_entity *se = __pick_next_entity(cfs_rq);
728
Ingo Molnar8494f412007-08-09 11:16:48 +0200729 set_next_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200730
731 return se;
732}
733
Ingo Molnarab6cde22007-08-09 11:16:48 +0200734static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200735{
736 /*
737 * If still on the runqueue then deactivate_task()
738 * was not called and update_curr() has to be done:
739 */
740 if (prev->on_rq)
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200741 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200742
Ingo Molnarc7e9b5b2007-08-09 11:16:48 +0200743 update_stats_curr_end(cfs_rq, prev);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200744
745 if (prev->on_rq)
Ingo Molnar5870db52007-08-09 11:16:47 +0200746 update_stats_wait_start(cfs_rq, prev);
Ingo Molnar429d43bc2007-10-15 17:00:03 +0200747 cfs_rq->curr = NULL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200748}
749
750static void entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
751{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200752 struct sched_entity *next;
Ingo Molnarc1b3da32007-08-09 11:16:47 +0200753
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200754 /*
755 * Dequeue and enqueue the task to update its
756 * position within the tree:
757 */
Ingo Molnar525c2712007-08-09 11:16:48 +0200758 dequeue_entity(cfs_rq, curr, 0);
Ingo Molnar668031c2007-08-09 11:16:48 +0200759 enqueue_entity(cfs_rq, curr, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200760
761 /*
762 * Reschedule if another task tops the current one.
763 */
764 next = __pick_next_entity(cfs_rq);
765 if (next == curr)
766 return;
767
Peter Zijlstra11697832007-09-05 14:32:49 +0200768 __check_preempt_curr_fair(cfs_rq, next, curr,
769 sched_granularity(cfs_rq));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200770}
771
772/**************************************************
773 * CFS operations on tasks:
774 */
775
776#ifdef CONFIG_FAIR_GROUP_SCHED
777
778/* Walk up scheduling entities hierarchy */
779#define for_each_sched_entity(se) \
780 for (; se; se = se->parent)
781
782static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
783{
784 return p->se.cfs_rq;
785}
786
787/* runqueue on which this entity is (to be) queued */
788static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
789{
790 return se->cfs_rq;
791}
792
793/* runqueue "owned" by this group */
794static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
795{
796 return grp->my_q;
797}
798
799/* Given a group's cfs_rq on one cpu, return its corresponding cfs_rq on
800 * another cpu ('this_cpu')
801 */
802static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
803{
804 /* A later patch will take group into account */
805 return &cpu_rq(this_cpu)->cfs;
806}
807
808/* Iterate thr' all leaf cfs_rq's on a runqueue */
809#define for_each_leaf_cfs_rq(rq, cfs_rq) \
810 list_for_each_entry(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list)
811
812/* Do the two (enqueued) tasks belong to the same group ? */
813static inline int is_same_group(struct task_struct *curr, struct task_struct *p)
814{
815 if (curr->se.cfs_rq == p->se.cfs_rq)
816 return 1;
817
818 return 0;
819}
820
821#else /* CONFIG_FAIR_GROUP_SCHED */
822
823#define for_each_sched_entity(se) \
824 for (; se; se = NULL)
825
826static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
827{
828 return &task_rq(p)->cfs;
829}
830
831static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
832{
833 struct task_struct *p = task_of(se);
834 struct rq *rq = task_rq(p);
835
836 return &rq->cfs;
837}
838
839/* runqueue "owned" by this group */
840static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
841{
842 return NULL;
843}
844
845static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
846{
847 return &cpu_rq(this_cpu)->cfs;
848}
849
850#define for_each_leaf_cfs_rq(rq, cfs_rq) \
851 for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL)
852
853static inline int is_same_group(struct task_struct *curr, struct task_struct *p)
854{
855 return 1;
856}
857
858#endif /* CONFIG_FAIR_GROUP_SCHED */
859
860/*
861 * The enqueue_task method is called before nr_running is
862 * increased. Here we update the fair scheduling stats and
863 * then put the task into the rbtree:
864 */
Ingo Molnarfd390f62007-08-09 11:16:48 +0200865static void enqueue_task_fair(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200866{
867 struct cfs_rq *cfs_rq;
868 struct sched_entity *se = &p->se;
869
870 for_each_sched_entity(se) {
871 if (se->on_rq)
872 break;
873 cfs_rq = cfs_rq_of(se);
Ingo Molnar668031c2007-08-09 11:16:48 +0200874 enqueue_entity(cfs_rq, se, wakeup);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200875 }
876}
877
878/*
879 * The dequeue_task method is called before nr_running is
880 * decreased. We remove the task from the rbtree and
881 * update the fair scheduling stats:
882 */
Ingo Molnarf02231e2007-08-09 11:16:48 +0200883static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200884{
885 struct cfs_rq *cfs_rq;
886 struct sched_entity *se = &p->se;
887
888 for_each_sched_entity(se) {
889 cfs_rq = cfs_rq_of(se);
Ingo Molnar525c2712007-08-09 11:16:48 +0200890 dequeue_entity(cfs_rq, se, sleep);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200891 /* Don't dequeue parent if it has other entities besides us */
892 if (cfs_rq->load.weight)
893 break;
894 }
895}
896
897/*
Ingo Molnar1799e352007-09-19 23:34:46 +0200898 * sched_yield() support is very simple - we dequeue and enqueue.
899 *
900 * If compat_yield is turned on then we requeue to the end of the tree.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200901 */
902static void yield_task_fair(struct rq *rq, struct task_struct *p)
903{
904 struct cfs_rq *cfs_rq = task_cfs_rq(p);
Ingo Molnar1799e352007-09-19 23:34:46 +0200905 struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
906 struct sched_entity *rightmost, *se = &p->se;
907 struct rb_node *parent;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200908
909 /*
Ingo Molnar1799e352007-09-19 23:34:46 +0200910 * Are we the only task in the tree?
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200911 */
Ingo Molnar1799e352007-09-19 23:34:46 +0200912 if (unlikely(cfs_rq->nr_running == 1))
913 return;
914
915 if (likely(!sysctl_sched_compat_yield)) {
916 __update_rq_clock(rq);
917 /*
918 * Dequeue and enqueue the task to update its
919 * position within the tree:
920 */
921 dequeue_entity(cfs_rq, &p->se, 0);
922 enqueue_entity(cfs_rq, &p->se, 0);
923
924 return;
925 }
926 /*
927 * Find the rightmost entry in the rbtree:
928 */
929 do {
930 parent = *link;
931 link = &parent->rb_right;
932 } while (*link);
933
934 rightmost = rb_entry(parent, struct sched_entity, run_node);
935 /*
936 * Already in the rightmost position?
937 */
938 if (unlikely(rightmost == se))
939 return;
940
941 /*
942 * Minimally necessary key value to be last in the tree:
943 */
944 se->fair_key = rightmost->fair_key + 1;
945
946 if (cfs_rq->rb_leftmost == &se->run_node)
947 cfs_rq->rb_leftmost = rb_next(&se->run_node);
948 /*
949 * Relink the task to the rightmost position:
950 */
951 rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
952 rb_link_node(&se->run_node, parent, link);
953 rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200954}
955
956/*
957 * Preempt the current task with a newly woken task if needed:
958 */
959static void check_preempt_curr_fair(struct rq *rq, struct task_struct *p)
960{
961 struct task_struct *curr = rq->curr;
962 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
963 unsigned long gran;
964
965 if (unlikely(rt_prio(p->prio))) {
Ingo Molnara8e504d2007-08-09 11:16:47 +0200966 update_rq_clock(rq);
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200967 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200968 resched_task(curr);
969 return;
970 }
971
972 gran = sysctl_sched_wakeup_granularity;
973 /*
974 * Batch tasks prefer throughput over latency:
975 */
976 if (unlikely(p->policy == SCHED_BATCH))
977 gran = sysctl_sched_batch_wakeup_granularity;
978
979 if (is_same_group(curr, p))
980 __check_preempt_curr_fair(cfs_rq, &p->se, &curr->se, gran);
981}
982
Ingo Molnarfb8d4722007-08-09 11:16:48 +0200983static struct task_struct *pick_next_task_fair(struct rq *rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200984{
985 struct cfs_rq *cfs_rq = &rq->cfs;
986 struct sched_entity *se;
987
988 if (unlikely(!cfs_rq->nr_running))
989 return NULL;
990
991 do {
Ingo Molnar9948f4b2007-08-09 11:16:48 +0200992 se = pick_next_entity(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200993 cfs_rq = group_cfs_rq(se);
994 } while (cfs_rq);
995
996 return task_of(se);
997}
998
999/*
1000 * Account for a descheduled task:
1001 */
Ingo Molnar31ee5292007-08-09 11:16:49 +02001002static void put_prev_task_fair(struct rq *rq, struct task_struct *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001003{
1004 struct sched_entity *se = &prev->se;
1005 struct cfs_rq *cfs_rq;
1006
1007 for_each_sched_entity(se) {
1008 cfs_rq = cfs_rq_of(se);
Ingo Molnarab6cde22007-08-09 11:16:48 +02001009 put_prev_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001010 }
1011}
1012
1013/**************************************************
1014 * Fair scheduling class load-balancing methods:
1015 */
1016
1017/*
1018 * Load-balancing iterator. Note: while the runqueue stays locked
1019 * during the whole iteration, the current task might be
1020 * dequeued so the iterator has to be dequeue-safe. Here we
1021 * achieve that by always pre-iterating before returning
1022 * the current task:
1023 */
1024static inline struct task_struct *
1025__load_balance_iterator(struct cfs_rq *cfs_rq, struct rb_node *curr)
1026{
1027 struct task_struct *p;
1028
1029 if (!curr)
1030 return NULL;
1031
1032 p = rb_entry(curr, struct task_struct, se.run_node);
1033 cfs_rq->rb_load_balance_curr = rb_next(curr);
1034
1035 return p;
1036}
1037
1038static struct task_struct *load_balance_start_fair(void *arg)
1039{
1040 struct cfs_rq *cfs_rq = arg;
1041
1042 return __load_balance_iterator(cfs_rq, first_fair(cfs_rq));
1043}
1044
1045static struct task_struct *load_balance_next_fair(void *arg)
1046{
1047 struct cfs_rq *cfs_rq = arg;
1048
1049 return __load_balance_iterator(cfs_rq, cfs_rq->rb_load_balance_curr);
1050}
1051
Peter Williamsa4ac01c2007-08-09 11:16:46 +02001052#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001053static int cfs_rq_best_prio(struct cfs_rq *cfs_rq)
1054{
1055 struct sched_entity *curr;
1056 struct task_struct *p;
1057
1058 if (!cfs_rq->nr_running)
1059 return MAX_PRIO;
1060
1061 curr = __pick_next_entity(cfs_rq);
1062 p = task_of(curr);
1063
1064 return p->prio;
1065}
Peter Williamsa4ac01c2007-08-09 11:16:46 +02001066#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001067
Peter Williams43010652007-08-09 11:16:46 +02001068static unsigned long
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001069load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02001070 unsigned long max_nr_move, unsigned long max_load_move,
1071 struct sched_domain *sd, enum cpu_idle_type idle,
1072 int *all_pinned, int *this_best_prio)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001073{
1074 struct cfs_rq *busy_cfs_rq;
1075 unsigned long load_moved, total_nr_moved = 0, nr_moved;
1076 long rem_load_move = max_load_move;
1077 struct rq_iterator cfs_rq_iterator;
1078
1079 cfs_rq_iterator.start = load_balance_start_fair;
1080 cfs_rq_iterator.next = load_balance_next_fair;
1081
1082 for_each_leaf_cfs_rq(busiest, busy_cfs_rq) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02001083#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001084 struct cfs_rq *this_cfs_rq;
Ingo Molnare56f31a2007-08-10 23:05:11 +02001085 long imbalance;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001086 unsigned long maxload;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001087
1088 this_cfs_rq = cpu_cfs_rq(busy_cfs_rq, this_cpu);
1089
Ingo Molnare56f31a2007-08-10 23:05:11 +02001090 imbalance = busy_cfs_rq->load.weight - this_cfs_rq->load.weight;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001091 /* Don't pull if this_cfs_rq has more load than busy_cfs_rq */
1092 if (imbalance <= 0)
1093 continue;
1094
1095 /* Don't pull more than imbalance/2 */
1096 imbalance /= 2;
1097 maxload = min(rem_load_move, imbalance);
1098
Peter Williamsa4ac01c2007-08-09 11:16:46 +02001099 *this_best_prio = cfs_rq_best_prio(this_cfs_rq);
1100#else
Ingo Molnare56f31a2007-08-10 23:05:11 +02001101# define maxload rem_load_move
Peter Williamsa4ac01c2007-08-09 11:16:46 +02001102#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001103 /* pass busy_cfs_rq argument into
1104 * load_balance_[start|next]_fair iterators
1105 */
1106 cfs_rq_iterator.arg = busy_cfs_rq;
1107 nr_moved = balance_tasks(this_rq, this_cpu, busiest,
1108 max_nr_move, maxload, sd, idle, all_pinned,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02001109 &load_moved, this_best_prio, &cfs_rq_iterator);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001110
1111 total_nr_moved += nr_moved;
1112 max_nr_move -= nr_moved;
1113 rem_load_move -= load_moved;
1114
1115 if (max_nr_move <= 0 || rem_load_move <= 0)
1116 break;
1117 }
1118
Peter Williams43010652007-08-09 11:16:46 +02001119 return max_load_move - rem_load_move;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001120}
1121
1122/*
1123 * scheduler tick hitting a task of our scheduling class:
1124 */
1125static void task_tick_fair(struct rq *rq, struct task_struct *curr)
1126{
1127 struct cfs_rq *cfs_rq;
1128 struct sched_entity *se = &curr->se;
1129
1130 for_each_sched_entity(se) {
1131 cfs_rq = cfs_rq_of(se);
1132 entity_tick(cfs_rq, se);
1133 }
1134}
1135
1136/*
1137 * Share the fairness runtime between parent and child, thus the
1138 * total amount of pressure for CPU stays equal - new tasks
1139 * get a chance to run but frequent forkers are not allowed to
1140 * monopolize the CPU. Note: the parent runqueue is locked,
1141 * the child is not running yet.
1142 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001143static void task_new_fair(struct rq *rq, struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001144{
1145 struct cfs_rq *cfs_rq = task_cfs_rq(p);
Ingo Molnar429d43bc2007-10-15 17:00:03 +02001146 struct sched_entity *se = &p->se, *curr = cfs_rq->curr;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001147
1148 sched_info_queued(p);
1149
Ting Yang7109c442007-08-28 12:53:24 +02001150 update_curr(cfs_rq);
Ingo Molnard2417e52007-08-09 11:16:47 +02001151 update_stats_enqueue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001152 /*
1153 * Child runs first: we let it run before the parent
1154 * until it reschedules once. We set up the key so that
1155 * it will preempt the parent:
1156 */
Ingo Molnar9f508f82007-08-28 12:53:24 +02001157 se->fair_key = curr->fair_key -
Ting Yang7109c442007-08-28 12:53:24 +02001158 niced_granularity(curr, sched_granularity(cfs_rq)) - 1;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001159 /*
1160 * The first wait is dominated by the child-runs-first logic,
1161 * so do not credit it with that waiting time yet:
1162 */
Peter Zijlstrae59c80c2007-10-15 17:00:03 +02001163 if (sched_feat(SKIP_INITIAL))
Ingo Molnar9f508f82007-08-28 12:53:24 +02001164 se->wait_start_fair = 0;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001165
1166 /*
1167 * The statistical average of wait_runtime is about
1168 * -granularity/2, so initialize the task with that:
1169 */
Peter Zijlstrae59c80c2007-10-15 17:00:03 +02001170 if (sched_feat(START_DEBIT))
Ingo Molnar9f508f82007-08-28 12:53:24 +02001171 se->wait_runtime = -(sched_granularity(cfs_rq) / 2);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001172
1173 __enqueue_entity(cfs_rq, se);
Ingo Molnarbb61c212007-10-15 17:00:02 +02001174 resched_task(rq->curr);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001175}
1176
1177#ifdef CONFIG_FAIR_GROUP_SCHED
1178/* Account for a task changing its policy or group.
1179 *
1180 * This routine is mostly called to set cfs_rq->curr field when a task
1181 * migrates between groups/classes.
1182 */
1183static void set_curr_task_fair(struct rq *rq)
1184{
Bruce Ashfield7c6c16f2007-08-24 20:39:10 +02001185 struct sched_entity *se = &rq->curr->se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001186
Ingo Molnarc3b64f12007-08-09 11:16:51 +02001187 for_each_sched_entity(se)
1188 set_next_entity(cfs_rq_of(se), se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001189}
1190#else
1191static void set_curr_task_fair(struct rq *rq)
1192{
1193}
1194#endif
1195
1196/*
1197 * All the scheduling class methods:
1198 */
1199struct sched_class fair_sched_class __read_mostly = {
1200 .enqueue_task = enqueue_task_fair,
1201 .dequeue_task = dequeue_task_fair,
1202 .yield_task = yield_task_fair,
1203
1204 .check_preempt_curr = check_preempt_curr_fair,
1205
1206 .pick_next_task = pick_next_task_fair,
1207 .put_prev_task = put_prev_task_fair,
1208
1209 .load_balance = load_balance_fair,
1210
1211 .set_curr_task = set_curr_task_fair,
1212 .task_tick = task_tick_fair,
1213 .task_new = task_new_fair,
1214};
1215
1216#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar5cef9ec2007-08-09 11:16:47 +02001217static void print_cfs_stats(struct seq_file *m, int cpu)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001218{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001219 struct cfs_rq *cfs_rq;
1220
Ingo Molnarc3b64f12007-08-09 11:16:51 +02001221 for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq)
Ingo Molnar5cef9ec2007-08-09 11:16:47 +02001222 print_cfs_rq(m, cpu, cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001223}
1224#endif