blob: 6b0974c3fb67df48694396364005d3f0bcedc232 [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>
18 */
19
20/*
21 * Preemption granularity:
Ingo Molnar71fd3712007-08-24 20:39:10 +020022 * (default: 10 msec, units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020023 *
24 * NOTE: this granularity value is not the same as the concept of
25 * 'timeslice length' - timeslices in CFS will typically be somewhat
26 * larger than this value. (to see the precise effective timeslice
27 * length of your workload, run vmstat and monitor the context-switches
28 * field)
29 *
30 * On SMP systems the value of this is multiplied by the log2 of the
31 * number of CPUs. (i.e. factor 2x on 2-way systems, 3x on 4-way
32 * systems, 4x on 8-way systems, 5x on 16-way systems, etc.)
33 */
Ingo Molnar71fd3712007-08-24 20:39:10 +020034unsigned int sysctl_sched_granularity __read_mostly = 10000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020035
36/*
37 * SCHED_BATCH wake-up granularity.
Ingo Molnar71fd3712007-08-24 20:39:10 +020038 * (default: 25 msec, units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020039 *
40 * This option delays the preemption effects of decoupled workloads
41 * and reduces their over-scheduling. Synchronous workloads will still
42 * have immediate wakeup/sleep latencies.
43 */
Ingo Molnar71fd3712007-08-24 20:39:10 +020044unsigned int sysctl_sched_batch_wakeup_granularity __read_mostly = 25000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020045
46/*
47 * SCHED_OTHER wake-up granularity.
48 * (default: 1 msec, units: nanoseconds)
49 *
50 * This option delays the preemption effects of decoupled workloads
51 * and reduces their over-scheduling. Synchronous workloads will still
52 * have immediate wakeup/sleep latencies.
53 */
Ingo Molnar71fd3712007-08-24 20:39:10 +020054unsigned int sysctl_sched_wakeup_granularity __read_mostly = 1000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020055
56unsigned int sysctl_sched_stat_granularity __read_mostly;
57
58/*
Ingo Molnar71fd3712007-08-24 20:39:10 +020059 * Initialized in sched_init_granularity() [to 5 times the base granularity]:
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020060 */
61unsigned int sysctl_sched_runtime_limit __read_mostly;
62
63/*
64 * Debugging: various feature bits
65 */
66enum {
67 SCHED_FEAT_FAIR_SLEEPERS = 1,
68 SCHED_FEAT_SLEEPER_AVG = 2,
69 SCHED_FEAT_SLEEPER_LOAD_AVG = 4,
70 SCHED_FEAT_PRECISE_CPU_LOAD = 8,
71 SCHED_FEAT_START_DEBIT = 16,
72 SCHED_FEAT_SKIP_INITIAL = 32,
73};
74
75unsigned int sysctl_sched_features __read_mostly =
76 SCHED_FEAT_FAIR_SLEEPERS *1 |
Ingo Molnar5d2b3d32007-08-12 18:08:19 +020077 SCHED_FEAT_SLEEPER_AVG *0 |
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020078 SCHED_FEAT_SLEEPER_LOAD_AVG *1 |
79 SCHED_FEAT_PRECISE_CPU_LOAD *1 |
80 SCHED_FEAT_START_DEBIT *1 |
81 SCHED_FEAT_SKIP_INITIAL *0;
82
83extern struct sched_class fair_sched_class;
84
85/**************************************************************
86 * CFS operations on generic schedulable entities:
87 */
88
89#ifdef CONFIG_FAIR_GROUP_SCHED
90
91/* cpu runqueue to which this cfs_rq is attached */
92static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
93{
94 return cfs_rq->rq;
95}
96
97/* currently running entity (if any) on this cfs_rq */
98static inline struct sched_entity *cfs_rq_curr(struct cfs_rq *cfs_rq)
99{
100 return cfs_rq->curr;
101}
102
103/* An entity is a task if it doesn't "own" a runqueue */
104#define entity_is_task(se) (!se->my_q)
105
106static inline void
107set_cfs_rq_curr(struct cfs_rq *cfs_rq, struct sched_entity *se)
108{
109 cfs_rq->curr = se;
110}
111
112#else /* CONFIG_FAIR_GROUP_SCHED */
113
114static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
115{
116 return container_of(cfs_rq, struct rq, cfs);
117}
118
119static inline struct sched_entity *cfs_rq_curr(struct cfs_rq *cfs_rq)
120{
121 struct rq *rq = rq_of(cfs_rq);
122
123 if (unlikely(rq->curr->sched_class != &fair_sched_class))
124 return NULL;
125
126 return &rq->curr->se;
127}
128
129#define entity_is_task(se) 1
130
131static inline void
132set_cfs_rq_curr(struct cfs_rq *cfs_rq, struct sched_entity *se) { }
133
134#endif /* CONFIG_FAIR_GROUP_SCHED */
135
136static inline struct task_struct *task_of(struct sched_entity *se)
137{
138 return container_of(se, struct task_struct, se);
139}
140
141
142/**************************************************************
143 * Scheduling class tree data structure manipulation methods:
144 */
145
146/*
147 * Enqueue an entity into the rb-tree:
148 */
149static inline void
150__enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
151{
152 struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
153 struct rb_node *parent = NULL;
154 struct sched_entity *entry;
155 s64 key = se->fair_key;
156 int leftmost = 1;
157
158 /*
159 * Find the right place in the rbtree:
160 */
161 while (*link) {
162 parent = *link;
163 entry = rb_entry(parent, struct sched_entity, run_node);
164 /*
165 * We dont care about collisions. Nodes with
166 * the same key stay together.
167 */
168 if (key - entry->fair_key < 0) {
169 link = &parent->rb_left;
170 } else {
171 link = &parent->rb_right;
172 leftmost = 0;
173 }
174 }
175
176 /*
177 * Maintain a cache of leftmost tree entries (it is frequently
178 * used):
179 */
180 if (leftmost)
181 cfs_rq->rb_leftmost = &se->run_node;
182
183 rb_link_node(&se->run_node, parent, link);
184 rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
185 update_load_add(&cfs_rq->load, se->load.weight);
186 cfs_rq->nr_running++;
187 se->on_rq = 1;
188}
189
190static inline void
191__dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
192{
193 if (cfs_rq->rb_leftmost == &se->run_node)
194 cfs_rq->rb_leftmost = rb_next(&se->run_node);
195 rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
196 update_load_sub(&cfs_rq->load, se->load.weight);
197 cfs_rq->nr_running--;
198 se->on_rq = 0;
199}
200
201static inline struct rb_node *first_fair(struct cfs_rq *cfs_rq)
202{
203 return cfs_rq->rb_leftmost;
204}
205
206static struct sched_entity *__pick_next_entity(struct cfs_rq *cfs_rq)
207{
208 return rb_entry(first_fair(cfs_rq), struct sched_entity, run_node);
209}
210
211/**************************************************************
212 * Scheduling class statistics methods:
213 */
214
215/*
216 * We rescale the rescheduling granularity of tasks according to their
217 * nice level, but only linearly, not exponentially:
218 */
219static long
220niced_granularity(struct sched_entity *curr, unsigned long granularity)
221{
222 u64 tmp;
223
Ingo Molnar7cff8cf2007-08-09 11:16:52 +0200224 if (likely(curr->load.weight == NICE_0_LOAD))
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200225 return granularity;
226 /*
Ingo Molnar7cff8cf2007-08-09 11:16:52 +0200227 * Positive nice levels get the same granularity as nice-0:
228 */
229 if (likely(curr->load.weight < NICE_0_LOAD)) {
230 tmp = curr->load.weight * (u64)granularity;
231 return (long) (tmp >> NICE_0_SHIFT);
232 }
233 /*
234 * Negative nice level tasks get linearly finer
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200235 * granularity:
236 */
Ingo Molnar7cff8cf2007-08-09 11:16:52 +0200237 tmp = curr->load.inv_weight * (u64)granularity;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200238
239 /*
240 * It will always fit into 'long':
241 */
Ingo Molnar7cff8cf2007-08-09 11:16:52 +0200242 return (long) (tmp >> WMULT_SHIFT);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200243}
244
245static inline void
246limit_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se)
247{
248 long limit = sysctl_sched_runtime_limit;
249
250 /*
251 * Niced tasks have the same history dynamic range as
252 * non-niced tasks:
253 */
254 if (unlikely(se->wait_runtime > limit)) {
255 se->wait_runtime = limit;
256 schedstat_inc(se, wait_runtime_overruns);
257 schedstat_inc(cfs_rq, wait_runtime_overruns);
258 }
259 if (unlikely(se->wait_runtime < -limit)) {
260 se->wait_runtime = -limit;
261 schedstat_inc(se, wait_runtime_underruns);
262 schedstat_inc(cfs_rq, wait_runtime_underruns);
263 }
264}
265
266static inline void
267__add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta)
268{
269 se->wait_runtime += delta;
270 schedstat_add(se, sum_wait_runtime, delta);
271 limit_wait_runtime(cfs_rq, se);
272}
273
274static void
275add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta)
276{
277 schedstat_add(cfs_rq, wait_runtime, -se->wait_runtime);
278 __add_wait_runtime(cfs_rq, se, delta);
279 schedstat_add(cfs_rq, wait_runtime, se->wait_runtime);
280}
281
282/*
283 * Update the current task's runtime statistics. Skip current tasks that
284 * are not in our scheduling class.
285 */
286static inline void
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200287__update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200288{
Ingo Molnarc5dcfe72007-08-09 11:16:46 +0200289 unsigned long delta, delta_exec, delta_fair, delta_mine;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200290 struct load_weight *lw = &cfs_rq->load;
291 unsigned long load = lw->weight;
292
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200293 delta_exec = curr->delta_exec;
Ingo Molnar8179ca232007-08-02 17:41:40 +0200294 schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200295
296 curr->sum_exec_runtime += delta_exec;
297 cfs_rq->exec_clock += delta_exec;
298
Ingo Molnarfd8bb432007-08-09 11:16:46 +0200299 if (unlikely(!load))
300 return;
301
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200302 delta_fair = calc_delta_fair(delta_exec, lw);
303 delta_mine = calc_delta_mine(delta_exec, curr->load.weight, lw);
304
Ingo Molnar0915c4e2007-08-09 11:16:45 +0200305 if (cfs_rq->sleeper_bonus > sysctl_sched_granularity) {
Ingo Molnar5d2b3d32007-08-12 18:08:19 +0200306 delta = min(cfs_rq->sleeper_bonus, (u64)delta_exec);
307 delta = calc_delta_mine(delta, curr->load.weight, lw);
308 delta = min((u64)delta, cfs_rq->sleeper_bonus);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200309 cfs_rq->sleeper_bonus -= delta;
310 delta_mine -= delta;
311 }
312
313 cfs_rq->fair_clock += delta_fair;
314 /*
315 * We executed delta_exec amount of time on the CPU,
316 * but we were only entitled to delta_mine amount of
317 * time during that period (if nr_running == 1 then
318 * the two values are equal)
319 * [Note: delta_mine - delta_exec is negative]:
320 */
321 add_wait_runtime(cfs_rq, curr, delta_mine - delta_exec);
322}
323
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200324static void update_curr(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200325{
326 struct sched_entity *curr = cfs_rq_curr(cfs_rq);
327 unsigned long delta_exec;
328
329 if (unlikely(!curr))
330 return;
331
332 /*
333 * Get the amount of time the current task was running
334 * since the last time we changed load (this cannot
335 * overflow on 32 bits):
336 */
Ingo Molnard2819182007-08-09 11:16:47 +0200337 delta_exec = (unsigned long)(rq_of(cfs_rq)->clock - curr->exec_start);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200338
339 curr->delta_exec += delta_exec;
340
341 if (unlikely(curr->delta_exec > sysctl_sched_stat_granularity)) {
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200342 __update_curr(cfs_rq, curr);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200343 curr->delta_exec = 0;
344 }
Ingo Molnard2819182007-08-09 11:16:47 +0200345 curr->exec_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200346}
347
348static inline void
Ingo Molnar5870db52007-08-09 11:16:47 +0200349update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200350{
351 se->wait_start_fair = cfs_rq->fair_clock;
Ingo Molnard2819182007-08-09 11:16:47 +0200352 schedstat_set(se->wait_start, rq_of(cfs_rq)->clock);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200353}
354
355/*
356 * We calculate fair deltas here, so protect against the random effects
357 * of a multiplication overflow by capping it to the runtime limit:
358 */
359#if BITS_PER_LONG == 32
360static inline unsigned long
361calc_weighted(unsigned long delta, unsigned long weight, int shift)
362{
363 u64 tmp = (u64)delta * weight >> shift;
364
365 if (unlikely(tmp > sysctl_sched_runtime_limit*2))
366 return sysctl_sched_runtime_limit*2;
367 return tmp;
368}
369#else
370static inline unsigned long
371calc_weighted(unsigned long delta, unsigned long weight, int shift)
372{
373 return delta * weight >> shift;
374}
375#endif
376
377/*
378 * Task is being enqueued - update stats:
379 */
Ingo Molnard2417e52007-08-09 11:16:47 +0200380static void update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200381{
382 s64 key;
383
384 /*
385 * Are we enqueueing a waiting task? (for current tasks
386 * a dequeue/enqueue event is a NOP)
387 */
388 if (se != cfs_rq_curr(cfs_rq))
Ingo Molnar5870db52007-08-09 11:16:47 +0200389 update_stats_wait_start(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200390 /*
391 * Update the key:
392 */
393 key = cfs_rq->fair_clock;
394
395 /*
396 * Optimize the common nice 0 case:
397 */
398 if (likely(se->load.weight == NICE_0_LOAD)) {
399 key -= se->wait_runtime;
400 } else {
401 u64 tmp;
402
403 if (se->wait_runtime < 0) {
404 tmp = -se->wait_runtime;
405 key += (tmp * se->load.inv_weight) >>
406 (WMULT_SHIFT - NICE_0_SHIFT);
407 } else {
408 tmp = se->wait_runtime;
Ingo Molnara69edb52007-08-09 11:16:52 +0200409 key -= (tmp * se->load.inv_weight) >>
410 (WMULT_SHIFT - NICE_0_SHIFT);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200411 }
412 }
413
414 se->fair_key = key;
415}
416
417/*
418 * Note: must be called with a freshly updated rq->fair_clock.
419 */
420static inline void
Ingo Molnareac55ea2007-08-09 11:16:47 +0200421__update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200422{
423 unsigned long delta_fair = se->delta_fair_run;
424
Ingo Molnard2819182007-08-09 11:16:47 +0200425 schedstat_set(se->wait_max, max(se->wait_max,
426 rq_of(cfs_rq)->clock - se->wait_start));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200427
428 if (unlikely(se->load.weight != NICE_0_LOAD))
429 delta_fair = calc_weighted(delta_fair, se->load.weight,
430 NICE_0_SHIFT);
431
432 add_wait_runtime(cfs_rq, se, delta_fair);
433}
434
435static void
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200436update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200437{
438 unsigned long delta_fair;
439
440 delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit),
441 (u64)(cfs_rq->fair_clock - se->wait_start_fair));
442
443 se->delta_fair_run += delta_fair;
444 if (unlikely(abs(se->delta_fair_run) >=
445 sysctl_sched_stat_granularity)) {
Ingo Molnareac55ea2007-08-09 11:16:47 +0200446 __update_stats_wait_end(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200447 se->delta_fair_run = 0;
448 }
449
450 se->wait_start_fair = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +0200451 schedstat_set(se->wait_start, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200452}
453
454static inline void
Ingo Molnar19b6a2e2007-08-09 11:16:48 +0200455update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200456{
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200457 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200458 /*
459 * Mark the end of the wait period if dequeueing a
460 * waiting task:
461 */
462 if (se != cfs_rq_curr(cfs_rq))
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200463 update_stats_wait_end(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200464}
465
466/*
467 * We are picking a new current task - update its stats:
468 */
469static inline void
Ingo Molnar79303e92007-08-09 11:16:47 +0200470update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200471{
472 /*
473 * We are starting a new run period:
474 */
Ingo Molnard2819182007-08-09 11:16:47 +0200475 se->exec_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200476}
477
478/*
479 * We are descheduling a task - update its stats:
480 */
481static inline void
Ingo Molnarc7e9b5b2007-08-09 11:16:48 +0200482update_stats_curr_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200483{
484 se->exec_start = 0;
485}
486
487/**************************************************
488 * Scheduling class queueing methods:
489 */
490
Ingo Molnardfdc1192007-08-09 11:16:48 +0200491static void __enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200492{
493 unsigned long load = cfs_rq->load.weight, delta_fair;
494 long prev_runtime;
495
496 if (sysctl_sched_features & SCHED_FEAT_SLEEPER_LOAD_AVG)
497 load = rq_of(cfs_rq)->cpu_load[2];
498
499 delta_fair = se->delta_fair_sleep;
500
501 /*
502 * Fix up delta_fair with the effect of us running
503 * during the whole sleep period:
504 */
505 if (sysctl_sched_features & SCHED_FEAT_SLEEPER_AVG)
506 delta_fair = div64_likely32((u64)delta_fair * load,
507 load + se->load.weight);
508
509 if (unlikely(se->load.weight != NICE_0_LOAD))
510 delta_fair = calc_weighted(delta_fair, se->load.weight,
511 NICE_0_SHIFT);
512
513 prev_runtime = se->wait_runtime;
514 __add_wait_runtime(cfs_rq, se, delta_fair);
515 delta_fair = se->wait_runtime - prev_runtime;
516
517 /*
518 * Track the amount of bonus we've given to sleepers:
519 */
520 cfs_rq->sleeper_bonus += delta_fair;
Ingo Molnar5d2b3d32007-08-12 18:08:19 +0200521 if (unlikely(cfs_rq->sleeper_bonus > sysctl_sched_runtime_limit))
522 cfs_rq->sleeper_bonus = sysctl_sched_runtime_limit;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200523
524 schedstat_add(cfs_rq, wait_runtime, se->wait_runtime);
525}
526
Ingo Molnar2396af62007-08-09 11:16:48 +0200527static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200528{
529 struct task_struct *tsk = task_of(se);
530 unsigned long delta_fair;
531
532 if ((entity_is_task(se) && tsk->policy == SCHED_BATCH) ||
533 !(sysctl_sched_features & SCHED_FEAT_FAIR_SLEEPERS))
534 return;
535
536 delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit),
537 (u64)(cfs_rq->fair_clock - se->sleep_start_fair));
538
539 se->delta_fair_sleep += delta_fair;
540 if (unlikely(abs(se->delta_fair_sleep) >=
541 sysctl_sched_stat_granularity)) {
Ingo Molnardfdc1192007-08-09 11:16:48 +0200542 __enqueue_sleeper(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200543 se->delta_fair_sleep = 0;
544 }
545
546 se->sleep_start_fair = 0;
547
548#ifdef CONFIG_SCHEDSTATS
549 if (se->sleep_start) {
Ingo Molnard2819182007-08-09 11:16:47 +0200550 u64 delta = rq_of(cfs_rq)->clock - se->sleep_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200551
552 if ((s64)delta < 0)
553 delta = 0;
554
555 if (unlikely(delta > se->sleep_max))
556 se->sleep_max = delta;
557
558 se->sleep_start = 0;
559 se->sum_sleep_runtime += delta;
560 }
561 if (se->block_start) {
Ingo Molnard2819182007-08-09 11:16:47 +0200562 u64 delta = rq_of(cfs_rq)->clock - se->block_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200563
564 if ((s64)delta < 0)
565 delta = 0;
566
567 if (unlikely(delta > se->block_max))
568 se->block_max = delta;
569
570 se->block_start = 0;
571 se->sum_sleep_runtime += delta;
572 }
573#endif
574}
575
576static void
Ingo Molnar668031c2007-08-09 11:16:48 +0200577enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int wakeup)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200578{
579 /*
580 * Update the fair clock.
581 */
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200582 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200583
584 if (wakeup)
Ingo Molnar2396af62007-08-09 11:16:48 +0200585 enqueue_sleeper(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200586
Ingo Molnard2417e52007-08-09 11:16:47 +0200587 update_stats_enqueue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200588 __enqueue_entity(cfs_rq, se);
589}
590
591static void
Ingo Molnar525c2712007-08-09 11:16:48 +0200592dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int sleep)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200593{
Ingo Molnar19b6a2e2007-08-09 11:16:48 +0200594 update_stats_dequeue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200595 if (sleep) {
596 se->sleep_start_fair = cfs_rq->fair_clock;
597#ifdef CONFIG_SCHEDSTATS
598 if (entity_is_task(se)) {
599 struct task_struct *tsk = task_of(se);
600
601 if (tsk->state & TASK_INTERRUPTIBLE)
Ingo Molnard2819182007-08-09 11:16:47 +0200602 se->sleep_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200603 if (tsk->state & TASK_UNINTERRUPTIBLE)
Ingo Molnard2819182007-08-09 11:16:47 +0200604 se->block_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200605 }
606 cfs_rq->wait_runtime -= se->wait_runtime;
607#endif
608 }
609 __dequeue_entity(cfs_rq, se);
610}
611
612/*
613 * Preempt the current task with a newly woken task if needed:
614 */
615static void
616__check_preempt_curr_fair(struct cfs_rq *cfs_rq, struct sched_entity *se,
617 struct sched_entity *curr, unsigned long granularity)
618{
619 s64 __delta = curr->fair_key - se->fair_key;
620
621 /*
622 * Take scheduling granularity into account - do not
623 * preempt the current task unless the best task has
624 * a larger than sched_granularity fairness advantage:
625 */
626 if (__delta > niced_granularity(curr, granularity))
627 resched_task(rq_of(cfs_rq)->curr);
628}
629
630static inline void
Ingo Molnar8494f412007-08-09 11:16:48 +0200631set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200632{
633 /*
634 * Any task has to be enqueued before it get to execute on
635 * a CPU. So account for the time it spent waiting on the
636 * runqueue. (note, here we rely on pick_next_task() having
637 * done a put_prev_task_fair() shortly before this, which
638 * updated rq->fair_clock - used by update_stats_wait_end())
639 */
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200640 update_stats_wait_end(cfs_rq, se);
Ingo Molnar79303e92007-08-09 11:16:47 +0200641 update_stats_curr_start(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200642 set_cfs_rq_curr(cfs_rq, se);
643}
644
Ingo Molnar9948f4b2007-08-09 11:16:48 +0200645static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200646{
647 struct sched_entity *se = __pick_next_entity(cfs_rq);
648
Ingo Molnar8494f412007-08-09 11:16:48 +0200649 set_next_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200650
651 return se;
652}
653
Ingo Molnarab6cde22007-08-09 11:16:48 +0200654static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200655{
656 /*
657 * If still on the runqueue then deactivate_task()
658 * was not called and update_curr() has to be done:
659 */
660 if (prev->on_rq)
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200661 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200662
Ingo Molnarc7e9b5b2007-08-09 11:16:48 +0200663 update_stats_curr_end(cfs_rq, prev);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200664
665 if (prev->on_rq)
Ingo Molnar5870db52007-08-09 11:16:47 +0200666 update_stats_wait_start(cfs_rq, prev);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200667 set_cfs_rq_curr(cfs_rq, NULL);
668}
669
670static void entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
671{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200672 struct sched_entity *next;
Ingo Molnarc1b3da32007-08-09 11:16:47 +0200673
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200674 /*
675 * Dequeue and enqueue the task to update its
676 * position within the tree:
677 */
Ingo Molnar525c2712007-08-09 11:16:48 +0200678 dequeue_entity(cfs_rq, curr, 0);
Ingo Molnar668031c2007-08-09 11:16:48 +0200679 enqueue_entity(cfs_rq, curr, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200680
681 /*
682 * Reschedule if another task tops the current one.
683 */
684 next = __pick_next_entity(cfs_rq);
685 if (next == curr)
686 return;
687
688 __check_preempt_curr_fair(cfs_rq, next, curr, sysctl_sched_granularity);
689}
690
691/**************************************************
692 * CFS operations on tasks:
693 */
694
695#ifdef CONFIG_FAIR_GROUP_SCHED
696
697/* Walk up scheduling entities hierarchy */
698#define for_each_sched_entity(se) \
699 for (; se; se = se->parent)
700
701static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
702{
703 return p->se.cfs_rq;
704}
705
706/* runqueue on which this entity is (to be) queued */
707static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
708{
709 return se->cfs_rq;
710}
711
712/* runqueue "owned" by this group */
713static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
714{
715 return grp->my_q;
716}
717
718/* Given a group's cfs_rq on one cpu, return its corresponding cfs_rq on
719 * another cpu ('this_cpu')
720 */
721static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
722{
723 /* A later patch will take group into account */
724 return &cpu_rq(this_cpu)->cfs;
725}
726
727/* Iterate thr' all leaf cfs_rq's on a runqueue */
728#define for_each_leaf_cfs_rq(rq, cfs_rq) \
729 list_for_each_entry(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list)
730
731/* Do the two (enqueued) tasks belong to the same group ? */
732static inline int is_same_group(struct task_struct *curr, struct task_struct *p)
733{
734 if (curr->se.cfs_rq == p->se.cfs_rq)
735 return 1;
736
737 return 0;
738}
739
740#else /* CONFIG_FAIR_GROUP_SCHED */
741
742#define for_each_sched_entity(se) \
743 for (; se; se = NULL)
744
745static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
746{
747 return &task_rq(p)->cfs;
748}
749
750static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
751{
752 struct task_struct *p = task_of(se);
753 struct rq *rq = task_rq(p);
754
755 return &rq->cfs;
756}
757
758/* runqueue "owned" by this group */
759static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
760{
761 return NULL;
762}
763
764static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
765{
766 return &cpu_rq(this_cpu)->cfs;
767}
768
769#define for_each_leaf_cfs_rq(rq, cfs_rq) \
770 for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL)
771
772static inline int is_same_group(struct task_struct *curr, struct task_struct *p)
773{
774 return 1;
775}
776
777#endif /* CONFIG_FAIR_GROUP_SCHED */
778
779/*
780 * The enqueue_task method is called before nr_running is
781 * increased. Here we update the fair scheduling stats and
782 * then put the task into the rbtree:
783 */
Ingo Molnarfd390f62007-08-09 11:16:48 +0200784static void enqueue_task_fair(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200785{
786 struct cfs_rq *cfs_rq;
787 struct sched_entity *se = &p->se;
788
789 for_each_sched_entity(se) {
790 if (se->on_rq)
791 break;
792 cfs_rq = cfs_rq_of(se);
Ingo Molnar668031c2007-08-09 11:16:48 +0200793 enqueue_entity(cfs_rq, se, wakeup);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200794 }
795}
796
797/*
798 * The dequeue_task method is called before nr_running is
799 * decreased. We remove the task from the rbtree and
800 * update the fair scheduling stats:
801 */
Ingo Molnarf02231e2007-08-09 11:16:48 +0200802static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200803{
804 struct cfs_rq *cfs_rq;
805 struct sched_entity *se = &p->se;
806
807 for_each_sched_entity(se) {
808 cfs_rq = cfs_rq_of(se);
Ingo Molnar525c2712007-08-09 11:16:48 +0200809 dequeue_entity(cfs_rq, se, sleep);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200810 /* Don't dequeue parent if it has other entities besides us */
811 if (cfs_rq->load.weight)
812 break;
813 }
814}
815
816/*
817 * sched_yield() support is very simple - we dequeue and enqueue
818 */
819static void yield_task_fair(struct rq *rq, struct task_struct *p)
820{
821 struct cfs_rq *cfs_rq = task_cfs_rq(p);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200822
Ingo Molnarc1b3da32007-08-09 11:16:47 +0200823 __update_rq_clock(rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200824 /*
825 * Dequeue and enqueue the task to update its
826 * position within the tree:
827 */
Ingo Molnar525c2712007-08-09 11:16:48 +0200828 dequeue_entity(cfs_rq, &p->se, 0);
Ingo Molnar668031c2007-08-09 11:16:48 +0200829 enqueue_entity(cfs_rq, &p->se, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200830}
831
832/*
833 * Preempt the current task with a newly woken task if needed:
834 */
835static void check_preempt_curr_fair(struct rq *rq, struct task_struct *p)
836{
837 struct task_struct *curr = rq->curr;
838 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
839 unsigned long gran;
840
841 if (unlikely(rt_prio(p->prio))) {
Ingo Molnara8e504d2007-08-09 11:16:47 +0200842 update_rq_clock(rq);
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200843 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200844 resched_task(curr);
845 return;
846 }
847
848 gran = sysctl_sched_wakeup_granularity;
849 /*
850 * Batch tasks prefer throughput over latency:
851 */
852 if (unlikely(p->policy == SCHED_BATCH))
853 gran = sysctl_sched_batch_wakeup_granularity;
854
855 if (is_same_group(curr, p))
856 __check_preempt_curr_fair(cfs_rq, &p->se, &curr->se, gran);
857}
858
Ingo Molnarfb8d4722007-08-09 11:16:48 +0200859static struct task_struct *pick_next_task_fair(struct rq *rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200860{
861 struct cfs_rq *cfs_rq = &rq->cfs;
862 struct sched_entity *se;
863
864 if (unlikely(!cfs_rq->nr_running))
865 return NULL;
866
867 do {
Ingo Molnar9948f4b2007-08-09 11:16:48 +0200868 se = pick_next_entity(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200869 cfs_rq = group_cfs_rq(se);
870 } while (cfs_rq);
871
872 return task_of(se);
873}
874
875/*
876 * Account for a descheduled task:
877 */
Ingo Molnar31ee5292007-08-09 11:16:49 +0200878static void put_prev_task_fair(struct rq *rq, struct task_struct *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200879{
880 struct sched_entity *se = &prev->se;
881 struct cfs_rq *cfs_rq;
882
883 for_each_sched_entity(se) {
884 cfs_rq = cfs_rq_of(se);
Ingo Molnarab6cde22007-08-09 11:16:48 +0200885 put_prev_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200886 }
887}
888
889/**************************************************
890 * Fair scheduling class load-balancing methods:
891 */
892
893/*
894 * Load-balancing iterator. Note: while the runqueue stays locked
895 * during the whole iteration, the current task might be
896 * dequeued so the iterator has to be dequeue-safe. Here we
897 * achieve that by always pre-iterating before returning
898 * the current task:
899 */
900static inline struct task_struct *
901__load_balance_iterator(struct cfs_rq *cfs_rq, struct rb_node *curr)
902{
903 struct task_struct *p;
904
905 if (!curr)
906 return NULL;
907
908 p = rb_entry(curr, struct task_struct, se.run_node);
909 cfs_rq->rb_load_balance_curr = rb_next(curr);
910
911 return p;
912}
913
914static struct task_struct *load_balance_start_fair(void *arg)
915{
916 struct cfs_rq *cfs_rq = arg;
917
918 return __load_balance_iterator(cfs_rq, first_fair(cfs_rq));
919}
920
921static struct task_struct *load_balance_next_fair(void *arg)
922{
923 struct cfs_rq *cfs_rq = arg;
924
925 return __load_balance_iterator(cfs_rq, cfs_rq->rb_load_balance_curr);
926}
927
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200928#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200929static int cfs_rq_best_prio(struct cfs_rq *cfs_rq)
930{
931 struct sched_entity *curr;
932 struct task_struct *p;
933
934 if (!cfs_rq->nr_running)
935 return MAX_PRIO;
936
937 curr = __pick_next_entity(cfs_rq);
938 p = task_of(curr);
939
940 return p->prio;
941}
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200942#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200943
Peter Williams43010652007-08-09 11:16:46 +0200944static unsigned long
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200945load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200946 unsigned long max_nr_move, unsigned long max_load_move,
947 struct sched_domain *sd, enum cpu_idle_type idle,
948 int *all_pinned, int *this_best_prio)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200949{
950 struct cfs_rq *busy_cfs_rq;
951 unsigned long load_moved, total_nr_moved = 0, nr_moved;
952 long rem_load_move = max_load_move;
953 struct rq_iterator cfs_rq_iterator;
954
955 cfs_rq_iterator.start = load_balance_start_fair;
956 cfs_rq_iterator.next = load_balance_next_fair;
957
958 for_each_leaf_cfs_rq(busiest, busy_cfs_rq) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200959#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200960 struct cfs_rq *this_cfs_rq;
Ingo Molnare56f31a2007-08-10 23:05:11 +0200961 long imbalance;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200962 unsigned long maxload;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200963
964 this_cfs_rq = cpu_cfs_rq(busy_cfs_rq, this_cpu);
965
Ingo Molnare56f31a2007-08-10 23:05:11 +0200966 imbalance = busy_cfs_rq->load.weight - this_cfs_rq->load.weight;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200967 /* Don't pull if this_cfs_rq has more load than busy_cfs_rq */
968 if (imbalance <= 0)
969 continue;
970
971 /* Don't pull more than imbalance/2 */
972 imbalance /= 2;
973 maxload = min(rem_load_move, imbalance);
974
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200975 *this_best_prio = cfs_rq_best_prio(this_cfs_rq);
976#else
Ingo Molnare56f31a2007-08-10 23:05:11 +0200977# define maxload rem_load_move
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200978#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200979 /* pass busy_cfs_rq argument into
980 * load_balance_[start|next]_fair iterators
981 */
982 cfs_rq_iterator.arg = busy_cfs_rq;
983 nr_moved = balance_tasks(this_rq, this_cpu, busiest,
984 max_nr_move, maxload, sd, idle, all_pinned,
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200985 &load_moved, this_best_prio, &cfs_rq_iterator);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200986
987 total_nr_moved += nr_moved;
988 max_nr_move -= nr_moved;
989 rem_load_move -= load_moved;
990
991 if (max_nr_move <= 0 || rem_load_move <= 0)
992 break;
993 }
994
Peter Williams43010652007-08-09 11:16:46 +0200995 return max_load_move - rem_load_move;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200996}
997
998/*
999 * scheduler tick hitting a task of our scheduling class:
1000 */
1001static void task_tick_fair(struct rq *rq, struct task_struct *curr)
1002{
1003 struct cfs_rq *cfs_rq;
1004 struct sched_entity *se = &curr->se;
1005
1006 for_each_sched_entity(se) {
1007 cfs_rq = cfs_rq_of(se);
1008 entity_tick(cfs_rq, se);
1009 }
1010}
1011
1012/*
1013 * Share the fairness runtime between parent and child, thus the
1014 * total amount of pressure for CPU stays equal - new tasks
1015 * get a chance to run but frequent forkers are not allowed to
1016 * monopolize the CPU. Note: the parent runqueue is locked,
1017 * the child is not running yet.
1018 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001019static void task_new_fair(struct rq *rq, struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001020{
1021 struct cfs_rq *cfs_rq = task_cfs_rq(p);
1022 struct sched_entity *se = &p->se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001023
1024 sched_info_queued(p);
1025
Ingo Molnard2417e52007-08-09 11:16:47 +02001026 update_stats_enqueue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001027 /*
1028 * Child runs first: we let it run before the parent
1029 * until it reschedules once. We set up the key so that
1030 * it will preempt the parent:
1031 */
1032 p->se.fair_key = current->se.fair_key -
1033 niced_granularity(&rq->curr->se, sysctl_sched_granularity) - 1;
1034 /*
1035 * The first wait is dominated by the child-runs-first logic,
1036 * so do not credit it with that waiting time yet:
1037 */
1038 if (sysctl_sched_features & SCHED_FEAT_SKIP_INITIAL)
1039 p->se.wait_start_fair = 0;
1040
1041 /*
1042 * The statistical average of wait_runtime is about
1043 * -granularity/2, so initialize the task with that:
1044 */
1045 if (sysctl_sched_features & SCHED_FEAT_START_DEBIT)
1046 p->se.wait_runtime = -(sysctl_sched_granularity / 2);
1047
1048 __enqueue_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001049}
1050
1051#ifdef CONFIG_FAIR_GROUP_SCHED
1052/* Account for a task changing its policy or group.
1053 *
1054 * This routine is mostly called to set cfs_rq->curr field when a task
1055 * migrates between groups/classes.
1056 */
1057static void set_curr_task_fair(struct rq *rq)
1058{
Bruce Ashfield7c6c16f2007-08-24 20:39:10 +02001059 struct sched_entity *se = &rq->curr->se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001060
Ingo Molnarc3b64f12007-08-09 11:16:51 +02001061 for_each_sched_entity(se)
1062 set_next_entity(cfs_rq_of(se), se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001063}
1064#else
1065static void set_curr_task_fair(struct rq *rq)
1066{
1067}
1068#endif
1069
1070/*
1071 * All the scheduling class methods:
1072 */
1073struct sched_class fair_sched_class __read_mostly = {
1074 .enqueue_task = enqueue_task_fair,
1075 .dequeue_task = dequeue_task_fair,
1076 .yield_task = yield_task_fair,
1077
1078 .check_preempt_curr = check_preempt_curr_fair,
1079
1080 .pick_next_task = pick_next_task_fair,
1081 .put_prev_task = put_prev_task_fair,
1082
1083 .load_balance = load_balance_fair,
1084
1085 .set_curr_task = set_curr_task_fair,
1086 .task_tick = task_tick_fair,
1087 .task_new = task_new_fair,
1088};
1089
1090#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar5cef9ec2007-08-09 11:16:47 +02001091static void print_cfs_stats(struct seq_file *m, int cpu)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001092{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001093 struct cfs_rq *cfs_rq;
1094
Ingo Molnarc3b64f12007-08-09 11:16:51 +02001095 for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq)
Ingo Molnar5cef9ec2007-08-09 11:16:47 +02001096 print_cfs_rq(m, cpu, cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001097}
1098#endif