Enable lguest drivers in Kconfig
[linux-2.6/libata-dev.git] / kernel / sched_fair.c
blob6f579ff5a9bc93abd215cda93d9d7b9617ce7f4c
1 /*
2 * Completely Fair Scheduling (CFS) Class (SCHED_NORMAL/SCHED_BATCH)
4 * Copyright (C) 2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
6 * Interactivity improvements by Mike Galbraith
7 * (C) 2007 Mike Galbraith <efault@gmx.de>
9 * Various enhancements by Dmitry Adamushko.
10 * (C) 2007 Dmitry Adamushko <dmitry.adamushko@gmail.com>
12 * Group scheduling enhancements by Srivatsa Vaddagiri
13 * Copyright IBM Corporation, 2007
14 * Author: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
16 * Scaled math optimizations by Thomas Gleixner
17 * Copyright (C) 2007, Thomas Gleixner <tglx@linutronix.de>
21 * Preemption granularity:
22 * (default: 2 msec, units: nanoseconds)
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)
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.)
34 unsigned int sysctl_sched_granularity __read_mostly = 2000000000ULL/HZ;
37 * SCHED_BATCH wake-up granularity.
38 * (default: 10 msec, units: nanoseconds)
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.
44 unsigned int sysctl_sched_batch_wakeup_granularity __read_mostly =
45 10000000000ULL/HZ;
48 * SCHED_OTHER wake-up granularity.
49 * (default: 1 msec, units: nanoseconds)
51 * This option delays the preemption effects of decoupled workloads
52 * and reduces their over-scheduling. Synchronous workloads will still
53 * have immediate wakeup/sleep latencies.
55 unsigned int sysctl_sched_wakeup_granularity __read_mostly = 1000000000ULL/HZ;
57 unsigned int sysctl_sched_stat_granularity __read_mostly;
60 * Initialized in sched_init_granularity():
62 unsigned int sysctl_sched_runtime_limit __read_mostly;
65 * Debugging: various feature bits
67 enum {
68 SCHED_FEAT_FAIR_SLEEPERS = 1,
69 SCHED_FEAT_SLEEPER_AVG = 2,
70 SCHED_FEAT_SLEEPER_LOAD_AVG = 4,
71 SCHED_FEAT_PRECISE_CPU_LOAD = 8,
72 SCHED_FEAT_START_DEBIT = 16,
73 SCHED_FEAT_SKIP_INITIAL = 32,
76 unsigned int sysctl_sched_features __read_mostly =
77 SCHED_FEAT_FAIR_SLEEPERS *1 |
78 SCHED_FEAT_SLEEPER_AVG *1 |
79 SCHED_FEAT_SLEEPER_LOAD_AVG *1 |
80 SCHED_FEAT_PRECISE_CPU_LOAD *1 |
81 SCHED_FEAT_START_DEBIT *1 |
82 SCHED_FEAT_SKIP_INITIAL *0;
84 extern struct sched_class fair_sched_class;
86 /**************************************************************
87 * CFS operations on generic schedulable entities:
90 #ifdef CONFIG_FAIR_GROUP_SCHED
92 /* cpu runqueue to which this cfs_rq is attached */
93 static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
95 return cfs_rq->rq;
98 /* currently running entity (if any) on this cfs_rq */
99 static inline struct sched_entity *cfs_rq_curr(struct cfs_rq *cfs_rq)
101 return cfs_rq->curr;
104 /* An entity is a task if it doesn't "own" a runqueue */
105 #define entity_is_task(se) (!se->my_q)
107 static inline void
108 set_cfs_rq_curr(struct cfs_rq *cfs_rq, struct sched_entity *se)
110 cfs_rq->curr = se;
113 #else /* CONFIG_FAIR_GROUP_SCHED */
115 static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
117 return container_of(cfs_rq, struct rq, cfs);
120 static inline struct sched_entity *cfs_rq_curr(struct cfs_rq *cfs_rq)
122 struct rq *rq = rq_of(cfs_rq);
124 if (unlikely(rq->curr->sched_class != &fair_sched_class))
125 return NULL;
127 return &rq->curr->se;
130 #define entity_is_task(se) 1
132 static inline void
133 set_cfs_rq_curr(struct cfs_rq *cfs_rq, struct sched_entity *se) { }
135 #endif /* CONFIG_FAIR_GROUP_SCHED */
137 static inline struct task_struct *task_of(struct sched_entity *se)
139 return container_of(se, struct task_struct, se);
143 /**************************************************************
144 * Scheduling class tree data structure manipulation methods:
148 * Enqueue an entity into the rb-tree:
150 static inline void
151 __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
153 struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
154 struct rb_node *parent = NULL;
155 struct sched_entity *entry;
156 s64 key = se->fair_key;
157 int leftmost = 1;
160 * Find the right place in the rbtree:
162 while (*link) {
163 parent = *link;
164 entry = rb_entry(parent, struct sched_entity, run_node);
166 * We dont care about collisions. Nodes with
167 * the same key stay together.
169 if (key - entry->fair_key < 0) {
170 link = &parent->rb_left;
171 } else {
172 link = &parent->rb_right;
173 leftmost = 0;
178 * Maintain a cache of leftmost tree entries (it is frequently
179 * used):
181 if (leftmost)
182 cfs_rq->rb_leftmost = &se->run_node;
184 rb_link_node(&se->run_node, parent, link);
185 rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
186 update_load_add(&cfs_rq->load, se->load.weight);
187 cfs_rq->nr_running++;
188 se->on_rq = 1;
191 static inline void
192 __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
194 if (cfs_rq->rb_leftmost == &se->run_node)
195 cfs_rq->rb_leftmost = rb_next(&se->run_node);
196 rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
197 update_load_sub(&cfs_rq->load, se->load.weight);
198 cfs_rq->nr_running--;
199 se->on_rq = 0;
202 static inline struct rb_node *first_fair(struct cfs_rq *cfs_rq)
204 return cfs_rq->rb_leftmost;
207 static struct sched_entity *__pick_next_entity(struct cfs_rq *cfs_rq)
209 return rb_entry(first_fair(cfs_rq), struct sched_entity, run_node);
212 /**************************************************************
213 * Scheduling class statistics methods:
217 * We rescale the rescheduling granularity of tasks according to their
218 * nice level, but only linearly, not exponentially:
220 static long
221 niced_granularity(struct sched_entity *curr, unsigned long granularity)
223 u64 tmp;
226 * Negative nice levels get the same granularity as nice-0:
228 if (likely(curr->load.weight >= NICE_0_LOAD))
229 return granularity;
231 * Positive nice level tasks get linearly finer
232 * granularity:
234 tmp = curr->load.weight * (u64)granularity;
237 * It will always fit into 'long':
239 return (long) (tmp >> NICE_0_SHIFT);
242 static inline void
243 limit_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se)
245 long limit = sysctl_sched_runtime_limit;
248 * Niced tasks have the same history dynamic range as
249 * non-niced tasks:
251 if (unlikely(se->wait_runtime > limit)) {
252 se->wait_runtime = limit;
253 schedstat_inc(se, wait_runtime_overruns);
254 schedstat_inc(cfs_rq, wait_runtime_overruns);
256 if (unlikely(se->wait_runtime < -limit)) {
257 se->wait_runtime = -limit;
258 schedstat_inc(se, wait_runtime_underruns);
259 schedstat_inc(cfs_rq, wait_runtime_underruns);
263 static inline void
264 __add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta)
266 se->wait_runtime += delta;
267 schedstat_add(se, sum_wait_runtime, delta);
268 limit_wait_runtime(cfs_rq, se);
271 static void
272 add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta)
274 schedstat_add(cfs_rq, wait_runtime, -se->wait_runtime);
275 __add_wait_runtime(cfs_rq, se, delta);
276 schedstat_add(cfs_rq, wait_runtime, se->wait_runtime);
280 * Update the current task's runtime statistics. Skip current tasks that
281 * are not in our scheduling class.
283 static inline void
284 __update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr, u64 now)
286 unsigned long delta, delta_exec, delta_fair;
287 long delta_mine;
288 struct load_weight *lw = &cfs_rq->load;
289 unsigned long load = lw->weight;
291 if (unlikely(!load))
292 return;
294 delta_exec = curr->delta_exec;
295 schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max));
297 curr->sum_exec_runtime += delta_exec;
298 cfs_rq->exec_clock += delta_exec;
300 delta_fair = calc_delta_fair(delta_exec, lw);
301 delta_mine = calc_delta_mine(delta_exec, curr->load.weight, lw);
303 if (cfs_rq->sleeper_bonus > sysctl_sched_stat_granularity) {
304 delta = calc_delta_mine(cfs_rq->sleeper_bonus,
305 curr->load.weight, lw);
306 if (unlikely(delta > cfs_rq->sleeper_bonus))
307 delta = cfs_rq->sleeper_bonus;
309 cfs_rq->sleeper_bonus -= delta;
310 delta_mine -= delta;
313 cfs_rq->fair_clock += delta_fair;
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]:
321 add_wait_runtime(cfs_rq, curr, delta_mine - delta_exec);
324 static void update_curr(struct cfs_rq *cfs_rq, u64 now)
326 struct sched_entity *curr = cfs_rq_curr(cfs_rq);
327 unsigned long delta_exec;
329 if (unlikely(!curr))
330 return;
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):
337 delta_exec = (unsigned long)(now - curr->exec_start);
339 curr->delta_exec += delta_exec;
341 if (unlikely(curr->delta_exec > sysctl_sched_stat_granularity)) {
342 __update_curr(cfs_rq, curr, now);
343 curr->delta_exec = 0;
345 curr->exec_start = now;
348 static inline void
349 update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
351 se->wait_start_fair = cfs_rq->fair_clock;
352 schedstat_set(se->wait_start, now);
356 * We calculate fair deltas here, so protect against the random effects
357 * of a multiplication overflow by capping it to the runtime limit:
359 #if BITS_PER_LONG == 32
360 static inline unsigned long
361 calc_weighted(unsigned long delta, unsigned long weight, int shift)
363 u64 tmp = (u64)delta * weight >> shift;
365 if (unlikely(tmp > sysctl_sched_runtime_limit*2))
366 return sysctl_sched_runtime_limit*2;
367 return tmp;
369 #else
370 static inline unsigned long
371 calc_weighted(unsigned long delta, unsigned long weight, int shift)
373 return delta * weight >> shift;
375 #endif
378 * Task is being enqueued - update stats:
380 static void
381 update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
383 s64 key;
386 * Are we enqueueing a waiting task? (for current tasks
387 * a dequeue/enqueue event is a NOP)
389 if (se != cfs_rq_curr(cfs_rq))
390 update_stats_wait_start(cfs_rq, se, now);
392 * Update the key:
394 key = cfs_rq->fair_clock;
397 * Optimize the common nice 0 case:
399 if (likely(se->load.weight == NICE_0_LOAD)) {
400 key -= se->wait_runtime;
401 } else {
402 u64 tmp;
404 if (se->wait_runtime < 0) {
405 tmp = -se->wait_runtime;
406 key += (tmp * se->load.inv_weight) >>
407 (WMULT_SHIFT - NICE_0_SHIFT);
408 } else {
409 tmp = se->wait_runtime;
410 key -= (tmp * se->load.weight) >> NICE_0_SHIFT;
414 se->fair_key = key;
418 * Note: must be called with a freshly updated rq->fair_clock.
420 static inline void
421 __update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
423 unsigned long delta_fair = se->delta_fair_run;
425 schedstat_set(se->wait_max, max(se->wait_max, now - se->wait_start));
427 if (unlikely(se->load.weight != NICE_0_LOAD))
428 delta_fair = calc_weighted(delta_fair, se->load.weight,
429 NICE_0_SHIFT);
431 add_wait_runtime(cfs_rq, se, delta_fair);
434 static void
435 update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
437 unsigned long delta_fair;
439 delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit),
440 (u64)(cfs_rq->fair_clock - se->wait_start_fair));
442 se->delta_fair_run += delta_fair;
443 if (unlikely(abs(se->delta_fair_run) >=
444 sysctl_sched_stat_granularity)) {
445 __update_stats_wait_end(cfs_rq, se, now);
446 se->delta_fair_run = 0;
449 se->wait_start_fair = 0;
450 schedstat_set(se->wait_start, 0);
453 static inline void
454 update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
456 update_curr(cfs_rq, now);
458 * Mark the end of the wait period if dequeueing a
459 * waiting task:
461 if (se != cfs_rq_curr(cfs_rq))
462 update_stats_wait_end(cfs_rq, se, now);
466 * We are picking a new current task - update its stats:
468 static inline void
469 update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
472 * We are starting a new run period:
474 se->exec_start = now;
478 * We are descheduling a task - update its stats:
480 static inline void
481 update_stats_curr_end(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
483 se->exec_start = 0;
486 /**************************************************
487 * Scheduling class queueing methods:
490 static void
491 __enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
493 unsigned long load = cfs_rq->load.weight, delta_fair;
494 long prev_runtime;
496 if (sysctl_sched_features & SCHED_FEAT_SLEEPER_LOAD_AVG)
497 load = rq_of(cfs_rq)->cpu_load[2];
499 delta_fair = se->delta_fair_sleep;
502 * Fix up delta_fair with the effect of us running
503 * during the whole sleep period:
505 if (sysctl_sched_features & SCHED_FEAT_SLEEPER_AVG)
506 delta_fair = div64_likely32((u64)delta_fair * load,
507 load + se->load.weight);
509 if (unlikely(se->load.weight != NICE_0_LOAD))
510 delta_fair = calc_weighted(delta_fair, se->load.weight,
511 NICE_0_SHIFT);
513 prev_runtime = se->wait_runtime;
514 __add_wait_runtime(cfs_rq, se, delta_fair);
515 delta_fair = se->wait_runtime - prev_runtime;
518 * Track the amount of bonus we've given to sleepers:
520 cfs_rq->sleeper_bonus += delta_fair;
522 schedstat_add(cfs_rq, wait_runtime, se->wait_runtime);
525 static void
526 enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
528 struct task_struct *tsk = task_of(se);
529 unsigned long delta_fair;
531 if ((entity_is_task(se) && tsk->policy == SCHED_BATCH) ||
532 !(sysctl_sched_features & SCHED_FEAT_FAIR_SLEEPERS))
533 return;
535 delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit),
536 (u64)(cfs_rq->fair_clock - se->sleep_start_fair));
538 se->delta_fair_sleep += delta_fair;
539 if (unlikely(abs(se->delta_fair_sleep) >=
540 sysctl_sched_stat_granularity)) {
541 __enqueue_sleeper(cfs_rq, se, now);
542 se->delta_fair_sleep = 0;
545 se->sleep_start_fair = 0;
547 #ifdef CONFIG_SCHEDSTATS
548 if (se->sleep_start) {
549 u64 delta = now - se->sleep_start;
551 if ((s64)delta < 0)
552 delta = 0;
554 if (unlikely(delta > se->sleep_max))
555 se->sleep_max = delta;
557 se->sleep_start = 0;
558 se->sum_sleep_runtime += delta;
560 if (se->block_start) {
561 u64 delta = now - se->block_start;
563 if ((s64)delta < 0)
564 delta = 0;
566 if (unlikely(delta > se->block_max))
567 se->block_max = delta;
569 se->block_start = 0;
570 se->sum_sleep_runtime += delta;
572 #endif
575 static void
576 enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
577 int wakeup, u64 now)
580 * Update the fair clock.
582 update_curr(cfs_rq, now);
584 if (wakeup)
585 enqueue_sleeper(cfs_rq, se, now);
587 update_stats_enqueue(cfs_rq, se, now);
588 __enqueue_entity(cfs_rq, se);
591 static void
592 dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
593 int sleep, u64 now)
595 update_stats_dequeue(cfs_rq, se, now);
596 if (sleep) {
597 se->sleep_start_fair = cfs_rq->fair_clock;
598 #ifdef CONFIG_SCHEDSTATS
599 if (entity_is_task(se)) {
600 struct task_struct *tsk = task_of(se);
602 if (tsk->state & TASK_INTERRUPTIBLE)
603 se->sleep_start = now;
604 if (tsk->state & TASK_UNINTERRUPTIBLE)
605 se->block_start = now;
607 cfs_rq->wait_runtime -= se->wait_runtime;
608 #endif
610 __dequeue_entity(cfs_rq, se);
614 * Preempt the current task with a newly woken task if needed:
616 static void
617 __check_preempt_curr_fair(struct cfs_rq *cfs_rq, struct sched_entity *se,
618 struct sched_entity *curr, unsigned long granularity)
620 s64 __delta = curr->fair_key - se->fair_key;
623 * Take scheduling granularity into account - do not
624 * preempt the current task unless the best task has
625 * a larger than sched_granularity fairness advantage:
627 if (__delta > niced_granularity(curr, granularity))
628 resched_task(rq_of(cfs_rq)->curr);
631 static inline void
632 set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 now)
635 * Any task has to be enqueued before it get to execute on
636 * a CPU. So account for the time it spent waiting on the
637 * runqueue. (note, here we rely on pick_next_task() having
638 * done a put_prev_task_fair() shortly before this, which
639 * updated rq->fair_clock - used by update_stats_wait_end())
641 update_stats_wait_end(cfs_rq, se, now);
642 update_stats_curr_start(cfs_rq, se, now);
643 set_cfs_rq_curr(cfs_rq, se);
646 static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq, u64 now)
648 struct sched_entity *se = __pick_next_entity(cfs_rq);
650 set_next_entity(cfs_rq, se, now);
652 return se;
655 static void
656 put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev, u64 now)
659 * If still on the runqueue then deactivate_task()
660 * was not called and update_curr() has to be done:
662 if (prev->on_rq)
663 update_curr(cfs_rq, now);
665 update_stats_curr_end(cfs_rq, prev, now);
667 if (prev->on_rq)
668 update_stats_wait_start(cfs_rq, prev, now);
669 set_cfs_rq_curr(cfs_rq, NULL);
672 static void entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
674 struct rq *rq = rq_of(cfs_rq);
675 struct sched_entity *next;
676 u64 now = __rq_clock(rq);
679 * Dequeue and enqueue the task to update its
680 * position within the tree:
682 dequeue_entity(cfs_rq, curr, 0, now);
683 enqueue_entity(cfs_rq, curr, 0, now);
686 * Reschedule if another task tops the current one.
688 next = __pick_next_entity(cfs_rq);
689 if (next == curr)
690 return;
692 __check_preempt_curr_fair(cfs_rq, next, curr, sysctl_sched_granularity);
695 /**************************************************
696 * CFS operations on tasks:
699 #ifdef CONFIG_FAIR_GROUP_SCHED
701 /* Walk up scheduling entities hierarchy */
702 #define for_each_sched_entity(se) \
703 for (; se; se = se->parent)
705 static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
707 return p->se.cfs_rq;
710 /* runqueue on which this entity is (to be) queued */
711 static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
713 return se->cfs_rq;
716 /* runqueue "owned" by this group */
717 static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
719 return grp->my_q;
722 /* Given a group's cfs_rq on one cpu, return its corresponding cfs_rq on
723 * another cpu ('this_cpu')
725 static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
727 /* A later patch will take group into account */
728 return &cpu_rq(this_cpu)->cfs;
731 /* Iterate thr' all leaf cfs_rq's on a runqueue */
732 #define for_each_leaf_cfs_rq(rq, cfs_rq) \
733 list_for_each_entry(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list)
735 /* Do the two (enqueued) tasks belong to the same group ? */
736 static inline int is_same_group(struct task_struct *curr, struct task_struct *p)
738 if (curr->se.cfs_rq == p->se.cfs_rq)
739 return 1;
741 return 0;
744 #else /* CONFIG_FAIR_GROUP_SCHED */
746 #define for_each_sched_entity(se) \
747 for (; se; se = NULL)
749 static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
751 return &task_rq(p)->cfs;
754 static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
756 struct task_struct *p = task_of(se);
757 struct rq *rq = task_rq(p);
759 return &rq->cfs;
762 /* runqueue "owned" by this group */
763 static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
765 return NULL;
768 static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
770 return &cpu_rq(this_cpu)->cfs;
773 #define for_each_leaf_cfs_rq(rq, cfs_rq) \
774 for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL)
776 static inline int is_same_group(struct task_struct *curr, struct task_struct *p)
778 return 1;
781 #endif /* CONFIG_FAIR_GROUP_SCHED */
784 * The enqueue_task method is called before nr_running is
785 * increased. Here we update the fair scheduling stats and
786 * then put the task into the rbtree:
788 static void
789 enqueue_task_fair(struct rq *rq, struct task_struct *p, int wakeup, u64 now)
791 struct cfs_rq *cfs_rq;
792 struct sched_entity *se = &p->se;
794 for_each_sched_entity(se) {
795 if (se->on_rq)
796 break;
797 cfs_rq = cfs_rq_of(se);
798 enqueue_entity(cfs_rq, se, wakeup, now);
803 * The dequeue_task method is called before nr_running is
804 * decreased. We remove the task from the rbtree and
805 * update the fair scheduling stats:
807 static void
808 dequeue_task_fair(struct rq *rq, struct task_struct *p, int sleep, u64 now)
810 struct cfs_rq *cfs_rq;
811 struct sched_entity *se = &p->se;
813 for_each_sched_entity(se) {
814 cfs_rq = cfs_rq_of(se);
815 dequeue_entity(cfs_rq, se, sleep, now);
816 /* Don't dequeue parent if it has other entities besides us */
817 if (cfs_rq->load.weight)
818 break;
823 * sched_yield() support is very simple - we dequeue and enqueue
825 static void yield_task_fair(struct rq *rq, struct task_struct *p)
827 struct cfs_rq *cfs_rq = task_cfs_rq(p);
828 u64 now = __rq_clock(rq);
831 * Dequeue and enqueue the task to update its
832 * position within the tree:
834 dequeue_entity(cfs_rq, &p->se, 0, now);
835 enqueue_entity(cfs_rq, &p->se, 0, now);
839 * Preempt the current task with a newly woken task if needed:
841 static void check_preempt_curr_fair(struct rq *rq, struct task_struct *p)
843 struct task_struct *curr = rq->curr;
844 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
845 unsigned long gran;
847 if (unlikely(rt_prio(p->prio))) {
848 update_curr(cfs_rq, rq_clock(rq));
849 resched_task(curr);
850 return;
853 gran = sysctl_sched_wakeup_granularity;
855 * Batch tasks prefer throughput over latency:
857 if (unlikely(p->policy == SCHED_BATCH))
858 gran = sysctl_sched_batch_wakeup_granularity;
860 if (is_same_group(curr, p))
861 __check_preempt_curr_fair(cfs_rq, &p->se, &curr->se, gran);
864 static struct task_struct *pick_next_task_fair(struct rq *rq, u64 now)
866 struct cfs_rq *cfs_rq = &rq->cfs;
867 struct sched_entity *se;
869 if (unlikely(!cfs_rq->nr_running))
870 return NULL;
872 do {
873 se = pick_next_entity(cfs_rq, now);
874 cfs_rq = group_cfs_rq(se);
875 } while (cfs_rq);
877 return task_of(se);
881 * Account for a descheduled task:
883 static void put_prev_task_fair(struct rq *rq, struct task_struct *prev, u64 now)
885 struct sched_entity *se = &prev->se;
886 struct cfs_rq *cfs_rq;
888 for_each_sched_entity(se) {
889 cfs_rq = cfs_rq_of(se);
890 put_prev_entity(cfs_rq, se, now);
894 /**************************************************
895 * Fair scheduling class load-balancing methods:
899 * Load-balancing iterator. Note: while the runqueue stays locked
900 * during the whole iteration, the current task might be
901 * dequeued so the iterator has to be dequeue-safe. Here we
902 * achieve that by always pre-iterating before returning
903 * the current task:
905 static inline struct task_struct *
906 __load_balance_iterator(struct cfs_rq *cfs_rq, struct rb_node *curr)
908 struct task_struct *p;
910 if (!curr)
911 return NULL;
913 p = rb_entry(curr, struct task_struct, se.run_node);
914 cfs_rq->rb_load_balance_curr = rb_next(curr);
916 return p;
919 static struct task_struct *load_balance_start_fair(void *arg)
921 struct cfs_rq *cfs_rq = arg;
923 return __load_balance_iterator(cfs_rq, first_fair(cfs_rq));
926 static struct task_struct *load_balance_next_fair(void *arg)
928 struct cfs_rq *cfs_rq = arg;
930 return __load_balance_iterator(cfs_rq, cfs_rq->rb_load_balance_curr);
933 static int cfs_rq_best_prio(struct cfs_rq *cfs_rq)
935 struct sched_entity *curr;
936 struct task_struct *p;
938 if (!cfs_rq->nr_running)
939 return MAX_PRIO;
941 curr = __pick_next_entity(cfs_rq);
942 p = task_of(curr);
944 return p->prio;
947 static int
948 load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
949 unsigned long max_nr_move, unsigned long max_load_move,
950 struct sched_domain *sd, enum cpu_idle_type idle,
951 int *all_pinned, unsigned long *total_load_moved)
953 struct cfs_rq *busy_cfs_rq;
954 unsigned long load_moved, total_nr_moved = 0, nr_moved;
955 long rem_load_move = max_load_move;
956 struct rq_iterator cfs_rq_iterator;
958 cfs_rq_iterator.start = load_balance_start_fair;
959 cfs_rq_iterator.next = load_balance_next_fair;
961 for_each_leaf_cfs_rq(busiest, busy_cfs_rq) {
962 struct cfs_rq *this_cfs_rq;
963 long imbalance;
964 unsigned long maxload;
965 int this_best_prio, best_prio, best_prio_seen = 0;
967 this_cfs_rq = cpu_cfs_rq(busy_cfs_rq, this_cpu);
969 imbalance = busy_cfs_rq->load.weight -
970 this_cfs_rq->load.weight;
971 /* Don't pull if this_cfs_rq has more load than busy_cfs_rq */
972 if (imbalance <= 0)
973 continue;
975 /* Don't pull more than imbalance/2 */
976 imbalance /= 2;
977 maxload = min(rem_load_move, imbalance);
979 this_best_prio = cfs_rq_best_prio(this_cfs_rq);
980 best_prio = cfs_rq_best_prio(busy_cfs_rq);
983 * Enable handling of the case where there is more than one task
984 * with the best priority. If the current running task is one
985 * of those with prio==best_prio we know it won't be moved
986 * and therefore it's safe to override the skip (based on load)
987 * of any task we find with that prio.
989 if (cfs_rq_curr(busy_cfs_rq) == &busiest->curr->se)
990 best_prio_seen = 1;
992 /* pass busy_cfs_rq argument into
993 * load_balance_[start|next]_fair iterators
995 cfs_rq_iterator.arg = busy_cfs_rq;
996 nr_moved = balance_tasks(this_rq, this_cpu, busiest,
997 max_nr_move, maxload, sd, idle, all_pinned,
998 &load_moved, this_best_prio, best_prio,
999 best_prio_seen, &cfs_rq_iterator);
1001 total_nr_moved += nr_moved;
1002 max_nr_move -= nr_moved;
1003 rem_load_move -= load_moved;
1005 if (max_nr_move <= 0 || rem_load_move <= 0)
1006 break;
1009 *total_load_moved = max_load_move - rem_load_move;
1011 return total_nr_moved;
1015 * scheduler tick hitting a task of our scheduling class:
1017 static void task_tick_fair(struct rq *rq, struct task_struct *curr)
1019 struct cfs_rq *cfs_rq;
1020 struct sched_entity *se = &curr->se;
1022 for_each_sched_entity(se) {
1023 cfs_rq = cfs_rq_of(se);
1024 entity_tick(cfs_rq, se);
1029 * Share the fairness runtime between parent and child, thus the
1030 * total amount of pressure for CPU stays equal - new tasks
1031 * get a chance to run but frequent forkers are not allowed to
1032 * monopolize the CPU. Note: the parent runqueue is locked,
1033 * the child is not running yet.
1035 static void task_new_fair(struct rq *rq, struct task_struct *p, u64 now)
1037 struct cfs_rq *cfs_rq = task_cfs_rq(p);
1038 struct sched_entity *se = &p->se;
1040 sched_info_queued(p);
1042 update_stats_enqueue(cfs_rq, se, now);
1044 * Child runs first: we let it run before the parent
1045 * until it reschedules once. We set up the key so that
1046 * it will preempt the parent:
1048 p->se.fair_key = current->se.fair_key -
1049 niced_granularity(&rq->curr->se, sysctl_sched_granularity) - 1;
1051 * The first wait is dominated by the child-runs-first logic,
1052 * so do not credit it with that waiting time yet:
1054 if (sysctl_sched_features & SCHED_FEAT_SKIP_INITIAL)
1055 p->se.wait_start_fair = 0;
1058 * The statistical average of wait_runtime is about
1059 * -granularity/2, so initialize the task with that:
1061 if (sysctl_sched_features & SCHED_FEAT_START_DEBIT)
1062 p->se.wait_runtime = -(sysctl_sched_granularity / 2);
1064 __enqueue_entity(cfs_rq, se);
1067 #ifdef CONFIG_FAIR_GROUP_SCHED
1068 /* Account for a task changing its policy or group.
1070 * This routine is mostly called to set cfs_rq->curr field when a task
1071 * migrates between groups/classes.
1073 static void set_curr_task_fair(struct rq *rq)
1075 struct task_struct *curr = rq->curr;
1076 struct sched_entity *se = &curr->se;
1077 u64 now = rq_clock(rq);
1078 struct cfs_rq *cfs_rq;
1080 for_each_sched_entity(se) {
1081 cfs_rq = cfs_rq_of(se);
1082 set_next_entity(cfs_rq, se, now);
1085 #else
1086 static void set_curr_task_fair(struct rq *rq)
1089 #endif
1092 * All the scheduling class methods:
1094 struct sched_class fair_sched_class __read_mostly = {
1095 .enqueue_task = enqueue_task_fair,
1096 .dequeue_task = dequeue_task_fair,
1097 .yield_task = yield_task_fair,
1099 .check_preempt_curr = check_preempt_curr_fair,
1101 .pick_next_task = pick_next_task_fair,
1102 .put_prev_task = put_prev_task_fair,
1104 .load_balance = load_balance_fair,
1106 .set_curr_task = set_curr_task_fair,
1107 .task_tick = task_tick_fair,
1108 .task_new = task_new_fair,
1111 #ifdef CONFIG_SCHED_DEBUG
1112 void print_cfs_stats(struct seq_file *m, int cpu, u64 now)
1114 struct rq *rq = cpu_rq(cpu);
1115 struct cfs_rq *cfs_rq;
1117 for_each_leaf_cfs_rq(rq, cfs_rq)
1118 print_cfs_rq(m, cpu, cfs_rq, now);
1120 #endif