blob: 71b3458245e593f8b4421197b9ad43977866966d [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
Arjan van de Ven97455122008-01-25 21:08:34 +010023#include <linux/latencytop.h>
24
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020025/*
Peter Zijlstra21805082007-08-25 18:41:53 +020026 * Targeted preemption latency for CPU-bound tasks:
Mike Galbraith172e0822009-09-09 15:41:37 +020027 * (default: 5ms * (1 + ilog(ncpus)), units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020028 *
Peter Zijlstra21805082007-08-25 18:41:53 +020029 * NOTE: this latency value is not the same as the concept of
Ingo Molnard274a4c2007-10-15 17:00:14 +020030 * 'timeslice length' - timeslices in CFS are of variable length
31 * and have no persistent notion like in traditional, time-slice
32 * based scheduling concepts.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020033 *
Ingo Molnard274a4c2007-10-15 17:00:14 +020034 * (to see the precise effective timeslice length of your workload,
35 * run vmstat and monitor the context-switches (cs) field)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020036 */
Mike Galbraith172e0822009-09-09 15:41:37 +020037unsigned int sysctl_sched_latency = 5000000ULL;
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010038unsigned int normalized_sysctl_sched_latency = 5000000ULL;
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020039
40/*
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010041 * Minimal preemption granularity for CPU-bound tasks:
Mike Galbraith172e0822009-09-09 15:41:37 +020042 * (default: 1 msec * (1 + ilog(ncpus)), units: nanoseconds)
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010043 */
Mike Galbraith172e0822009-09-09 15:41:37 +020044unsigned int sysctl_sched_min_granularity = 1000000ULL;
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010045unsigned int normalized_sysctl_sched_min_granularity = 1000000ULL;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010046
47/*
48 * is kept at sysctl_sched_latency / sysctl_sched_min_granularity
49 */
Zou Nan hai722aab02007-11-26 21:21:49 +010050static unsigned int sched_nr_latency = 5;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010051
52/*
Mike Galbraith2bba22c2009-09-09 15:41:37 +020053 * After fork, child runs first. If set to 0 (default) then
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020054 * parent will (try to) run first.
55 */
Mike Galbraith2bba22c2009-09-09 15:41:37 +020056unsigned int sysctl_sched_child_runs_first __read_mostly;
Peter Zijlstra21805082007-08-25 18:41:53 +020057
58/*
Ingo Molnar1799e352007-09-19 23:34:46 +020059 * sys_sched_yield() compat mode
60 *
61 * This option switches the agressive yield implementation of the
62 * old scheduler back on.
63 */
64unsigned int __read_mostly sysctl_sched_compat_yield;
65
66/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020067 * SCHED_OTHER wake-up granularity.
Mike Galbraith172e0822009-09-09 15:41:37 +020068 * (default: 1 msec * (1 + ilog(ncpus)), units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020069 *
70 * This option delays the preemption effects of decoupled workloads
71 * and reduces their over-scheduling. Synchronous workloads will still
72 * have immediate wakeup/sleep latencies.
73 */
Mike Galbraith172e0822009-09-09 15:41:37 +020074unsigned int sysctl_sched_wakeup_granularity = 1000000UL;
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010075unsigned int normalized_sysctl_sched_wakeup_granularity = 1000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020076
Ingo Molnarda84d962007-10-15 17:00:18 +020077const_debug unsigned int sysctl_sched_migration_cost = 500000UL;
78
Peter Zijlstraa4c2f002008-10-17 19:27:03 +020079static const struct sched_class fair_sched_class;
80
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020081/**************************************************************
82 * CFS operations on generic schedulable entities:
83 */
84
85#ifdef CONFIG_FAIR_GROUP_SCHED
86
87/* cpu runqueue to which this cfs_rq is attached */
88static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
89{
90 return cfs_rq->rq;
91}
92
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020093/* An entity is a task if it doesn't "own" a runqueue */
94#define entity_is_task(se) (!se->my_q)
95
Peter Zijlstra8f488942009-07-24 12:25:30 +020096static inline struct task_struct *task_of(struct sched_entity *se)
97{
98#ifdef CONFIG_SCHED_DEBUG
99 WARN_ON_ONCE(!entity_is_task(se));
100#endif
101 return container_of(se, struct task_struct, se);
102}
103
Peter Zijlstrab7581492008-04-19 19:45:00 +0200104/* Walk up scheduling entities hierarchy */
105#define for_each_sched_entity(se) \
106 for (; se; se = se->parent)
107
108static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
109{
110 return p->se.cfs_rq;
111}
112
113/* runqueue on which this entity is (to be) queued */
114static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
115{
116 return se->cfs_rq;
117}
118
119/* runqueue "owned" by this group */
120static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
121{
122 return grp->my_q;
123}
124
125/* Given a group's cfs_rq on one cpu, return its corresponding cfs_rq on
126 * another cpu ('this_cpu')
127 */
128static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
129{
130 return cfs_rq->tg->cfs_rq[this_cpu];
131}
132
133/* Iterate thr' all leaf cfs_rq's on a runqueue */
134#define for_each_leaf_cfs_rq(rq, cfs_rq) \
135 list_for_each_entry_rcu(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list)
136
137/* Do the two (enqueued) entities belong to the same group ? */
138static inline int
139is_same_group(struct sched_entity *se, struct sched_entity *pse)
140{
141 if (se->cfs_rq == pse->cfs_rq)
142 return 1;
143
144 return 0;
145}
146
147static inline struct sched_entity *parent_entity(struct sched_entity *se)
148{
149 return se->parent;
150}
151
Peter Zijlstra464b7522008-10-24 11:06:15 +0200152/* return depth at which a sched entity is present in the hierarchy */
153static inline int depth_se(struct sched_entity *se)
154{
155 int depth = 0;
156
157 for_each_sched_entity(se)
158 depth++;
159
160 return depth;
161}
162
163static void
164find_matching_se(struct sched_entity **se, struct sched_entity **pse)
165{
166 int se_depth, pse_depth;
167
168 /*
169 * preemption test can be made between sibling entities who are in the
170 * same cfs_rq i.e who have a common parent. Walk up the hierarchy of
171 * both tasks until we find their ancestors who are siblings of common
172 * parent.
173 */
174
175 /* First walk up until both entities are at same depth */
176 se_depth = depth_se(*se);
177 pse_depth = depth_se(*pse);
178
179 while (se_depth > pse_depth) {
180 se_depth--;
181 *se = parent_entity(*se);
182 }
183
184 while (pse_depth > se_depth) {
185 pse_depth--;
186 *pse = parent_entity(*pse);
187 }
188
189 while (!is_same_group(*se, *pse)) {
190 *se = parent_entity(*se);
191 *pse = parent_entity(*pse);
192 }
193}
194
Peter Zijlstra8f488942009-07-24 12:25:30 +0200195#else /* !CONFIG_FAIR_GROUP_SCHED */
196
197static inline struct task_struct *task_of(struct sched_entity *se)
198{
199 return container_of(se, struct task_struct, se);
200}
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200201
202static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
203{
204 return container_of(cfs_rq, struct rq, cfs);
205}
206
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200207#define entity_is_task(se) 1
208
Peter Zijlstrab7581492008-04-19 19:45:00 +0200209#define for_each_sched_entity(se) \
210 for (; se; se = NULL)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200211
Peter Zijlstrab7581492008-04-19 19:45:00 +0200212static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200213{
Peter Zijlstrab7581492008-04-19 19:45:00 +0200214 return &task_rq(p)->cfs;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200215}
216
Peter Zijlstrab7581492008-04-19 19:45:00 +0200217static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
218{
219 struct task_struct *p = task_of(se);
220 struct rq *rq = task_rq(p);
221
222 return &rq->cfs;
223}
224
225/* runqueue "owned" by this group */
226static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
227{
228 return NULL;
229}
230
231static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu)
232{
233 return &cpu_rq(this_cpu)->cfs;
234}
235
236#define for_each_leaf_cfs_rq(rq, cfs_rq) \
237 for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL)
238
239static inline int
240is_same_group(struct sched_entity *se, struct sched_entity *pse)
241{
242 return 1;
243}
244
245static inline struct sched_entity *parent_entity(struct sched_entity *se)
246{
247 return NULL;
248}
249
Peter Zijlstra464b7522008-10-24 11:06:15 +0200250static inline void
251find_matching_se(struct sched_entity **se, struct sched_entity **pse)
252{
253}
254
Peter Zijlstrab7581492008-04-19 19:45:00 +0200255#endif /* CONFIG_FAIR_GROUP_SCHED */
256
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200257
258/**************************************************************
259 * Scheduling class tree data structure manipulation methods:
260 */
261
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200262static inline u64 max_vruntime(u64 min_vruntime, u64 vruntime)
Peter Zijlstra02e04312007-10-15 17:00:07 +0200263{
Peter Zijlstra368059a2007-10-15 17:00:11 +0200264 s64 delta = (s64)(vruntime - min_vruntime);
265 if (delta > 0)
Peter Zijlstra02e04312007-10-15 17:00:07 +0200266 min_vruntime = vruntime;
267
268 return min_vruntime;
269}
270
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200271static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime)
Peter Zijlstrab0ffd242007-10-15 17:00:12 +0200272{
273 s64 delta = (s64)(vruntime - min_vruntime);
274 if (delta < 0)
275 min_vruntime = vruntime;
276
277 return min_vruntime;
278}
279
Fabio Checconi54fdc582009-07-16 12:32:27 +0200280static inline int entity_before(struct sched_entity *a,
281 struct sched_entity *b)
282{
283 return (s64)(a->vruntime - b->vruntime) < 0;
284}
285
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200286static inline s64 entity_key(struct cfs_rq *cfs_rq, struct sched_entity *se)
Peter Zijlstra90146232007-10-15 17:00:05 +0200287{
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200288 return se->vruntime - cfs_rq->min_vruntime;
Peter Zijlstra90146232007-10-15 17:00:05 +0200289}
290
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200291static void update_min_vruntime(struct cfs_rq *cfs_rq)
292{
293 u64 vruntime = cfs_rq->min_vruntime;
294
295 if (cfs_rq->curr)
296 vruntime = cfs_rq->curr->vruntime;
297
298 if (cfs_rq->rb_leftmost) {
299 struct sched_entity *se = rb_entry(cfs_rq->rb_leftmost,
300 struct sched_entity,
301 run_node);
302
Peter Zijlstrae17036d2009-01-15 14:53:39 +0100303 if (!cfs_rq->curr)
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200304 vruntime = se->vruntime;
305 else
306 vruntime = min_vruntime(vruntime, se->vruntime);
307 }
308
309 cfs_rq->min_vruntime = max_vruntime(cfs_rq->min_vruntime, vruntime);
310}
311
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200312/*
313 * Enqueue an entity into the rb-tree:
314 */
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200315static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200316{
317 struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
318 struct rb_node *parent = NULL;
319 struct sched_entity *entry;
Peter Zijlstra90146232007-10-15 17:00:05 +0200320 s64 key = entity_key(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200321 int leftmost = 1;
322
323 /*
324 * Find the right place in the rbtree:
325 */
326 while (*link) {
327 parent = *link;
328 entry = rb_entry(parent, struct sched_entity, run_node);
329 /*
330 * We dont care about collisions. Nodes with
331 * the same key stay together.
332 */
Peter Zijlstra90146232007-10-15 17:00:05 +0200333 if (key < entity_key(cfs_rq, entry)) {
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200334 link = &parent->rb_left;
335 } else {
336 link = &parent->rb_right;
337 leftmost = 0;
338 }
339 }
340
341 /*
342 * Maintain a cache of leftmost tree entries (it is frequently
343 * used):
344 */
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200345 if (leftmost)
Ingo Molnar57cb4992007-10-15 17:00:11 +0200346 cfs_rq->rb_leftmost = &se->run_node;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200347
348 rb_link_node(&se->run_node, parent, link);
349 rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200350}
351
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200352static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200353{
Peter Zijlstra3fe69742008-03-14 20:55:51 +0100354 if (cfs_rq->rb_leftmost == &se->run_node) {
355 struct rb_node *next_node;
Peter Zijlstra3fe69742008-03-14 20:55:51 +0100356
357 next_node = rb_next(&se->run_node);
358 cfs_rq->rb_leftmost = next_node;
Peter Zijlstra3fe69742008-03-14 20:55:51 +0100359 }
Ingo Molnare9acbff2007-10-15 17:00:04 +0200360
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200361 rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200362}
363
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200364static struct sched_entity *__pick_next_entity(struct cfs_rq *cfs_rq)
365{
Peter Zijlstraf4b67552008-11-04 21:25:07 +0100366 struct rb_node *left = cfs_rq->rb_leftmost;
367
368 if (!left)
369 return NULL;
370
371 return rb_entry(left, struct sched_entity, run_node);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200372}
373
Peter Zijlstraf4b67552008-11-04 21:25:07 +0100374static struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq)
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200375{
Ingo Molnar7eee3e62008-02-22 10:32:21 +0100376 struct rb_node *last = rb_last(&cfs_rq->tasks_timeline);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200377
Balbir Singh70eee742008-02-22 13:25:53 +0530378 if (!last)
379 return NULL;
Ingo Molnar7eee3e62008-02-22 10:32:21 +0100380
381 return rb_entry(last, struct sched_entity, run_node);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200382}
383
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200384/**************************************************************
385 * Scheduling class statistics methods:
386 */
387
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100388#ifdef CONFIG_SCHED_DEBUG
389int sched_nr_latency_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700390 void __user *buffer, size_t *lenp,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100391 loff_t *ppos)
392{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700393 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100394
395 if (ret || !write)
396 return ret;
397
398 sched_nr_latency = DIV_ROUND_UP(sysctl_sched_latency,
399 sysctl_sched_min_granularity);
400
401 return 0;
402}
403#endif
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200404
405/*
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200406 * delta /= w
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200407 */
408static inline unsigned long
409calc_delta_fair(unsigned long delta, struct sched_entity *se)
410{
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200411 if (unlikely(se->load.weight != NICE_0_LOAD))
412 delta = calc_delta_mine(delta, NICE_0_LOAD, &se->load);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200413
414 return delta;
415}
416
417/*
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200418 * The idea is to set a period in which each task runs once.
419 *
420 * When there are too many tasks (sysctl_sched_nr_latency) we have to stretch
421 * this period because otherwise the slices get too small.
422 *
423 * p = (nr <= nl) ? l : l*nr/nl
424 */
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200425static u64 __sched_period(unsigned long nr_running)
426{
427 u64 period = sysctl_sched_latency;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100428 unsigned long nr_latency = sched_nr_latency;
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200429
430 if (unlikely(nr_running > nr_latency)) {
Peter Zijlstra4bf0b772008-01-25 21:08:21 +0100431 period = sysctl_sched_min_granularity;
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200432 period *= nr_running;
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200433 }
434
435 return period;
436}
437
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200438/*
439 * We calculate the wall-time slice from the period by taking a part
440 * proportional to the weight.
441 *
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200442 * s = p*P[w/rw]
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200443 */
Peter Zijlstra6d0f0ebd2007-10-15 17:00:05 +0200444static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
Peter Zijlstra21805082007-08-25 18:41:53 +0200445{
Mike Galbraith0a582442009-01-02 12:16:42 +0100446 u64 slice = __sched_period(cfs_rq->nr_running + !se->on_rq);
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200447
Mike Galbraith0a582442009-01-02 12:16:42 +0100448 for_each_sched_entity(se) {
Lin Ming6272d682009-01-15 17:17:15 +0100449 struct load_weight *load;
Christian Engelmayer3104bf02009-06-16 10:35:12 +0200450 struct load_weight lw;
Lin Ming6272d682009-01-15 17:17:15 +0100451
452 cfs_rq = cfs_rq_of(se);
453 load = &cfs_rq->load;
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200454
Mike Galbraith0a582442009-01-02 12:16:42 +0100455 if (unlikely(!se->on_rq)) {
Christian Engelmayer3104bf02009-06-16 10:35:12 +0200456 lw = cfs_rq->load;
Mike Galbraith0a582442009-01-02 12:16:42 +0100457
458 update_load_add(&lw, se->load.weight);
459 load = &lw;
460 }
461 slice = calc_delta_mine(slice, se->load.weight, load);
462 }
463 return slice;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200464}
465
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200466/*
Peter Zijlstraac884de2008-04-19 19:45:00 +0200467 * We calculate the vruntime slice of a to be inserted task
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200468 *
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200469 * vs = s/w
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200470 */
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200471static u64 sched_vslice(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200472{
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200473 return calc_delta_fair(sched_slice(cfs_rq, se), se);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200474}
475
476/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200477 * Update the current task's runtime statistics. Skip current tasks that
478 * are not in our scheduling class.
479 */
480static inline void
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200481__update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr,
482 unsigned long delta_exec)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200483{
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200484 unsigned long delta_exec_weighted;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200485
Ingo Molnar8179ca232007-08-02 17:41:40 +0200486 schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200487
488 curr->sum_exec_runtime += delta_exec;
Ingo Molnar7a62eab2007-10-15 17:00:06 +0200489 schedstat_add(cfs_rq, exec_clock, delta_exec);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200490 delta_exec_weighted = calc_delta_fair(delta_exec, curr);
Ingo Molnare9acbff2007-10-15 17:00:04 +0200491 curr->vruntime += delta_exec_weighted;
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200492 update_min_vruntime(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200493}
494
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200495static void update_curr(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200496{
Ingo Molnar429d43b2007-10-15 17:00:03 +0200497 struct sched_entity *curr = cfs_rq->curr;
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200498 u64 now = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200499 unsigned long delta_exec;
500
501 if (unlikely(!curr))
502 return;
503
504 /*
505 * Get the amount of time the current task was running
506 * since the last time we changed load (this cannot
507 * overflow on 32 bits):
508 */
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200509 delta_exec = (unsigned long)(now - curr->exec_start);
Peter Zijlstra34f28ec2008-12-16 08:45:31 +0100510 if (!delta_exec)
511 return;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200512
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200513 __update_curr(cfs_rq, curr, delta_exec);
514 curr->exec_start = now;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100515
516 if (entity_is_task(curr)) {
517 struct task_struct *curtask = task_of(curr);
518
Ingo Molnarf977bb42009-09-13 18:15:54 +0200519 trace_sched_stat_runtime(curtask, delta_exec, curr->vruntime);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100520 cpuacct_charge(curtask, delta_exec);
Frank Mayharf06febc2008-09-12 09:54:39 -0700521 account_group_exec_runtime(curtask, delta_exec);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100522 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200523}
524
525static inline void
Ingo Molnar5870db52007-08-09 11:16:47 +0200526update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200527{
Ingo Molnard2819182007-08-09 11:16:47 +0200528 schedstat_set(se->wait_start, rq_of(cfs_rq)->clock);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200529}
530
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200531/*
532 * Task is being enqueued - update stats:
533 */
Ingo Molnard2417e52007-08-09 11:16:47 +0200534static void update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200535{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200536 /*
537 * Are we enqueueing a waiting task? (for current tasks
538 * a dequeue/enqueue event is a NOP)
539 */
Ingo Molnar429d43b2007-10-15 17:00:03 +0200540 if (se != cfs_rq->curr)
Ingo Molnar5870db52007-08-09 11:16:47 +0200541 update_stats_wait_start(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200542}
543
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200544static void
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200545update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200546{
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200547 schedstat_set(se->wait_max, max(se->wait_max,
548 rq_of(cfs_rq)->clock - se->wait_start));
Arjan van de Ven6d082592008-01-25 21:08:35 +0100549 schedstat_set(se->wait_count, se->wait_count + 1);
550 schedstat_set(se->wait_sum, se->wait_sum +
551 rq_of(cfs_rq)->clock - se->wait_start);
Peter Zijlstra768d0c22009-07-23 20:13:26 +0200552#ifdef CONFIG_SCHEDSTATS
553 if (entity_is_task(se)) {
554 trace_sched_stat_wait(task_of(se),
555 rq_of(cfs_rq)->clock - se->wait_start);
556 }
557#endif
Ingo Molnare1f84502009-09-10 20:52:09 +0200558 schedstat_set(se->wait_start, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200559}
560
561static inline void
Ingo Molnar19b6a2e2007-08-09 11:16:48 +0200562update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200563{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200564 /*
565 * Mark the end of the wait period if dequeueing a
566 * waiting task:
567 */
Ingo Molnar429d43b2007-10-15 17:00:03 +0200568 if (se != cfs_rq->curr)
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200569 update_stats_wait_end(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200570}
571
572/*
573 * We are picking a new current task - update its stats:
574 */
575static inline void
Ingo Molnar79303e92007-08-09 11:16:47 +0200576update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200577{
578 /*
579 * We are starting a new run period:
580 */
Ingo Molnard2819182007-08-09 11:16:47 +0200581 se->exec_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200582}
583
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200584/**************************************************
585 * Scheduling class queueing methods:
586 */
587
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200588#if defined CONFIG_SMP && defined CONFIG_FAIR_GROUP_SCHED
589static void
590add_cfs_task_weight(struct cfs_rq *cfs_rq, unsigned long weight)
591{
592 cfs_rq->task_weight += weight;
593}
594#else
595static inline void
596add_cfs_task_weight(struct cfs_rq *cfs_rq, unsigned long weight)
597{
598}
599#endif
600
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200601static void
602account_entity_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
603{
604 update_load_add(&cfs_rq->load, se->load.weight);
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200605 if (!parent_entity(se))
606 inc_cpu_load(rq_of(cfs_rq), se->load.weight);
Bharata B Raob87f1722008-09-25 09:53:54 +0530607 if (entity_is_task(se)) {
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200608 add_cfs_task_weight(cfs_rq, se->load.weight);
Bharata B Raob87f1722008-09-25 09:53:54 +0530609 list_add(&se->group_node, &cfs_rq->tasks);
610 }
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200611 cfs_rq->nr_running++;
612 se->on_rq = 1;
613}
614
615static void
616account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
617{
618 update_load_sub(&cfs_rq->load, se->load.weight);
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200619 if (!parent_entity(se))
620 dec_cpu_load(rq_of(cfs_rq), se->load.weight);
Bharata B Raob87f1722008-09-25 09:53:54 +0530621 if (entity_is_task(se)) {
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200622 add_cfs_task_weight(cfs_rq, -se->load.weight);
Bharata B Raob87f1722008-09-25 09:53:54 +0530623 list_del_init(&se->group_node);
624 }
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200625 cfs_rq->nr_running--;
626 se->on_rq = 0;
627}
628
Ingo Molnar2396af62007-08-09 11:16:48 +0200629static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200630{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200631#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrae4143142009-07-23 20:13:26 +0200632 struct task_struct *tsk = NULL;
633
634 if (entity_is_task(se))
635 tsk = task_of(se);
636
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200637 if (se->sleep_start) {
Ingo Molnard2819182007-08-09 11:16:47 +0200638 u64 delta = rq_of(cfs_rq)->clock - se->sleep_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200639
640 if ((s64)delta < 0)
641 delta = 0;
642
643 if (unlikely(delta > se->sleep_max))
644 se->sleep_max = delta;
645
646 se->sleep_start = 0;
647 se->sum_sleep_runtime += delta;
Arjan van de Ven97455122008-01-25 21:08:34 +0100648
Peter Zijlstra768d0c22009-07-23 20:13:26 +0200649 if (tsk) {
Peter Zijlstrae4143142009-07-23 20:13:26 +0200650 account_scheduler_latency(tsk, delta >> 10, 1);
Peter Zijlstra768d0c22009-07-23 20:13:26 +0200651 trace_sched_stat_sleep(tsk, delta);
652 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200653 }
654 if (se->block_start) {
Ingo Molnard2819182007-08-09 11:16:47 +0200655 u64 delta = rq_of(cfs_rq)->clock - se->block_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200656
657 if ((s64)delta < 0)
658 delta = 0;
659
660 if (unlikely(delta > se->block_max))
661 se->block_max = delta;
662
663 se->block_start = 0;
664 se->sum_sleep_runtime += delta;
Ingo Molnar30084fb2007-10-02 14:13:08 +0200665
Peter Zijlstrae4143142009-07-23 20:13:26 +0200666 if (tsk) {
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -0700667 if (tsk->in_iowait) {
668 se->iowait_sum += delta;
669 se->iowait_count++;
Peter Zijlstra768d0c22009-07-23 20:13:26 +0200670 trace_sched_stat_iowait(tsk, delta);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -0700671 }
672
Peter Zijlstrae4143142009-07-23 20:13:26 +0200673 /*
674 * Blocking time is in units of nanosecs, so shift by
675 * 20 to get a milliseconds-range estimation of the
676 * amount of time that the task spent sleeping:
677 */
678 if (unlikely(prof_on == SLEEP_PROFILING)) {
679 profile_hits(SLEEP_PROFILING,
680 (void *)get_wchan(tsk),
681 delta >> 20);
682 }
683 account_scheduler_latency(tsk, delta >> 10, 0);
Ingo Molnar30084fb2007-10-02 14:13:08 +0200684 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200685 }
686#endif
687}
688
Peter Zijlstraddc97292007-10-15 17:00:10 +0200689static void check_spread(struct cfs_rq *cfs_rq, struct sched_entity *se)
690{
691#ifdef CONFIG_SCHED_DEBUG
692 s64 d = se->vruntime - cfs_rq->min_vruntime;
693
694 if (d < 0)
695 d = -d;
696
697 if (d > 3*sysctl_sched_latency)
698 schedstat_inc(cfs_rq, nr_spread_over);
699#endif
700}
701
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200702static void
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200703place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial)
704{
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200705 u64 vruntime = cfs_rq->min_vruntime;
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +0200706
Peter Zijlstra2cb86002007-11-09 22:39:37 +0100707 /*
708 * The 'current' period is already promised to the current tasks,
709 * however the extra weight of the new task will slow them down a
710 * little, place the new task so that it fits in the slot that
711 * stays open at the end.
712 */
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +0200713 if (initial && sched_feat(START_DEBIT))
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200714 vruntime += sched_vslice(cfs_rq, se);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200715
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +0200716 /* sleeps up to a single latency don't count. */
717 if (!initial && sched_feat(FAIR_SLEEPERS)) {
718 unsigned long thresh = sysctl_sched_latency;
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200719
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +0200720 /*
721 * Convert the sleeper threshold into virtual time.
722 * SCHED_IDLE is a special sub-class. We care about
723 * fairness only relative to other SCHED_IDLE tasks,
724 * all of which have the same weight.
725 */
726 if (sched_feat(NORMALIZED_SLEEPER) && (!entity_is_task(se) ||
727 task_of(se)->policy != SCHED_IDLE))
728 thresh = calc_delta_fair(thresh, se);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200729
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +0200730 /*
731 * Halve their sleep time's effect, to allow
732 * for a gentler effect of sleepers:
733 */
734 if (sched_feat(GENTLE_FAIR_SLEEPERS))
735 thresh >>= 1;
Ingo Molnar51e03042009-09-16 08:54:45 +0200736
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +0200737 vruntime -= thresh;
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200738 }
739
Mike Galbraithb5d9d732009-09-08 11:12:28 +0200740 /* ensure we never gain time by being placed backwards. */
741 vruntime = max_vruntime(se->vruntime, vruntime);
742
Peter Zijlstra67e9fb22007-10-15 17:00:10 +0200743 se->vruntime = vruntime;
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200744}
745
746static void
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200747enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int wakeup)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200748{
749 /*
Dmitry Adamushkoa2a2d682007-10-15 17:00:13 +0200750 * Update run-time statistics of the 'current'.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200751 */
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200752 update_curr(cfs_rq);
Peter Zijlstraa9922412008-05-05 23:56:17 +0200753 account_entity_enqueue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200754
Ingo Molnare9acbff2007-10-15 17:00:04 +0200755 if (wakeup) {
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200756 place_entity(cfs_rq, se, 0);
Ingo Molnar2396af62007-08-09 11:16:48 +0200757 enqueue_sleeper(cfs_rq, se);
Ingo Molnare9acbff2007-10-15 17:00:04 +0200758 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200759
Ingo Molnard2417e52007-08-09 11:16:47 +0200760 update_stats_enqueue(cfs_rq, se);
Peter Zijlstraddc97292007-10-15 17:00:10 +0200761 check_spread(cfs_rq, se);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200762 if (se != cfs_rq->curr)
763 __enqueue_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200764}
765
Peter Zijlstraa571bbe2009-01-28 14:51:40 +0100766static void __clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se)
Peter Zijlstra2002c692008-11-11 11:52:33 +0100767{
Peter Zijlstrade69a802009-09-17 09:01:20 +0200768 if (!se || cfs_rq->last == se)
Peter Zijlstra2002c692008-11-11 11:52:33 +0100769 cfs_rq->last = NULL;
770
Peter Zijlstrade69a802009-09-17 09:01:20 +0200771 if (!se || cfs_rq->next == se)
Peter Zijlstra2002c692008-11-11 11:52:33 +0100772 cfs_rq->next = NULL;
773}
774
Peter Zijlstraa571bbe2009-01-28 14:51:40 +0100775static void clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se)
776{
777 for_each_sched_entity(se)
778 __clear_buddies(cfs_rq_of(se), se);
779}
780
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200781static void
Ingo Molnar525c2712007-08-09 11:16:48 +0200782dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int sleep)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200783{
Dmitry Adamushkoa2a2d682007-10-15 17:00:13 +0200784 /*
785 * Update run-time statistics of the 'current'.
786 */
787 update_curr(cfs_rq);
788
Ingo Molnar19b6a2e2007-08-09 11:16:48 +0200789 update_stats_dequeue(cfs_rq, se);
Dmitry Adamushkodb36cc72007-10-15 17:00:06 +0200790 if (sleep) {
Peter Zijlstra67e9fb22007-10-15 17:00:10 +0200791#ifdef CONFIG_SCHEDSTATS
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200792 if (entity_is_task(se)) {
793 struct task_struct *tsk = task_of(se);
794
795 if (tsk->state & TASK_INTERRUPTIBLE)
Ingo Molnard2819182007-08-09 11:16:47 +0200796 se->sleep_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200797 if (tsk->state & TASK_UNINTERRUPTIBLE)
Ingo Molnard2819182007-08-09 11:16:47 +0200798 se->block_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200799 }
Dmitry Adamushkodb36cc72007-10-15 17:00:06 +0200800#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +0200801 }
802
Peter Zijlstra2002c692008-11-11 11:52:33 +0100803 clear_buddies(cfs_rq, se);
Peter Zijlstra47932412008-11-04 21:25:09 +0100804
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200805 if (se != cfs_rq->curr)
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200806 __dequeue_entity(cfs_rq, se);
807 account_entity_dequeue(cfs_rq, se);
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200808 update_min_vruntime(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200809}
810
811/*
812 * Preempt the current task with a newly woken task if needed:
813 */
Peter Zijlstra7c92e542007-09-05 14:32:49 +0200814static void
Ingo Molnar2e09bf52007-10-15 17:00:05 +0200815check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200816{
Peter Zijlstra11697832007-09-05 14:32:49 +0200817 unsigned long ideal_runtime, delta_exec;
818
Peter Zijlstra6d0f0ebd2007-10-15 17:00:05 +0200819 ideal_runtime = sched_slice(cfs_rq, curr);
Peter Zijlstra11697832007-09-05 14:32:49 +0200820 delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
Mike Galbraitha9f3e2b2009-01-28 14:51:39 +0100821 if (delta_exec > ideal_runtime) {
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200822 resched_task(rq_of(cfs_rq)->curr);
Mike Galbraitha9f3e2b2009-01-28 14:51:39 +0100823 /*
824 * The current task ran long enough, ensure it doesn't get
825 * re-elected due to buddy favours.
826 */
827 clear_buddies(cfs_rq, curr);
Mike Galbraithf685cea2009-10-23 23:09:22 +0200828 return;
829 }
830
831 /*
832 * Ensure that a task that missed wakeup preemption by a
833 * narrow margin doesn't have to wait for a full slice.
834 * This also mitigates buddy induced latencies under load.
835 */
836 if (!sched_feat(WAKEUP_PREEMPT))
837 return;
838
839 if (delta_exec < sysctl_sched_min_granularity)
840 return;
841
842 if (cfs_rq->nr_running > 1) {
843 struct sched_entity *se = __pick_next_entity(cfs_rq);
844 s64 delta = curr->vruntime - se->vruntime;
845
846 if (delta > ideal_runtime)
847 resched_task(rq_of(cfs_rq)->curr);
Mike Galbraitha9f3e2b2009-01-28 14:51:39 +0100848 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200849}
850
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200851static void
Ingo Molnar8494f412007-08-09 11:16:48 +0200852set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200853{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200854 /* 'current' is not kept within the tree. */
855 if (se->on_rq) {
856 /*
857 * Any task has to be enqueued before it get to execute on
858 * a CPU. So account for the time it spent waiting on the
859 * runqueue.
860 */
861 update_stats_wait_end(cfs_rq, se);
862 __dequeue_entity(cfs_rq, se);
863 }
864
Ingo Molnar79303e92007-08-09 11:16:47 +0200865 update_stats_curr_start(cfs_rq, se);
Ingo Molnar429d43b2007-10-15 17:00:03 +0200866 cfs_rq->curr = se;
Ingo Molnareba1ed42007-10-15 17:00:02 +0200867#ifdef CONFIG_SCHEDSTATS
868 /*
869 * Track our maximum slice length, if the CPU's load is at
870 * least twice that of our own weight (i.e. dont track it
871 * when there are only lesser-weight tasks around):
872 */
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200873 if (rq_of(cfs_rq)->load.weight >= 2*se->load.weight) {
Ingo Molnareba1ed42007-10-15 17:00:02 +0200874 se->slice_max = max(se->slice_max,
875 se->sum_exec_runtime - se->prev_sum_exec_runtime);
876 }
877#endif
Peter Zijlstra4a55b452007-09-05 14:32:49 +0200878 se->prev_sum_exec_runtime = se->sum_exec_runtime;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200879}
880
Peter Zijlstra3f3a4902008-10-24 11:06:16 +0200881static int
882wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se);
883
Peter Zijlstraf4b67552008-11-04 21:25:07 +0100884static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq)
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100885{
Peter Zijlstraf4b67552008-11-04 21:25:07 +0100886 struct sched_entity *se = __pick_next_entity(cfs_rq);
Mike Galbraithf685cea2009-10-23 23:09:22 +0200887 struct sched_entity *left = se;
Peter Zijlstraf4b67552008-11-04 21:25:07 +0100888
Mike Galbraithf685cea2009-10-23 23:09:22 +0200889 if (cfs_rq->next && wakeup_preempt_entity(cfs_rq->next, left) < 1)
890 se = cfs_rq->next;
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100891
Mike Galbraithf685cea2009-10-23 23:09:22 +0200892 /*
893 * Prefer last buddy, try to return the CPU to a preempted task.
894 */
895 if (cfs_rq->last && wakeup_preempt_entity(cfs_rq->last, left) < 1)
896 se = cfs_rq->last;
897
898 clear_buddies(cfs_rq, se);
Peter Zijlstra47932412008-11-04 21:25:09 +0100899
900 return se;
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100901}
902
Ingo Molnarab6cde22007-08-09 11:16:48 +0200903static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200904{
905 /*
906 * If still on the runqueue then deactivate_task()
907 * was not called and update_curr() has to be done:
908 */
909 if (prev->on_rq)
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200910 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200911
Peter Zijlstraddc97292007-10-15 17:00:10 +0200912 check_spread(cfs_rq, prev);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200913 if (prev->on_rq) {
Ingo Molnar5870db52007-08-09 11:16:47 +0200914 update_stats_wait_start(cfs_rq, prev);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200915 /* Put 'current' back into the tree. */
916 __enqueue_entity(cfs_rq, prev);
917 }
Ingo Molnar429d43b2007-10-15 17:00:03 +0200918 cfs_rq->curr = NULL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200919}
920
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100921static void
922entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200923{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200924 /*
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200925 * Update run-time statistics of the 'current'.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200926 */
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200927 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200928
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100929#ifdef CONFIG_SCHED_HRTICK
930 /*
931 * queued ticks are scheduled to match the slice, so don't bother
932 * validating it and just reschedule.
933 */
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700934 if (queued) {
935 resched_task(rq_of(cfs_rq)->curr);
936 return;
937 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100938 /*
939 * don't let the period tick interfere with the hrtick preemption
940 */
941 if (!sched_feat(DOUBLE_TICK) &&
942 hrtimer_active(&rq_of(cfs_rq)->hrtick_timer))
943 return;
944#endif
945
Peter Zijlstrace6c1312007-10-15 17:00:14 +0200946 if (cfs_rq->nr_running > 1 || !sched_feat(WAKEUP_PREEMPT))
Ingo Molnar2e09bf52007-10-15 17:00:05 +0200947 check_preempt_tick(cfs_rq, curr);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200948}
949
950/**************************************************
951 * CFS operations on tasks:
952 */
953
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100954#ifdef CONFIG_SCHED_HRTICK
955static void hrtick_start_fair(struct rq *rq, struct task_struct *p)
956{
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100957 struct sched_entity *se = &p->se;
958 struct cfs_rq *cfs_rq = cfs_rq_of(se);
959
960 WARN_ON(task_rq(p) != rq);
961
962 if (hrtick_enabled(rq) && cfs_rq->nr_running > 1) {
963 u64 slice = sched_slice(cfs_rq, se);
964 u64 ran = se->sum_exec_runtime - se->prev_sum_exec_runtime;
965 s64 delta = slice - ran;
966
967 if (delta < 0) {
968 if (rq->curr == p)
969 resched_task(p);
970 return;
971 }
972
973 /*
974 * Don't schedule slices shorter than 10000ns, that just
975 * doesn't make sense. Rely on vruntime for fairness.
976 */
Peter Zijlstra31656512008-07-18 18:01:23 +0200977 if (rq->curr != p)
Peter Zijlstra157124c2008-07-28 11:53:11 +0200978 delta = max_t(s64, 10000LL, delta);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100979
Peter Zijlstra31656512008-07-18 18:01:23 +0200980 hrtick_start(rq, delta);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100981 }
982}
Peter Zijlstraa4c2f002008-10-17 19:27:03 +0200983
984/*
985 * called from enqueue/dequeue and updates the hrtick when the
986 * current task is from our class and nr_running is low enough
987 * to matter.
988 */
989static void hrtick_update(struct rq *rq)
990{
991 struct task_struct *curr = rq->curr;
992
993 if (curr->sched_class != &fair_sched_class)
994 return;
995
996 if (cfs_rq_of(&curr->se)->nr_running < sched_nr_latency)
997 hrtick_start_fair(rq, curr);
998}
Dhaval Giani55e12e52008-06-24 23:39:43 +0530999#else /* !CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001000static inline void
1001hrtick_start_fair(struct rq *rq, struct task_struct *p)
1002{
1003}
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02001004
1005static inline void hrtick_update(struct rq *rq)
1006{
1007}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001008#endif
1009
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001010/*
1011 * The enqueue_task method is called before nr_running is
1012 * increased. Here we update the fair scheduling stats and
1013 * then put the task into the rbtree:
1014 */
Ingo Molnarfd390f62007-08-09 11:16:48 +02001015static void enqueue_task_fair(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001016{
1017 struct cfs_rq *cfs_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001018 struct sched_entity *se = &p->se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001019
1020 for_each_sched_entity(se) {
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001021 if (se->on_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001022 break;
1023 cfs_rq = cfs_rq_of(se);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001024 enqueue_entity(cfs_rq, se, wakeup);
Srivatsa Vaddagirib9fa3df2007-10-15 17:00:12 +02001025 wakeup = 1;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001026 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001027
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02001028 hrtick_update(rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001029}
1030
1031/*
1032 * The dequeue_task method is called before nr_running is
1033 * decreased. We remove the task from the rbtree and
1034 * update the fair scheduling stats:
1035 */
Ingo Molnarf02231e2007-08-09 11:16:48 +02001036static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001037{
1038 struct cfs_rq *cfs_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001039 struct sched_entity *se = &p->se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001040
1041 for_each_sched_entity(se) {
1042 cfs_rq = cfs_rq_of(se);
Ingo Molnar525c2712007-08-09 11:16:48 +02001043 dequeue_entity(cfs_rq, se, sleep);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001044 /* Don't dequeue parent if it has other entities besides us */
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001045 if (cfs_rq->load.weight)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001046 break;
Srivatsa Vaddagirib9fa3df2007-10-15 17:00:12 +02001047 sleep = 1;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001048 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001049
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02001050 hrtick_update(rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001051}
1052
1053/*
Ingo Molnar1799e352007-09-19 23:34:46 +02001054 * sched_yield() support is very simple - we dequeue and enqueue.
1055 *
1056 * If compat_yield is turned on then we requeue to the end of the tree.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001057 */
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02001058static void yield_task_fair(struct rq *rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001059{
Ingo Molnardb292ca2007-12-04 17:04:39 +01001060 struct task_struct *curr = rq->curr;
1061 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
1062 struct sched_entity *rightmost, *se = &curr->se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001063
1064 /*
Ingo Molnar1799e352007-09-19 23:34:46 +02001065 * Are we the only task in the tree?
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001066 */
Ingo Molnar1799e352007-09-19 23:34:46 +02001067 if (unlikely(cfs_rq->nr_running == 1))
1068 return;
1069
Peter Zijlstra2002c692008-11-11 11:52:33 +01001070 clear_buddies(cfs_rq, se);
1071
Ingo Molnardb292ca2007-12-04 17:04:39 +01001072 if (likely(!sysctl_sched_compat_yield) && curr->policy != SCHED_BATCH) {
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001073 update_rq_clock(rq);
Ingo Molnar1799e352007-09-19 23:34:46 +02001074 /*
Dmitry Adamushkoa2a2d682007-10-15 17:00:13 +02001075 * Update run-time statistics of the 'current'.
Ingo Molnar1799e352007-09-19 23:34:46 +02001076 */
Dmitry Adamushko2b1e3152007-10-15 17:00:12 +02001077 update_curr(cfs_rq);
Ingo Molnar1799e352007-09-19 23:34:46 +02001078
1079 return;
1080 }
1081 /*
1082 * Find the rightmost entry in the rbtree:
1083 */
Dmitry Adamushko2b1e3152007-10-15 17:00:12 +02001084 rightmost = __pick_last_entity(cfs_rq);
Ingo Molnar1799e352007-09-19 23:34:46 +02001085 /*
1086 * Already in the rightmost position?
1087 */
Fabio Checconi54fdc582009-07-16 12:32:27 +02001088 if (unlikely(!rightmost || entity_before(rightmost, se)))
Ingo Molnar1799e352007-09-19 23:34:46 +02001089 return;
1090
1091 /*
1092 * Minimally necessary key value to be last in the tree:
Dmitry Adamushko2b1e3152007-10-15 17:00:12 +02001093 * Upon rescheduling, sched_class::put_prev_task() will place
1094 * 'current' within the tree based on its new key value.
Ingo Molnar1799e352007-09-19 23:34:46 +02001095 */
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02001096 se->vruntime = rightmost->vruntime + 1;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001097}
1098
Gregory Haskinse7693a32008-01-25 21:08:09 +01001099#ifdef CONFIG_SMP
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001100
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02001101#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstraf5bfb7d2008-06-27 13:41:39 +02001102/*
1103 * effective_load() calculates the load change as seen from the root_task_group
1104 *
1105 * Adding load to a group doesn't make a group heavier, but can cause movement
1106 * of group shares between cpus. Assuming the shares were perfectly aligned one
1107 * can calculate the shift in shares.
1108 *
1109 * The problem is that perfectly aligning the shares is rather expensive, hence
1110 * we try to avoid doing that too often - see update_shares(), which ratelimits
1111 * this change.
1112 *
1113 * We compensate this by not only taking the current delta into account, but
1114 * also considering the delta between when the shares were last adjusted and
1115 * now.
1116 *
1117 * We still saw a performance dip, some tracing learned us that between
1118 * cgroup:/ and cgroup:/foo balancing the number of affine wakeups increased
1119 * significantly. Therefore try to bias the error in direction of failing
1120 * the affine wakeup.
1121 *
1122 */
Peter Zijlstraf1d239f2008-06-27 13:41:38 +02001123static long effective_load(struct task_group *tg, int cpu,
1124 long wl, long wg)
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02001125{
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001126 struct sched_entity *se = tg->se[cpu];
Peter Zijlstraf1d239f2008-06-27 13:41:38 +02001127
1128 if (!tg->parent)
1129 return wl;
1130
1131 /*
Peter Zijlstraf5bfb7d2008-06-27 13:41:39 +02001132 * By not taking the decrease of shares on the other cpu into
1133 * account our error leans towards reducing the affine wakeups.
1134 */
1135 if (!wl && sched_feat(ASYM_EFF_LOAD))
1136 return wl;
1137
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001138 for_each_sched_entity(se) {
Peter Zijlstracb5ef422008-06-27 13:41:32 +02001139 long S, rw, s, a, b;
Peter Zijlstra940959e2008-09-23 15:33:42 +02001140 long more_w;
1141
1142 /*
1143 * Instead of using this increment, also add the difference
1144 * between when the shares were last updated and now.
1145 */
1146 more_w = se->my_q->load.weight - se->my_q->rq_weight;
1147 wl += more_w;
1148 wg += more_w;
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02001149
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001150 S = se->my_q->tg->shares;
1151 s = se->my_q->shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +02001152 rw = se->my_q->rq_weight;
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001153
Peter Zijlstracb5ef422008-06-27 13:41:32 +02001154 a = S*(rw + wl);
1155 b = S*rw + s*wg;
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001156
Peter Zijlstra940959e2008-09-23 15:33:42 +02001157 wl = s*(a-b);
1158
1159 if (likely(b))
1160 wl /= b;
1161
Peter Zijlstra83378262008-06-27 13:41:37 +02001162 /*
1163 * Assume the group is already running and will
1164 * thus already be accounted for in the weight.
1165 *
1166 * That is, moving shares between CPUs, does not
1167 * alter the group weight.
1168 */
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001169 wg = 0;
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001170 }
1171
1172 return wl;
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02001173}
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001174
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02001175#else
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001176
Peter Zijlstra83378262008-06-27 13:41:37 +02001177static inline unsigned long effective_load(struct task_group *tg, int cpu,
1178 unsigned long wl, unsigned long wg)
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001179{
Peter Zijlstra83378262008-06-27 13:41:37 +02001180 return wl;
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02001181}
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02001182
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02001183#endif
1184
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001185static int wake_affine(struct sched_domain *sd, struct task_struct *p, int sync)
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001186{
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001187 struct task_struct *curr = current;
1188 unsigned long this_load, load;
1189 int idx, this_cpu, prev_cpu;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001190 unsigned long tl_per_task;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001191 unsigned int imbalance;
1192 struct task_group *tg;
Peter Zijlstra83378262008-06-27 13:41:37 +02001193 unsigned long weight;
Mike Galbraithb3137bc2008-05-29 11:11:41 +02001194 int balanced;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001195
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001196 idx = sd->wake_idx;
1197 this_cpu = smp_processor_id();
1198 prev_cpu = task_cpu(p);
1199 load = source_load(prev_cpu, idx);
1200 this_load = target_load(this_cpu, idx);
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001201
Peter Zijlstrae69b0f12009-09-15 19:38:52 +02001202 if (sync) {
1203 if (sched_feat(SYNC_LESS) &&
1204 (curr->se.avg_overlap > sysctl_sched_migration_cost ||
1205 p->se.avg_overlap > sysctl_sched_migration_cost))
1206 sync = 0;
1207 } else {
1208 if (sched_feat(SYNC_MORE) &&
1209 (curr->se.avg_overlap < sysctl_sched_migration_cost &&
1210 p->se.avg_overlap < sysctl_sched_migration_cost))
1211 sync = 1;
1212 }
Peter Zijlstrafc631c82009-02-11 14:27:17 +01001213
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001214 /*
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001215 * If sync wakeup then subtract the (maximum possible)
1216 * effect of the currently running task from the load
1217 * of the current CPU:
1218 */
Peter Zijlstra83378262008-06-27 13:41:37 +02001219 if (sync) {
1220 tg = task_group(current);
1221 weight = current->se.load.weight;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001222
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001223 this_load += effective_load(tg, this_cpu, -weight, -weight);
Peter Zijlstra83378262008-06-27 13:41:37 +02001224 load += effective_load(tg, prev_cpu, 0, -weight);
1225 }
1226
1227 tg = task_group(p);
1228 weight = p->se.load.weight;
1229
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001230 imbalance = 100 + (sd->imbalance_pct - 100) / 2;
1231
Peter Zijlstra71a29aa2009-09-07 18:28:05 +02001232 /*
1233 * In low-load situations, where prev_cpu is idle and this_cpu is idle
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001234 * due to the sync cause above having dropped this_load to 0, we'll
1235 * always have an imbalance, but there's really nothing you can do
1236 * about that, so that's good too.
Peter Zijlstra71a29aa2009-09-07 18:28:05 +02001237 *
1238 * Otherwise check if either cpus are near enough in load to allow this
1239 * task to be woken on this_cpu.
1240 */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001241 balanced = !this_load ||
1242 100*(this_load + effective_load(tg, this_cpu, weight, weight)) <=
Peter Zijlstra83378262008-06-27 13:41:37 +02001243 imbalance*(load + effective_load(tg, prev_cpu, 0, weight));
Mike Galbraithb3137bc2008-05-29 11:11:41 +02001244
1245 /*
1246 * If the currently running task will sleep within
1247 * a reasonable amount of time then attract this newly
1248 * woken task:
1249 */
Peter Zijlstra2fb76352008-10-08 09:16:04 +02001250 if (sync && balanced)
1251 return 1;
Mike Galbraithb3137bc2008-05-29 11:11:41 +02001252
1253 schedstat_inc(p, se.nr_wakeups_affine_attempts);
1254 tl_per_task = cpu_avg_load_per_task(this_cpu);
1255
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001256 if (balanced ||
1257 (this_load <= load &&
1258 this_load + target_load(prev_cpu, idx) <= tl_per_task)) {
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001259 /*
1260 * This domain has SD_WAKE_AFFINE and
1261 * p is cache cold in this domain, and
1262 * there is no bad imbalance.
1263 */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001264 schedstat_inc(sd, ttwu_move_affine);
Ingo Molnar098fb9d2008-03-16 20:36:10 +01001265 schedstat_inc(p, se.nr_wakeups_affine);
1266
1267 return 1;
1268 }
1269 return 0;
1270}
1271
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001272/*
1273 * find_idlest_group finds and returns the least busy CPU group within the
1274 * domain.
1275 */
1276static struct sched_group *
Peter Zijlstra78e7ed52009-09-03 13:16:51 +02001277find_idlest_group(struct sched_domain *sd, struct task_struct *p,
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02001278 int this_cpu, int load_idx)
Gregory Haskinse7693a32008-01-25 21:08:09 +01001279{
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001280 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1281 unsigned long min_load = ULONG_MAX, this_load = 0;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001282 int imbalance = 100 + (sd->imbalance_pct-100)/2;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001283
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001284 do {
1285 unsigned long load, avg_load;
1286 int local_group;
1287 int i;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001288
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001289 /* Skip over this group if it has no CPUs allowed */
1290 if (!cpumask_intersects(sched_group_cpus(group),
1291 &p->cpus_allowed))
1292 continue;
1293
1294 local_group = cpumask_test_cpu(this_cpu,
1295 sched_group_cpus(group));
1296
1297 /* Tally up the load of all CPUs in the group */
1298 avg_load = 0;
1299
1300 for_each_cpu(i, sched_group_cpus(group)) {
1301 /* Bias balancing toward cpus of our domain */
1302 if (local_group)
1303 load = source_load(i, load_idx);
1304 else
1305 load = target_load(i, load_idx);
1306
1307 avg_load += load;
1308 }
1309
1310 /* Adjust by relative CPU power of the group */
1311 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
1312
1313 if (local_group) {
1314 this_load = avg_load;
1315 this = group;
1316 } else if (avg_load < min_load) {
1317 min_load = avg_load;
1318 idlest = group;
1319 }
1320 } while (group = group->next, group != sd->groups);
1321
1322 if (!idlest || 100*this_load < imbalance*min_load)
1323 return NULL;
1324 return idlest;
1325}
1326
1327/*
1328 * find_idlest_cpu - find the idlest cpu among the cpus in group.
1329 */
1330static int
1331find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
1332{
1333 unsigned long load, min_load = ULONG_MAX;
1334 int idlest = -1;
1335 int i;
1336
1337 /* Traverse only the allowed CPUs */
1338 for_each_cpu_and(i, sched_group_cpus(group), &p->cpus_allowed) {
1339 load = weighted_cpuload(i);
1340
1341 if (load < min_load || (load == min_load && i == this_cpu)) {
1342 min_load = load;
1343 idlest = i;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001344 }
1345 }
1346
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001347 return idlest;
1348}
Gregory Haskinse7693a32008-01-25 21:08:09 +01001349
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001350/*
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001351 * Try and locate an idle CPU in the sched_domain.
1352 */
1353static int
1354select_idle_sibling(struct task_struct *p, struct sched_domain *sd, int target)
1355{
1356 int cpu = smp_processor_id();
1357 int prev_cpu = task_cpu(p);
1358 int i;
1359
1360 /*
1361 * If this domain spans both cpu and prev_cpu (see the SD_WAKE_AFFINE
1362 * test in select_task_rq_fair) and the prev_cpu is idle then that's
1363 * always a better target than the current cpu.
1364 */
Peter Zijlstrafe3bcfe2009-11-12 15:55:29 +01001365 if (target == cpu && !cpu_rq(prev_cpu)->cfs.nr_running)
1366 return prev_cpu;
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001367
1368 /*
1369 * Otherwise, iterate the domain and find an elegible idle cpu.
1370 */
Peter Zijlstrafe3bcfe2009-11-12 15:55:29 +01001371 for_each_cpu_and(i, sched_domain_span(sd), &p->cpus_allowed) {
1372 if (!cpu_rq(i)->cfs.nr_running) {
1373 target = i;
1374 break;
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001375 }
1376 }
1377
1378 return target;
1379}
1380
1381/*
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001382 * sched_balance_self: balance the current task (running on cpu) in domains
1383 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1384 * SD_BALANCE_EXEC.
1385 *
1386 * Balance, ie. select the least loaded group.
1387 *
1388 * Returns the target CPU number, or the same CPU if no balancing is needed.
1389 *
1390 * preempt must be disabled.
1391 */
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02001392static int select_task_rq_fair(struct task_struct *p, int sd_flag, int wake_flags)
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001393{
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02001394 struct sched_domain *tmp, *affine_sd = NULL, *sd = NULL;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001395 int cpu = smp_processor_id();
1396 int prev_cpu = task_cpu(p);
1397 int new_cpu = cpu;
1398 int want_affine = 0;
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02001399 int want_sd = 1;
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02001400 int sync = wake_flags & WF_SYNC;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001401
Peter Zijlstra0763a662009-09-14 19:37:39 +02001402 if (sd_flag & SD_BALANCE_WAKE) {
Mike Galbraith3f04e8c2009-09-19 16:52:35 +02001403 if (sched_feat(AFFINE_WAKEUPS) &&
1404 cpumask_test_cpu(cpu, &p->cpus_allowed))
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001405 want_affine = 1;
1406 new_cpu = prev_cpu;
1407 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001408
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001409 for_each_domain(cpu, tmp) {
1410 /*
Peter Zijlstraae154be2009-09-10 14:40:57 +02001411 * If power savings logic is enabled for a domain, see if we
1412 * are not overloaded, if so, don't balance wider.
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001413 */
Peter Zijlstra59abf022009-09-16 08:28:30 +02001414 if (tmp->flags & (SD_POWERSAVINGS_BALANCE|SD_PREFER_LOCAL)) {
Peter Zijlstraae154be2009-09-10 14:40:57 +02001415 unsigned long power = 0;
1416 unsigned long nr_running = 0;
1417 unsigned long capacity;
1418 int i;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001419
Peter Zijlstraae154be2009-09-10 14:40:57 +02001420 for_each_cpu(i, sched_domain_span(tmp)) {
1421 power += power_of(i);
1422 nr_running += cpu_rq(i)->cfs.nr_running;
1423 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001424
Peter Zijlstraae154be2009-09-10 14:40:57 +02001425 capacity = DIV_ROUND_CLOSEST(power, SCHED_LOAD_SCALE);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001426
Peter Zijlstra59abf022009-09-16 08:28:30 +02001427 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1428 nr_running /= 2;
1429
1430 if (nr_running < capacity)
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02001431 want_sd = 0;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001432 }
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001433
Peter Zijlstrafe3bcfe2009-11-12 15:55:29 +01001434 /*
1435 * While iterating the domains looking for a spanning
1436 * WAKE_AFFINE domain, adjust the affine target to any idle cpu
1437 * in cache sharing domains along the way.
1438 */
1439 if (want_affine) {
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001440 int target = -1;
Mike Galbraitha1f84a32009-10-27 15:35:38 +01001441
1442 /*
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001443 * If both cpu and prev_cpu are part of this domain,
1444 * cpu is a valid SD_WAKE_AFFINE target.
Mike Galbraitha1f84a32009-10-27 15:35:38 +01001445 */
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001446 if (cpumask_test_cpu(prev_cpu, sched_domain_span(tmp)))
1447 target = cpu;
Mike Galbraitha1f84a32009-10-27 15:35:38 +01001448
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001449 /*
1450 * If there's an idle sibling in this domain, make that
1451 * the wake_affine target instead of the current cpu.
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001452 */
1453 if (tmp->flags & SD_PREFER_SIBLING)
1454 target = select_idle_sibling(p, tmp, target);
Mike Galbraitha1f84a32009-10-27 15:35:38 +01001455
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001456 if (target >= 0) {
Peter Zijlstrafe3bcfe2009-11-12 15:55:29 +01001457 if (tmp->flags & SD_WAKE_AFFINE) {
1458 affine_sd = tmp;
1459 want_affine = 0;
1460 }
Peter Zijlstraa50bde52009-11-12 15:55:28 +01001461 cpu = target;
Mike Galbraitha1f84a32009-10-27 15:35:38 +01001462 }
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001463 }
1464
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02001465 if (!want_sd && !want_affine)
1466 break;
1467
Peter Zijlstra0763a662009-09-14 19:37:39 +02001468 if (!(tmp->flags & sd_flag))
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001469 continue;
1470
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02001471 if (want_sd)
1472 sd = tmp;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001473 }
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001474
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02001475 if (sched_feat(LB_SHARES_UPDATE)) {
1476 /*
1477 * Pick the largest domain to update shares over
1478 */
1479 tmp = sd;
1480 if (affine_sd && (!tmp ||
1481 cpumask_weight(sched_domain_span(affine_sd)) >
1482 cpumask_weight(sched_domain_span(sd))))
1483 tmp = affine_sd;
1484
1485 if (tmp)
1486 update_shares(tmp);
1487 }
1488
Peter Zijlstrafb58bac2009-12-01 12:21:47 +01001489 if (affine_sd && wake_affine(affine_sd, p, sync))
1490 return cpu;
Peter Zijlstra3b640892009-09-16 13:44:33 +02001491
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001492 while (sd) {
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02001493 int load_idx = sd->forkexec_idx;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001494 struct sched_group *group;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001495 int weight;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001496
Peter Zijlstra0763a662009-09-14 19:37:39 +02001497 if (!(sd->flags & sd_flag)) {
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001498 sd = sd->child;
1499 continue;
1500 }
1501
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02001502 if (sd_flag & SD_BALANCE_WAKE)
1503 load_idx = sd->wake_idx;
1504
1505 group = find_idlest_group(sd, p, cpu, load_idx);
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001506 if (!group) {
1507 sd = sd->child;
1508 continue;
1509 }
1510
Peter Zijlstrad7c33c42009-09-11 12:45:38 +02001511 new_cpu = find_idlest_cpu(group, p, cpu);
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001512 if (new_cpu == -1 || new_cpu == cpu) {
1513 /* Now try balancing at a lower domain level of cpu */
1514 sd = sd->child;
1515 continue;
1516 }
1517
1518 /* Now try balancing at a lower domain level of new_cpu */
1519 cpu = new_cpu;
1520 weight = cpumask_weight(sched_domain_span(sd));
1521 sd = NULL;
1522 for_each_domain(cpu, tmp) {
1523 if (weight <= cpumask_weight(sched_domain_span(tmp)))
1524 break;
Peter Zijlstra0763a662009-09-14 19:37:39 +02001525 if (tmp->flags & sd_flag)
Peter Zijlstraaaee1202009-09-10 13:36:25 +02001526 sd = tmp;
1527 }
1528 /* while loop will break here if sd == NULL */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001529 }
1530
Peter Zijlstrac88d5912009-09-10 13:50:02 +02001531 return new_cpu;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001532}
1533#endif /* CONFIG_SMP */
1534
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01001535/*
1536 * Adaptive granularity
1537 *
1538 * se->avg_wakeup gives the average time a task runs until it does a wakeup,
1539 * with the limit of wakeup_gran -- when it never does a wakeup.
1540 *
1541 * So the smaller avg_wakeup is the faster we want this task to preempt,
1542 * but we don't want to treat the preemptee unfairly and therefore allow it
1543 * to run for at least the amount of time we'd like to run.
1544 *
1545 * NOTE: we use 2*avg_wakeup to increase the probability of actually doing one
1546 *
1547 * NOTE: we use *nr_running to scale with load, this nicely matches the
1548 * degrading latency on load.
1549 */
1550static unsigned long
1551adaptive_gran(struct sched_entity *curr, struct sched_entity *se)
1552{
1553 u64 this_run = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
1554 u64 expected_wakeup = 2*se->avg_wakeup * cfs_rq_of(se)->nr_running;
1555 u64 gran = 0;
1556
1557 if (this_run < expected_wakeup)
1558 gran = expected_wakeup - this_run;
1559
1560 return min_t(s64, gran, sysctl_sched_wakeup_granularity);
1561}
1562
1563static unsigned long
1564wakeup_gran(struct sched_entity *curr, struct sched_entity *se)
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02001565{
1566 unsigned long gran = sysctl_sched_wakeup_granularity;
1567
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01001568 if (cfs_rq_of(curr)->curr && sched_feat(ADAPTIVE_GRAN))
1569 gran = adaptive_gran(curr, se);
1570
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02001571 /*
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01001572 * Since its curr running now, convert the gran from real-time
1573 * to virtual-time in his units.
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02001574 */
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01001575 if (sched_feat(ASYM_GRAN)) {
1576 /*
1577 * By using 'se' instead of 'curr' we penalize light tasks, so
1578 * they get preempted easier. That is, if 'se' < 'curr' then
1579 * the resulting gran will be larger, therefore penalizing the
1580 * lighter, if otoh 'se' > 'curr' then the resulting gran will
1581 * be smaller, again penalizing the lighter task.
1582 *
1583 * This is especially important for buddies when the leftmost
1584 * task is higher priority than the buddy.
1585 */
1586 if (unlikely(se->load.weight != NICE_0_LOAD))
1587 gran = calc_delta_fair(gran, se);
1588 } else {
1589 if (unlikely(curr->load.weight != NICE_0_LOAD))
1590 gran = calc_delta_fair(gran, curr);
1591 }
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02001592
1593 return gran;
1594}
1595
1596/*
Peter Zijlstra464b7522008-10-24 11:06:15 +02001597 * Should 'se' preempt 'curr'.
1598 *
1599 * |s1
1600 * |s2
1601 * |s3
1602 * g
1603 * |<--->|c
1604 *
1605 * w(c, s1) = -1
1606 * w(c, s2) = 0
1607 * w(c, s3) = 1
1608 *
1609 */
1610static int
1611wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se)
1612{
1613 s64 gran, vdiff = curr->vruntime - se->vruntime;
1614
1615 if (vdiff <= 0)
1616 return -1;
1617
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01001618 gran = wakeup_gran(curr, se);
Peter Zijlstra464b7522008-10-24 11:06:15 +02001619 if (vdiff > gran)
1620 return 1;
1621
1622 return 0;
1623}
1624
Peter Zijlstra02479092008-11-04 21:25:10 +01001625static void set_last_buddy(struct sched_entity *se)
1626{
Peter Zijlstra6bc912b2009-01-15 14:53:38 +01001627 if (likely(task_of(se)->policy != SCHED_IDLE)) {
1628 for_each_sched_entity(se)
1629 cfs_rq_of(se)->last = se;
1630 }
Peter Zijlstra02479092008-11-04 21:25:10 +01001631}
1632
1633static void set_next_buddy(struct sched_entity *se)
1634{
Peter Zijlstra6bc912b2009-01-15 14:53:38 +01001635 if (likely(task_of(se)->policy != SCHED_IDLE)) {
1636 for_each_sched_entity(se)
1637 cfs_rq_of(se)->next = se;
1638 }
Peter Zijlstra02479092008-11-04 21:25:10 +01001639}
1640
Peter Zijlstra464b7522008-10-24 11:06:15 +02001641/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001642 * Preempt the current task with a newly woken task if needed:
1643 */
Peter Zijlstra5a9b86f2009-09-16 13:47:58 +02001644static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001645{
1646 struct task_struct *curr = rq->curr;
Srivatsa Vaddagiri8651a862007-10-15 17:00:12 +02001647 struct sched_entity *se = &curr->se, *pse = &p->se;
Mike Galbraith03e89e42008-12-16 08:45:30 +01001648 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
Peter Zijlstra5a9b86f2009-09-16 13:47:58 +02001649 int sync = wake_flags & WF_SYNC;
Mike Galbraithf685cea2009-10-23 23:09:22 +02001650 int scale = cfs_rq->nr_running >= sched_nr_latency;
Mike Galbraith03e89e42008-12-16 08:45:30 +01001651
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01001652 if (unlikely(rt_prio(p->prio)))
1653 goto preempt;
Peter Zijlstraaa2ac252008-03-14 21:12:12 +01001654
Peter Zijlstrad95f98d2008-11-04 21:25:08 +01001655 if (unlikely(p->sched_class != &fair_sched_class))
1656 return;
1657
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01001658 if (unlikely(se == pse))
1659 return;
1660
Mike Galbraithf685cea2009-10-23 23:09:22 +02001661 if (sched_feat(NEXT_BUDDY) && scale && !(wake_flags & WF_FORK))
Mike Galbraith3cb63d52009-09-11 12:01:17 +02001662 set_next_buddy(pse);
Peter Zijlstra57fdc262008-09-23 15:33:45 +02001663
Bharata B Raoaec0a512008-08-28 14:42:49 +05301664 /*
1665 * We can come here with TIF_NEED_RESCHED already set from new task
1666 * wake up path.
1667 */
1668 if (test_tsk_need_resched(curr))
1669 return;
1670
Ingo Molnar91c234b2007-10-15 17:00:18 +02001671 /*
Peter Zijlstra6bc912b2009-01-15 14:53:38 +01001672 * Batch and idle tasks do not preempt (their preemption is driven by
Ingo Molnar91c234b2007-10-15 17:00:18 +02001673 * the tick):
1674 */
Peter Zijlstra6bc912b2009-01-15 14:53:38 +01001675 if (unlikely(p->policy != SCHED_NORMAL))
Ingo Molnar91c234b2007-10-15 17:00:18 +02001676 return;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001677
Peter Zijlstra6bc912b2009-01-15 14:53:38 +01001678 /* Idle tasks are by definition preempted by everybody. */
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01001679 if (unlikely(curr->policy == SCHED_IDLE))
1680 goto preempt;
Peter Zijlstra6bc912b2009-01-15 14:53:38 +01001681
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01001682 if (sched_feat(WAKEUP_SYNC) && sync)
1683 goto preempt;
Peter Zijlstra15afe092008-09-20 23:38:02 +02001684
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01001685 if (sched_feat(WAKEUP_OVERLAP) &&
1686 se->avg_overlap < sysctl_sched_migration_cost &&
1687 pse->avg_overlap < sysctl_sched_migration_cost)
1688 goto preempt;
1689
Peter Zijlstraad4b78b2009-09-16 12:31:31 +02001690 if (!sched_feat(WAKEUP_PREEMPT))
1691 return;
1692
Jupyung Leea65ac742009-11-17 18:51:40 +09001693 update_curr(cfs_rq);
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01001694 find_matching_se(&se, &pse);
1695 BUG_ON(!pse);
1696 if (wakeup_preempt_entity(se, pse) == 1)
1697 goto preempt;
Jupyung Leea65ac742009-11-17 18:51:40 +09001698
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01001699 return;
1700
1701preempt:
1702 resched_task(curr);
1703 /*
1704 * Only set the backward buddy when the current task is still
1705 * on the rq. This can happen when a wakeup gets interleaved
1706 * with schedule on the ->pre_schedule() or idle_balance()
1707 * point, either of which can * drop the rq lock.
1708 *
1709 * Also, during early boot the idle thread is in the fair class,
1710 * for obvious reasons its a bad idea to schedule back to it.
1711 */
1712 if (unlikely(!se->on_rq || curr == rq->idle))
1713 return;
1714
1715 if (sched_feat(LAST_BUDDY) && scale && entity_is_task(se))
1716 set_last_buddy(se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001717}
1718
Ingo Molnarfb8d4722007-08-09 11:16:48 +02001719static struct task_struct *pick_next_task_fair(struct rq *rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001720{
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001721 struct task_struct *p;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001722 struct cfs_rq *cfs_rq = &rq->cfs;
1723 struct sched_entity *se;
1724
Tim Blechmann36ace272009-11-24 11:55:45 +01001725 if (!cfs_rq->nr_running)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001726 return NULL;
1727
1728 do {
Ingo Molnar9948f4b2007-08-09 11:16:48 +02001729 se = pick_next_entity(cfs_rq);
Peter Zijlstraf4b67552008-11-04 21:25:07 +01001730 set_next_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001731 cfs_rq = group_cfs_rq(se);
1732 } while (cfs_rq);
1733
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001734 p = task_of(se);
1735 hrtick_start_fair(rq, p);
1736
1737 return p;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001738}
1739
1740/*
1741 * Account for a descheduled task:
1742 */
Ingo Molnar31ee5292007-08-09 11:16:49 +02001743static void put_prev_task_fair(struct rq *rq, struct task_struct *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001744{
1745 struct sched_entity *se = &prev->se;
1746 struct cfs_rq *cfs_rq;
1747
1748 for_each_sched_entity(se) {
1749 cfs_rq = cfs_rq_of(se);
Ingo Molnarab6cde22007-08-09 11:16:48 +02001750 put_prev_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001751 }
1752}
1753
Peter Williams681f3e62007-10-24 18:23:51 +02001754#ifdef CONFIG_SMP
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001755/**************************************************
1756 * Fair scheduling class load-balancing methods:
1757 */
1758
1759/*
1760 * Load-balancing iterator. Note: while the runqueue stays locked
1761 * during the whole iteration, the current task might be
1762 * dequeued so the iterator has to be dequeue-safe. Here we
1763 * achieve that by always pre-iterating before returning
1764 * the current task:
1765 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001766static struct task_struct *
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02001767__load_balance_iterator(struct cfs_rq *cfs_rq, struct list_head *next)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001768{
Dhaval Giani354d60c2008-04-19 19:44:59 +02001769 struct task_struct *p = NULL;
1770 struct sched_entity *se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001771
Mike Galbraith77ae6512008-08-11 13:32:02 +02001772 if (next == &cfs_rq->tasks)
1773 return NULL;
1774
Bharata B Raob87f1722008-09-25 09:53:54 +05301775 se = list_entry(next, struct sched_entity, group_node);
1776 p = task_of(se);
1777 cfs_rq->balance_iterator = next->next;
Mike Galbraith77ae6512008-08-11 13:32:02 +02001778
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001779 return p;
1780}
1781
1782static struct task_struct *load_balance_start_fair(void *arg)
1783{
1784 struct cfs_rq *cfs_rq = arg;
1785
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02001786 return __load_balance_iterator(cfs_rq, cfs_rq->tasks.next);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001787}
1788
1789static struct task_struct *load_balance_next_fair(void *arg)
1790{
1791 struct cfs_rq *cfs_rq = arg;
1792
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02001793 return __load_balance_iterator(cfs_rq, cfs_rq->balance_iterator);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001794}
1795
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001796static unsigned long
1797__load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
1798 unsigned long max_load_move, struct sched_domain *sd,
1799 enum cpu_idle_type idle, int *all_pinned, int *this_best_prio,
1800 struct cfs_rq *cfs_rq)
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001801{
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001802 struct rq_iterator cfs_rq_iterator;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001803
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001804 cfs_rq_iterator.start = load_balance_start_fair;
1805 cfs_rq_iterator.next = load_balance_next_fair;
1806 cfs_rq_iterator.arg = cfs_rq;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001807
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001808 return balance_tasks(this_rq, this_cpu, busiest,
1809 max_load_move, sd, idle, all_pinned,
1810 this_best_prio, &cfs_rq_iterator);
Ingo Molnar6363ca52008-05-29 11:28:57 +02001811}
Ingo Molnar6363ca52008-05-29 11:28:57 +02001812
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001813#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6363ca52008-05-29 11:28:57 +02001814static unsigned long
1815load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
1816 unsigned long max_load_move,
1817 struct sched_domain *sd, enum cpu_idle_type idle,
1818 int *all_pinned, int *this_best_prio)
1819{
Ingo Molnar6363ca52008-05-29 11:28:57 +02001820 long rem_load_move = max_load_move;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001821 int busiest_cpu = cpu_of(busiest);
1822 struct task_group *tg;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001823
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001824 rcu_read_lock();
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001825 update_h_load(busiest_cpu);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001826
Chris Friesencaea8a02008-09-22 11:06:09 -06001827 list_for_each_entry_rcu(tg, &task_groups, list) {
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001828 struct cfs_rq *busiest_cfs_rq = tg->cfs_rq[busiest_cpu];
Peter Zijlstra42a3ac72008-06-27 13:41:29 +02001829 unsigned long busiest_h_load = busiest_cfs_rq->h_load;
1830 unsigned long busiest_weight = busiest_cfs_rq->load.weight;
Srivatsa Vaddagiri243e0e72008-06-27 13:41:36 +02001831 u64 rem_load, moved_load;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001832
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001833 /*
1834 * empty group
1835 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001836 if (!busiest_cfs_rq->task_weight)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001837 continue;
1838
Srivatsa Vaddagiri243e0e72008-06-27 13:41:36 +02001839 rem_load = (u64)rem_load_move * busiest_weight;
1840 rem_load = div_u64(rem_load, busiest_h_load + 1);
Ingo Molnar6363ca52008-05-29 11:28:57 +02001841
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001842 moved_load = __load_balance_fair(this_rq, this_cpu, busiest,
Srivatsa Vaddagiri53fecd82008-06-27 13:41:20 +02001843 rem_load, sd, idle, all_pinned, this_best_prio,
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001844 tg->cfs_rq[busiest_cpu]);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001845
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001846 if (!moved_load)
1847 continue;
1848
Peter Zijlstra42a3ac72008-06-27 13:41:29 +02001849 moved_load *= busiest_h_load;
Srivatsa Vaddagiri243e0e72008-06-27 13:41:36 +02001850 moved_load = div_u64(moved_load, busiest_weight + 1);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001851
1852 rem_load_move -= moved_load;
1853 if (rem_load_move < 0)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001854 break;
1855 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001856 rcu_read_unlock();
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001857
Peter Williams43010652007-08-09 11:16:46 +02001858 return max_load_move - rem_load_move;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001859}
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001860#else
1861static unsigned long
1862load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
1863 unsigned long max_load_move,
1864 struct sched_domain *sd, enum cpu_idle_type idle,
1865 int *all_pinned, int *this_best_prio)
1866{
1867 return __load_balance_fair(this_rq, this_cpu, busiest,
1868 max_load_move, sd, idle, all_pinned,
1869 this_best_prio, &busiest->cfs);
1870}
1871#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001872
Peter Williamse1d14842007-10-24 18:23:51 +02001873static int
1874move_one_task_fair(struct rq *this_rq, int this_cpu, struct rq *busiest,
1875 struct sched_domain *sd, enum cpu_idle_type idle)
1876{
1877 struct cfs_rq *busy_cfs_rq;
1878 struct rq_iterator cfs_rq_iterator;
1879
1880 cfs_rq_iterator.start = load_balance_start_fair;
1881 cfs_rq_iterator.next = load_balance_next_fair;
1882
1883 for_each_leaf_cfs_rq(busiest, busy_cfs_rq) {
1884 /*
1885 * pass busy_cfs_rq argument into
1886 * load_balance_[start|next]_fair iterators
1887 */
1888 cfs_rq_iterator.arg = busy_cfs_rq;
1889 if (iter_move_one_task(this_rq, this_cpu, busiest, sd, idle,
1890 &cfs_rq_iterator))
1891 return 1;
1892 }
1893
1894 return 0;
1895}
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01001896
1897static void rq_online_fair(struct rq *rq)
1898{
1899 update_sysctl();
1900}
1901
1902static void rq_offline_fair(struct rq *rq)
1903{
1904 update_sysctl();
1905}
1906
Dhaval Giani55e12e52008-06-24 23:39:43 +05301907#endif /* CONFIG_SMP */
Peter Williamse1d14842007-10-24 18:23:51 +02001908
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001909/*
1910 * scheduler tick hitting a task of our scheduling class:
1911 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001912static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001913{
1914 struct cfs_rq *cfs_rq;
1915 struct sched_entity *se = &curr->se;
1916
1917 for_each_sched_entity(se) {
1918 cfs_rq = cfs_rq_of(se);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001919 entity_tick(cfs_rq, se, queued);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001920 }
1921}
1922
1923/*
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001924 * called on fork with the child task as argument from the parent's context
1925 * - child not yet on the tasklist
1926 * - preemption disabled
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001927 */
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001928static void task_fork_fair(struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001929{
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001930 struct cfs_rq *cfs_rq = task_cfs_rq(current);
Ingo Molnar429d43b2007-10-15 17:00:03 +02001931 struct sched_entity *se = &p->se, *curr = cfs_rq->curr;
Ingo Molnar00bf7bf2007-10-15 17:00:14 +02001932 int this_cpu = smp_processor_id();
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001933 struct rq *rq = this_rq();
1934 unsigned long flags;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001935
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001936 spin_lock_irqsave(&rq->lock, flags);
1937
1938 if (unlikely(task_cpu(p) != this_cpu))
1939 __set_task_cpu(p, this_cpu);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001940
Ting Yang7109c442007-08-28 12:53:24 +02001941 update_curr(cfs_rq);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001942
Mike Galbraithb5d9d732009-09-08 11:12:28 +02001943 if (curr)
1944 se->vruntime = curr->vruntime;
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02001945 place_entity(cfs_rq, se, 1);
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +02001946
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001947 if (sysctl_sched_child_runs_first && curr && entity_before(curr, se)) {
Dmitry Adamushko87fefa32007-10-15 17:00:08 +02001948 /*
Ingo Molnaredcb60a2007-10-15 17:00:08 +02001949 * Upon rescheduling, sched_class::put_prev_task() will place
1950 * 'current' within the tree based on its new key value.
1951 */
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +02001952 swap(curr->vruntime, se->vruntime);
Bharata B Raoaec0a512008-08-28 14:42:49 +05301953 resched_task(rq->curr);
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +02001954 }
1955
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001956 spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001957}
1958
Steven Rostedtcb469842008-01-25 21:08:22 +01001959/*
1960 * Priority of the task has changed. Check to see if we preempt
1961 * the current task.
1962 */
1963static void prio_changed_fair(struct rq *rq, struct task_struct *p,
1964 int oldprio, int running)
1965{
1966 /*
1967 * Reschedule if we are currently running on this runqueue and
1968 * our priority decreased, or if we are not currently running on
1969 * this runqueue and our priority is higher than the current's
1970 */
1971 if (running) {
1972 if (p->prio > oldprio)
1973 resched_task(rq->curr);
1974 } else
Peter Zijlstra15afe092008-09-20 23:38:02 +02001975 check_preempt_curr(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01001976}
1977
1978/*
1979 * We switched to the sched_fair class.
1980 */
1981static void switched_to_fair(struct rq *rq, struct task_struct *p,
1982 int running)
1983{
1984 /*
1985 * We were most likely switched from sched_rt, so
1986 * kick off the schedule if running, otherwise just see
1987 * if we can still preempt the current task.
1988 */
1989 if (running)
1990 resched_task(rq->curr);
1991 else
Peter Zijlstra15afe092008-09-20 23:38:02 +02001992 check_preempt_curr(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01001993}
1994
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001995/* Account for a task changing its policy or group.
1996 *
1997 * This routine is mostly called to set cfs_rq->curr field when a task
1998 * migrates between groups/classes.
1999 */
2000static void set_curr_task_fair(struct rq *rq)
2001{
2002 struct sched_entity *se = &rq->curr->se;
2003
2004 for_each_sched_entity(se)
2005 set_next_entity(cfs_rq_of(se), se);
2006}
2007
Peter Zijlstra810b3812008-02-29 15:21:01 -05002008#ifdef CONFIG_FAIR_GROUP_SCHED
2009static void moved_group_fair(struct task_struct *p)
2010{
2011 struct cfs_rq *cfs_rq = task_cfs_rq(p);
2012
2013 update_curr(cfs_rq);
2014 place_entity(cfs_rq, &p->se, 1);
2015}
2016#endif
2017
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01002018unsigned int get_rr_interval_fair(struct rq *rq, struct task_struct *task)
Peter Williams0d721ce2009-09-21 01:31:53 +00002019{
2020 struct sched_entity *se = &task->se;
Peter Williams0d721ce2009-09-21 01:31:53 +00002021 unsigned int rr_interval = 0;
2022
2023 /*
2024 * Time slice is 0 for SCHED_OTHER tasks that are on an otherwise
2025 * idle runqueue:
2026 */
Peter Williams0d721ce2009-09-21 01:31:53 +00002027 if (rq->cfs.load.weight)
2028 rr_interval = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Peter Williams0d721ce2009-09-21 01:31:53 +00002029
2030 return rr_interval;
2031}
2032
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002033/*
2034 * All the scheduling class methods:
2035 */
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002036static const struct sched_class fair_sched_class = {
2037 .next = &idle_sched_class,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002038 .enqueue_task = enqueue_task_fair,
2039 .dequeue_task = dequeue_task_fair,
2040 .yield_task = yield_task_fair,
2041
Ingo Molnar2e09bf52007-10-15 17:00:05 +02002042 .check_preempt_curr = check_preempt_wakeup,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002043
2044 .pick_next_task = pick_next_task_fair,
2045 .put_prev_task = put_prev_task_fair,
2046
Peter Williams681f3e62007-10-24 18:23:51 +02002047#ifdef CONFIG_SMP
Li Zefan4ce72a22008-10-22 15:25:26 +08002048 .select_task_rq = select_task_rq_fair,
2049
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002050 .load_balance = load_balance_fair,
Peter Williamse1d14842007-10-24 18:23:51 +02002051 .move_one_task = move_one_task_fair,
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01002052 .rq_online = rq_online_fair,
2053 .rq_offline = rq_offline_fair,
Peter Williams681f3e62007-10-24 18:23:51 +02002054#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002055
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02002056 .set_curr_task = set_curr_task_fair,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002057 .task_tick = task_tick_fair,
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002058 .task_fork = task_fork_fair,
Steven Rostedtcb469842008-01-25 21:08:22 +01002059
2060 .prio_changed = prio_changed_fair,
2061 .switched_to = switched_to_fair,
Peter Zijlstra810b3812008-02-29 15:21:01 -05002062
Peter Williams0d721ce2009-09-21 01:31:53 +00002063 .get_rr_interval = get_rr_interval_fair,
2064
Peter Zijlstra810b3812008-02-29 15:21:01 -05002065#ifdef CONFIG_FAIR_GROUP_SCHED
2066 .moved_group = moved_group_fair,
2067#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002068};
2069
2070#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar5cef9ec2007-08-09 11:16:47 +02002071static void print_cfs_stats(struct seq_file *m, int cpu)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002072{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002073 struct cfs_rq *cfs_rq;
2074
Peter Zijlstra5973e5b2008-01-25 21:08:34 +01002075 rcu_read_lock();
Ingo Molnarc3b64f12007-08-09 11:16:51 +02002076 for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq)
Ingo Molnar5cef9ec2007-08-09 11:16:47 +02002077 print_cfs_rq(m, cpu, cfs_rq);
Peter Zijlstra5973e5b2008-01-25 21:08:34 +01002078 rcu_read_unlock();
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002079}
2080#endif