Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1 | /* |
| 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 Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 18 | * |
| 19 | * Adaptive scheduling granularity, math enhancements by Peter Zijlstra |
| 20 | * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com> |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | /* |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 24 | * Targeted preemption latency for CPU-bound tasks: |
| 25 | * (default: 20ms, units: nanoseconds) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 26 | * |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 27 | * NOTE: this latency value is not the same as the concept of |
| 28 | * 'timeslice length' - timeslices in CFS are of variable length. |
| 29 | * (to see the precise effective timeslice length of your workload, |
| 30 | * run vmstat and monitor the context-switches field) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 31 | * |
| 32 | * On SMP systems the value of this is multiplied by the log2 of the |
| 33 | * number of CPUs. (i.e. factor 2x on 2-way systems, 3x on 4-way |
| 34 | * systems, 4x on 8-way systems, 5x on 16-way systems, etc.) |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 35 | * Targeted preemption latency for CPU-bound tasks: |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 36 | */ |
Ingo Molnar | 2bd8e6d | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 37 | const_debug unsigned int sysctl_sched_latency = 20000000ULL; |
| 38 | |
| 39 | /* |
| 40 | * After fork, child runs first. (default) If set to 0 then |
| 41 | * parent will (try to) run first. |
| 42 | */ |
| 43 | const_debug unsigned int sysctl_sched_child_runs_first = 1; |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * Minimal preemption granularity for CPU-bound tasks: |
| 47 | * (default: 2 msec, units: nanoseconds) |
| 48 | */ |
Ingo Molnar | 172ac3d | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 49 | unsigned int sysctl_sched_min_granularity __read_mostly = 2000000ULL; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 50 | |
| 51 | /* |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 52 | * sys_sched_yield() compat mode |
| 53 | * |
| 54 | * This option switches the agressive yield implementation of the |
| 55 | * old scheduler back on. |
| 56 | */ |
| 57 | unsigned int __read_mostly sysctl_sched_compat_yield; |
| 58 | |
| 59 | /* |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 60 | * SCHED_BATCH wake-up granularity. |
Ingo Molnar | 71fd371 | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 61 | * (default: 25 msec, units: nanoseconds) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 62 | * |
| 63 | * This option delays the preemption effects of decoupled workloads |
| 64 | * and reduces their over-scheduling. Synchronous workloads will still |
| 65 | * have immediate wakeup/sleep latencies. |
| 66 | */ |
Ingo Molnar | 2bd8e6d | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 67 | const_debug unsigned int sysctl_sched_batch_wakeup_granularity = 25000000UL; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | * SCHED_OTHER wake-up granularity. |
| 71 | * (default: 1 msec, units: nanoseconds) |
| 72 | * |
| 73 | * This option delays the preemption effects of decoupled workloads |
| 74 | * and reduces their over-scheduling. Synchronous workloads will still |
| 75 | * have immediate wakeup/sleep latencies. |
| 76 | */ |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 77 | const_debug unsigned int sysctl_sched_wakeup_granularity = 2000000UL; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 78 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 79 | unsigned int sysctl_sched_runtime_limit __read_mostly; |
| 80 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 81 | extern struct sched_class fair_sched_class; |
| 82 | |
| 83 | /************************************************************** |
| 84 | * CFS operations on generic schedulable entities: |
| 85 | */ |
| 86 | |
| 87 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 88 | |
| 89 | /* cpu runqueue to which this cfs_rq is attached */ |
| 90 | static inline struct rq *rq_of(struct cfs_rq *cfs_rq) |
| 91 | { |
| 92 | return cfs_rq->rq; |
| 93 | } |
| 94 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 95 | /* An entity is a task if it doesn't "own" a runqueue */ |
| 96 | #define entity_is_task(se) (!se->my_q) |
| 97 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 98 | #else /* CONFIG_FAIR_GROUP_SCHED */ |
| 99 | |
| 100 | static inline struct rq *rq_of(struct cfs_rq *cfs_rq) |
| 101 | { |
| 102 | return container_of(cfs_rq, struct rq, cfs); |
| 103 | } |
| 104 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 105 | #define entity_is_task(se) 1 |
| 106 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 107 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 108 | |
| 109 | static inline struct task_struct *task_of(struct sched_entity *se) |
| 110 | { |
| 111 | return container_of(se, struct task_struct, se); |
| 112 | } |
| 113 | |
| 114 | |
| 115 | /************************************************************** |
| 116 | * Scheduling class tree data structure manipulation methods: |
| 117 | */ |
| 118 | |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 119 | static inline void |
| 120 | set_leftmost(struct cfs_rq *cfs_rq, struct rb_node *leftmost) |
| 121 | { |
| 122 | struct sched_entity *se; |
| 123 | |
| 124 | cfs_rq->rb_leftmost = leftmost; |
| 125 | if (leftmost) { |
| 126 | se = rb_entry(leftmost, struct sched_entity, run_node); |
| 127 | cfs_rq->min_vruntime = max(se->vruntime, |
| 128 | cfs_rq->min_vruntime); |
| 129 | } |
| 130 | } |
| 131 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 132 | /* |
| 133 | * Enqueue an entity into the rb-tree: |
| 134 | */ |
Ingo Molnar | 19ccd97 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 135 | static void |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 136 | __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 137 | { |
| 138 | struct rb_node **link = &cfs_rq->tasks_timeline.rb_node; |
| 139 | struct rb_node *parent = NULL; |
| 140 | struct sched_entity *entry; |
| 141 | s64 key = se->fair_key; |
| 142 | int leftmost = 1; |
| 143 | |
| 144 | /* |
| 145 | * Find the right place in the rbtree: |
| 146 | */ |
| 147 | while (*link) { |
| 148 | parent = *link; |
| 149 | entry = rb_entry(parent, struct sched_entity, run_node); |
| 150 | /* |
| 151 | * We dont care about collisions. Nodes with |
| 152 | * the same key stay together. |
| 153 | */ |
| 154 | if (key - entry->fair_key < 0) { |
| 155 | link = &parent->rb_left; |
| 156 | } else { |
| 157 | link = &parent->rb_right; |
| 158 | leftmost = 0; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | /* |
| 163 | * Maintain a cache of leftmost tree entries (it is frequently |
| 164 | * used): |
| 165 | */ |
| 166 | if (leftmost) |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 167 | set_leftmost(cfs_rq, &se->run_node); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 168 | |
| 169 | rb_link_node(&se->run_node, parent, link); |
| 170 | rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline); |
| 171 | update_load_add(&cfs_rq->load, se->load.weight); |
| 172 | cfs_rq->nr_running++; |
| 173 | se->on_rq = 1; |
Ingo Molnar | a206c07 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 174 | |
| 175 | schedstat_add(cfs_rq, wait_runtime, se->wait_runtime); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 176 | } |
| 177 | |
Ingo Molnar | 19ccd97 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 178 | static void |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 179 | __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 180 | { |
| 181 | if (cfs_rq->rb_leftmost == &se->run_node) |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 182 | set_leftmost(cfs_rq, rb_next(&se->run_node)); |
| 183 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 184 | rb_erase(&se->run_node, &cfs_rq->tasks_timeline); |
| 185 | update_load_sub(&cfs_rq->load, se->load.weight); |
| 186 | cfs_rq->nr_running--; |
| 187 | se->on_rq = 0; |
Ingo Molnar | a206c07 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 188 | |
| 189 | schedstat_add(cfs_rq, wait_runtime, -se->wait_runtime); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | static inline struct rb_node *first_fair(struct cfs_rq *cfs_rq) |
| 193 | { |
| 194 | return cfs_rq->rb_leftmost; |
| 195 | } |
| 196 | |
| 197 | static struct sched_entity *__pick_next_entity(struct cfs_rq *cfs_rq) |
| 198 | { |
| 199 | return rb_entry(first_fair(cfs_rq), struct sched_entity, run_node); |
| 200 | } |
| 201 | |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 202 | static inline struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq) |
| 203 | { |
| 204 | struct rb_node **link = &cfs_rq->tasks_timeline.rb_node; |
| 205 | struct sched_entity *se = NULL; |
| 206 | struct rb_node *parent; |
| 207 | |
| 208 | while (*link) { |
| 209 | parent = *link; |
| 210 | se = rb_entry(parent, struct sched_entity, run_node); |
| 211 | link = &parent->rb_right; |
| 212 | } |
| 213 | |
| 214 | return se; |
| 215 | } |
| 216 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 217 | /************************************************************** |
| 218 | * Scheduling class statistics methods: |
| 219 | */ |
| 220 | |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 221 | static u64 __sched_period(unsigned long nr_running) |
| 222 | { |
| 223 | u64 period = sysctl_sched_latency; |
| 224 | unsigned long nr_latency = |
| 225 | sysctl_sched_latency / sysctl_sched_min_granularity; |
| 226 | |
| 227 | if (unlikely(nr_running > nr_latency)) { |
| 228 | period *= nr_running; |
| 229 | do_div(period, nr_latency); |
| 230 | } |
| 231 | |
| 232 | return period; |
| 233 | } |
| 234 | |
Peter Zijlstra | 6d0f0ebd | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 235 | static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 236 | { |
Peter Zijlstra | 6d0f0ebd | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 237 | u64 period = __sched_period(cfs_rq->nr_running); |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 238 | |
Peter Zijlstra | 6d0f0ebd | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 239 | period *= se->load.weight; |
| 240 | do_div(period, cfs_rq->load.weight); |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 241 | |
Peter Zijlstra | 6d0f0ebd | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 242 | return period; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | static inline void |
| 246 | limit_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 247 | { |
| 248 | long limit = sysctl_sched_runtime_limit; |
| 249 | |
| 250 | /* |
| 251 | * Niced tasks have the same history dynamic range as |
| 252 | * non-niced tasks: |
| 253 | */ |
| 254 | if (unlikely(se->wait_runtime > limit)) { |
| 255 | se->wait_runtime = limit; |
| 256 | schedstat_inc(se, wait_runtime_overruns); |
| 257 | schedstat_inc(cfs_rq, wait_runtime_overruns); |
| 258 | } |
| 259 | if (unlikely(se->wait_runtime < -limit)) { |
| 260 | se->wait_runtime = -limit; |
| 261 | schedstat_inc(se, wait_runtime_underruns); |
| 262 | schedstat_inc(cfs_rq, wait_runtime_underruns); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | static inline void |
| 267 | __add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta) |
| 268 | { |
| 269 | se->wait_runtime += delta; |
| 270 | schedstat_add(se, sum_wait_runtime, delta); |
| 271 | limit_wait_runtime(cfs_rq, se); |
| 272 | } |
| 273 | |
| 274 | static void |
| 275 | add_wait_runtime(struct cfs_rq *cfs_rq, struct sched_entity *se, long delta) |
| 276 | { |
| 277 | schedstat_add(cfs_rq, wait_runtime, -se->wait_runtime); |
| 278 | __add_wait_runtime(cfs_rq, se, delta); |
| 279 | schedstat_add(cfs_rq, wait_runtime, se->wait_runtime); |
| 280 | } |
| 281 | |
| 282 | /* |
| 283 | * Update the current task's runtime statistics. Skip current tasks that |
| 284 | * are not in our scheduling class. |
| 285 | */ |
| 286 | static inline void |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 287 | __update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr, |
| 288 | unsigned long delta_exec) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 289 | { |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 290 | unsigned long delta, delta_fair, delta_mine, delta_exec_weighted; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 291 | struct load_weight *lw = &cfs_rq->load; |
| 292 | unsigned long load = lw->weight; |
| 293 | |
Ingo Molnar | 8179ca23 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 294 | schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max)); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 295 | |
| 296 | curr->sum_exec_runtime += delta_exec; |
| 297 | cfs_rq->exec_clock += delta_exec; |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 298 | delta_exec_weighted = delta_exec; |
| 299 | if (unlikely(curr->load.weight != NICE_0_LOAD)) { |
| 300 | delta_exec_weighted = calc_delta_fair(delta_exec_weighted, |
| 301 | &curr->load); |
| 302 | } |
| 303 | curr->vruntime += delta_exec_weighted; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 304 | |
Ingo Molnar | 6cb5819 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 305 | if (!sched_feat(FAIR_SLEEPERS)) |
| 306 | return; |
| 307 | |
Ingo Molnar | fd8bb43 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 308 | if (unlikely(!load)) |
| 309 | return; |
| 310 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 311 | delta_fair = calc_delta_fair(delta_exec, lw); |
| 312 | delta_mine = calc_delta_mine(delta_exec, curr->load.weight, lw); |
| 313 | |
Mike Galbraith | 5f01d51 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 314 | if (cfs_rq->sleeper_bonus > sysctl_sched_min_granularity) { |
Peter Zijlstra | ea0aa3b | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 315 | delta = min((u64)delta_mine, cfs_rq->sleeper_bonus); |
Ingo Molnar | b2133c8 | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 316 | delta = min(delta, (unsigned long)( |
| 317 | (long)sysctl_sched_runtime_limit - curr->wait_runtime)); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 318 | cfs_rq->sleeper_bonus -= delta; |
| 319 | delta_mine -= delta; |
| 320 | } |
| 321 | |
| 322 | cfs_rq->fair_clock += delta_fair; |
| 323 | /* |
| 324 | * We executed delta_exec amount of time on the CPU, |
| 325 | * but we were only entitled to delta_mine amount of |
| 326 | * time during that period (if nr_running == 1 then |
| 327 | * the two values are equal) |
| 328 | * [Note: delta_mine - delta_exec is negative]: |
| 329 | */ |
| 330 | add_wait_runtime(cfs_rq, curr, delta_mine - delta_exec); |
| 331 | } |
| 332 | |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 333 | static void update_curr(struct cfs_rq *cfs_rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 334 | { |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 335 | struct sched_entity *curr = cfs_rq->curr; |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 336 | u64 now = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 337 | unsigned long delta_exec; |
| 338 | |
| 339 | if (unlikely(!curr)) |
| 340 | return; |
| 341 | |
| 342 | /* |
| 343 | * Get the amount of time the current task was running |
| 344 | * since the last time we changed load (this cannot |
| 345 | * overflow on 32 bits): |
| 346 | */ |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 347 | delta_exec = (unsigned long)(now - curr->exec_start); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 348 | |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 349 | __update_curr(cfs_rq, curr, delta_exec); |
| 350 | curr->exec_start = now; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | static inline void |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 354 | update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 355 | { |
| 356 | se->wait_start_fair = cfs_rq->fair_clock; |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 357 | schedstat_set(se->wait_start, rq_of(cfs_rq)->clock); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 358 | } |
| 359 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 360 | static inline unsigned long |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 361 | calc_weighted(unsigned long delta, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 362 | { |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 363 | unsigned long weight = se->load.weight; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 364 | |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 365 | if (unlikely(weight != NICE_0_LOAD)) |
| 366 | return (u64)delta * se->load.weight >> NICE_0_SHIFT; |
| 367 | else |
| 368 | return delta; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 369 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 370 | |
| 371 | /* |
| 372 | * Task is being enqueued - update stats: |
| 373 | */ |
Ingo Molnar | d2417e5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 374 | static void update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 375 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 376 | /* |
| 377 | * Are we enqueueing a waiting task? (for current tasks |
| 378 | * a dequeue/enqueue event is a NOP) |
| 379 | */ |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 380 | if (se != cfs_rq->curr) |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 381 | update_stats_wait_start(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 382 | /* |
| 383 | * Update the key: |
| 384 | */ |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 385 | se->fair_key = se->vruntime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | /* |
| 389 | * Note: must be called with a freshly updated rq->fair_clock. |
| 390 | */ |
| 391 | static inline void |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 392 | __update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se, |
| 393 | unsigned long delta_fair) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 394 | { |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 395 | schedstat_set(se->wait_max, max(se->wait_max, |
| 396 | rq_of(cfs_rq)->clock - se->wait_start)); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 397 | |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 398 | delta_fair = calc_weighted(delta_fair, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 399 | |
| 400 | add_wait_runtime(cfs_rq, se, delta_fair); |
| 401 | } |
| 402 | |
| 403 | static void |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 404 | update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 405 | { |
| 406 | unsigned long delta_fair; |
| 407 | |
Ingo Molnar | b77d69d | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 408 | if (unlikely(!se->wait_start_fair)) |
| 409 | return; |
| 410 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 411 | delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit), |
| 412 | (u64)(cfs_rq->fair_clock - se->wait_start_fair)); |
| 413 | |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 414 | __update_stats_wait_end(cfs_rq, se, delta_fair); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 415 | |
| 416 | se->wait_start_fair = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 417 | schedstat_set(se->wait_start, 0); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | static inline void |
Ingo Molnar | 19b6a2e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 421 | update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 422 | { |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 423 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 424 | /* |
| 425 | * Mark the end of the wait period if dequeueing a |
| 426 | * waiting task: |
| 427 | */ |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 428 | if (se != cfs_rq->curr) |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 429 | update_stats_wait_end(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | /* |
| 433 | * We are picking a new current task - update its stats: |
| 434 | */ |
| 435 | static inline void |
Ingo Molnar | 79303e9 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 436 | update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 437 | { |
| 438 | /* |
| 439 | * We are starting a new run period: |
| 440 | */ |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 441 | se->exec_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | /* |
| 445 | * We are descheduling a task - update its stats: |
| 446 | */ |
| 447 | static inline void |
Ingo Molnar | c7e9b5b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 448 | update_stats_curr_end(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 449 | { |
| 450 | se->exec_start = 0; |
| 451 | } |
| 452 | |
| 453 | /************************************************** |
| 454 | * Scheduling class queueing methods: |
| 455 | */ |
| 456 | |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 457 | static void __enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se, |
| 458 | unsigned long delta_fair) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 459 | { |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 460 | unsigned long load = cfs_rq->load.weight; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 461 | long prev_runtime; |
| 462 | |
Ingo Molnar | b2133c8 | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 463 | /* |
| 464 | * Do not boost sleepers if there's too much bonus 'in flight' |
| 465 | * already: |
| 466 | */ |
| 467 | if (unlikely(cfs_rq->sleeper_bonus > sysctl_sched_runtime_limit)) |
| 468 | return; |
| 469 | |
Peter Zijlstra | e59c80c | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 470 | if (sched_feat(SLEEPER_LOAD_AVG)) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 471 | load = rq_of(cfs_rq)->cpu_load[2]; |
| 472 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 473 | /* |
| 474 | * Fix up delta_fair with the effect of us running |
| 475 | * during the whole sleep period: |
| 476 | */ |
Peter Zijlstra | e59c80c | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 477 | if (sched_feat(SLEEPER_AVG)) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 478 | delta_fair = div64_likely32((u64)delta_fair * load, |
| 479 | load + se->load.weight); |
| 480 | |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 481 | delta_fair = calc_weighted(delta_fair, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 482 | |
| 483 | prev_runtime = se->wait_runtime; |
| 484 | __add_wait_runtime(cfs_rq, se, delta_fair); |
| 485 | delta_fair = se->wait_runtime - prev_runtime; |
| 486 | |
| 487 | /* |
| 488 | * Track the amount of bonus we've given to sleepers: |
| 489 | */ |
| 490 | cfs_rq->sleeper_bonus += delta_fair; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 491 | } |
| 492 | |
Ingo Molnar | 2396af6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 493 | static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 494 | { |
| 495 | struct task_struct *tsk = task_of(se); |
| 496 | unsigned long delta_fair; |
| 497 | |
| 498 | if ((entity_is_task(se) && tsk->policy == SCHED_BATCH) || |
Peter Zijlstra | e59c80c | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 499 | !sched_feat(FAIR_SLEEPERS)) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 500 | return; |
| 501 | |
| 502 | delta_fair = (unsigned long)min((u64)(2*sysctl_sched_runtime_limit), |
| 503 | (u64)(cfs_rq->fair_clock - se->sleep_start_fair)); |
| 504 | |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 505 | __enqueue_sleeper(cfs_rq, se, delta_fair); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 506 | |
| 507 | se->sleep_start_fair = 0; |
| 508 | |
| 509 | #ifdef CONFIG_SCHEDSTATS |
| 510 | if (se->sleep_start) { |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 511 | u64 delta = rq_of(cfs_rq)->clock - se->sleep_start; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 512 | |
| 513 | if ((s64)delta < 0) |
| 514 | delta = 0; |
| 515 | |
| 516 | if (unlikely(delta > se->sleep_max)) |
| 517 | se->sleep_max = delta; |
| 518 | |
| 519 | se->sleep_start = 0; |
| 520 | se->sum_sleep_runtime += delta; |
| 521 | } |
| 522 | if (se->block_start) { |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 523 | u64 delta = rq_of(cfs_rq)->clock - se->block_start; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 524 | |
| 525 | if ((s64)delta < 0) |
| 526 | delta = 0; |
| 527 | |
| 528 | if (unlikely(delta > se->block_max)) |
| 529 | se->block_max = delta; |
| 530 | |
| 531 | se->block_start = 0; |
| 532 | se->sum_sleep_runtime += delta; |
Ingo Molnar | 30084fb | 2007-10-02 14:13:08 +0200 | [diff] [blame] | 533 | |
| 534 | /* |
| 535 | * Blocking time is in units of nanosecs, so shift by 20 to |
| 536 | * get a milliseconds-range estimation of the amount of |
| 537 | * time that the task spent sleeping: |
| 538 | */ |
| 539 | if (unlikely(prof_on == SLEEP_PROFILING)) { |
| 540 | profile_hits(SLEEP_PROFILING, (void *)get_wchan(tsk), |
| 541 | delta >> 20); |
| 542 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 543 | } |
| 544 | #endif |
| 545 | } |
| 546 | |
| 547 | static void |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 548 | place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) |
| 549 | { |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 550 | u64 min_runtime, latency; |
| 551 | |
| 552 | min_runtime = cfs_rq->min_vruntime; |
Peter Zijlstra | 94dfb5e | 2007-10-15 17:00:05 +0200 | [diff] [blame^] | 553 | |
| 554 | if (sched_feat(USE_TREE_AVG)) { |
| 555 | struct sched_entity *last = __pick_last_entity(cfs_rq); |
| 556 | if (last) { |
| 557 | min_runtime = __pick_next_entity(cfs_rq)->vruntime; |
| 558 | min_runtime += last->vruntime; |
| 559 | min_runtime >>= 1; |
| 560 | } |
| 561 | } else if (sched_feat(APPROX_AVG)) |
| 562 | min_runtime += sysctl_sched_latency/2; |
| 563 | |
| 564 | if (initial && sched_feat(START_DEBIT)) |
| 565 | min_runtime += sched_slice(cfs_rq, se); |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 566 | |
| 567 | if (!initial && sched_feat(NEW_FAIR_SLEEPERS)) { |
| 568 | latency = sysctl_sched_latency; |
| 569 | if (min_runtime > latency) |
| 570 | min_runtime -= latency; |
| 571 | else |
| 572 | min_runtime = 0; |
| 573 | } |
| 574 | |
| 575 | se->vruntime = max(se->vruntime, min_runtime); |
| 576 | } |
| 577 | |
| 578 | static void |
Ingo Molnar | 668031c | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 579 | enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int wakeup) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 580 | { |
| 581 | /* |
| 582 | * Update the fair clock. |
| 583 | */ |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 584 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 585 | |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 586 | if (wakeup) { |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 587 | place_entity(cfs_rq, se, 0); |
Ingo Molnar | 2396af6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 588 | enqueue_sleeper(cfs_rq, se); |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 589 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 590 | |
Ingo Molnar | d2417e5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 591 | update_stats_enqueue(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 592 | __enqueue_entity(cfs_rq, se); |
| 593 | } |
| 594 | |
| 595 | static void |
Ingo Molnar | 525c271 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 596 | dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int sleep) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 597 | { |
Ingo Molnar | 19b6a2e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 598 | update_stats_dequeue(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 599 | if (sleep) { |
| 600 | se->sleep_start_fair = cfs_rq->fair_clock; |
| 601 | #ifdef CONFIG_SCHEDSTATS |
| 602 | if (entity_is_task(se)) { |
| 603 | struct task_struct *tsk = task_of(se); |
| 604 | |
| 605 | if (tsk->state & TASK_INTERRUPTIBLE) |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 606 | se->sleep_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 607 | if (tsk->state & TASK_UNINTERRUPTIBLE) |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 608 | se->block_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 609 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 610 | #endif |
| 611 | } |
| 612 | __dequeue_entity(cfs_rq, se); |
| 613 | } |
| 614 | |
| 615 | /* |
| 616 | * Preempt the current task with a newly woken task if needed: |
| 617 | */ |
Peter Zijlstra | 7c92e54 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 618 | static void |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 619 | check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 620 | { |
Peter Zijlstra | 1169783 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 621 | unsigned long ideal_runtime, delta_exec; |
| 622 | |
Peter Zijlstra | 6d0f0ebd | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 623 | ideal_runtime = sched_slice(cfs_rq, curr); |
Peter Zijlstra | 1169783 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 624 | delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime; |
| 625 | if (delta_exec > ideal_runtime) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 626 | resched_task(rq_of(cfs_rq)->curr); |
| 627 | } |
| 628 | |
| 629 | static inline void |
Ingo Molnar | 8494f41 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 630 | set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 631 | { |
| 632 | /* |
| 633 | * Any task has to be enqueued before it get to execute on |
| 634 | * a CPU. So account for the time it spent waiting on the |
| 635 | * runqueue. (note, here we rely on pick_next_task() having |
| 636 | * done a put_prev_task_fair() shortly before this, which |
| 637 | * updated rq->fair_clock - used by update_stats_wait_end()) |
| 638 | */ |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 639 | update_stats_wait_end(cfs_rq, se); |
Ingo Molnar | 79303e9 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 640 | update_stats_curr_start(cfs_rq, se); |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 641 | cfs_rq->curr = se; |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 642 | #ifdef CONFIG_SCHEDSTATS |
| 643 | /* |
| 644 | * Track our maximum slice length, if the CPU's load is at |
| 645 | * least twice that of our own weight (i.e. dont track it |
| 646 | * when there are only lesser-weight tasks around): |
| 647 | */ |
| 648 | if (rq_of(cfs_rq)->ls.load.weight >= 2*se->load.weight) { |
| 649 | se->slice_max = max(se->slice_max, |
| 650 | se->sum_exec_runtime - se->prev_sum_exec_runtime); |
| 651 | } |
| 652 | #endif |
Peter Zijlstra | 4a55b45 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 653 | se->prev_sum_exec_runtime = se->sum_exec_runtime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 654 | } |
| 655 | |
Ingo Molnar | 9948f4b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 656 | static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 657 | { |
| 658 | struct sched_entity *se = __pick_next_entity(cfs_rq); |
| 659 | |
Ingo Molnar | 8494f41 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 660 | set_next_entity(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 661 | |
| 662 | return se; |
| 663 | } |
| 664 | |
Ingo Molnar | ab6cde2 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 665 | static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 666 | { |
| 667 | /* |
| 668 | * If still on the runqueue then deactivate_task() |
| 669 | * was not called and update_curr() has to be done: |
| 670 | */ |
| 671 | if (prev->on_rq) |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 672 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 673 | |
Ingo Molnar | c7e9b5b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 674 | update_stats_curr_end(cfs_rq, prev); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 675 | |
| 676 | if (prev->on_rq) |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 677 | update_stats_wait_start(cfs_rq, prev); |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 678 | cfs_rq->curr = NULL; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | static void entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr) |
| 682 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 683 | /* |
| 684 | * Dequeue and enqueue the task to update its |
| 685 | * position within the tree: |
| 686 | */ |
Ingo Molnar | 525c271 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 687 | dequeue_entity(cfs_rq, curr, 0); |
Ingo Molnar | 668031c | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 688 | enqueue_entity(cfs_rq, curr, 0); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 689 | |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 690 | if (cfs_rq->nr_running > 1) |
| 691 | check_preempt_tick(cfs_rq, curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | /************************************************** |
| 695 | * CFS operations on tasks: |
| 696 | */ |
| 697 | |
| 698 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 699 | |
| 700 | /* Walk up scheduling entities hierarchy */ |
| 701 | #define for_each_sched_entity(se) \ |
| 702 | for (; se; se = se->parent) |
| 703 | |
| 704 | static inline struct cfs_rq *task_cfs_rq(struct task_struct *p) |
| 705 | { |
| 706 | return p->se.cfs_rq; |
| 707 | } |
| 708 | |
| 709 | /* runqueue on which this entity is (to be) queued */ |
| 710 | static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se) |
| 711 | { |
| 712 | return se->cfs_rq; |
| 713 | } |
| 714 | |
| 715 | /* runqueue "owned" by this group */ |
| 716 | static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp) |
| 717 | { |
| 718 | return grp->my_q; |
| 719 | } |
| 720 | |
| 721 | /* Given a group's cfs_rq on one cpu, return its corresponding cfs_rq on |
| 722 | * another cpu ('this_cpu') |
| 723 | */ |
| 724 | static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu) |
| 725 | { |
| 726 | /* A later patch will take group into account */ |
| 727 | return &cpu_rq(this_cpu)->cfs; |
| 728 | } |
| 729 | |
| 730 | /* Iterate thr' all leaf cfs_rq's on a runqueue */ |
| 731 | #define for_each_leaf_cfs_rq(rq, cfs_rq) \ |
| 732 | list_for_each_entry(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list) |
| 733 | |
| 734 | /* Do the two (enqueued) tasks belong to the same group ? */ |
| 735 | static inline int is_same_group(struct task_struct *curr, struct task_struct *p) |
| 736 | { |
| 737 | if (curr->se.cfs_rq == p->se.cfs_rq) |
| 738 | return 1; |
| 739 | |
| 740 | return 0; |
| 741 | } |
| 742 | |
| 743 | #else /* CONFIG_FAIR_GROUP_SCHED */ |
| 744 | |
| 745 | #define for_each_sched_entity(se) \ |
| 746 | for (; se; se = NULL) |
| 747 | |
| 748 | static inline struct cfs_rq *task_cfs_rq(struct task_struct *p) |
| 749 | { |
| 750 | return &task_rq(p)->cfs; |
| 751 | } |
| 752 | |
| 753 | static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se) |
| 754 | { |
| 755 | struct task_struct *p = task_of(se); |
| 756 | struct rq *rq = task_rq(p); |
| 757 | |
| 758 | return &rq->cfs; |
| 759 | } |
| 760 | |
| 761 | /* runqueue "owned" by this group */ |
| 762 | static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp) |
| 763 | { |
| 764 | return NULL; |
| 765 | } |
| 766 | |
| 767 | static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu) |
| 768 | { |
| 769 | return &cpu_rq(this_cpu)->cfs; |
| 770 | } |
| 771 | |
| 772 | #define for_each_leaf_cfs_rq(rq, cfs_rq) \ |
| 773 | for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL) |
| 774 | |
| 775 | static inline int is_same_group(struct task_struct *curr, struct task_struct *p) |
| 776 | { |
| 777 | return 1; |
| 778 | } |
| 779 | |
| 780 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 781 | |
| 782 | /* |
| 783 | * The enqueue_task method is called before nr_running is |
| 784 | * increased. Here we update the fair scheduling stats and |
| 785 | * then put the task into the rbtree: |
| 786 | */ |
Ingo Molnar | fd390f6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 787 | static void enqueue_task_fair(struct rq *rq, struct task_struct *p, int wakeup) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 788 | { |
| 789 | struct cfs_rq *cfs_rq; |
| 790 | struct sched_entity *se = &p->se; |
| 791 | |
| 792 | for_each_sched_entity(se) { |
| 793 | if (se->on_rq) |
| 794 | break; |
| 795 | cfs_rq = cfs_rq_of(se); |
Ingo Molnar | 668031c | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 796 | enqueue_entity(cfs_rq, se, wakeup); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 797 | } |
| 798 | } |
| 799 | |
| 800 | /* |
| 801 | * The dequeue_task method is called before nr_running is |
| 802 | * decreased. We remove the task from the rbtree and |
| 803 | * update the fair scheduling stats: |
| 804 | */ |
Ingo Molnar | f02231e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 805 | static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int sleep) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 806 | { |
| 807 | struct cfs_rq *cfs_rq; |
| 808 | struct sched_entity *se = &p->se; |
| 809 | |
| 810 | for_each_sched_entity(se) { |
| 811 | cfs_rq = cfs_rq_of(se); |
Ingo Molnar | 525c271 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 812 | dequeue_entity(cfs_rq, se, sleep); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 813 | /* Don't dequeue parent if it has other entities besides us */ |
| 814 | if (cfs_rq->load.weight) |
| 815 | break; |
| 816 | } |
| 817 | } |
| 818 | |
| 819 | /* |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 820 | * sched_yield() support is very simple - we dequeue and enqueue. |
| 821 | * |
| 822 | * If compat_yield is turned on then we requeue to the end of the tree. |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 823 | */ |
| 824 | static void yield_task_fair(struct rq *rq, struct task_struct *p) |
| 825 | { |
| 826 | struct cfs_rq *cfs_rq = task_cfs_rq(p); |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 827 | struct rb_node **link = &cfs_rq->tasks_timeline.rb_node; |
| 828 | struct sched_entity *rightmost, *se = &p->se; |
| 829 | struct rb_node *parent; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 830 | |
| 831 | /* |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 832 | * Are we the only task in the tree? |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 833 | */ |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 834 | if (unlikely(cfs_rq->nr_running == 1)) |
| 835 | return; |
| 836 | |
| 837 | if (likely(!sysctl_sched_compat_yield)) { |
| 838 | __update_rq_clock(rq); |
| 839 | /* |
| 840 | * Dequeue and enqueue the task to update its |
| 841 | * position within the tree: |
| 842 | */ |
| 843 | dequeue_entity(cfs_rq, &p->se, 0); |
| 844 | enqueue_entity(cfs_rq, &p->se, 0); |
| 845 | |
| 846 | return; |
| 847 | } |
| 848 | /* |
| 849 | * Find the rightmost entry in the rbtree: |
| 850 | */ |
| 851 | do { |
| 852 | parent = *link; |
| 853 | link = &parent->rb_right; |
| 854 | } while (*link); |
| 855 | |
| 856 | rightmost = rb_entry(parent, struct sched_entity, run_node); |
| 857 | /* |
| 858 | * Already in the rightmost position? |
| 859 | */ |
| 860 | if (unlikely(rightmost == se)) |
| 861 | return; |
| 862 | |
| 863 | /* |
| 864 | * Minimally necessary key value to be last in the tree: |
| 865 | */ |
| 866 | se->fair_key = rightmost->fair_key + 1; |
| 867 | |
| 868 | if (cfs_rq->rb_leftmost == &se->run_node) |
| 869 | cfs_rq->rb_leftmost = rb_next(&se->run_node); |
| 870 | /* |
| 871 | * Relink the task to the rightmost position: |
| 872 | */ |
| 873 | rb_erase(&se->run_node, &cfs_rq->tasks_timeline); |
| 874 | rb_link_node(&se->run_node, parent, link); |
| 875 | rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | /* |
| 879 | * Preempt the current task with a newly woken task if needed: |
| 880 | */ |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 881 | static void check_preempt_wakeup(struct rq *rq, struct task_struct *p) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 882 | { |
| 883 | struct task_struct *curr = rq->curr; |
| 884 | struct cfs_rq *cfs_rq = task_cfs_rq(curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 885 | |
| 886 | if (unlikely(rt_prio(p->prio))) { |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 887 | update_rq_clock(rq); |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 888 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 889 | resched_task(curr); |
| 890 | return; |
| 891 | } |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 892 | if (is_same_group(curr, p)) { |
| 893 | s64 delta = curr->se.vruntime - p->se.vruntime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 894 | |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 895 | if (delta > (s64)sysctl_sched_wakeup_granularity) |
| 896 | resched_task(curr); |
| 897 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 898 | } |
| 899 | |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 900 | static struct task_struct *pick_next_task_fair(struct rq *rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 901 | { |
| 902 | struct cfs_rq *cfs_rq = &rq->cfs; |
| 903 | struct sched_entity *se; |
| 904 | |
| 905 | if (unlikely(!cfs_rq->nr_running)) |
| 906 | return NULL; |
| 907 | |
| 908 | do { |
Ingo Molnar | 9948f4b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 909 | se = pick_next_entity(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 910 | cfs_rq = group_cfs_rq(se); |
| 911 | } while (cfs_rq); |
| 912 | |
| 913 | return task_of(se); |
| 914 | } |
| 915 | |
| 916 | /* |
| 917 | * Account for a descheduled task: |
| 918 | */ |
Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 919 | static void put_prev_task_fair(struct rq *rq, struct task_struct *prev) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 920 | { |
| 921 | struct sched_entity *se = &prev->se; |
| 922 | struct cfs_rq *cfs_rq; |
| 923 | |
| 924 | for_each_sched_entity(se) { |
| 925 | cfs_rq = cfs_rq_of(se); |
Ingo Molnar | ab6cde2 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 926 | put_prev_entity(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 927 | } |
| 928 | } |
| 929 | |
| 930 | /************************************************** |
| 931 | * Fair scheduling class load-balancing methods: |
| 932 | */ |
| 933 | |
| 934 | /* |
| 935 | * Load-balancing iterator. Note: while the runqueue stays locked |
| 936 | * during the whole iteration, the current task might be |
| 937 | * dequeued so the iterator has to be dequeue-safe. Here we |
| 938 | * achieve that by always pre-iterating before returning |
| 939 | * the current task: |
| 940 | */ |
| 941 | static inline struct task_struct * |
| 942 | __load_balance_iterator(struct cfs_rq *cfs_rq, struct rb_node *curr) |
| 943 | { |
| 944 | struct task_struct *p; |
| 945 | |
| 946 | if (!curr) |
| 947 | return NULL; |
| 948 | |
| 949 | p = rb_entry(curr, struct task_struct, se.run_node); |
| 950 | cfs_rq->rb_load_balance_curr = rb_next(curr); |
| 951 | |
| 952 | return p; |
| 953 | } |
| 954 | |
| 955 | static struct task_struct *load_balance_start_fair(void *arg) |
| 956 | { |
| 957 | struct cfs_rq *cfs_rq = arg; |
| 958 | |
| 959 | return __load_balance_iterator(cfs_rq, first_fair(cfs_rq)); |
| 960 | } |
| 961 | |
| 962 | static struct task_struct *load_balance_next_fair(void *arg) |
| 963 | { |
| 964 | struct cfs_rq *cfs_rq = arg; |
| 965 | |
| 966 | return __load_balance_iterator(cfs_rq, cfs_rq->rb_load_balance_curr); |
| 967 | } |
| 968 | |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 969 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 970 | static int cfs_rq_best_prio(struct cfs_rq *cfs_rq) |
| 971 | { |
| 972 | struct sched_entity *curr; |
| 973 | struct task_struct *p; |
| 974 | |
| 975 | if (!cfs_rq->nr_running) |
| 976 | return MAX_PRIO; |
| 977 | |
| 978 | curr = __pick_next_entity(cfs_rq); |
| 979 | p = task_of(curr); |
| 980 | |
| 981 | return p->prio; |
| 982 | } |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 983 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 984 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 985 | static unsigned long |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 986 | load_balance_fair(struct rq *this_rq, int this_cpu, struct rq *busiest, |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 987 | unsigned long max_nr_move, unsigned long max_load_move, |
| 988 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 989 | int *all_pinned, int *this_best_prio) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 990 | { |
| 991 | struct cfs_rq *busy_cfs_rq; |
| 992 | unsigned long load_moved, total_nr_moved = 0, nr_moved; |
| 993 | long rem_load_move = max_load_move; |
| 994 | struct rq_iterator cfs_rq_iterator; |
| 995 | |
| 996 | cfs_rq_iterator.start = load_balance_start_fair; |
| 997 | cfs_rq_iterator.next = load_balance_next_fair; |
| 998 | |
| 999 | for_each_leaf_cfs_rq(busiest, busy_cfs_rq) { |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 1000 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1001 | struct cfs_rq *this_cfs_rq; |
Ingo Molnar | e56f31a | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 1002 | long imbalance; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1003 | unsigned long maxload; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1004 | |
| 1005 | this_cfs_rq = cpu_cfs_rq(busy_cfs_rq, this_cpu); |
| 1006 | |
Ingo Molnar | e56f31a | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 1007 | imbalance = busy_cfs_rq->load.weight - this_cfs_rq->load.weight; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1008 | /* Don't pull if this_cfs_rq has more load than busy_cfs_rq */ |
| 1009 | if (imbalance <= 0) |
| 1010 | continue; |
| 1011 | |
| 1012 | /* Don't pull more than imbalance/2 */ |
| 1013 | imbalance /= 2; |
| 1014 | maxload = min(rem_load_move, imbalance); |
| 1015 | |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 1016 | *this_best_prio = cfs_rq_best_prio(this_cfs_rq); |
| 1017 | #else |
Ingo Molnar | e56f31a | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 1018 | # define maxload rem_load_move |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 1019 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1020 | /* pass busy_cfs_rq argument into |
| 1021 | * load_balance_[start|next]_fair iterators |
| 1022 | */ |
| 1023 | cfs_rq_iterator.arg = busy_cfs_rq; |
| 1024 | nr_moved = balance_tasks(this_rq, this_cpu, busiest, |
| 1025 | max_nr_move, maxload, sd, idle, all_pinned, |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 1026 | &load_moved, this_best_prio, &cfs_rq_iterator); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1027 | |
| 1028 | total_nr_moved += nr_moved; |
| 1029 | max_nr_move -= nr_moved; |
| 1030 | rem_load_move -= load_moved; |
| 1031 | |
| 1032 | if (max_nr_move <= 0 || rem_load_move <= 0) |
| 1033 | break; |
| 1034 | } |
| 1035 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 1036 | return max_load_move - rem_load_move; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | /* |
| 1040 | * scheduler tick hitting a task of our scheduling class: |
| 1041 | */ |
| 1042 | static void task_tick_fair(struct rq *rq, struct task_struct *curr) |
| 1043 | { |
| 1044 | struct cfs_rq *cfs_rq; |
| 1045 | struct sched_entity *se = &curr->se; |
| 1046 | |
| 1047 | for_each_sched_entity(se) { |
| 1048 | cfs_rq = cfs_rq_of(se); |
| 1049 | entity_tick(cfs_rq, se); |
| 1050 | } |
| 1051 | } |
| 1052 | |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1053 | #define swap(a,b) do { typeof(a) tmp = (a); (a) = (b); (b) = tmp; } while (0) |
| 1054 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1055 | /* |
| 1056 | * Share the fairness runtime between parent and child, thus the |
| 1057 | * total amount of pressure for CPU stays equal - new tasks |
| 1058 | * get a chance to run but frequent forkers are not allowed to |
| 1059 | * monopolize the CPU. Note: the parent runqueue is locked, |
| 1060 | * the child is not running yet. |
| 1061 | */ |
Ingo Molnar | ee0827d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1062 | static void task_new_fair(struct rq *rq, struct task_struct *p) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1063 | { |
| 1064 | struct cfs_rq *cfs_rq = task_cfs_rq(p); |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 1065 | struct sched_entity *se = &p->se, *curr = cfs_rq->curr; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1066 | |
| 1067 | sched_info_queued(p); |
| 1068 | |
Ting Yang | 7109c44 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 1069 | update_curr(cfs_rq); |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1070 | place_entity(cfs_rq, se, 1); |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1071 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1072 | /* |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1073 | * The statistical average of wait_runtime is about |
| 1074 | * -granularity/2, so initialize the task with that: |
| 1075 | */ |
Peter Zijlstra | e59c80c | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 1076 | if (sched_feat(START_DEBIT)) |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1077 | se->wait_runtime = -(__sched_period(cfs_rq->nr_running+1) / 2); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1078 | |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1079 | if (sysctl_sched_child_runs_first && |
| 1080 | curr->vruntime < se->vruntime) { |
| 1081 | |
| 1082 | dequeue_entity(cfs_rq, curr, 0); |
| 1083 | swap(curr->vruntime, se->vruntime); |
| 1084 | enqueue_entity(cfs_rq, curr, 0); |
| 1085 | } |
| 1086 | |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1087 | update_stats_enqueue(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1088 | __enqueue_entity(cfs_rq, se); |
Ingo Molnar | bb61c21 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 1089 | resched_task(rq->curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1090 | } |
| 1091 | |
| 1092 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 1093 | /* Account for a task changing its policy or group. |
| 1094 | * |
| 1095 | * This routine is mostly called to set cfs_rq->curr field when a task |
| 1096 | * migrates between groups/classes. |
| 1097 | */ |
| 1098 | static void set_curr_task_fair(struct rq *rq) |
| 1099 | { |
Bruce Ashfield | 7c6c16f | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 1100 | struct sched_entity *se = &rq->curr->se; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1101 | |
Ingo Molnar | c3b64f1 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1102 | for_each_sched_entity(se) |
| 1103 | set_next_entity(cfs_rq_of(se), se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1104 | } |
| 1105 | #else |
| 1106 | static void set_curr_task_fair(struct rq *rq) |
| 1107 | { |
| 1108 | } |
| 1109 | #endif |
| 1110 | |
| 1111 | /* |
| 1112 | * All the scheduling class methods: |
| 1113 | */ |
| 1114 | struct sched_class fair_sched_class __read_mostly = { |
| 1115 | .enqueue_task = enqueue_task_fair, |
| 1116 | .dequeue_task = dequeue_task_fair, |
| 1117 | .yield_task = yield_task_fair, |
| 1118 | |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1119 | .check_preempt_curr = check_preempt_wakeup, |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1120 | |
| 1121 | .pick_next_task = pick_next_task_fair, |
| 1122 | .put_prev_task = put_prev_task_fair, |
| 1123 | |
| 1124 | .load_balance = load_balance_fair, |
| 1125 | |
| 1126 | .set_curr_task = set_curr_task_fair, |
| 1127 | .task_tick = task_tick_fair, |
| 1128 | .task_new = task_new_fair, |
| 1129 | }; |
| 1130 | |
| 1131 | #ifdef CONFIG_SCHED_DEBUG |
Ingo Molnar | 5cef9ec | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1132 | static void print_cfs_stats(struct seq_file *m, int cpu) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1133 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1134 | struct cfs_rq *cfs_rq; |
| 1135 | |
Ingo Molnar | c3b64f1 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1136 | for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq) |
Ingo Molnar | 5cef9ec | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1137 | print_cfs_rq(m, cpu, cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1138 | } |
| 1139 | #endif |