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 | |
Peter Zijlstra | 02e0431 | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 119 | static inline u64 |
| 120 | max_vruntime(u64 min_vruntime, u64 vruntime) |
| 121 | { |
| 122 | if ((vruntime > min_vruntime) || |
| 123 | (min_vruntime > (1ULL << 61) && vruntime < (1ULL << 50))) |
| 124 | min_vruntime = vruntime; |
| 125 | |
| 126 | return min_vruntime; |
| 127 | } |
| 128 | |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 129 | static inline void |
| 130 | set_leftmost(struct cfs_rq *cfs_rq, struct rb_node *leftmost) |
| 131 | { |
| 132 | struct sched_entity *se; |
| 133 | |
| 134 | cfs_rq->rb_leftmost = leftmost; |
Peter Zijlstra | 02e0431 | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 135 | if (leftmost) |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 136 | se = rb_entry(leftmost, struct sched_entity, run_node); |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 137 | } |
| 138 | |
Peter Zijlstra | 02e0431 | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 139 | static inline s64 |
| 140 | entity_key(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Peter Zijlstra | 9014623c | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 141 | { |
| 142 | return se->fair_key - cfs_rq->min_vruntime; |
| 143 | } |
| 144 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 145 | /* |
| 146 | * Enqueue an entity into the rb-tree: |
| 147 | */ |
Ingo Molnar | 19ccd97 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 148 | static void |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 149 | __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 150 | { |
| 151 | struct rb_node **link = &cfs_rq->tasks_timeline.rb_node; |
| 152 | struct rb_node *parent = NULL; |
| 153 | struct sched_entity *entry; |
Peter Zijlstra | 9014623c | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 154 | s64 key = entity_key(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 155 | int leftmost = 1; |
| 156 | |
| 157 | /* |
| 158 | * Find the right place in the rbtree: |
| 159 | */ |
| 160 | while (*link) { |
| 161 | parent = *link; |
| 162 | entry = rb_entry(parent, struct sched_entity, run_node); |
| 163 | /* |
| 164 | * We dont care about collisions. Nodes with |
| 165 | * the same key stay together. |
| 166 | */ |
Peter Zijlstra | 9014623c | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 167 | if (key < entity_key(cfs_rq, entry)) { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 168 | link = &parent->rb_left; |
| 169 | } else { |
| 170 | link = &parent->rb_right; |
| 171 | leftmost = 0; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | /* |
| 176 | * Maintain a cache of leftmost tree entries (it is frequently |
| 177 | * used): |
| 178 | */ |
| 179 | if (leftmost) |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 180 | set_leftmost(cfs_rq, &se->run_node); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 181 | |
| 182 | rb_link_node(&se->run_node, parent, link); |
| 183 | rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline); |
| 184 | update_load_add(&cfs_rq->load, se->load.weight); |
| 185 | cfs_rq->nr_running++; |
| 186 | se->on_rq = 1; |
| 187 | } |
| 188 | |
Ingo Molnar | 19ccd97 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 189 | static void |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 190 | __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 191 | { |
| 192 | if (cfs_rq->rb_leftmost == &se->run_node) |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 193 | set_leftmost(cfs_rq, rb_next(&se->run_node)); |
| 194 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 195 | rb_erase(&se->run_node, &cfs_rq->tasks_timeline); |
| 196 | update_load_sub(&cfs_rq->load, se->load.weight); |
| 197 | cfs_rq->nr_running--; |
| 198 | se->on_rq = 0; |
| 199 | } |
| 200 | |
| 201 | static inline struct rb_node *first_fair(struct cfs_rq *cfs_rq) |
| 202 | { |
| 203 | return cfs_rq->rb_leftmost; |
| 204 | } |
| 205 | |
| 206 | static struct sched_entity *__pick_next_entity(struct cfs_rq *cfs_rq) |
| 207 | { |
| 208 | return rb_entry(first_fair(cfs_rq), struct sched_entity, run_node); |
| 209 | } |
| 210 | |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 211 | static inline struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq) |
| 212 | { |
| 213 | struct rb_node **link = &cfs_rq->tasks_timeline.rb_node; |
| 214 | struct sched_entity *se = NULL; |
| 215 | struct rb_node *parent; |
| 216 | |
| 217 | while (*link) { |
| 218 | parent = *link; |
| 219 | se = rb_entry(parent, struct sched_entity, run_node); |
| 220 | link = &parent->rb_right; |
| 221 | } |
| 222 | |
| 223 | return se; |
| 224 | } |
| 225 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 226 | /************************************************************** |
| 227 | * Scheduling class statistics methods: |
| 228 | */ |
| 229 | |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 230 | static u64 __sched_period(unsigned long nr_running) |
| 231 | { |
| 232 | u64 period = sysctl_sched_latency; |
| 233 | unsigned long nr_latency = |
| 234 | sysctl_sched_latency / sysctl_sched_min_granularity; |
| 235 | |
| 236 | if (unlikely(nr_running > nr_latency)) { |
| 237 | period *= nr_running; |
| 238 | do_div(period, nr_latency); |
| 239 | } |
| 240 | |
| 241 | return period; |
| 242 | } |
| 243 | |
Peter Zijlstra | 6d0f0eb | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 244 | 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] | 245 | { |
Peter Zijlstra | 6d0f0eb | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 246 | u64 period = __sched_period(cfs_rq->nr_running); |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 247 | |
Peter Zijlstra | 6d0f0eb | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 248 | period *= se->load.weight; |
| 249 | do_div(period, cfs_rq->load.weight); |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 250 | |
Peter Zijlstra | 6d0f0eb | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 251 | return period; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 252 | } |
| 253 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 254 | /* |
| 255 | * Update the current task's runtime statistics. Skip current tasks that |
| 256 | * are not in our scheduling class. |
| 257 | */ |
| 258 | static inline void |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 259 | __update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr, |
| 260 | unsigned long delta_exec) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 261 | { |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 262 | unsigned long delta_exec_weighted; |
Peter Zijlstra | 02e0431 | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 263 | u64 next_vruntime, min_vruntime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 264 | |
Ingo Molnar | 8179ca23 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 265 | schedstat_set(curr->exec_max, max((u64)delta_exec, curr->exec_max)); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 266 | |
| 267 | curr->sum_exec_runtime += delta_exec; |
Ingo Molnar | 7a62eab | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 268 | schedstat_add(cfs_rq, exec_clock, delta_exec); |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 269 | delta_exec_weighted = delta_exec; |
| 270 | if (unlikely(curr->load.weight != NICE_0_LOAD)) { |
| 271 | delta_exec_weighted = calc_delta_fair(delta_exec_weighted, |
| 272 | &curr->load); |
| 273 | } |
| 274 | curr->vruntime += delta_exec_weighted; |
Peter Zijlstra | 02e0431 | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 275 | |
| 276 | /* |
| 277 | * maintain cfs_rq->min_vruntime to be a monotonic increasing |
| 278 | * value tracking the leftmost vruntime in the tree. |
| 279 | */ |
| 280 | if (first_fair(cfs_rq)) { |
| 281 | next_vruntime = __pick_next_entity(cfs_rq)->vruntime; |
| 282 | |
| 283 | /* min_vruntime() := !max_vruntime() */ |
| 284 | min_vruntime = max_vruntime(curr->vruntime, next_vruntime); |
| 285 | if (min_vruntime == next_vruntime) |
| 286 | min_vruntime = curr->vruntime; |
| 287 | else |
| 288 | min_vruntime = next_vruntime; |
| 289 | } else |
| 290 | min_vruntime = curr->vruntime; |
| 291 | |
| 292 | cfs_rq->min_vruntime = |
| 293 | max_vruntime(cfs_rq->min_vruntime, min_vruntime); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 294 | } |
| 295 | |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 296 | static void update_curr(struct cfs_rq *cfs_rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 297 | { |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 298 | struct sched_entity *curr = cfs_rq->curr; |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 299 | u64 now = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 300 | unsigned long delta_exec; |
| 301 | |
| 302 | if (unlikely(!curr)) |
| 303 | return; |
| 304 | |
| 305 | /* |
| 306 | * Get the amount of time the current task was running |
| 307 | * since the last time we changed load (this cannot |
| 308 | * overflow on 32 bits): |
| 309 | */ |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 310 | delta_exec = (unsigned long)(now - curr->exec_start); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 311 | |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 312 | __update_curr(cfs_rq, curr, delta_exec); |
| 313 | curr->exec_start = now; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | static inline void |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 317 | 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] | 318 | { |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 319 | schedstat_set(se->wait_start, rq_of(cfs_rq)->clock); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 320 | } |
| 321 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 322 | static inline unsigned long |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 323 | calc_weighted(unsigned long delta, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 324 | { |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 325 | unsigned long weight = se->load.weight; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 326 | |
Ingo Molnar | 08e2388 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 327 | if (unlikely(weight != NICE_0_LOAD)) |
| 328 | return (u64)delta * se->load.weight >> NICE_0_SHIFT; |
| 329 | else |
| 330 | return delta; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 331 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 332 | |
| 333 | /* |
| 334 | * Task is being enqueued - update stats: |
| 335 | */ |
Ingo Molnar | d2417e5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 336 | 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] | 337 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 338 | /* |
| 339 | * Are we enqueueing a waiting task? (for current tasks |
| 340 | * a dequeue/enqueue event is a NOP) |
| 341 | */ |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 342 | if (se != cfs_rq->curr) |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 343 | update_stats_wait_start(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 344 | /* |
| 345 | * Update the key: |
| 346 | */ |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 347 | se->fair_key = se->vruntime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 348 | } |
| 349 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 350 | static void |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 351 | 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] | 352 | { |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 353 | schedstat_set(se->wait_max, max(se->wait_max, |
| 354 | rq_of(cfs_rq)->clock - se->wait_start)); |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 355 | schedstat_set(se->wait_start, 0); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | static inline void |
Ingo Molnar | 19b6a2e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 359 | update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 360 | { |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 361 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 362 | /* |
| 363 | * Mark the end of the wait period if dequeueing a |
| 364 | * waiting task: |
| 365 | */ |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 366 | if (se != cfs_rq->curr) |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 367 | update_stats_wait_end(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | /* |
| 371 | * We are picking a new current task - update its stats: |
| 372 | */ |
| 373 | static inline void |
Ingo Molnar | 79303e9 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 374 | 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] | 375 | { |
| 376 | /* |
| 377 | * We are starting a new run period: |
| 378 | */ |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 379 | se->exec_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | /* |
| 383 | * We are descheduling a task - update its stats: |
| 384 | */ |
| 385 | static inline void |
Ingo Molnar | c7e9b5b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 386 | 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] | 387 | { |
| 388 | se->exec_start = 0; |
| 389 | } |
| 390 | |
| 391 | /************************************************** |
| 392 | * Scheduling class queueing methods: |
| 393 | */ |
| 394 | |
Ingo Molnar | 2396af6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 395 | 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] | 396 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 397 | #ifdef CONFIG_SCHEDSTATS |
| 398 | if (se->sleep_start) { |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 399 | u64 delta = rq_of(cfs_rq)->clock - se->sleep_start; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 400 | |
| 401 | if ((s64)delta < 0) |
| 402 | delta = 0; |
| 403 | |
| 404 | if (unlikely(delta > se->sleep_max)) |
| 405 | se->sleep_max = delta; |
| 406 | |
| 407 | se->sleep_start = 0; |
| 408 | se->sum_sleep_runtime += delta; |
| 409 | } |
| 410 | if (se->block_start) { |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 411 | u64 delta = rq_of(cfs_rq)->clock - se->block_start; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 412 | |
| 413 | if ((s64)delta < 0) |
| 414 | delta = 0; |
| 415 | |
| 416 | if (unlikely(delta > se->block_max)) |
| 417 | se->block_max = delta; |
| 418 | |
| 419 | se->block_start = 0; |
| 420 | se->sum_sleep_runtime += delta; |
Ingo Molnar | 30084fb | 2007-10-02 14:13:08 +0200 | [diff] [blame] | 421 | |
| 422 | /* |
| 423 | * Blocking time is in units of nanosecs, so shift by 20 to |
| 424 | * get a milliseconds-range estimation of the amount of |
| 425 | * time that the task spent sleeping: |
| 426 | */ |
| 427 | if (unlikely(prof_on == SLEEP_PROFILING)) { |
Ingo Molnar | e22f5bb | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 428 | struct task_struct *tsk = task_of(se); |
| 429 | |
Ingo Molnar | 30084fb | 2007-10-02 14:13:08 +0200 | [diff] [blame] | 430 | profile_hits(SLEEP_PROFILING, (void *)get_wchan(tsk), |
| 431 | delta >> 20); |
| 432 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 433 | } |
| 434 | #endif |
| 435 | } |
| 436 | |
| 437 | static void |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 438 | place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) |
| 439 | { |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 440 | u64 min_runtime, latency; |
| 441 | |
| 442 | min_runtime = cfs_rq->min_vruntime; |
Peter Zijlstra | 94dfb5e | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 443 | |
| 444 | if (sched_feat(USE_TREE_AVG)) { |
| 445 | struct sched_entity *last = __pick_last_entity(cfs_rq); |
| 446 | if (last) { |
| 447 | min_runtime = __pick_next_entity(cfs_rq)->vruntime; |
| 448 | min_runtime += last->vruntime; |
| 449 | min_runtime >>= 1; |
| 450 | } |
| 451 | } else if (sched_feat(APPROX_AVG)) |
| 452 | min_runtime += sysctl_sched_latency/2; |
| 453 | |
| 454 | if (initial && sched_feat(START_DEBIT)) |
| 455 | min_runtime += sched_slice(cfs_rq, se); |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 456 | |
| 457 | if (!initial && sched_feat(NEW_FAIR_SLEEPERS)) { |
| 458 | latency = sysctl_sched_latency; |
| 459 | if (min_runtime > latency) |
| 460 | min_runtime -= latency; |
| 461 | else |
| 462 | min_runtime = 0; |
| 463 | } |
| 464 | |
| 465 | se->vruntime = max(se->vruntime, min_runtime); |
| 466 | } |
| 467 | |
| 468 | static void |
Ingo Molnar | 668031c | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 469 | 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] | 470 | { |
| 471 | /* |
| 472 | * Update the fair clock. |
| 473 | */ |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 474 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 475 | |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 476 | if (wakeup) { |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 477 | place_entity(cfs_rq, se, 0); |
Ingo Molnar | 2396af6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 478 | enqueue_sleeper(cfs_rq, se); |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 479 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 480 | |
Ingo Molnar | d2417e5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 481 | update_stats_enqueue(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 482 | __enqueue_entity(cfs_rq, se); |
| 483 | } |
| 484 | |
| 485 | static void |
Ingo Molnar | 525c271 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 486 | 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] | 487 | { |
Ingo Molnar | 19b6a2e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 488 | update_stats_dequeue(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 489 | #ifdef CONFIG_SCHEDSTATS |
Dmitry Adamushko | db36cc7 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 490 | if (sleep) { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 491 | if (entity_is_task(se)) { |
| 492 | struct task_struct *tsk = task_of(se); |
| 493 | |
| 494 | if (tsk->state & TASK_INTERRUPTIBLE) |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 495 | se->sleep_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 496 | if (tsk->state & TASK_UNINTERRUPTIBLE) |
Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 497 | se->block_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 498 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 499 | } |
Dmitry Adamushko | db36cc7 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 500 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 501 | __dequeue_entity(cfs_rq, se); |
| 502 | } |
| 503 | |
| 504 | /* |
| 505 | * Preempt the current task with a newly woken task if needed: |
| 506 | */ |
Peter Zijlstra | 7c92e54 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 507 | static void |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 508 | check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 509 | { |
Peter Zijlstra | 1169783 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 510 | unsigned long ideal_runtime, delta_exec; |
| 511 | |
Peter Zijlstra | 6d0f0eb | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 512 | ideal_runtime = sched_slice(cfs_rq, curr); |
Peter Zijlstra | 1169783 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 513 | delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime; |
| 514 | if (delta_exec > ideal_runtime) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 515 | resched_task(rq_of(cfs_rq)->curr); |
| 516 | } |
| 517 | |
| 518 | static inline void |
Ingo Molnar | 8494f41 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 519 | set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 520 | { |
| 521 | /* |
| 522 | * Any task has to be enqueued before it get to execute on |
| 523 | * a CPU. So account for the time it spent waiting on the |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 524 | * runqueue. |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 525 | */ |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 526 | update_stats_wait_end(cfs_rq, se); |
Ingo Molnar | 79303e9 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 527 | update_stats_curr_start(cfs_rq, se); |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 528 | cfs_rq->curr = se; |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 529 | #ifdef CONFIG_SCHEDSTATS |
| 530 | /* |
| 531 | * Track our maximum slice length, if the CPU's load is at |
| 532 | * least twice that of our own weight (i.e. dont track it |
| 533 | * when there are only lesser-weight tasks around): |
| 534 | */ |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 535 | if (rq_of(cfs_rq)->load.weight >= 2*se->load.weight) { |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 536 | se->slice_max = max(se->slice_max, |
| 537 | se->sum_exec_runtime - se->prev_sum_exec_runtime); |
| 538 | } |
| 539 | #endif |
Peter Zijlstra | 4a55b45 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 540 | se->prev_sum_exec_runtime = se->sum_exec_runtime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 541 | } |
| 542 | |
Ingo Molnar | 9948f4b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 543 | static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 544 | { |
| 545 | struct sched_entity *se = __pick_next_entity(cfs_rq); |
| 546 | |
Ingo Molnar | 8494f41 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 547 | set_next_entity(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 548 | |
| 549 | return se; |
| 550 | } |
| 551 | |
Ingo Molnar | ab6cde2 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 552 | 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] | 553 | { |
| 554 | /* |
| 555 | * If still on the runqueue then deactivate_task() |
| 556 | * was not called and update_curr() has to be done: |
| 557 | */ |
| 558 | if (prev->on_rq) |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 559 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 560 | |
Ingo Molnar | c7e9b5b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 561 | update_stats_curr_end(cfs_rq, prev); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 562 | |
| 563 | if (prev->on_rq) |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 564 | update_stats_wait_start(cfs_rq, prev); |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 565 | cfs_rq->curr = NULL; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | static void entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr) |
| 569 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 570 | /* |
| 571 | * Dequeue and enqueue the task to update its |
| 572 | * position within the tree: |
| 573 | */ |
Ingo Molnar | 525c271 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 574 | dequeue_entity(cfs_rq, curr, 0); |
Ingo Molnar | 668031c | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 575 | enqueue_entity(cfs_rq, curr, 0); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 576 | |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 577 | if (cfs_rq->nr_running > 1) |
| 578 | check_preempt_tick(cfs_rq, curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | /************************************************** |
| 582 | * CFS operations on tasks: |
| 583 | */ |
| 584 | |
| 585 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 586 | |
| 587 | /* Walk up scheduling entities hierarchy */ |
| 588 | #define for_each_sched_entity(se) \ |
| 589 | for (; se; se = se->parent) |
| 590 | |
| 591 | static inline struct cfs_rq *task_cfs_rq(struct task_struct *p) |
| 592 | { |
| 593 | return p->se.cfs_rq; |
| 594 | } |
| 595 | |
| 596 | /* runqueue on which this entity is (to be) queued */ |
| 597 | static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se) |
| 598 | { |
| 599 | return se->cfs_rq; |
| 600 | } |
| 601 | |
| 602 | /* runqueue "owned" by this group */ |
| 603 | static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp) |
| 604 | { |
| 605 | return grp->my_q; |
| 606 | } |
| 607 | |
| 608 | /* Given a group's cfs_rq on one cpu, return its corresponding cfs_rq on |
| 609 | * another cpu ('this_cpu') |
| 610 | */ |
| 611 | static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu) |
| 612 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame^] | 613 | return cfs_rq->tg->cfs_rq[this_cpu]; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | /* Iterate thr' all leaf cfs_rq's on a runqueue */ |
| 617 | #define for_each_leaf_cfs_rq(rq, cfs_rq) \ |
| 618 | list_for_each_entry(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list) |
| 619 | |
| 620 | /* Do the two (enqueued) tasks belong to the same group ? */ |
| 621 | static inline int is_same_group(struct task_struct *curr, struct task_struct *p) |
| 622 | { |
| 623 | if (curr->se.cfs_rq == p->se.cfs_rq) |
| 624 | return 1; |
| 625 | |
| 626 | return 0; |
| 627 | } |
| 628 | |
| 629 | #else /* CONFIG_FAIR_GROUP_SCHED */ |
| 630 | |
| 631 | #define for_each_sched_entity(se) \ |
| 632 | for (; se; se = NULL) |
| 633 | |
| 634 | static inline struct cfs_rq *task_cfs_rq(struct task_struct *p) |
| 635 | { |
| 636 | return &task_rq(p)->cfs; |
| 637 | } |
| 638 | |
| 639 | static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se) |
| 640 | { |
| 641 | struct task_struct *p = task_of(se); |
| 642 | struct rq *rq = task_rq(p); |
| 643 | |
| 644 | return &rq->cfs; |
| 645 | } |
| 646 | |
| 647 | /* runqueue "owned" by this group */ |
| 648 | static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp) |
| 649 | { |
| 650 | return NULL; |
| 651 | } |
| 652 | |
| 653 | static inline struct cfs_rq *cpu_cfs_rq(struct cfs_rq *cfs_rq, int this_cpu) |
| 654 | { |
| 655 | return &cpu_rq(this_cpu)->cfs; |
| 656 | } |
| 657 | |
| 658 | #define for_each_leaf_cfs_rq(rq, cfs_rq) \ |
| 659 | for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL) |
| 660 | |
| 661 | static inline int is_same_group(struct task_struct *curr, struct task_struct *p) |
| 662 | { |
| 663 | return 1; |
| 664 | } |
| 665 | |
| 666 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 667 | |
| 668 | /* |
| 669 | * The enqueue_task method is called before nr_running is |
| 670 | * increased. Here we update the fair scheduling stats and |
| 671 | * then put the task into the rbtree: |
| 672 | */ |
Ingo Molnar | fd390f6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 673 | 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] | 674 | { |
| 675 | struct cfs_rq *cfs_rq; |
| 676 | struct sched_entity *se = &p->se; |
| 677 | |
| 678 | for_each_sched_entity(se) { |
| 679 | if (se->on_rq) |
| 680 | break; |
| 681 | cfs_rq = cfs_rq_of(se); |
Ingo Molnar | 668031c | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 682 | enqueue_entity(cfs_rq, se, wakeup); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 683 | } |
| 684 | } |
| 685 | |
| 686 | /* |
| 687 | * The dequeue_task method is called before nr_running is |
| 688 | * decreased. We remove the task from the rbtree and |
| 689 | * update the fair scheduling stats: |
| 690 | */ |
Ingo Molnar | f02231e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 691 | 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] | 692 | { |
| 693 | struct cfs_rq *cfs_rq; |
| 694 | struct sched_entity *se = &p->se; |
| 695 | |
| 696 | for_each_sched_entity(se) { |
| 697 | cfs_rq = cfs_rq_of(se); |
Ingo Molnar | 525c271 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 698 | dequeue_entity(cfs_rq, se, sleep); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 699 | /* Don't dequeue parent if it has other entities besides us */ |
| 700 | if (cfs_rq->load.weight) |
| 701 | break; |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | /* |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 706 | * sched_yield() support is very simple - we dequeue and enqueue. |
| 707 | * |
| 708 | * 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] | 709 | */ |
| 710 | static void yield_task_fair(struct rq *rq, struct task_struct *p) |
| 711 | { |
| 712 | struct cfs_rq *cfs_rq = task_cfs_rq(p); |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 713 | struct rb_node **link = &cfs_rq->tasks_timeline.rb_node; |
| 714 | struct sched_entity *rightmost, *se = &p->se; |
| 715 | struct rb_node *parent; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 716 | |
| 717 | /* |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 718 | * Are we the only task in the tree? |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 719 | */ |
Ingo Molnar | 1799e35 | 2007-09-19 23:34:46 +0200 | [diff] [blame] | 720 | if (unlikely(cfs_rq->nr_running == 1)) |
| 721 | return; |
| 722 | |
| 723 | if (likely(!sysctl_sched_compat_yield)) { |
| 724 | __update_rq_clock(rq); |
| 725 | /* |
| 726 | * Dequeue and enqueue the task to update its |
| 727 | * position within the tree: |
| 728 | */ |
| 729 | dequeue_entity(cfs_rq, &p->se, 0); |
| 730 | enqueue_entity(cfs_rq, &p->se, 0); |
| 731 | |
| 732 | return; |
| 733 | } |
| 734 | /* |
| 735 | * Find the rightmost entry in the rbtree: |
| 736 | */ |
| 737 | do { |
| 738 | parent = *link; |
| 739 | link = &parent->rb_right; |
| 740 | } while (*link); |
| 741 | |
| 742 | rightmost = rb_entry(parent, struct sched_entity, run_node); |
| 743 | /* |
| 744 | * Already in the rightmost position? |
| 745 | */ |
| 746 | if (unlikely(rightmost == se)) |
| 747 | return; |
| 748 | |
| 749 | /* |
| 750 | * Minimally necessary key value to be last in the tree: |
| 751 | */ |
| 752 | se->fair_key = rightmost->fair_key + 1; |
| 753 | |
| 754 | if (cfs_rq->rb_leftmost == &se->run_node) |
| 755 | cfs_rq->rb_leftmost = rb_next(&se->run_node); |
| 756 | /* |
| 757 | * Relink the task to the rightmost position: |
| 758 | */ |
| 759 | rb_erase(&se->run_node, &cfs_rq->tasks_timeline); |
| 760 | rb_link_node(&se->run_node, parent, link); |
| 761 | rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | /* |
| 765 | * Preempt the current task with a newly woken task if needed: |
| 766 | */ |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 767 | static void check_preempt_wakeup(struct rq *rq, struct task_struct *p) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 768 | { |
| 769 | struct task_struct *curr = rq->curr; |
| 770 | struct cfs_rq *cfs_rq = task_cfs_rq(curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 771 | |
| 772 | if (unlikely(rt_prio(p->prio))) { |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 773 | update_rq_clock(rq); |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 774 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 775 | resched_task(curr); |
| 776 | return; |
| 777 | } |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 778 | if (is_same_group(curr, p)) { |
| 779 | s64 delta = curr->se.vruntime - p->se.vruntime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 780 | |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 781 | if (delta > (s64)sysctl_sched_wakeup_granularity) |
| 782 | resched_task(curr); |
| 783 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 784 | } |
| 785 | |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 786 | static struct task_struct *pick_next_task_fair(struct rq *rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 787 | { |
| 788 | struct cfs_rq *cfs_rq = &rq->cfs; |
| 789 | struct sched_entity *se; |
| 790 | |
| 791 | if (unlikely(!cfs_rq->nr_running)) |
| 792 | return NULL; |
| 793 | |
| 794 | do { |
Ingo Molnar | 9948f4b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 795 | se = pick_next_entity(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 796 | cfs_rq = group_cfs_rq(se); |
| 797 | } while (cfs_rq); |
| 798 | |
| 799 | return task_of(se); |
| 800 | } |
| 801 | |
| 802 | /* |
| 803 | * Account for a descheduled task: |
| 804 | */ |
Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 805 | 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] | 806 | { |
| 807 | struct sched_entity *se = &prev->se; |
| 808 | struct cfs_rq *cfs_rq; |
| 809 | |
| 810 | for_each_sched_entity(se) { |
| 811 | cfs_rq = cfs_rq_of(se); |
Ingo Molnar | ab6cde2 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 812 | put_prev_entity(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 813 | } |
| 814 | } |
| 815 | |
| 816 | /************************************************** |
| 817 | * Fair scheduling class load-balancing methods: |
| 818 | */ |
| 819 | |
| 820 | /* |
| 821 | * Load-balancing iterator. Note: while the runqueue stays locked |
| 822 | * during the whole iteration, the current task might be |
| 823 | * dequeued so the iterator has to be dequeue-safe. Here we |
| 824 | * achieve that by always pre-iterating before returning |
| 825 | * the current task: |
| 826 | */ |
| 827 | static inline struct task_struct * |
| 828 | __load_balance_iterator(struct cfs_rq *cfs_rq, struct rb_node *curr) |
| 829 | { |
| 830 | struct task_struct *p; |
| 831 | |
| 832 | if (!curr) |
| 833 | return NULL; |
| 834 | |
| 835 | p = rb_entry(curr, struct task_struct, se.run_node); |
| 836 | cfs_rq->rb_load_balance_curr = rb_next(curr); |
| 837 | |
| 838 | return p; |
| 839 | } |
| 840 | |
| 841 | static struct task_struct *load_balance_start_fair(void *arg) |
| 842 | { |
| 843 | struct cfs_rq *cfs_rq = arg; |
| 844 | |
| 845 | return __load_balance_iterator(cfs_rq, first_fair(cfs_rq)); |
| 846 | } |
| 847 | |
| 848 | static struct task_struct *load_balance_next_fair(void *arg) |
| 849 | { |
| 850 | struct cfs_rq *cfs_rq = arg; |
| 851 | |
| 852 | return __load_balance_iterator(cfs_rq, cfs_rq->rb_load_balance_curr); |
| 853 | } |
| 854 | |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 855 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 856 | static int cfs_rq_best_prio(struct cfs_rq *cfs_rq) |
| 857 | { |
| 858 | struct sched_entity *curr; |
| 859 | struct task_struct *p; |
| 860 | |
| 861 | if (!cfs_rq->nr_running) |
| 862 | return MAX_PRIO; |
| 863 | |
| 864 | curr = __pick_next_entity(cfs_rq); |
| 865 | p = task_of(curr); |
| 866 | |
| 867 | return p->prio; |
| 868 | } |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 869 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 870 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 871 | static unsigned long |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 872 | 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] | 873 | unsigned long max_nr_move, unsigned long max_load_move, |
| 874 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 875 | int *all_pinned, int *this_best_prio) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 876 | { |
| 877 | struct cfs_rq *busy_cfs_rq; |
| 878 | unsigned long load_moved, total_nr_moved = 0, nr_moved; |
| 879 | long rem_load_move = max_load_move; |
| 880 | struct rq_iterator cfs_rq_iterator; |
| 881 | |
| 882 | cfs_rq_iterator.start = load_balance_start_fair; |
| 883 | cfs_rq_iterator.next = load_balance_next_fair; |
| 884 | |
| 885 | for_each_leaf_cfs_rq(busiest, busy_cfs_rq) { |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 886 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 887 | struct cfs_rq *this_cfs_rq; |
Ingo Molnar | e56f31a | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 888 | long imbalance; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 889 | unsigned long maxload; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 890 | |
| 891 | this_cfs_rq = cpu_cfs_rq(busy_cfs_rq, this_cpu); |
| 892 | |
Ingo Molnar | e56f31a | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 893 | imbalance = busy_cfs_rq->load.weight - this_cfs_rq->load.weight; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 894 | /* Don't pull if this_cfs_rq has more load than busy_cfs_rq */ |
| 895 | if (imbalance <= 0) |
| 896 | continue; |
| 897 | |
| 898 | /* Don't pull more than imbalance/2 */ |
| 899 | imbalance /= 2; |
| 900 | maxload = min(rem_load_move, imbalance); |
| 901 | |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 902 | *this_best_prio = cfs_rq_best_prio(this_cfs_rq); |
| 903 | #else |
Ingo Molnar | e56f31a | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 904 | # define maxload rem_load_move |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 905 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 906 | /* pass busy_cfs_rq argument into |
| 907 | * load_balance_[start|next]_fair iterators |
| 908 | */ |
| 909 | cfs_rq_iterator.arg = busy_cfs_rq; |
| 910 | nr_moved = balance_tasks(this_rq, this_cpu, busiest, |
| 911 | max_nr_move, maxload, sd, idle, all_pinned, |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 912 | &load_moved, this_best_prio, &cfs_rq_iterator); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 913 | |
| 914 | total_nr_moved += nr_moved; |
| 915 | max_nr_move -= nr_moved; |
| 916 | rem_load_move -= load_moved; |
| 917 | |
| 918 | if (max_nr_move <= 0 || rem_load_move <= 0) |
| 919 | break; |
| 920 | } |
| 921 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 922 | return max_load_move - rem_load_move; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | /* |
| 926 | * scheduler tick hitting a task of our scheduling class: |
| 927 | */ |
| 928 | static void task_tick_fair(struct rq *rq, struct task_struct *curr) |
| 929 | { |
| 930 | struct cfs_rq *cfs_rq; |
| 931 | struct sched_entity *se = &curr->se; |
| 932 | |
| 933 | for_each_sched_entity(se) { |
| 934 | cfs_rq = cfs_rq_of(se); |
| 935 | entity_tick(cfs_rq, se); |
| 936 | } |
| 937 | } |
| 938 | |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 939 | #define swap(a,b) do { typeof(a) tmp = (a); (a) = (b); (b) = tmp; } while (0) |
| 940 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 941 | /* |
| 942 | * Share the fairness runtime between parent and child, thus the |
| 943 | * total amount of pressure for CPU stays equal - new tasks |
| 944 | * get a chance to run but frequent forkers are not allowed to |
| 945 | * monopolize the CPU. Note: the parent runqueue is locked, |
| 946 | * the child is not running yet. |
| 947 | */ |
Ingo Molnar | ee0827d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 948 | static void task_new_fair(struct rq *rq, struct task_struct *p) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 949 | { |
| 950 | struct cfs_rq *cfs_rq = task_cfs_rq(p); |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 951 | struct sched_entity *se = &p->se, *curr = cfs_rq->curr; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 952 | |
| 953 | sched_info_queued(p); |
| 954 | |
Ting Yang | 7109c442 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 955 | update_curr(cfs_rq); |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 956 | place_entity(cfs_rq, se, 1); |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 957 | |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 958 | if (sysctl_sched_child_runs_first && |
| 959 | curr->vruntime < se->vruntime) { |
| 960 | |
| 961 | dequeue_entity(cfs_rq, curr, 0); |
| 962 | swap(curr->vruntime, se->vruntime); |
| 963 | enqueue_entity(cfs_rq, curr, 0); |
| 964 | } |
| 965 | |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 966 | update_stats_enqueue(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 967 | __enqueue_entity(cfs_rq, se); |
Ingo Molnar | bb61c21 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 968 | resched_task(rq->curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 972 | /* Account for a task changing its policy or group. |
| 973 | * |
| 974 | * This routine is mostly called to set cfs_rq->curr field when a task |
| 975 | * migrates between groups/classes. |
| 976 | */ |
| 977 | static void set_curr_task_fair(struct rq *rq) |
| 978 | { |
Bruce Ashfield | 7c6c16f | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 979 | struct sched_entity *se = &rq->curr->se; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 980 | |
Ingo Molnar | c3b64f1 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 981 | for_each_sched_entity(se) |
| 982 | set_next_entity(cfs_rq_of(se), se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 983 | } |
| 984 | #else |
| 985 | static void set_curr_task_fair(struct rq *rq) |
| 986 | { |
| 987 | } |
| 988 | #endif |
| 989 | |
| 990 | /* |
| 991 | * All the scheduling class methods: |
| 992 | */ |
| 993 | struct sched_class fair_sched_class __read_mostly = { |
| 994 | .enqueue_task = enqueue_task_fair, |
| 995 | .dequeue_task = dequeue_task_fair, |
| 996 | .yield_task = yield_task_fair, |
| 997 | |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 998 | .check_preempt_curr = check_preempt_wakeup, |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 999 | |
| 1000 | .pick_next_task = pick_next_task_fair, |
| 1001 | .put_prev_task = put_prev_task_fair, |
| 1002 | |
| 1003 | .load_balance = load_balance_fair, |
| 1004 | |
| 1005 | .set_curr_task = set_curr_task_fair, |
| 1006 | .task_tick = task_tick_fair, |
| 1007 | .task_new = task_new_fair, |
| 1008 | }; |
| 1009 | |
| 1010 | #ifdef CONFIG_SCHED_DEBUG |
Ingo Molnar | 5cef9ec | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1011 | static void print_cfs_stats(struct seq_file *m, int cpu) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1012 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1013 | struct cfs_rq *cfs_rq; |
| 1014 | |
Ingo Molnar | c3b64f1 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1015 | for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq) |
Ingo Molnar | 5cef9ec | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1016 | print_cfs_rq(m, cpu, cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1017 | } |
| 1018 | #endif |