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 | |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 23 | #include <linux/latencytop.h> |
Christian Ehrhardt | 1983a92 | 2009-11-30 12:16:47 +0100 | [diff] [blame] | 24 | #include <linux/sched.h> |
Sisir Koppaka | 3436ae1 | 2011-03-26 18:22:55 +0530 | [diff] [blame] | 25 | #include <linux/cpumask.h> |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 26 | #include <linux/slab.h> |
| 27 | #include <linux/profile.h> |
| 28 | #include <linux/interrupt.h> |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 29 | #include <linux/mempolicy.h> |
Mel Gorman | e14808b | 2012-11-19 10:59:15 +0000 | [diff] [blame] | 30 | #include <linux/migrate.h> |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 31 | #include <linux/task_work.h> |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 32 | |
| 33 | #include <trace/events/sched.h> |
| 34 | |
| 35 | #include "sched.h" |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 36 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 37 | /* |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 38 | * Targeted preemption latency for CPU-bound tasks: |
Takuya Yoshikawa | 864616e | 2010-10-14 16:09:13 +0900 | [diff] [blame] | 39 | * (default: 6ms * (1 + ilog(ncpus)), units: nanoseconds) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 40 | * |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 41 | * NOTE: this latency value is not the same as the concept of |
Ingo Molnar | d274a4c | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 42 | * 'timeslice length' - timeslices in CFS are of variable length |
| 43 | * and have no persistent notion like in traditional, time-slice |
| 44 | * based scheduling concepts. |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 45 | * |
Ingo Molnar | d274a4c | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 46 | * (to see the precise effective timeslice length of your workload, |
| 47 | * run vmstat and monitor the context-switches (cs) field) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 48 | */ |
Mike Galbraith | 2140692 | 2010-03-11 17:17:15 +0100 | [diff] [blame] | 49 | unsigned int sysctl_sched_latency = 6000000ULL; |
| 50 | unsigned int normalized_sysctl_sched_latency = 6000000ULL; |
Ingo Molnar | 2bd8e6d | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 51 | |
| 52 | /* |
Christian Ehrhardt | 1983a92 | 2009-11-30 12:16:47 +0100 | [diff] [blame] | 53 | * The initial- and re-scaling of tunables is configurable |
| 54 | * (default SCHED_TUNABLESCALING_LOG = *(1+ilog(ncpus)) |
| 55 | * |
| 56 | * Options are: |
| 57 | * SCHED_TUNABLESCALING_NONE - unscaled, always *1 |
| 58 | * SCHED_TUNABLESCALING_LOG - scaled logarithmical, *1+ilog(ncpus) |
| 59 | * SCHED_TUNABLESCALING_LINEAR - scaled linear, *ncpus |
| 60 | */ |
| 61 | enum sched_tunable_scaling sysctl_sched_tunable_scaling |
| 62 | = SCHED_TUNABLESCALING_LOG; |
| 63 | |
| 64 | /* |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 65 | * Minimal preemption granularity for CPU-bound tasks: |
Takuya Yoshikawa | 864616e | 2010-10-14 16:09:13 +0900 | [diff] [blame] | 66 | * (default: 0.75 msec * (1 + ilog(ncpus)), units: nanoseconds) |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 67 | */ |
Ingo Molnar | 0bf377b | 2010-09-12 08:14:52 +0200 | [diff] [blame] | 68 | unsigned int sysctl_sched_min_granularity = 750000ULL; |
| 69 | unsigned int normalized_sysctl_sched_min_granularity = 750000ULL; |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 70 | |
| 71 | /* |
| 72 | * is kept at sysctl_sched_latency / sysctl_sched_min_granularity |
| 73 | */ |
Ingo Molnar | 0bf377b | 2010-09-12 08:14:52 +0200 | [diff] [blame] | 74 | static unsigned int sched_nr_latency = 8; |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 75 | |
| 76 | /* |
Mike Galbraith | 2bba22c | 2009-09-09 15:41:37 +0200 | [diff] [blame] | 77 | * After fork, child runs first. If set to 0 (default) then |
Ingo Molnar | 2bd8e6d | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 78 | * parent will (try to) run first. |
| 79 | */ |
Mike Galbraith | 2bba22c | 2009-09-09 15:41:37 +0200 | [diff] [blame] | 80 | unsigned int sysctl_sched_child_runs_first __read_mostly; |
Peter Zijlstra | 2180508 | 2007-08-25 18:41:53 +0200 | [diff] [blame] | 81 | |
| 82 | /* |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 83 | * SCHED_OTHER wake-up granularity. |
Mike Galbraith | 172e082 | 2009-09-09 15:41:37 +0200 | [diff] [blame] | 84 | * (default: 1 msec * (1 + ilog(ncpus)), units: nanoseconds) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 85 | * |
| 86 | * This option delays the preemption effects of decoupled workloads |
| 87 | * and reduces their over-scheduling. Synchronous workloads will still |
| 88 | * have immediate wakeup/sleep latencies. |
| 89 | */ |
Mike Galbraith | 172e082 | 2009-09-09 15:41:37 +0200 | [diff] [blame] | 90 | unsigned int sysctl_sched_wakeup_granularity = 1000000UL; |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 91 | unsigned int normalized_sysctl_sched_wakeup_granularity = 1000000UL; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 92 | |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 93 | const_debug unsigned int sysctl_sched_migration_cost = 500000UL; |
| 94 | |
Paul Turner | a7a4f8a | 2010-11-15 15:47:06 -0800 | [diff] [blame] | 95 | /* |
| 96 | * The exponential sliding window over which load is averaged for shares |
| 97 | * distribution. |
| 98 | * (default: 10msec) |
| 99 | */ |
| 100 | unsigned int __read_mostly sysctl_sched_shares_window = 10000000UL; |
| 101 | |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 102 | #ifdef CONFIG_CFS_BANDWIDTH |
| 103 | /* |
| 104 | * Amount of runtime to allocate from global (tg) to local (per-cfs_rq) pool |
| 105 | * each time a cfs_rq requests quota. |
| 106 | * |
| 107 | * Note: in the case that the slice exceeds the runtime remaining (either due |
| 108 | * to consumption or the quota being specified to be smaller than the slice) |
| 109 | * we will always only issue the remaining available time. |
| 110 | * |
| 111 | * default: 5 msec, units: microseconds |
| 112 | */ |
| 113 | unsigned int sysctl_sched_cfs_bandwidth_slice = 5000UL; |
| 114 | #endif |
| 115 | |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 116 | /* |
| 117 | * Increase the granularity value when there are more CPUs, |
| 118 | * because with more CPUs the 'effective latency' as visible |
| 119 | * to users decreases. But the relationship is not linear, |
| 120 | * so pick a second-best guess by going with the log2 of the |
| 121 | * number of CPUs. |
| 122 | * |
| 123 | * This idea comes from the SD scheduler of Con Kolivas: |
| 124 | */ |
| 125 | static int get_update_sysctl_factor(void) |
| 126 | { |
| 127 | unsigned int cpus = min_t(int, num_online_cpus(), 8); |
| 128 | unsigned int factor; |
| 129 | |
| 130 | switch (sysctl_sched_tunable_scaling) { |
| 131 | case SCHED_TUNABLESCALING_NONE: |
| 132 | factor = 1; |
| 133 | break; |
| 134 | case SCHED_TUNABLESCALING_LINEAR: |
| 135 | factor = cpus; |
| 136 | break; |
| 137 | case SCHED_TUNABLESCALING_LOG: |
| 138 | default: |
| 139 | factor = 1 + ilog2(cpus); |
| 140 | break; |
| 141 | } |
| 142 | |
| 143 | return factor; |
| 144 | } |
| 145 | |
| 146 | static void update_sysctl(void) |
| 147 | { |
| 148 | unsigned int factor = get_update_sysctl_factor(); |
| 149 | |
| 150 | #define SET_SYSCTL(name) \ |
| 151 | (sysctl_##name = (factor) * normalized_sysctl_##name) |
| 152 | SET_SYSCTL(sched_min_granularity); |
| 153 | SET_SYSCTL(sched_latency); |
| 154 | SET_SYSCTL(sched_wakeup_granularity); |
| 155 | #undef SET_SYSCTL |
| 156 | } |
| 157 | |
| 158 | void sched_init_granularity(void) |
| 159 | { |
| 160 | update_sysctl(); |
| 161 | } |
| 162 | |
| 163 | #if BITS_PER_LONG == 32 |
| 164 | # define WMULT_CONST (~0UL) |
| 165 | #else |
| 166 | # define WMULT_CONST (1UL << 32) |
| 167 | #endif |
| 168 | |
| 169 | #define WMULT_SHIFT 32 |
| 170 | |
| 171 | /* |
| 172 | * Shift right and round: |
| 173 | */ |
| 174 | #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y)) |
| 175 | |
| 176 | /* |
| 177 | * delta *= weight / lw |
| 178 | */ |
| 179 | static unsigned long |
| 180 | calc_delta_mine(unsigned long delta_exec, unsigned long weight, |
| 181 | struct load_weight *lw) |
| 182 | { |
| 183 | u64 tmp; |
| 184 | |
| 185 | /* |
| 186 | * weight can be less than 2^SCHED_LOAD_RESOLUTION for task group sched |
| 187 | * entities since MIN_SHARES = 2. Treat weight as 1 if less than |
| 188 | * 2^SCHED_LOAD_RESOLUTION. |
| 189 | */ |
| 190 | if (likely(weight > (1UL << SCHED_LOAD_RESOLUTION))) |
| 191 | tmp = (u64)delta_exec * scale_load_down(weight); |
| 192 | else |
| 193 | tmp = (u64)delta_exec; |
| 194 | |
| 195 | if (!lw->inv_weight) { |
| 196 | unsigned long w = scale_load_down(lw->weight); |
| 197 | |
| 198 | if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST)) |
| 199 | lw->inv_weight = 1; |
| 200 | else if (unlikely(!w)) |
| 201 | lw->inv_weight = WMULT_CONST; |
| 202 | else |
| 203 | lw->inv_weight = WMULT_CONST / w; |
| 204 | } |
| 205 | |
| 206 | /* |
| 207 | * Check whether we'd overflow the 64-bit multiplication: |
| 208 | */ |
| 209 | if (unlikely(tmp > WMULT_CONST)) |
| 210 | tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight, |
| 211 | WMULT_SHIFT/2); |
| 212 | else |
| 213 | tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT); |
| 214 | |
| 215 | return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX); |
| 216 | } |
| 217 | |
| 218 | |
| 219 | const struct sched_class fair_sched_class; |
Peter Zijlstra | a4c2f00 | 2008-10-17 19:27:03 +0200 | [diff] [blame] | 220 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 221 | /************************************************************** |
| 222 | * CFS operations on generic schedulable entities: |
| 223 | */ |
| 224 | |
| 225 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 226 | |
| 227 | /* cpu runqueue to which this cfs_rq is attached */ |
| 228 | static inline struct rq *rq_of(struct cfs_rq *cfs_rq) |
| 229 | { |
| 230 | return cfs_rq->rq; |
| 231 | } |
| 232 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 233 | /* An entity is a task if it doesn't "own" a runqueue */ |
| 234 | #define entity_is_task(se) (!se->my_q) |
| 235 | |
Peter Zijlstra | 8f48894 | 2009-07-24 12:25:30 +0200 | [diff] [blame] | 236 | static inline struct task_struct *task_of(struct sched_entity *se) |
| 237 | { |
| 238 | #ifdef CONFIG_SCHED_DEBUG |
| 239 | WARN_ON_ONCE(!entity_is_task(se)); |
| 240 | #endif |
| 241 | return container_of(se, struct task_struct, se); |
| 242 | } |
| 243 | |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 244 | /* Walk up scheduling entities hierarchy */ |
| 245 | #define for_each_sched_entity(se) \ |
| 246 | for (; se; se = se->parent) |
| 247 | |
| 248 | static inline struct cfs_rq *task_cfs_rq(struct task_struct *p) |
| 249 | { |
| 250 | return p->se.cfs_rq; |
| 251 | } |
| 252 | |
| 253 | /* runqueue on which this entity is (to be) queued */ |
| 254 | static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se) |
| 255 | { |
| 256 | return se->cfs_rq; |
| 257 | } |
| 258 | |
| 259 | /* runqueue "owned" by this group */ |
| 260 | static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp) |
| 261 | { |
| 262 | return grp->my_q; |
| 263 | } |
| 264 | |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 265 | static inline void list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq) |
| 266 | { |
| 267 | if (!cfs_rq->on_list) { |
Paul Turner | 67e8625 | 2010-11-15 15:47:05 -0800 | [diff] [blame] | 268 | /* |
| 269 | * Ensure we either appear before our parent (if already |
| 270 | * enqueued) or force our parent to appear after us when it is |
| 271 | * enqueued. The fact that we always enqueue bottom-up |
| 272 | * reduces this to two cases. |
| 273 | */ |
| 274 | if (cfs_rq->tg->parent && |
| 275 | cfs_rq->tg->parent->cfs_rq[cpu_of(rq_of(cfs_rq))]->on_list) { |
| 276 | list_add_rcu(&cfs_rq->leaf_cfs_rq_list, |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 277 | &rq_of(cfs_rq)->leaf_cfs_rq_list); |
Paul Turner | 67e8625 | 2010-11-15 15:47:05 -0800 | [diff] [blame] | 278 | } else { |
| 279 | list_add_tail_rcu(&cfs_rq->leaf_cfs_rq_list, |
| 280 | &rq_of(cfs_rq)->leaf_cfs_rq_list); |
| 281 | } |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 282 | |
| 283 | cfs_rq->on_list = 1; |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq) |
| 288 | { |
| 289 | if (cfs_rq->on_list) { |
| 290 | list_del_rcu(&cfs_rq->leaf_cfs_rq_list); |
| 291 | cfs_rq->on_list = 0; |
| 292 | } |
| 293 | } |
| 294 | |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 295 | /* Iterate thr' all leaf cfs_rq's on a runqueue */ |
| 296 | #define for_each_leaf_cfs_rq(rq, cfs_rq) \ |
| 297 | list_for_each_entry_rcu(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list) |
| 298 | |
| 299 | /* Do the two (enqueued) entities belong to the same group ? */ |
| 300 | static inline int |
| 301 | is_same_group(struct sched_entity *se, struct sched_entity *pse) |
| 302 | { |
| 303 | if (se->cfs_rq == pse->cfs_rq) |
| 304 | return 1; |
| 305 | |
| 306 | return 0; |
| 307 | } |
| 308 | |
| 309 | static inline struct sched_entity *parent_entity(struct sched_entity *se) |
| 310 | { |
| 311 | return se->parent; |
| 312 | } |
| 313 | |
Peter Zijlstra | 464b752 | 2008-10-24 11:06:15 +0200 | [diff] [blame] | 314 | /* return depth at which a sched entity is present in the hierarchy */ |
| 315 | static inline int depth_se(struct sched_entity *se) |
| 316 | { |
| 317 | int depth = 0; |
| 318 | |
| 319 | for_each_sched_entity(se) |
| 320 | depth++; |
| 321 | |
| 322 | return depth; |
| 323 | } |
| 324 | |
| 325 | static void |
| 326 | find_matching_se(struct sched_entity **se, struct sched_entity **pse) |
| 327 | { |
| 328 | int se_depth, pse_depth; |
| 329 | |
| 330 | /* |
| 331 | * preemption test can be made between sibling entities who are in the |
| 332 | * same cfs_rq i.e who have a common parent. Walk up the hierarchy of |
| 333 | * both tasks until we find their ancestors who are siblings of common |
| 334 | * parent. |
| 335 | */ |
| 336 | |
| 337 | /* First walk up until both entities are at same depth */ |
| 338 | se_depth = depth_se(*se); |
| 339 | pse_depth = depth_se(*pse); |
| 340 | |
| 341 | while (se_depth > pse_depth) { |
| 342 | se_depth--; |
| 343 | *se = parent_entity(*se); |
| 344 | } |
| 345 | |
| 346 | while (pse_depth > se_depth) { |
| 347 | pse_depth--; |
| 348 | *pse = parent_entity(*pse); |
| 349 | } |
| 350 | |
| 351 | while (!is_same_group(*se, *pse)) { |
| 352 | *se = parent_entity(*se); |
| 353 | *pse = parent_entity(*pse); |
| 354 | } |
| 355 | } |
| 356 | |
Peter Zijlstra | 8f48894 | 2009-07-24 12:25:30 +0200 | [diff] [blame] | 357 | #else /* !CONFIG_FAIR_GROUP_SCHED */ |
| 358 | |
| 359 | static inline struct task_struct *task_of(struct sched_entity *se) |
| 360 | { |
| 361 | return container_of(se, struct task_struct, se); |
| 362 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 363 | |
| 364 | static inline struct rq *rq_of(struct cfs_rq *cfs_rq) |
| 365 | { |
| 366 | return container_of(cfs_rq, struct rq, cfs); |
| 367 | } |
| 368 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 369 | #define entity_is_task(se) 1 |
| 370 | |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 371 | #define for_each_sched_entity(se) \ |
| 372 | for (; se; se = NULL) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 373 | |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 374 | static inline struct cfs_rq *task_cfs_rq(struct task_struct *p) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 375 | { |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 376 | return &task_rq(p)->cfs; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 377 | } |
| 378 | |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 379 | static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se) |
| 380 | { |
| 381 | struct task_struct *p = task_of(se); |
| 382 | struct rq *rq = task_rq(p); |
| 383 | |
| 384 | return &rq->cfs; |
| 385 | } |
| 386 | |
| 387 | /* runqueue "owned" by this group */ |
| 388 | static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp) |
| 389 | { |
| 390 | return NULL; |
| 391 | } |
| 392 | |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 393 | static inline void list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq) |
| 394 | { |
| 395 | } |
| 396 | |
| 397 | static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq) |
| 398 | { |
| 399 | } |
| 400 | |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 401 | #define for_each_leaf_cfs_rq(rq, cfs_rq) \ |
| 402 | for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL) |
| 403 | |
| 404 | static inline int |
| 405 | is_same_group(struct sched_entity *se, struct sched_entity *pse) |
| 406 | { |
| 407 | return 1; |
| 408 | } |
| 409 | |
| 410 | static inline struct sched_entity *parent_entity(struct sched_entity *se) |
| 411 | { |
| 412 | return NULL; |
| 413 | } |
| 414 | |
Peter Zijlstra | 464b752 | 2008-10-24 11:06:15 +0200 | [diff] [blame] | 415 | static inline void |
| 416 | find_matching_se(struct sched_entity **se, struct sched_entity **pse) |
| 417 | { |
| 418 | } |
| 419 | |
Peter Zijlstra | b758149 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 420 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 421 | |
Peter Zijlstra | 6c16a6d | 2012-03-21 13:07:16 -0700 | [diff] [blame] | 422 | static __always_inline |
| 423 | void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 424 | |
| 425 | /************************************************************** |
| 426 | * Scheduling class tree data structure manipulation methods: |
| 427 | */ |
| 428 | |
Ingo Molnar | 0702e3e | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 429 | static inline u64 max_vruntime(u64 min_vruntime, u64 vruntime) |
Peter Zijlstra | 02e0431 | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 430 | { |
Peter Zijlstra | 368059a | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 431 | s64 delta = (s64)(vruntime - min_vruntime); |
| 432 | if (delta > 0) |
Peter Zijlstra | 02e0431 | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 433 | min_vruntime = vruntime; |
| 434 | |
| 435 | return min_vruntime; |
| 436 | } |
| 437 | |
Ingo Molnar | 0702e3e | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 438 | static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime) |
Peter Zijlstra | b0ffd24 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 439 | { |
| 440 | s64 delta = (s64)(vruntime - min_vruntime); |
| 441 | if (delta < 0) |
| 442 | min_vruntime = vruntime; |
| 443 | |
| 444 | return min_vruntime; |
| 445 | } |
| 446 | |
Fabio Checconi | 54fdc58 | 2009-07-16 12:32:27 +0200 | [diff] [blame] | 447 | static inline int entity_before(struct sched_entity *a, |
| 448 | struct sched_entity *b) |
| 449 | { |
| 450 | return (s64)(a->vruntime - b->vruntime) < 0; |
| 451 | } |
| 452 | |
Peter Zijlstra | 1af5f73 | 2008-10-24 11:06:13 +0200 | [diff] [blame] | 453 | static void update_min_vruntime(struct cfs_rq *cfs_rq) |
| 454 | { |
| 455 | u64 vruntime = cfs_rq->min_vruntime; |
| 456 | |
| 457 | if (cfs_rq->curr) |
| 458 | vruntime = cfs_rq->curr->vruntime; |
| 459 | |
| 460 | if (cfs_rq->rb_leftmost) { |
| 461 | struct sched_entity *se = rb_entry(cfs_rq->rb_leftmost, |
| 462 | struct sched_entity, |
| 463 | run_node); |
| 464 | |
Peter Zijlstra | e17036d | 2009-01-15 14:53:39 +0100 | [diff] [blame] | 465 | if (!cfs_rq->curr) |
Peter Zijlstra | 1af5f73 | 2008-10-24 11:06:13 +0200 | [diff] [blame] | 466 | vruntime = se->vruntime; |
| 467 | else |
| 468 | vruntime = min_vruntime(vruntime, se->vruntime); |
| 469 | } |
| 470 | |
| 471 | cfs_rq->min_vruntime = max_vruntime(cfs_rq->min_vruntime, vruntime); |
Peter Zijlstra | 3fe1698 | 2011-04-05 17:23:48 +0200 | [diff] [blame] | 472 | #ifndef CONFIG_64BIT |
| 473 | smp_wmb(); |
| 474 | cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime; |
| 475 | #endif |
Peter Zijlstra | 1af5f73 | 2008-10-24 11:06:13 +0200 | [diff] [blame] | 476 | } |
| 477 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 478 | /* |
| 479 | * Enqueue an entity into the rb-tree: |
| 480 | */ |
Ingo Molnar | 0702e3e | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 481 | static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 482 | { |
| 483 | struct rb_node **link = &cfs_rq->tasks_timeline.rb_node; |
| 484 | struct rb_node *parent = NULL; |
| 485 | struct sched_entity *entry; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 486 | int leftmost = 1; |
| 487 | |
| 488 | /* |
| 489 | * Find the right place in the rbtree: |
| 490 | */ |
| 491 | while (*link) { |
| 492 | parent = *link; |
| 493 | entry = rb_entry(parent, struct sched_entity, run_node); |
| 494 | /* |
| 495 | * We dont care about collisions. Nodes with |
| 496 | * the same key stay together. |
| 497 | */ |
Stephan Baerwolf | 2bd2d6f | 2011-07-20 14:46:59 +0200 | [diff] [blame] | 498 | if (entity_before(se, entry)) { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 499 | link = &parent->rb_left; |
| 500 | } else { |
| 501 | link = &parent->rb_right; |
| 502 | leftmost = 0; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | /* |
| 507 | * Maintain a cache of leftmost tree entries (it is frequently |
| 508 | * used): |
| 509 | */ |
Peter Zijlstra | 1af5f73 | 2008-10-24 11:06:13 +0200 | [diff] [blame] | 510 | if (leftmost) |
Ingo Molnar | 57cb499 | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 511 | cfs_rq->rb_leftmost = &se->run_node; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 512 | |
| 513 | rb_link_node(&se->run_node, parent, link); |
| 514 | rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 515 | } |
| 516 | |
Ingo Molnar | 0702e3e | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 517 | static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 518 | { |
Peter Zijlstra | 3fe6974 | 2008-03-14 20:55:51 +0100 | [diff] [blame] | 519 | if (cfs_rq->rb_leftmost == &se->run_node) { |
| 520 | struct rb_node *next_node; |
Peter Zijlstra | 3fe6974 | 2008-03-14 20:55:51 +0100 | [diff] [blame] | 521 | |
| 522 | next_node = rb_next(&se->run_node); |
| 523 | cfs_rq->rb_leftmost = next_node; |
Peter Zijlstra | 3fe6974 | 2008-03-14 20:55:51 +0100 | [diff] [blame] | 524 | } |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 525 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 526 | rb_erase(&se->run_node, &cfs_rq->tasks_timeline); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 527 | } |
| 528 | |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 529 | struct sched_entity *__pick_first_entity(struct cfs_rq *cfs_rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 530 | { |
Peter Zijlstra | f4b6755 | 2008-11-04 21:25:07 +0100 | [diff] [blame] | 531 | struct rb_node *left = cfs_rq->rb_leftmost; |
| 532 | |
| 533 | if (!left) |
| 534 | return NULL; |
| 535 | |
| 536 | return rb_entry(left, struct sched_entity, run_node); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 537 | } |
| 538 | |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 539 | static struct sched_entity *__pick_next_entity(struct sched_entity *se) |
| 540 | { |
| 541 | struct rb_node *next = rb_next(&se->run_node); |
| 542 | |
| 543 | if (!next) |
| 544 | return NULL; |
| 545 | |
| 546 | return rb_entry(next, struct sched_entity, run_node); |
| 547 | } |
| 548 | |
| 549 | #ifdef CONFIG_SCHED_DEBUG |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 550 | struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq) |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 551 | { |
Ingo Molnar | 7eee3e6 | 2008-02-22 10:32:21 +0100 | [diff] [blame] | 552 | struct rb_node *last = rb_last(&cfs_rq->tasks_timeline); |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 553 | |
Balbir Singh | 70eee74 | 2008-02-22 13:25:53 +0530 | [diff] [blame] | 554 | if (!last) |
| 555 | return NULL; |
Ingo Molnar | 7eee3e6 | 2008-02-22 10:32:21 +0100 | [diff] [blame] | 556 | |
| 557 | return rb_entry(last, struct sched_entity, run_node); |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 558 | } |
| 559 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 560 | /************************************************************** |
| 561 | * Scheduling class statistics methods: |
| 562 | */ |
| 563 | |
Christian Ehrhardt | acb4a84 | 2009-11-30 12:16:48 +0100 | [diff] [blame] | 564 | int sched_proc_update_handler(struct ctl_table *table, int write, |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 565 | void __user *buffer, size_t *lenp, |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 566 | loff_t *ppos) |
| 567 | { |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 568 | int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
Christian Ehrhardt | acb4a84 | 2009-11-30 12:16:48 +0100 | [diff] [blame] | 569 | int factor = get_update_sysctl_factor(); |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 570 | |
| 571 | if (ret || !write) |
| 572 | return ret; |
| 573 | |
| 574 | sched_nr_latency = DIV_ROUND_UP(sysctl_sched_latency, |
| 575 | sysctl_sched_min_granularity); |
| 576 | |
Christian Ehrhardt | acb4a84 | 2009-11-30 12:16:48 +0100 | [diff] [blame] | 577 | #define WRT_SYSCTL(name) \ |
| 578 | (normalized_sysctl_##name = sysctl_##name / (factor)) |
| 579 | WRT_SYSCTL(sched_min_granularity); |
| 580 | WRT_SYSCTL(sched_latency); |
| 581 | WRT_SYSCTL(sched_wakeup_granularity); |
Christian Ehrhardt | acb4a84 | 2009-11-30 12:16:48 +0100 | [diff] [blame] | 582 | #undef WRT_SYSCTL |
| 583 | |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 584 | return 0; |
| 585 | } |
| 586 | #endif |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 587 | |
| 588 | /* |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 589 | * delta /= w |
Peter Zijlstra | a7be37a | 2008-06-27 13:41:11 +0200 | [diff] [blame] | 590 | */ |
| 591 | static inline unsigned long |
| 592 | calc_delta_fair(unsigned long delta, struct sched_entity *se) |
| 593 | { |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 594 | if (unlikely(se->load.weight != NICE_0_LOAD)) |
| 595 | delta = calc_delta_mine(delta, NICE_0_LOAD, &se->load); |
Peter Zijlstra | a7be37a | 2008-06-27 13:41:11 +0200 | [diff] [blame] | 596 | |
| 597 | return delta; |
| 598 | } |
| 599 | |
| 600 | /* |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 601 | * The idea is to set a period in which each task runs once. |
| 602 | * |
Borislav Petkov | 532b185 | 2012-08-08 16:16:04 +0200 | [diff] [blame] | 603 | * When there are too many tasks (sched_nr_latency) we have to stretch |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 604 | * this period because otherwise the slices get too small. |
| 605 | * |
| 606 | * p = (nr <= nl) ? l : l*nr/nl |
| 607 | */ |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 608 | static u64 __sched_period(unsigned long nr_running) |
| 609 | { |
| 610 | u64 period = sysctl_sched_latency; |
Peter Zijlstra | b2be5e9 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 611 | unsigned long nr_latency = sched_nr_latency; |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 612 | |
| 613 | if (unlikely(nr_running > nr_latency)) { |
Peter Zijlstra | 4bf0b77 | 2008-01-25 21:08:21 +0100 | [diff] [blame] | 614 | period = sysctl_sched_min_granularity; |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 615 | period *= nr_running; |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 616 | } |
| 617 | |
| 618 | return period; |
| 619 | } |
| 620 | |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 621 | /* |
| 622 | * We calculate the wall-time slice from the period by taking a part |
| 623 | * proportional to the weight. |
| 624 | * |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 625 | * s = p*P[w/rw] |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 626 | */ |
Peter Zijlstra | 6d0f0eb | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 627 | 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] | 628 | { |
Mike Galbraith | 0a58244 | 2009-01-02 12:16:42 +0100 | [diff] [blame] | 629 | u64 slice = __sched_period(cfs_rq->nr_running + !se->on_rq); |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 630 | |
Mike Galbraith | 0a58244 | 2009-01-02 12:16:42 +0100 | [diff] [blame] | 631 | for_each_sched_entity(se) { |
Lin Ming | 6272d68 | 2009-01-15 17:17:15 +0100 | [diff] [blame] | 632 | struct load_weight *load; |
Christian Engelmayer | 3104bf0 | 2009-06-16 10:35:12 +0200 | [diff] [blame] | 633 | struct load_weight lw; |
Lin Ming | 6272d68 | 2009-01-15 17:17:15 +0100 | [diff] [blame] | 634 | |
| 635 | cfs_rq = cfs_rq_of(se); |
| 636 | load = &cfs_rq->load; |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 637 | |
Mike Galbraith | 0a58244 | 2009-01-02 12:16:42 +0100 | [diff] [blame] | 638 | if (unlikely(!se->on_rq)) { |
Christian Engelmayer | 3104bf0 | 2009-06-16 10:35:12 +0200 | [diff] [blame] | 639 | lw = cfs_rq->load; |
Mike Galbraith | 0a58244 | 2009-01-02 12:16:42 +0100 | [diff] [blame] | 640 | |
| 641 | update_load_add(&lw, se->load.weight); |
| 642 | load = &lw; |
| 643 | } |
| 644 | slice = calc_delta_mine(slice, se->load.weight, load); |
| 645 | } |
| 646 | return slice; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 647 | } |
| 648 | |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 649 | /* |
Peter Zijlstra | ac884de | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 650 | * We calculate the vruntime slice of a to be inserted task |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 651 | * |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 652 | * vs = s/w |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 653 | */ |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 654 | static u64 sched_vslice(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | 647e7ca | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 655 | { |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 656 | return calc_delta_fair(sched_slice(cfs_rq, se), se); |
Peter Zijlstra | a7be37a | 2008-06-27 13:41:11 +0200 | [diff] [blame] | 657 | } |
| 658 | |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 659 | static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update); |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 660 | static void update_cfs_shares(struct cfs_rq *cfs_rq); |
Paul Turner | 3b3d190 | 2010-11-15 15:47:08 -0800 | [diff] [blame] | 661 | |
Peter Zijlstra | a7be37a | 2008-06-27 13:41:11 +0200 | [diff] [blame] | 662 | /* |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 663 | * Update the current task's runtime statistics. Skip current tasks that |
| 664 | * are not in our scheduling class. |
| 665 | */ |
| 666 | static inline void |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 667 | __update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr, |
| 668 | unsigned long delta_exec) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 669 | { |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 670 | unsigned long delta_exec_weighted; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 671 | |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 672 | schedstat_set(curr->statistics.exec_max, |
| 673 | max((u64)delta_exec, curr->statistics.exec_max)); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 674 | |
| 675 | curr->sum_exec_runtime += delta_exec; |
Ingo Molnar | 7a62eab | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 676 | schedstat_add(cfs_rq, exec_clock, delta_exec); |
Peter Zijlstra | a7be37a | 2008-06-27 13:41:11 +0200 | [diff] [blame] | 677 | delta_exec_weighted = calc_delta_fair(delta_exec, curr); |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 678 | |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 679 | curr->vruntime += delta_exec_weighted; |
Peter Zijlstra | 1af5f73 | 2008-10-24 11:06:13 +0200 | [diff] [blame] | 680 | update_min_vruntime(cfs_rq); |
Paul Turner | 3b3d190 | 2010-11-15 15:47:08 -0800 | [diff] [blame] | 681 | |
Peter Zijlstra | 70caf8a | 2010-11-20 00:53:51 +0100 | [diff] [blame] | 682 | #if defined CONFIG_SMP && defined CONFIG_FAIR_GROUP_SCHED |
Paul Turner | 3b3d190 | 2010-11-15 15:47:08 -0800 | [diff] [blame] | 683 | cfs_rq->load_unacc_exec_time += delta_exec; |
Paul Turner | 3b3d190 | 2010-11-15 15:47:08 -0800 | [diff] [blame] | 684 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 685 | } |
| 686 | |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 687 | static void update_curr(struct cfs_rq *cfs_rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 688 | { |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 689 | struct sched_entity *curr = cfs_rq->curr; |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 690 | u64 now = rq_of(cfs_rq)->clock_task; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 691 | unsigned long delta_exec; |
| 692 | |
| 693 | if (unlikely(!curr)) |
| 694 | return; |
| 695 | |
| 696 | /* |
| 697 | * Get the amount of time the current task was running |
| 698 | * since the last time we changed load (this cannot |
| 699 | * overflow on 32 bits): |
| 700 | */ |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 701 | delta_exec = (unsigned long)(now - curr->exec_start); |
Peter Zijlstra | 34f28ec | 2008-12-16 08:45:31 +0100 | [diff] [blame] | 702 | if (!delta_exec) |
| 703 | return; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 704 | |
Ingo Molnar | 8ebc91d | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 705 | __update_curr(cfs_rq, curr, delta_exec); |
| 706 | curr->exec_start = now; |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 707 | |
| 708 | if (entity_is_task(curr)) { |
| 709 | struct task_struct *curtask = task_of(curr); |
| 710 | |
Ingo Molnar | f977bb4 | 2009-09-13 18:15:54 +0200 | [diff] [blame] | 711 | trace_sched_stat_runtime(curtask, delta_exec, curr->vruntime); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 712 | cpuacct_charge(curtask, delta_exec); |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 713 | account_group_exec_runtime(curtask, delta_exec); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 714 | } |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 715 | |
| 716 | account_cfs_rq_runtime(cfs_rq, delta_exec); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | static inline void |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 720 | 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] | 721 | { |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 722 | schedstat_set(se->statistics.wait_start, rq_of(cfs_rq)->clock); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 723 | } |
| 724 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 725 | /* |
| 726 | * Task is being enqueued - update stats: |
| 727 | */ |
Ingo Molnar | d2417e5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 728 | 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] | 729 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 730 | /* |
| 731 | * Are we enqueueing a waiting task? (for current tasks |
| 732 | * a dequeue/enqueue event is a NOP) |
| 733 | */ |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 734 | if (se != cfs_rq->curr) |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 735 | update_stats_wait_start(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 736 | } |
| 737 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 738 | static void |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 739 | 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] | 740 | { |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 741 | schedstat_set(se->statistics.wait_max, max(se->statistics.wait_max, |
| 742 | rq_of(cfs_rq)->clock - se->statistics.wait_start)); |
| 743 | schedstat_set(se->statistics.wait_count, se->statistics.wait_count + 1); |
| 744 | schedstat_set(se->statistics.wait_sum, se->statistics.wait_sum + |
| 745 | rq_of(cfs_rq)->clock - se->statistics.wait_start); |
Peter Zijlstra | 768d0c2 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 746 | #ifdef CONFIG_SCHEDSTATS |
| 747 | if (entity_is_task(se)) { |
| 748 | trace_sched_stat_wait(task_of(se), |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 749 | rq_of(cfs_rq)->clock - se->statistics.wait_start); |
Peter Zijlstra | 768d0c2 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 750 | } |
| 751 | #endif |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 752 | schedstat_set(se->statistics.wait_start, 0); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | static inline void |
Ingo Molnar | 19b6a2e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 756 | update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 757 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 758 | /* |
| 759 | * Mark the end of the wait period if dequeueing a |
| 760 | * waiting task: |
| 761 | */ |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 762 | if (se != cfs_rq->curr) |
Ingo Molnar | 9ef0a96 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 763 | update_stats_wait_end(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | /* |
| 767 | * We are picking a new current task - update its stats: |
| 768 | */ |
| 769 | static inline void |
Ingo Molnar | 79303e9 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 770 | 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] | 771 | { |
| 772 | /* |
| 773 | * We are starting a new run period: |
| 774 | */ |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 775 | se->exec_start = rq_of(cfs_rq)->clock_task; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 776 | } |
| 777 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 778 | /************************************************** |
| 779 | * Scheduling class queueing methods: |
| 780 | */ |
| 781 | |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 782 | #ifdef CONFIG_NUMA_BALANCING |
| 783 | /* |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 784 | * numa task sample period in ms |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 785 | */ |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 786 | unsigned int sysctl_numa_balancing_scan_period_min = 100; |
| 787 | unsigned int sysctl_numa_balancing_scan_period_max = 100*16; |
| 788 | |
| 789 | /* Portion of address space to scan in MB */ |
| 790 | unsigned int sysctl_numa_balancing_scan_size = 256; |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 791 | |
Peter Zijlstra | 4b96a29 | 2012-10-25 14:16:47 +0200 | [diff] [blame] | 792 | /* Scan @scan_size MB every @scan_period after an initial @scan_delay in ms */ |
| 793 | unsigned int sysctl_numa_balancing_scan_delay = 1000; |
| 794 | |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 795 | static void task_numa_placement(struct task_struct *p) |
| 796 | { |
| 797 | int seq = ACCESS_ONCE(p->mm->numa_scan_seq); |
| 798 | |
| 799 | if (p->numa_scan_seq == seq) |
| 800 | return; |
| 801 | p->numa_scan_seq = seq; |
| 802 | |
| 803 | /* FIXME: Scheduling placement policy hints go here */ |
| 804 | } |
| 805 | |
| 806 | /* |
| 807 | * Got a PROT_NONE fault for a page on @node. |
| 808 | */ |
| 809 | void task_numa_fault(int node, int pages) |
| 810 | { |
| 811 | struct task_struct *p = current; |
| 812 | |
| 813 | /* FIXME: Allocate task-specific structure for placement policy here */ |
| 814 | |
Mel Gorman | fb003b8 | 2012-11-15 09:01:14 +0000 | [diff] [blame^] | 815 | /* |
| 816 | * Assume that as faults occur that pages are getting properly placed |
| 817 | * and fewer NUMA hints are required. Note that this is a big |
| 818 | * assumption, it assumes processes reach a steady steady with no |
| 819 | * further phase changes. |
| 820 | */ |
| 821 | p->numa_scan_period = min(sysctl_numa_balancing_scan_period_max, |
| 822 | p->numa_scan_period + jiffies_to_msecs(2)); |
| 823 | |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 824 | task_numa_placement(p); |
| 825 | } |
| 826 | |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 827 | static void reset_ptenuma_scan(struct task_struct *p) |
| 828 | { |
| 829 | ACCESS_ONCE(p->mm->numa_scan_seq)++; |
| 830 | p->mm->numa_scan_offset = 0; |
| 831 | } |
| 832 | |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 833 | /* |
| 834 | * The expensive part of numa migration is done from task_work context. |
| 835 | * Triggered from task_tick_numa(). |
| 836 | */ |
| 837 | void task_numa_work(struct callback_head *work) |
| 838 | { |
| 839 | unsigned long migrate, next_scan, now = jiffies; |
| 840 | struct task_struct *p = current; |
| 841 | struct mm_struct *mm = p->mm; |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 842 | struct vm_area_struct *vma; |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 843 | unsigned long start, end; |
| 844 | long pages; |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 845 | |
| 846 | WARN_ON_ONCE(p != container_of(work, struct task_struct, numa_work)); |
| 847 | |
| 848 | work->next = work; /* protect against double add */ |
| 849 | /* |
| 850 | * Who cares about NUMA placement when they're dying. |
| 851 | * |
| 852 | * NOTE: make sure not to dereference p->mm before this check, |
| 853 | * exit_task_work() happens _after_ exit_mm() so we could be called |
| 854 | * without p->mm even though we still had it when we enqueued this |
| 855 | * work. |
| 856 | */ |
| 857 | if (p->flags & PF_EXITING) |
| 858 | return; |
| 859 | |
| 860 | /* |
| 861 | * Enforce maximal scan/migration frequency.. |
| 862 | */ |
| 863 | migrate = mm->numa_next_scan; |
| 864 | if (time_before(now, migrate)) |
| 865 | return; |
| 866 | |
| 867 | if (p->numa_scan_period == 0) |
| 868 | p->numa_scan_period = sysctl_numa_balancing_scan_period_min; |
| 869 | |
Mel Gorman | fb003b8 | 2012-11-15 09:01:14 +0000 | [diff] [blame^] | 870 | next_scan = now + msecs_to_jiffies(p->numa_scan_period); |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 871 | if (cmpxchg(&mm->numa_next_scan, migrate, next_scan) != migrate) |
| 872 | return; |
| 873 | |
Mel Gorman | e14808b | 2012-11-19 10:59:15 +0000 | [diff] [blame] | 874 | /* |
| 875 | * Do not set pte_numa if the current running node is rate-limited. |
| 876 | * This loses statistics on the fault but if we are unwilling to |
| 877 | * migrate to this node, it is less likely we can do useful work |
| 878 | */ |
| 879 | if (migrate_ratelimited(numa_node_id())) |
| 880 | return; |
| 881 | |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 882 | start = mm->numa_scan_offset; |
| 883 | pages = sysctl_numa_balancing_scan_size; |
| 884 | pages <<= 20 - PAGE_SHIFT; /* MB in pages */ |
| 885 | if (!pages) |
| 886 | return; |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 887 | |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 888 | down_read(&mm->mmap_sem); |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 889 | vma = find_vma(mm, start); |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 890 | if (!vma) { |
| 891 | reset_ptenuma_scan(p); |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 892 | start = 0; |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 893 | vma = mm->mmap; |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 894 | } |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 895 | for (; vma; vma = vma->vm_next) { |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 896 | if (!vma_migratable(vma)) |
| 897 | continue; |
| 898 | |
| 899 | /* Skip small VMAs. They are not likely to be of relevance */ |
| 900 | if (((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) < HPAGE_PMD_NR) |
| 901 | continue; |
| 902 | |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 903 | do { |
| 904 | start = max(start, vma->vm_start); |
| 905 | end = ALIGN(start + (pages << PAGE_SHIFT), HPAGE_SIZE); |
| 906 | end = min(end, vma->vm_end); |
| 907 | pages -= change_prot_numa(vma, start, end); |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 908 | |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 909 | start = end; |
| 910 | if (pages <= 0) |
| 911 | goto out; |
| 912 | } while (end != vma->vm_end); |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 913 | } |
| 914 | |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 915 | out: |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 916 | /* |
| 917 | * It is possible to reach the end of the VMA list but the last few VMAs are |
| 918 | * not guaranteed to the vma_migratable. If they are not, we would find the |
| 919 | * !migratable VMA on the next scan but not reset the scanner to the start |
| 920 | * so check it now. |
| 921 | */ |
| 922 | if (vma) |
Mel Gorman | 9f40604 | 2012-11-14 18:34:32 +0000 | [diff] [blame] | 923 | mm->numa_scan_offset = start; |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 924 | else |
| 925 | reset_ptenuma_scan(p); |
| 926 | up_read(&mm->mmap_sem); |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | /* |
| 930 | * Drive the periodic memory faults.. |
| 931 | */ |
| 932 | void task_tick_numa(struct rq *rq, struct task_struct *curr) |
| 933 | { |
| 934 | struct callback_head *work = &curr->numa_work; |
| 935 | u64 period, now; |
| 936 | |
| 937 | /* |
| 938 | * We don't care about NUMA placement if we don't have memory. |
| 939 | */ |
| 940 | if (!curr->mm || (curr->flags & PF_EXITING) || work->next != work) |
| 941 | return; |
| 942 | |
| 943 | /* |
| 944 | * Using runtime rather than walltime has the dual advantage that |
| 945 | * we (mostly) drive the selection from busy threads and that the |
| 946 | * task needs to have done some actual work before we bother with |
| 947 | * NUMA placement. |
| 948 | */ |
| 949 | now = curr->se.sum_exec_runtime; |
| 950 | period = (u64)curr->numa_scan_period * NSEC_PER_MSEC; |
| 951 | |
| 952 | if (now - curr->node_stamp > period) { |
Peter Zijlstra | 4b96a29 | 2012-10-25 14:16:47 +0200 | [diff] [blame] | 953 | if (!curr->node_stamp) |
| 954 | curr->numa_scan_period = sysctl_numa_balancing_scan_period_min; |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 955 | curr->node_stamp = now; |
| 956 | |
| 957 | if (!time_before(jiffies, curr->mm->numa_next_scan)) { |
| 958 | init_task_work(work, task_numa_work); /* TODO: move this into sched_fork() */ |
| 959 | task_work_add(curr, work, true); |
| 960 | } |
| 961 | } |
| 962 | } |
| 963 | #else |
| 964 | static void task_tick_numa(struct rq *rq, struct task_struct *curr) |
| 965 | { |
| 966 | } |
| 967 | #endif /* CONFIG_NUMA_BALANCING */ |
| 968 | |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 969 | static void |
| 970 | account_entity_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 971 | { |
| 972 | update_load_add(&cfs_rq->load, se->load.weight); |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 973 | if (!parent_entity(se)) |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 974 | update_load_add(&rq_of(cfs_rq)->load, se->load.weight); |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 975 | #ifdef CONFIG_SMP |
| 976 | if (entity_is_task(se)) |
Peter Zijlstra | eb95308 | 2012-04-17 13:38:40 +0200 | [diff] [blame] | 977 | list_add(&se->group_node, &rq_of(cfs_rq)->cfs_tasks); |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 978 | #endif |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 979 | cfs_rq->nr_running++; |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | static void |
| 983 | account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 984 | { |
| 985 | update_load_sub(&cfs_rq->load, se->load.weight); |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 986 | if (!parent_entity(se)) |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 987 | update_load_sub(&rq_of(cfs_rq)->load, se->load.weight); |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 988 | if (entity_is_task(se)) |
Bharata B Rao | b87f172 | 2008-09-25 09:53:54 +0530 | [diff] [blame] | 989 | list_del_init(&se->group_node); |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 990 | cfs_rq->nr_running--; |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 991 | } |
| 992 | |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 993 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 994 | /* we need this in update_cfs_load and load-balance functions below */ |
| 995 | static inline int throttled_hierarchy(struct cfs_rq *cfs_rq); |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 996 | # ifdef CONFIG_SMP |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 997 | static void update_cfs_rq_load_contribution(struct cfs_rq *cfs_rq, |
| 998 | int global_update) |
| 999 | { |
| 1000 | struct task_group *tg = cfs_rq->tg; |
| 1001 | long load_avg; |
| 1002 | |
| 1003 | load_avg = div64_u64(cfs_rq->load_avg, cfs_rq->load_period+1); |
| 1004 | load_avg -= cfs_rq->load_contribution; |
| 1005 | |
| 1006 | if (global_update || abs(load_avg) > cfs_rq->load_contribution / 8) { |
| 1007 | atomic_add(load_avg, &tg->load_weight); |
| 1008 | cfs_rq->load_contribution += load_avg; |
| 1009 | } |
| 1010 | } |
| 1011 | |
| 1012 | static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update) |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1013 | { |
Paul Turner | a7a4f8a | 2010-11-15 15:47:06 -0800 | [diff] [blame] | 1014 | u64 period = sysctl_sched_shares_window; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1015 | u64 now, delta; |
Paul Turner | e33078b | 2010-11-15 15:47:04 -0800 | [diff] [blame] | 1016 | unsigned long load = cfs_rq->load.weight; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1017 | |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 1018 | if (cfs_rq->tg == &root_task_group || throttled_hierarchy(cfs_rq)) |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1019 | return; |
| 1020 | |
Paul Turner | 05ca62c | 2011-01-21 20:45:02 -0800 | [diff] [blame] | 1021 | now = rq_of(cfs_rq)->clock_task; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1022 | delta = now - cfs_rq->load_stamp; |
| 1023 | |
Paul Turner | e33078b | 2010-11-15 15:47:04 -0800 | [diff] [blame] | 1024 | /* truncate load history at 4 idle periods */ |
| 1025 | if (cfs_rq->load_stamp > cfs_rq->load_last && |
| 1026 | now - cfs_rq->load_last > 4 * period) { |
| 1027 | cfs_rq->load_period = 0; |
| 1028 | cfs_rq->load_avg = 0; |
Paul Turner | f07333b | 2011-01-21 20:45:03 -0800 | [diff] [blame] | 1029 | delta = period - 1; |
Paul Turner | e33078b | 2010-11-15 15:47:04 -0800 | [diff] [blame] | 1030 | } |
| 1031 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1032 | cfs_rq->load_stamp = now; |
Paul Turner | 3b3d190 | 2010-11-15 15:47:08 -0800 | [diff] [blame] | 1033 | cfs_rq->load_unacc_exec_time = 0; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1034 | cfs_rq->load_period += delta; |
Paul Turner | e33078b | 2010-11-15 15:47:04 -0800 | [diff] [blame] | 1035 | if (load) { |
| 1036 | cfs_rq->load_last = now; |
| 1037 | cfs_rq->load_avg += delta * load; |
| 1038 | } |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1039 | |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 1040 | /* consider updating load contribution on each fold or truncate */ |
| 1041 | if (global_update || cfs_rq->load_period > period |
| 1042 | || !cfs_rq->load_period) |
| 1043 | update_cfs_rq_load_contribution(cfs_rq, global_update); |
| 1044 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1045 | while (cfs_rq->load_period > period) { |
| 1046 | /* |
| 1047 | * Inline assembly required to prevent the compiler |
| 1048 | * optimising this loop into a divmod call. |
| 1049 | * See __iter_div_u64_rem() for another example of this. |
| 1050 | */ |
| 1051 | asm("" : "+rm" (cfs_rq->load_period)); |
| 1052 | cfs_rq->load_period /= 2; |
| 1053 | cfs_rq->load_avg /= 2; |
| 1054 | } |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 1055 | |
Paul Turner | e33078b | 2010-11-15 15:47:04 -0800 | [diff] [blame] | 1056 | if (!cfs_rq->curr && !cfs_rq->nr_running && !cfs_rq->load_avg) |
| 1057 | list_del_leaf_cfs_rq(cfs_rq); |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1058 | } |
| 1059 | |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 1060 | static inline long calc_tg_weight(struct task_group *tg, struct cfs_rq *cfs_rq) |
| 1061 | { |
| 1062 | long tg_weight; |
| 1063 | |
| 1064 | /* |
| 1065 | * Use this CPU's actual weight instead of the last load_contribution |
| 1066 | * to gain a more accurate current total weight. See |
| 1067 | * update_cfs_rq_load_contribution(). |
| 1068 | */ |
| 1069 | tg_weight = atomic_read(&tg->load_weight); |
| 1070 | tg_weight -= cfs_rq->load_contribution; |
| 1071 | tg_weight += cfs_rq->load.weight; |
| 1072 | |
| 1073 | return tg_weight; |
| 1074 | } |
| 1075 | |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1076 | static long calc_cfs_shares(struct cfs_rq *cfs_rq, struct task_group *tg) |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1077 | { |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 1078 | long tg_weight, load, shares; |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1079 | |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 1080 | tg_weight = calc_tg_weight(tg, cfs_rq); |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1081 | load = cfs_rq->load.weight; |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1082 | |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1083 | shares = (tg->shares * load); |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 1084 | if (tg_weight) |
| 1085 | shares /= tg_weight; |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1086 | |
| 1087 | if (shares < MIN_SHARES) |
| 1088 | shares = MIN_SHARES; |
| 1089 | if (shares > tg->shares) |
| 1090 | shares = tg->shares; |
| 1091 | |
| 1092 | return shares; |
| 1093 | } |
| 1094 | |
| 1095 | static void update_entity_shares_tick(struct cfs_rq *cfs_rq) |
| 1096 | { |
| 1097 | if (cfs_rq->load_unacc_exec_time > sysctl_sched_shares_window) { |
| 1098 | update_cfs_load(cfs_rq, 0); |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1099 | update_cfs_shares(cfs_rq); |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1100 | } |
| 1101 | } |
| 1102 | # else /* CONFIG_SMP */ |
| 1103 | static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update) |
| 1104 | { |
| 1105 | } |
| 1106 | |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1107 | static inline long calc_cfs_shares(struct cfs_rq *cfs_rq, struct task_group *tg) |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1108 | { |
| 1109 | return tg->shares; |
| 1110 | } |
| 1111 | |
| 1112 | static inline void update_entity_shares_tick(struct cfs_rq *cfs_rq) |
| 1113 | { |
| 1114 | } |
| 1115 | # endif /* CONFIG_SMP */ |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1116 | static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, |
| 1117 | unsigned long weight) |
| 1118 | { |
Paul Turner | 19e5eeb | 2010-12-15 19:10:18 -0800 | [diff] [blame] | 1119 | if (se->on_rq) { |
| 1120 | /* commit outstanding execution time */ |
| 1121 | if (cfs_rq->curr == se) |
| 1122 | update_curr(cfs_rq); |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1123 | account_entity_dequeue(cfs_rq, se); |
Paul Turner | 19e5eeb | 2010-12-15 19:10:18 -0800 | [diff] [blame] | 1124 | } |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1125 | |
| 1126 | update_load_set(&se->load, weight); |
| 1127 | |
| 1128 | if (se->on_rq) |
| 1129 | account_entity_enqueue(cfs_rq, se); |
| 1130 | } |
| 1131 | |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1132 | static void update_cfs_shares(struct cfs_rq *cfs_rq) |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1133 | { |
| 1134 | struct task_group *tg; |
| 1135 | struct sched_entity *se; |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1136 | long shares; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1137 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1138 | tg = cfs_rq->tg; |
| 1139 | se = tg->se[cpu_of(rq_of(cfs_rq))]; |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 1140 | if (!se || throttled_hierarchy(cfs_rq)) |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1141 | return; |
Yong Zhang | 3ff6dca | 2011-01-24 15:33:52 +0800 | [diff] [blame] | 1142 | #ifndef CONFIG_SMP |
| 1143 | if (likely(se->load.weight == tg->shares)) |
| 1144 | return; |
| 1145 | #endif |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1146 | shares = calc_cfs_shares(cfs_rq, tg); |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1147 | |
| 1148 | reweight_entity(cfs_rq_of(se), se, shares); |
| 1149 | } |
| 1150 | #else /* CONFIG_FAIR_GROUP_SCHED */ |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 1151 | static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update) |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1152 | { |
| 1153 | } |
| 1154 | |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1155 | static inline void update_cfs_shares(struct cfs_rq *cfs_rq) |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1156 | { |
| 1157 | } |
Paul Turner | 43365bd | 2010-12-15 19:10:17 -0800 | [diff] [blame] | 1158 | |
| 1159 | static inline void update_entity_shares_tick(struct cfs_rq *cfs_rq) |
| 1160 | { |
| 1161 | } |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1162 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 1163 | |
Ingo Molnar | 2396af6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1164 | 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] | 1165 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1166 | #ifdef CONFIG_SCHEDSTATS |
Peter Zijlstra | e414314 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 1167 | struct task_struct *tsk = NULL; |
| 1168 | |
| 1169 | if (entity_is_task(se)) |
| 1170 | tsk = task_of(se); |
| 1171 | |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1172 | if (se->statistics.sleep_start) { |
| 1173 | u64 delta = rq_of(cfs_rq)->clock - se->statistics.sleep_start; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1174 | |
| 1175 | if ((s64)delta < 0) |
| 1176 | delta = 0; |
| 1177 | |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1178 | if (unlikely(delta > se->statistics.sleep_max)) |
| 1179 | se->statistics.sleep_max = delta; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1180 | |
Peter Zijlstra | 8c79a04 | 2012-01-30 14:51:37 +0100 | [diff] [blame] | 1181 | se->statistics.sleep_start = 0; |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1182 | se->statistics.sum_sleep_runtime += delta; |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 1183 | |
Peter Zijlstra | 768d0c2 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 1184 | if (tsk) { |
Peter Zijlstra | e414314 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 1185 | account_scheduler_latency(tsk, delta >> 10, 1); |
Peter Zijlstra | 768d0c2 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 1186 | trace_sched_stat_sleep(tsk, delta); |
| 1187 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1188 | } |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1189 | if (se->statistics.block_start) { |
| 1190 | u64 delta = rq_of(cfs_rq)->clock - se->statistics.block_start; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1191 | |
| 1192 | if ((s64)delta < 0) |
| 1193 | delta = 0; |
| 1194 | |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1195 | if (unlikely(delta > se->statistics.block_max)) |
| 1196 | se->statistics.block_max = delta; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1197 | |
Peter Zijlstra | 8c79a04 | 2012-01-30 14:51:37 +0100 | [diff] [blame] | 1198 | se->statistics.block_start = 0; |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1199 | se->statistics.sum_sleep_runtime += delta; |
Ingo Molnar | 30084fb | 2007-10-02 14:13:08 +0200 | [diff] [blame] | 1200 | |
Peter Zijlstra | e414314 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 1201 | if (tsk) { |
Arjan van de Ven | 8f0dfc3 | 2009-07-20 11:26:58 -0700 | [diff] [blame] | 1202 | if (tsk->in_iowait) { |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1203 | se->statistics.iowait_sum += delta; |
| 1204 | se->statistics.iowait_count++; |
Peter Zijlstra | 768d0c2 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 1205 | trace_sched_stat_iowait(tsk, delta); |
Arjan van de Ven | 8f0dfc3 | 2009-07-20 11:26:58 -0700 | [diff] [blame] | 1206 | } |
| 1207 | |
Andrew Vagin | b781a60 | 2011-11-28 12:03:35 +0300 | [diff] [blame] | 1208 | trace_sched_stat_blocked(tsk, delta); |
| 1209 | |
Peter Zijlstra | e414314 | 2009-07-23 20:13:26 +0200 | [diff] [blame] | 1210 | /* |
| 1211 | * Blocking time is in units of nanosecs, so shift by |
| 1212 | * 20 to get a milliseconds-range estimation of the |
| 1213 | * amount of time that the task spent sleeping: |
| 1214 | */ |
| 1215 | if (unlikely(prof_on == SLEEP_PROFILING)) { |
| 1216 | profile_hits(SLEEP_PROFILING, |
| 1217 | (void *)get_wchan(tsk), |
| 1218 | delta >> 20); |
| 1219 | } |
| 1220 | account_scheduler_latency(tsk, delta >> 10, 0); |
Ingo Molnar | 30084fb | 2007-10-02 14:13:08 +0200 | [diff] [blame] | 1221 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1222 | } |
| 1223 | #endif |
| 1224 | } |
| 1225 | |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 1226 | static void check_spread(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 1227 | { |
| 1228 | #ifdef CONFIG_SCHED_DEBUG |
| 1229 | s64 d = se->vruntime - cfs_rq->min_vruntime; |
| 1230 | |
| 1231 | if (d < 0) |
| 1232 | d = -d; |
| 1233 | |
| 1234 | if (d > 3*sysctl_sched_latency) |
| 1235 | schedstat_inc(cfs_rq, nr_spread_over); |
| 1236 | #endif |
| 1237 | } |
| 1238 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1239 | static void |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1240 | place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) |
| 1241 | { |
Peter Zijlstra | 1af5f73 | 2008-10-24 11:06:13 +0200 | [diff] [blame] | 1242 | u64 vruntime = cfs_rq->min_vruntime; |
Peter Zijlstra | 94dfb5e | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1243 | |
Peter Zijlstra | 2cb8600 | 2007-11-09 22:39:37 +0100 | [diff] [blame] | 1244 | /* |
| 1245 | * The 'current' period is already promised to the current tasks, |
| 1246 | * however the extra weight of the new task will slow them down a |
| 1247 | * little, place the new task so that it fits in the slot that |
| 1248 | * stays open at the end. |
| 1249 | */ |
Peter Zijlstra | 94dfb5e | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1250 | if (initial && sched_feat(START_DEBIT)) |
Peter Zijlstra | f9c0b09 | 2008-10-17 19:27:04 +0200 | [diff] [blame] | 1251 | vruntime += sched_vslice(cfs_rq, se); |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1252 | |
Mike Galbraith | a2e7a7e | 2009-09-18 09:19:25 +0200 | [diff] [blame] | 1253 | /* sleeps up to a single latency don't count. */ |
Mike Galbraith | 5ca9880 | 2010-03-11 17:17:17 +0100 | [diff] [blame] | 1254 | if (!initial) { |
Mike Galbraith | a2e7a7e | 2009-09-18 09:19:25 +0200 | [diff] [blame] | 1255 | unsigned long thresh = sysctl_sched_latency; |
Peter Zijlstra | a7be37a | 2008-06-27 13:41:11 +0200 | [diff] [blame] | 1256 | |
Mike Galbraith | a2e7a7e | 2009-09-18 09:19:25 +0200 | [diff] [blame] | 1257 | /* |
Mike Galbraith | a2e7a7e | 2009-09-18 09:19:25 +0200 | [diff] [blame] | 1258 | * Halve their sleep time's effect, to allow |
| 1259 | * for a gentler effect of sleepers: |
| 1260 | */ |
| 1261 | if (sched_feat(GENTLE_FAIR_SLEEPERS)) |
| 1262 | thresh >>= 1; |
Ingo Molnar | 51e0304 | 2009-09-16 08:54:45 +0200 | [diff] [blame] | 1263 | |
Mike Galbraith | a2e7a7e | 2009-09-18 09:19:25 +0200 | [diff] [blame] | 1264 | vruntime -= thresh; |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1265 | } |
| 1266 | |
Mike Galbraith | b5d9d73 | 2009-09-08 11:12:28 +0200 | [diff] [blame] | 1267 | /* ensure we never gain time by being placed backwards. */ |
| 1268 | vruntime = max_vruntime(se->vruntime, vruntime); |
| 1269 | |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 1270 | se->vruntime = vruntime; |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1271 | } |
| 1272 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 1273 | static void check_enqueue_throttle(struct cfs_rq *cfs_rq); |
| 1274 | |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1275 | static void |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 1276 | enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1277 | { |
| 1278 | /* |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 1279 | * Update the normalized vruntime before updating min_vruntime |
| 1280 | * through callig update_curr(). |
| 1281 | */ |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1282 | if (!(flags & ENQUEUE_WAKEUP) || (flags & ENQUEUE_WAKING)) |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 1283 | se->vruntime += cfs_rq->min_vruntime; |
| 1284 | |
| 1285 | /* |
Dmitry Adamushko | a2a2d68 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1286 | * Update run-time statistics of the 'current'. |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1287 | */ |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1288 | update_curr(cfs_rq); |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 1289 | update_cfs_load(cfs_rq, 0); |
Peter Zijlstra | a992241 | 2008-05-05 23:56:17 +0200 | [diff] [blame] | 1290 | account_entity_enqueue(cfs_rq, se); |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 1291 | update_cfs_shares(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1292 | |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 1293 | if (flags & ENQUEUE_WAKEUP) { |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1294 | place_entity(cfs_rq, se, 0); |
Ingo Molnar | 2396af6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1295 | enqueue_sleeper(cfs_rq, se); |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1296 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1297 | |
Ingo Molnar | d2417e5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1298 | update_stats_enqueue(cfs_rq, se); |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 1299 | check_spread(cfs_rq, se); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 1300 | if (se != cfs_rq->curr) |
| 1301 | __enqueue_entity(cfs_rq, se); |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1302 | se->on_rq = 1; |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 1303 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 1304 | if (cfs_rq->nr_running == 1) { |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 1305 | list_add_leaf_cfs_rq(cfs_rq); |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 1306 | check_enqueue_throttle(cfs_rq); |
| 1307 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1308 | } |
| 1309 | |
Rik van Riel | 2c13c919 | 2011-02-01 09:48:37 -0500 | [diff] [blame] | 1310 | static void __clear_buddies_last(struct sched_entity *se) |
Peter Zijlstra | 2002c69 | 2008-11-11 11:52:33 +0100 | [diff] [blame] | 1311 | { |
Rik van Riel | 2c13c919 | 2011-02-01 09:48:37 -0500 | [diff] [blame] | 1312 | for_each_sched_entity(se) { |
| 1313 | struct cfs_rq *cfs_rq = cfs_rq_of(se); |
| 1314 | if (cfs_rq->last == se) |
| 1315 | cfs_rq->last = NULL; |
| 1316 | else |
| 1317 | break; |
| 1318 | } |
| 1319 | } |
Peter Zijlstra | 2002c69 | 2008-11-11 11:52:33 +0100 | [diff] [blame] | 1320 | |
Rik van Riel | 2c13c919 | 2011-02-01 09:48:37 -0500 | [diff] [blame] | 1321 | static void __clear_buddies_next(struct sched_entity *se) |
| 1322 | { |
| 1323 | for_each_sched_entity(se) { |
| 1324 | struct cfs_rq *cfs_rq = cfs_rq_of(se); |
| 1325 | if (cfs_rq->next == se) |
| 1326 | cfs_rq->next = NULL; |
| 1327 | else |
| 1328 | break; |
| 1329 | } |
Peter Zijlstra | 2002c69 | 2008-11-11 11:52:33 +0100 | [diff] [blame] | 1330 | } |
| 1331 | |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 1332 | static void __clear_buddies_skip(struct sched_entity *se) |
| 1333 | { |
| 1334 | for_each_sched_entity(se) { |
| 1335 | struct cfs_rq *cfs_rq = cfs_rq_of(se); |
| 1336 | if (cfs_rq->skip == se) |
| 1337 | cfs_rq->skip = NULL; |
| 1338 | else |
| 1339 | break; |
| 1340 | } |
| 1341 | } |
| 1342 | |
Peter Zijlstra | a571bbe | 2009-01-28 14:51:40 +0100 | [diff] [blame] | 1343 | static void clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 1344 | { |
Rik van Riel | 2c13c919 | 2011-02-01 09:48:37 -0500 | [diff] [blame] | 1345 | if (cfs_rq->last == se) |
| 1346 | __clear_buddies_last(se); |
| 1347 | |
| 1348 | if (cfs_rq->next == se) |
| 1349 | __clear_buddies_next(se); |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 1350 | |
| 1351 | if (cfs_rq->skip == se) |
| 1352 | __clear_buddies_skip(se); |
Peter Zijlstra | a571bbe | 2009-01-28 14:51:40 +0100 | [diff] [blame] | 1353 | } |
| 1354 | |
Peter Zijlstra | 6c16a6d | 2012-03-21 13:07:16 -0700 | [diff] [blame] | 1355 | static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq); |
Paul Turner | d8b4986 | 2011-07-21 09:43:41 -0700 | [diff] [blame] | 1356 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1357 | static void |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1358 | dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1359 | { |
Dmitry Adamushko | a2a2d68 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1360 | /* |
| 1361 | * Update run-time statistics of the 'current'. |
| 1362 | */ |
| 1363 | update_curr(cfs_rq); |
| 1364 | |
Ingo Molnar | 19b6a2e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1365 | update_stats_dequeue(cfs_rq, se); |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1366 | if (flags & DEQUEUE_SLEEP) { |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 1367 | #ifdef CONFIG_SCHEDSTATS |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1368 | if (entity_is_task(se)) { |
| 1369 | struct task_struct *tsk = task_of(se); |
| 1370 | |
| 1371 | if (tsk->state & TASK_INTERRUPTIBLE) |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1372 | se->statistics.sleep_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1373 | if (tsk->state & TASK_UNINTERRUPTIBLE) |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1374 | se->statistics.block_start = rq_of(cfs_rq)->clock; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1375 | } |
Dmitry Adamushko | db36cc7 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1376 | #endif |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 1377 | } |
| 1378 | |
Peter Zijlstra | 2002c69 | 2008-11-11 11:52:33 +0100 | [diff] [blame] | 1379 | clear_buddies(cfs_rq, se); |
Peter Zijlstra | 4793241 | 2008-11-04 21:25:09 +0100 | [diff] [blame] | 1380 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 1381 | if (se != cfs_rq->curr) |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 1382 | __dequeue_entity(cfs_rq, se); |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1383 | se->on_rq = 0; |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 1384 | update_cfs_load(cfs_rq, 0); |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 1385 | account_entity_dequeue(cfs_rq, se); |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 1386 | |
| 1387 | /* |
| 1388 | * Normalize the entity after updating the min_vruntime because the |
| 1389 | * update can refer to the ->curr item and we need to reflect this |
| 1390 | * movement in our normalized position. |
| 1391 | */ |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1392 | if (!(flags & DEQUEUE_SLEEP)) |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 1393 | se->vruntime -= cfs_rq->min_vruntime; |
Peter Zijlstra | 1e87623 | 2011-05-17 16:21:10 -0700 | [diff] [blame] | 1394 | |
Paul Turner | d8b4986 | 2011-07-21 09:43:41 -0700 | [diff] [blame] | 1395 | /* return excess runtime on last dequeue */ |
| 1396 | return_cfs_rq_runtime(cfs_rq); |
| 1397 | |
Peter Zijlstra | 1e87623 | 2011-05-17 16:21:10 -0700 | [diff] [blame] | 1398 | update_min_vruntime(cfs_rq); |
| 1399 | update_cfs_shares(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1400 | } |
| 1401 | |
| 1402 | /* |
| 1403 | * Preempt the current task with a newly woken task if needed: |
| 1404 | */ |
Peter Zijlstra | 7c92e54 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1405 | static void |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1406 | check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1407 | { |
Peter Zijlstra | 1169783 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1408 | unsigned long ideal_runtime, delta_exec; |
Wang Xingchao | f4cfb33 | 2011-09-16 13:35:52 -0400 | [diff] [blame] | 1409 | struct sched_entity *se; |
| 1410 | s64 delta; |
Peter Zijlstra | 1169783 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1411 | |
Peter Zijlstra | 6d0f0eb | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1412 | ideal_runtime = sched_slice(cfs_rq, curr); |
Peter Zijlstra | 1169783 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1413 | delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime; |
Mike Galbraith | a9f3e2b | 2009-01-28 14:51:39 +0100 | [diff] [blame] | 1414 | if (delta_exec > ideal_runtime) { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1415 | resched_task(rq_of(cfs_rq)->curr); |
Mike Galbraith | a9f3e2b | 2009-01-28 14:51:39 +0100 | [diff] [blame] | 1416 | /* |
| 1417 | * The current task ran long enough, ensure it doesn't get |
| 1418 | * re-elected due to buddy favours. |
| 1419 | */ |
| 1420 | clear_buddies(cfs_rq, curr); |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 1421 | return; |
| 1422 | } |
| 1423 | |
| 1424 | /* |
| 1425 | * Ensure that a task that missed wakeup preemption by a |
| 1426 | * narrow margin doesn't have to wait for a full slice. |
| 1427 | * This also mitigates buddy induced latencies under load. |
| 1428 | */ |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 1429 | if (delta_exec < sysctl_sched_min_granularity) |
| 1430 | return; |
| 1431 | |
Wang Xingchao | f4cfb33 | 2011-09-16 13:35:52 -0400 | [diff] [blame] | 1432 | se = __pick_first_entity(cfs_rq); |
| 1433 | delta = curr->vruntime - se->vruntime; |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 1434 | |
Wang Xingchao | f4cfb33 | 2011-09-16 13:35:52 -0400 | [diff] [blame] | 1435 | if (delta < 0) |
| 1436 | return; |
Mike Galbraith | d7d8294 | 2011-01-05 05:41:17 +0100 | [diff] [blame] | 1437 | |
Wang Xingchao | f4cfb33 | 2011-09-16 13:35:52 -0400 | [diff] [blame] | 1438 | if (delta > ideal_runtime) |
| 1439 | resched_task(rq_of(cfs_rq)->curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1440 | } |
| 1441 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 1442 | static void |
Ingo Molnar | 8494f41 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1443 | set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1444 | { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 1445 | /* 'current' is not kept within the tree. */ |
| 1446 | if (se->on_rq) { |
| 1447 | /* |
| 1448 | * Any task has to be enqueued before it get to execute on |
| 1449 | * a CPU. So account for the time it spent waiting on the |
| 1450 | * runqueue. |
| 1451 | */ |
| 1452 | update_stats_wait_end(cfs_rq, se); |
| 1453 | __dequeue_entity(cfs_rq, se); |
| 1454 | } |
| 1455 | |
Ingo Molnar | 79303e9 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1456 | update_stats_curr_start(cfs_rq, se); |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 1457 | cfs_rq->curr = se; |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 1458 | #ifdef CONFIG_SCHEDSTATS |
| 1459 | /* |
| 1460 | * Track our maximum slice length, if the CPU's load is at |
| 1461 | * least twice that of our own weight (i.e. dont track it |
| 1462 | * when there are only lesser-weight tasks around): |
| 1463 | */ |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1464 | if (rq_of(cfs_rq)->load.weight >= 2*se->load.weight) { |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 1465 | se->statistics.slice_max = max(se->statistics.slice_max, |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 1466 | se->sum_exec_runtime - se->prev_sum_exec_runtime); |
| 1467 | } |
| 1468 | #endif |
Peter Zijlstra | 4a55b45 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1469 | se->prev_sum_exec_runtime = se->sum_exec_runtime; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1470 | } |
| 1471 | |
Peter Zijlstra | 3f3a490 | 2008-10-24 11:06:16 +0200 | [diff] [blame] | 1472 | static int |
| 1473 | wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se); |
| 1474 | |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 1475 | /* |
| 1476 | * Pick the next process, keeping these things in mind, in this order: |
| 1477 | * 1) keep things fair between processes/task groups |
| 1478 | * 2) pick the "next" process, since someone really wants that to run |
| 1479 | * 3) pick the "last" process, for cache locality |
| 1480 | * 4) do not run the "skip" process, if something else is available |
| 1481 | */ |
Peter Zijlstra | f4b6755 | 2008-11-04 21:25:07 +0100 | [diff] [blame] | 1482 | static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq) |
Peter Zijlstra | aa2ac25 | 2008-03-14 21:12:12 +0100 | [diff] [blame] | 1483 | { |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 1484 | struct sched_entity *se = __pick_first_entity(cfs_rq); |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 1485 | struct sched_entity *left = se; |
Peter Zijlstra | f4b6755 | 2008-11-04 21:25:07 +0100 | [diff] [blame] | 1486 | |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 1487 | /* |
| 1488 | * Avoid running the skip buddy, if running something else can |
| 1489 | * be done without getting too unfair. |
| 1490 | */ |
| 1491 | if (cfs_rq->skip == se) { |
| 1492 | struct sched_entity *second = __pick_next_entity(se); |
| 1493 | if (second && wakeup_preempt_entity(second, left) < 1) |
| 1494 | se = second; |
| 1495 | } |
Peter Zijlstra | aa2ac25 | 2008-03-14 21:12:12 +0100 | [diff] [blame] | 1496 | |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 1497 | /* |
| 1498 | * Prefer last buddy, try to return the CPU to a preempted task. |
| 1499 | */ |
| 1500 | if (cfs_rq->last && wakeup_preempt_entity(cfs_rq->last, left) < 1) |
| 1501 | se = cfs_rq->last; |
| 1502 | |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 1503 | /* |
| 1504 | * Someone really wants this to run. If it's not unfair, run it. |
| 1505 | */ |
| 1506 | if (cfs_rq->next && wakeup_preempt_entity(cfs_rq->next, left) < 1) |
| 1507 | se = cfs_rq->next; |
| 1508 | |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 1509 | clear_buddies(cfs_rq, se); |
Peter Zijlstra | 4793241 | 2008-11-04 21:25:09 +0100 | [diff] [blame] | 1510 | |
| 1511 | return se; |
Peter Zijlstra | aa2ac25 | 2008-03-14 21:12:12 +0100 | [diff] [blame] | 1512 | } |
| 1513 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 1514 | static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq); |
| 1515 | |
Ingo Molnar | ab6cde2 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1516 | 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] | 1517 | { |
| 1518 | /* |
| 1519 | * If still on the runqueue then deactivate_task() |
| 1520 | * was not called and update_curr() has to be done: |
| 1521 | */ |
| 1522 | if (prev->on_rq) |
Ingo Molnar | b7cc089 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1523 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1524 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 1525 | /* throttle cfs_rqs exceeding runtime */ |
| 1526 | check_cfs_rq_runtime(cfs_rq); |
| 1527 | |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 1528 | check_spread(cfs_rq, prev); |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 1529 | if (prev->on_rq) { |
Ingo Molnar | 5870db5 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1530 | update_stats_wait_start(cfs_rq, prev); |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 1531 | /* Put 'current' back into the tree. */ |
| 1532 | __enqueue_entity(cfs_rq, prev); |
| 1533 | } |
Ingo Molnar | 429d43b | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 1534 | cfs_rq->curr = NULL; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1535 | } |
| 1536 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1537 | static void |
| 1538 | entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1539 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1540 | /* |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 1541 | * Update run-time statistics of the 'current'. |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1542 | */ |
Dmitry Adamushko | 30cfdcf | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 1543 | update_curr(cfs_rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1544 | |
Paul Turner | 43365bd | 2010-12-15 19:10:17 -0800 | [diff] [blame] | 1545 | /* |
| 1546 | * Update share accounting for long-running entities. |
| 1547 | */ |
| 1548 | update_entity_shares_tick(cfs_rq); |
| 1549 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1550 | #ifdef CONFIG_SCHED_HRTICK |
| 1551 | /* |
| 1552 | * queued ticks are scheduled to match the slice, so don't bother |
| 1553 | * validating it and just reschedule. |
| 1554 | */ |
Harvey Harrison | 983ed7a | 2008-04-24 18:17:55 -0700 | [diff] [blame] | 1555 | if (queued) { |
| 1556 | resched_task(rq_of(cfs_rq)->curr); |
| 1557 | return; |
| 1558 | } |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1559 | /* |
| 1560 | * don't let the period tick interfere with the hrtick preemption |
| 1561 | */ |
| 1562 | if (!sched_feat(DOUBLE_TICK) && |
| 1563 | hrtimer_active(&rq_of(cfs_rq)->hrtick_timer)) |
| 1564 | return; |
| 1565 | #endif |
| 1566 | |
Yong Zhang | 2c2efae | 2011-07-29 16:20:33 +0800 | [diff] [blame] | 1567 | if (cfs_rq->nr_running > 1) |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 1568 | check_preempt_tick(cfs_rq, curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1569 | } |
| 1570 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 1571 | |
| 1572 | /************************************************** |
| 1573 | * CFS bandwidth control machinery |
| 1574 | */ |
| 1575 | |
| 1576 | #ifdef CONFIG_CFS_BANDWIDTH |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1577 | |
| 1578 | #ifdef HAVE_JUMP_LABEL |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 1579 | static struct static_key __cfs_bandwidth_used; |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1580 | |
| 1581 | static inline bool cfs_bandwidth_used(void) |
| 1582 | { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 1583 | return static_key_false(&__cfs_bandwidth_used); |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | void account_cfs_bandwidth_used(int enabled, int was_enabled) |
| 1587 | { |
| 1588 | /* only need to count groups transitioning between enabled/!enabled */ |
| 1589 | if (enabled && !was_enabled) |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 1590 | static_key_slow_inc(&__cfs_bandwidth_used); |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1591 | else if (!enabled && was_enabled) |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 1592 | static_key_slow_dec(&__cfs_bandwidth_used); |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1593 | } |
| 1594 | #else /* HAVE_JUMP_LABEL */ |
| 1595 | static bool cfs_bandwidth_used(void) |
| 1596 | { |
| 1597 | return true; |
| 1598 | } |
| 1599 | |
| 1600 | void account_cfs_bandwidth_used(int enabled, int was_enabled) {} |
| 1601 | #endif /* HAVE_JUMP_LABEL */ |
| 1602 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 1603 | /* |
| 1604 | * default period for cfs group bandwidth. |
| 1605 | * default: 0.1s, units: nanoseconds |
| 1606 | */ |
| 1607 | static inline u64 default_cfs_period(void) |
| 1608 | { |
| 1609 | return 100000000ULL; |
| 1610 | } |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1611 | |
| 1612 | static inline u64 sched_cfs_bandwidth_slice(void) |
| 1613 | { |
| 1614 | return (u64)sysctl_sched_cfs_bandwidth_slice * NSEC_PER_USEC; |
| 1615 | } |
| 1616 | |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1617 | /* |
| 1618 | * Replenish runtime according to assigned quota and update expiration time. |
| 1619 | * We use sched_clock_cpu directly instead of rq->clock to avoid adding |
| 1620 | * additional synchronization around rq->lock. |
| 1621 | * |
| 1622 | * requires cfs_b->lock |
| 1623 | */ |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1624 | void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b) |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1625 | { |
| 1626 | u64 now; |
| 1627 | |
| 1628 | if (cfs_b->quota == RUNTIME_INF) |
| 1629 | return; |
| 1630 | |
| 1631 | now = sched_clock_cpu(smp_processor_id()); |
| 1632 | cfs_b->runtime = cfs_b->quota; |
| 1633 | cfs_b->runtime_expires = now + ktime_to_ns(cfs_b->period); |
| 1634 | } |
| 1635 | |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1636 | static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg) |
| 1637 | { |
| 1638 | return &tg->cfs_bandwidth; |
| 1639 | } |
| 1640 | |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1641 | /* returns 0 on failure to allocate runtime */ |
| 1642 | static int assign_cfs_rq_runtime(struct cfs_rq *cfs_rq) |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1643 | { |
| 1644 | struct task_group *tg = cfs_rq->tg; |
| 1645 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg); |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1646 | u64 amount = 0, min_amount, expires; |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1647 | |
| 1648 | /* note: this is a positive sum as runtime_remaining <= 0 */ |
| 1649 | min_amount = sched_cfs_bandwidth_slice() - cfs_rq->runtime_remaining; |
| 1650 | |
| 1651 | raw_spin_lock(&cfs_b->lock); |
| 1652 | if (cfs_b->quota == RUNTIME_INF) |
| 1653 | amount = min_amount; |
Paul Turner | 58088ad | 2011-07-21 09:43:31 -0700 | [diff] [blame] | 1654 | else { |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1655 | /* |
| 1656 | * If the bandwidth pool has become inactive, then at least one |
| 1657 | * period must have elapsed since the last consumption. |
| 1658 | * Refresh the global state and ensure bandwidth timer becomes |
| 1659 | * active. |
| 1660 | */ |
| 1661 | if (!cfs_b->timer_active) { |
| 1662 | __refill_cfs_bandwidth_runtime(cfs_b); |
Paul Turner | 58088ad | 2011-07-21 09:43:31 -0700 | [diff] [blame] | 1663 | __start_cfs_bandwidth(cfs_b); |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1664 | } |
Paul Turner | 58088ad | 2011-07-21 09:43:31 -0700 | [diff] [blame] | 1665 | |
| 1666 | if (cfs_b->runtime > 0) { |
| 1667 | amount = min(cfs_b->runtime, min_amount); |
| 1668 | cfs_b->runtime -= amount; |
| 1669 | cfs_b->idle = 0; |
| 1670 | } |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1671 | } |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1672 | expires = cfs_b->runtime_expires; |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1673 | raw_spin_unlock(&cfs_b->lock); |
| 1674 | |
| 1675 | cfs_rq->runtime_remaining += amount; |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1676 | /* |
| 1677 | * we may have advanced our local expiration to account for allowed |
| 1678 | * spread between our sched_clock and the one on which runtime was |
| 1679 | * issued. |
| 1680 | */ |
| 1681 | if ((s64)(expires - cfs_rq->runtime_expires) > 0) |
| 1682 | cfs_rq->runtime_expires = expires; |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1683 | |
| 1684 | return cfs_rq->runtime_remaining > 0; |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1685 | } |
| 1686 | |
| 1687 | /* |
| 1688 | * Note: This depends on the synchronization provided by sched_clock and the |
| 1689 | * fact that rq->clock snapshots this value. |
| 1690 | */ |
| 1691 | static void expire_cfs_rq_runtime(struct cfs_rq *cfs_rq) |
| 1692 | { |
| 1693 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg); |
| 1694 | struct rq *rq = rq_of(cfs_rq); |
| 1695 | |
| 1696 | /* if the deadline is ahead of our clock, nothing to do */ |
| 1697 | if (likely((s64)(rq->clock - cfs_rq->runtime_expires) < 0)) |
| 1698 | return; |
| 1699 | |
| 1700 | if (cfs_rq->runtime_remaining < 0) |
| 1701 | return; |
| 1702 | |
| 1703 | /* |
| 1704 | * If the local deadline has passed we have to consider the |
| 1705 | * possibility that our sched_clock is 'fast' and the global deadline |
| 1706 | * has not truly expired. |
| 1707 | * |
| 1708 | * Fortunately we can check determine whether this the case by checking |
| 1709 | * whether the global deadline has advanced. |
| 1710 | */ |
| 1711 | |
| 1712 | if ((s64)(cfs_rq->runtime_expires - cfs_b->runtime_expires) >= 0) { |
| 1713 | /* extend local deadline, drift is bounded above by 2 ticks */ |
| 1714 | cfs_rq->runtime_expires += TICK_NSEC; |
| 1715 | } else { |
| 1716 | /* global deadline is ahead, expiration has passed */ |
| 1717 | cfs_rq->runtime_remaining = 0; |
| 1718 | } |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1719 | } |
| 1720 | |
| 1721 | static void __account_cfs_rq_runtime(struct cfs_rq *cfs_rq, |
| 1722 | unsigned long delta_exec) |
| 1723 | { |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1724 | /* dock delta_exec before expiring quota (as it could span periods) */ |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1725 | cfs_rq->runtime_remaining -= delta_exec; |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1726 | expire_cfs_rq_runtime(cfs_rq); |
| 1727 | |
| 1728 | if (likely(cfs_rq->runtime_remaining > 0)) |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1729 | return; |
| 1730 | |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1731 | /* |
| 1732 | * if we're unable to extend our runtime we resched so that the active |
| 1733 | * hierarchy can be throttled |
| 1734 | */ |
| 1735 | if (!assign_cfs_rq_runtime(cfs_rq) && likely(cfs_rq->curr)) |
| 1736 | resched_task(rq_of(cfs_rq)->curr); |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1737 | } |
| 1738 | |
Peter Zijlstra | 6c16a6d | 2012-03-21 13:07:16 -0700 | [diff] [blame] | 1739 | static __always_inline |
| 1740 | void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec) |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1741 | { |
Paul Turner | 56f570e | 2011-11-07 20:26:33 -0800 | [diff] [blame] | 1742 | if (!cfs_bandwidth_used() || !cfs_rq->runtime_enabled) |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 1743 | return; |
| 1744 | |
| 1745 | __account_cfs_rq_runtime(cfs_rq, delta_exec); |
| 1746 | } |
| 1747 | |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1748 | static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq) |
| 1749 | { |
Paul Turner | 56f570e | 2011-11-07 20:26:33 -0800 | [diff] [blame] | 1750 | return cfs_bandwidth_used() && cfs_rq->throttled; |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1751 | } |
| 1752 | |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 1753 | /* check whether cfs_rq, or any parent, is throttled */ |
| 1754 | static inline int throttled_hierarchy(struct cfs_rq *cfs_rq) |
| 1755 | { |
Paul Turner | 56f570e | 2011-11-07 20:26:33 -0800 | [diff] [blame] | 1756 | return cfs_bandwidth_used() && cfs_rq->throttle_count; |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 1757 | } |
| 1758 | |
| 1759 | /* |
| 1760 | * Ensure that neither of the group entities corresponding to src_cpu or |
| 1761 | * dest_cpu are members of a throttled hierarchy when performing group |
| 1762 | * load-balance operations. |
| 1763 | */ |
| 1764 | static inline int throttled_lb_pair(struct task_group *tg, |
| 1765 | int src_cpu, int dest_cpu) |
| 1766 | { |
| 1767 | struct cfs_rq *src_cfs_rq, *dest_cfs_rq; |
| 1768 | |
| 1769 | src_cfs_rq = tg->cfs_rq[src_cpu]; |
| 1770 | dest_cfs_rq = tg->cfs_rq[dest_cpu]; |
| 1771 | |
| 1772 | return throttled_hierarchy(src_cfs_rq) || |
| 1773 | throttled_hierarchy(dest_cfs_rq); |
| 1774 | } |
| 1775 | |
| 1776 | /* updated child weight may affect parent so we have to do this bottom up */ |
| 1777 | static int tg_unthrottle_up(struct task_group *tg, void *data) |
| 1778 | { |
| 1779 | struct rq *rq = data; |
| 1780 | struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)]; |
| 1781 | |
| 1782 | cfs_rq->throttle_count--; |
| 1783 | #ifdef CONFIG_SMP |
| 1784 | if (!cfs_rq->throttle_count) { |
| 1785 | u64 delta = rq->clock_task - cfs_rq->load_stamp; |
| 1786 | |
| 1787 | /* leaving throttled state, advance shares averaging windows */ |
| 1788 | cfs_rq->load_stamp += delta; |
| 1789 | cfs_rq->load_last += delta; |
| 1790 | |
| 1791 | /* update entity weight now that we are on_rq again */ |
| 1792 | update_cfs_shares(cfs_rq); |
| 1793 | } |
| 1794 | #endif |
| 1795 | |
| 1796 | return 0; |
| 1797 | } |
| 1798 | |
| 1799 | static int tg_throttle_down(struct task_group *tg, void *data) |
| 1800 | { |
| 1801 | struct rq *rq = data; |
| 1802 | struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)]; |
| 1803 | |
| 1804 | /* group is entering throttled state, record last load */ |
| 1805 | if (!cfs_rq->throttle_count) |
| 1806 | update_cfs_load(cfs_rq, 0); |
| 1807 | cfs_rq->throttle_count++; |
| 1808 | |
| 1809 | return 0; |
| 1810 | } |
| 1811 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 1812 | static void throttle_cfs_rq(struct cfs_rq *cfs_rq) |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1813 | { |
| 1814 | struct rq *rq = rq_of(cfs_rq); |
| 1815 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg); |
| 1816 | struct sched_entity *se; |
| 1817 | long task_delta, dequeue = 1; |
| 1818 | |
| 1819 | se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))]; |
| 1820 | |
| 1821 | /* account load preceding throttle */ |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 1822 | rcu_read_lock(); |
| 1823 | walk_tg_tree_from(cfs_rq->tg, tg_throttle_down, tg_nop, (void *)rq); |
| 1824 | rcu_read_unlock(); |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1825 | |
| 1826 | task_delta = cfs_rq->h_nr_running; |
| 1827 | for_each_sched_entity(se) { |
| 1828 | struct cfs_rq *qcfs_rq = cfs_rq_of(se); |
| 1829 | /* throttled entity or throttle-on-deactivate */ |
| 1830 | if (!se->on_rq) |
| 1831 | break; |
| 1832 | |
| 1833 | if (dequeue) |
| 1834 | dequeue_entity(qcfs_rq, se, DEQUEUE_SLEEP); |
| 1835 | qcfs_rq->h_nr_running -= task_delta; |
| 1836 | |
| 1837 | if (qcfs_rq->load.weight) |
| 1838 | dequeue = 0; |
| 1839 | } |
| 1840 | |
| 1841 | if (!se) |
| 1842 | rq->nr_running -= task_delta; |
| 1843 | |
| 1844 | cfs_rq->throttled = 1; |
Nikhil Rao | e8da1b1 | 2011-07-21 09:43:40 -0700 | [diff] [blame] | 1845 | cfs_rq->throttled_timestamp = rq->clock; |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 1846 | raw_spin_lock(&cfs_b->lock); |
| 1847 | list_add_tail_rcu(&cfs_rq->throttled_list, &cfs_b->throttled_cfs_rq); |
| 1848 | raw_spin_unlock(&cfs_b->lock); |
| 1849 | } |
| 1850 | |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 1851 | void unthrottle_cfs_rq(struct cfs_rq *cfs_rq) |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1852 | { |
| 1853 | struct rq *rq = rq_of(cfs_rq); |
| 1854 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg); |
| 1855 | struct sched_entity *se; |
| 1856 | int enqueue = 1; |
| 1857 | long task_delta; |
| 1858 | |
| 1859 | se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))]; |
| 1860 | |
| 1861 | cfs_rq->throttled = 0; |
| 1862 | raw_spin_lock(&cfs_b->lock); |
Nikhil Rao | e8da1b1 | 2011-07-21 09:43:40 -0700 | [diff] [blame] | 1863 | cfs_b->throttled_time += rq->clock - cfs_rq->throttled_timestamp; |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1864 | list_del_rcu(&cfs_rq->throttled_list); |
| 1865 | raw_spin_unlock(&cfs_b->lock); |
Nikhil Rao | e8da1b1 | 2011-07-21 09:43:40 -0700 | [diff] [blame] | 1866 | cfs_rq->throttled_timestamp = 0; |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1867 | |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 1868 | update_rq_clock(rq); |
| 1869 | /* update hierarchical throttle state */ |
| 1870 | walk_tg_tree_from(cfs_rq->tg, tg_nop, tg_unthrottle_up, (void *)rq); |
| 1871 | |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1872 | if (!cfs_rq->load.weight) |
| 1873 | return; |
| 1874 | |
| 1875 | task_delta = cfs_rq->h_nr_running; |
| 1876 | for_each_sched_entity(se) { |
| 1877 | if (se->on_rq) |
| 1878 | enqueue = 0; |
| 1879 | |
| 1880 | cfs_rq = cfs_rq_of(se); |
| 1881 | if (enqueue) |
| 1882 | enqueue_entity(cfs_rq, se, ENQUEUE_WAKEUP); |
| 1883 | cfs_rq->h_nr_running += task_delta; |
| 1884 | |
| 1885 | if (cfs_rq_throttled(cfs_rq)) |
| 1886 | break; |
| 1887 | } |
| 1888 | |
| 1889 | if (!se) |
| 1890 | rq->nr_running += task_delta; |
| 1891 | |
| 1892 | /* determine whether we need to wake up potentially idle cpu */ |
| 1893 | if (rq->curr == rq->idle && rq->cfs.nr_running) |
| 1894 | resched_task(rq->curr); |
| 1895 | } |
| 1896 | |
| 1897 | static u64 distribute_cfs_runtime(struct cfs_bandwidth *cfs_b, |
| 1898 | u64 remaining, u64 expires) |
| 1899 | { |
| 1900 | struct cfs_rq *cfs_rq; |
| 1901 | u64 runtime = remaining; |
| 1902 | |
| 1903 | rcu_read_lock(); |
| 1904 | list_for_each_entry_rcu(cfs_rq, &cfs_b->throttled_cfs_rq, |
| 1905 | throttled_list) { |
| 1906 | struct rq *rq = rq_of(cfs_rq); |
| 1907 | |
| 1908 | raw_spin_lock(&rq->lock); |
| 1909 | if (!cfs_rq_throttled(cfs_rq)) |
| 1910 | goto next; |
| 1911 | |
| 1912 | runtime = -cfs_rq->runtime_remaining + 1; |
| 1913 | if (runtime > remaining) |
| 1914 | runtime = remaining; |
| 1915 | remaining -= runtime; |
| 1916 | |
| 1917 | cfs_rq->runtime_remaining += runtime; |
| 1918 | cfs_rq->runtime_expires = expires; |
| 1919 | |
| 1920 | /* we check whether we're throttled above */ |
| 1921 | if (cfs_rq->runtime_remaining > 0) |
| 1922 | unthrottle_cfs_rq(cfs_rq); |
| 1923 | |
| 1924 | next: |
| 1925 | raw_spin_unlock(&rq->lock); |
| 1926 | |
| 1927 | if (!remaining) |
| 1928 | break; |
| 1929 | } |
| 1930 | rcu_read_unlock(); |
| 1931 | |
| 1932 | return remaining; |
| 1933 | } |
| 1934 | |
Paul Turner | 58088ad | 2011-07-21 09:43:31 -0700 | [diff] [blame] | 1935 | /* |
| 1936 | * Responsible for refilling a task_group's bandwidth and unthrottling its |
| 1937 | * cfs_rqs as appropriate. If there has been no activity within the last |
| 1938 | * period the timer is deactivated until scheduling resumes; cfs_b->idle is |
| 1939 | * used to track this state. |
| 1940 | */ |
| 1941 | static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun) |
| 1942 | { |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1943 | u64 runtime, runtime_expires; |
| 1944 | int idle = 1, throttled; |
Paul Turner | 58088ad | 2011-07-21 09:43:31 -0700 | [diff] [blame] | 1945 | |
| 1946 | raw_spin_lock(&cfs_b->lock); |
| 1947 | /* no need to continue the timer with no bandwidth constraint */ |
| 1948 | if (cfs_b->quota == RUNTIME_INF) |
| 1949 | goto out_unlock; |
| 1950 | |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1951 | throttled = !list_empty(&cfs_b->throttled_cfs_rq); |
| 1952 | /* idle depends on !throttled (for the case of a large deficit) */ |
| 1953 | idle = cfs_b->idle && !throttled; |
Nikhil Rao | e8da1b1 | 2011-07-21 09:43:40 -0700 | [diff] [blame] | 1954 | cfs_b->nr_periods += overrun; |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1955 | |
Paul Turner | a9cf55b | 2011-07-21 09:43:32 -0700 | [diff] [blame] | 1956 | /* if we're going inactive then everything else can be deferred */ |
| 1957 | if (idle) |
| 1958 | goto out_unlock; |
| 1959 | |
| 1960 | __refill_cfs_bandwidth_runtime(cfs_b); |
| 1961 | |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1962 | if (!throttled) { |
| 1963 | /* mark as potentially idle for the upcoming period */ |
| 1964 | cfs_b->idle = 1; |
| 1965 | goto out_unlock; |
| 1966 | } |
Paul Turner | 58088ad | 2011-07-21 09:43:31 -0700 | [diff] [blame] | 1967 | |
Nikhil Rao | e8da1b1 | 2011-07-21 09:43:40 -0700 | [diff] [blame] | 1968 | /* account preceding periods in which throttling occurred */ |
| 1969 | cfs_b->nr_throttled += overrun; |
| 1970 | |
Paul Turner | 671fd9d | 2011-07-21 09:43:34 -0700 | [diff] [blame] | 1971 | /* |
| 1972 | * There are throttled entities so we must first use the new bandwidth |
| 1973 | * to unthrottle them before making it generally available. This |
| 1974 | * ensures that all existing debts will be paid before a new cfs_rq is |
| 1975 | * allowed to run. |
| 1976 | */ |
| 1977 | runtime = cfs_b->runtime; |
| 1978 | runtime_expires = cfs_b->runtime_expires; |
| 1979 | cfs_b->runtime = 0; |
| 1980 | |
| 1981 | /* |
| 1982 | * This check is repeated as we are holding onto the new bandwidth |
| 1983 | * while we unthrottle. This can potentially race with an unthrottled |
| 1984 | * group trying to acquire new bandwidth from the global pool. |
| 1985 | */ |
| 1986 | while (throttled && runtime > 0) { |
| 1987 | raw_spin_unlock(&cfs_b->lock); |
| 1988 | /* we can't nest cfs_b->lock while distributing bandwidth */ |
| 1989 | runtime = distribute_cfs_runtime(cfs_b, runtime, |
| 1990 | runtime_expires); |
| 1991 | raw_spin_lock(&cfs_b->lock); |
| 1992 | |
| 1993 | throttled = !list_empty(&cfs_b->throttled_cfs_rq); |
| 1994 | } |
| 1995 | |
| 1996 | /* return (any) remaining runtime */ |
| 1997 | cfs_b->runtime = runtime; |
| 1998 | /* |
| 1999 | * While we are ensured activity in the period following an |
| 2000 | * unthrottle, this also covers the case in which the new bandwidth is |
| 2001 | * insufficient to cover the existing bandwidth deficit. (Forcing the |
| 2002 | * timer to remain active while there are any throttled entities.) |
| 2003 | */ |
| 2004 | cfs_b->idle = 0; |
Paul Turner | 58088ad | 2011-07-21 09:43:31 -0700 | [diff] [blame] | 2005 | out_unlock: |
| 2006 | if (idle) |
| 2007 | cfs_b->timer_active = 0; |
| 2008 | raw_spin_unlock(&cfs_b->lock); |
| 2009 | |
| 2010 | return idle; |
| 2011 | } |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 2012 | |
Paul Turner | d8b4986 | 2011-07-21 09:43:41 -0700 | [diff] [blame] | 2013 | /* a cfs_rq won't donate quota below this amount */ |
| 2014 | static const u64 min_cfs_rq_runtime = 1 * NSEC_PER_MSEC; |
| 2015 | /* minimum remaining period time to redistribute slack quota */ |
| 2016 | static const u64 min_bandwidth_expiration = 2 * NSEC_PER_MSEC; |
| 2017 | /* how long we wait to gather additional slack before distributing */ |
| 2018 | static const u64 cfs_bandwidth_slack_period = 5 * NSEC_PER_MSEC; |
| 2019 | |
| 2020 | /* are we near the end of the current quota period? */ |
| 2021 | static int runtime_refresh_within(struct cfs_bandwidth *cfs_b, u64 min_expire) |
| 2022 | { |
| 2023 | struct hrtimer *refresh_timer = &cfs_b->period_timer; |
| 2024 | u64 remaining; |
| 2025 | |
| 2026 | /* if the call-back is running a quota refresh is already occurring */ |
| 2027 | if (hrtimer_callback_running(refresh_timer)) |
| 2028 | return 1; |
| 2029 | |
| 2030 | /* is a quota refresh about to occur? */ |
| 2031 | remaining = ktime_to_ns(hrtimer_expires_remaining(refresh_timer)); |
| 2032 | if (remaining < min_expire) |
| 2033 | return 1; |
| 2034 | |
| 2035 | return 0; |
| 2036 | } |
| 2037 | |
| 2038 | static void start_cfs_slack_bandwidth(struct cfs_bandwidth *cfs_b) |
| 2039 | { |
| 2040 | u64 min_left = cfs_bandwidth_slack_period + min_bandwidth_expiration; |
| 2041 | |
| 2042 | /* if there's a quota refresh soon don't bother with slack */ |
| 2043 | if (runtime_refresh_within(cfs_b, min_left)) |
| 2044 | return; |
| 2045 | |
| 2046 | start_bandwidth_timer(&cfs_b->slack_timer, |
| 2047 | ns_to_ktime(cfs_bandwidth_slack_period)); |
| 2048 | } |
| 2049 | |
| 2050 | /* we know any runtime found here is valid as update_curr() precedes return */ |
| 2051 | static void __return_cfs_rq_runtime(struct cfs_rq *cfs_rq) |
| 2052 | { |
| 2053 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg); |
| 2054 | s64 slack_runtime = cfs_rq->runtime_remaining - min_cfs_rq_runtime; |
| 2055 | |
| 2056 | if (slack_runtime <= 0) |
| 2057 | return; |
| 2058 | |
| 2059 | raw_spin_lock(&cfs_b->lock); |
| 2060 | if (cfs_b->quota != RUNTIME_INF && |
| 2061 | cfs_rq->runtime_expires == cfs_b->runtime_expires) { |
| 2062 | cfs_b->runtime += slack_runtime; |
| 2063 | |
| 2064 | /* we are under rq->lock, defer unthrottling using a timer */ |
| 2065 | if (cfs_b->runtime > sched_cfs_bandwidth_slice() && |
| 2066 | !list_empty(&cfs_b->throttled_cfs_rq)) |
| 2067 | start_cfs_slack_bandwidth(cfs_b); |
| 2068 | } |
| 2069 | raw_spin_unlock(&cfs_b->lock); |
| 2070 | |
| 2071 | /* even if it's not valid for return we don't want to try again */ |
| 2072 | cfs_rq->runtime_remaining -= slack_runtime; |
| 2073 | } |
| 2074 | |
| 2075 | static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq) |
| 2076 | { |
Paul Turner | 56f570e | 2011-11-07 20:26:33 -0800 | [diff] [blame] | 2077 | if (!cfs_bandwidth_used()) |
| 2078 | return; |
| 2079 | |
Paul Turner | fccfdc6 | 2011-11-07 20:26:34 -0800 | [diff] [blame] | 2080 | if (!cfs_rq->runtime_enabled || cfs_rq->nr_running) |
Paul Turner | d8b4986 | 2011-07-21 09:43:41 -0700 | [diff] [blame] | 2081 | return; |
| 2082 | |
| 2083 | __return_cfs_rq_runtime(cfs_rq); |
| 2084 | } |
| 2085 | |
| 2086 | /* |
| 2087 | * This is done with a timer (instead of inline with bandwidth return) since |
| 2088 | * it's necessary to juggle rq->locks to unthrottle their respective cfs_rqs. |
| 2089 | */ |
| 2090 | static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b) |
| 2091 | { |
| 2092 | u64 runtime = 0, slice = sched_cfs_bandwidth_slice(); |
| 2093 | u64 expires; |
| 2094 | |
| 2095 | /* confirm we're still not at a refresh boundary */ |
| 2096 | if (runtime_refresh_within(cfs_b, min_bandwidth_expiration)) |
| 2097 | return; |
| 2098 | |
| 2099 | raw_spin_lock(&cfs_b->lock); |
| 2100 | if (cfs_b->quota != RUNTIME_INF && cfs_b->runtime > slice) { |
| 2101 | runtime = cfs_b->runtime; |
| 2102 | cfs_b->runtime = 0; |
| 2103 | } |
| 2104 | expires = cfs_b->runtime_expires; |
| 2105 | raw_spin_unlock(&cfs_b->lock); |
| 2106 | |
| 2107 | if (!runtime) |
| 2108 | return; |
| 2109 | |
| 2110 | runtime = distribute_cfs_runtime(cfs_b, runtime, expires); |
| 2111 | |
| 2112 | raw_spin_lock(&cfs_b->lock); |
| 2113 | if (expires == cfs_b->runtime_expires) |
| 2114 | cfs_b->runtime = runtime; |
| 2115 | raw_spin_unlock(&cfs_b->lock); |
| 2116 | } |
| 2117 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 2118 | /* |
| 2119 | * When a group wakes up we want to make sure that its quota is not already |
| 2120 | * expired/exceeded, otherwise it may be allowed to steal additional ticks of |
| 2121 | * runtime as update_curr() throttling can not not trigger until it's on-rq. |
| 2122 | */ |
| 2123 | static void check_enqueue_throttle(struct cfs_rq *cfs_rq) |
| 2124 | { |
Paul Turner | 56f570e | 2011-11-07 20:26:33 -0800 | [diff] [blame] | 2125 | if (!cfs_bandwidth_used()) |
| 2126 | return; |
| 2127 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 2128 | /* an active group must be handled by the update_curr()->put() path */ |
| 2129 | if (!cfs_rq->runtime_enabled || cfs_rq->curr) |
| 2130 | return; |
| 2131 | |
| 2132 | /* ensure the group is not already throttled */ |
| 2133 | if (cfs_rq_throttled(cfs_rq)) |
| 2134 | return; |
| 2135 | |
| 2136 | /* update runtime allocation */ |
| 2137 | account_cfs_rq_runtime(cfs_rq, 0); |
| 2138 | if (cfs_rq->runtime_remaining <= 0) |
| 2139 | throttle_cfs_rq(cfs_rq); |
| 2140 | } |
| 2141 | |
| 2142 | /* conditionally throttle active cfs_rq's from put_prev_entity() */ |
| 2143 | static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq) |
| 2144 | { |
Paul Turner | 56f570e | 2011-11-07 20:26:33 -0800 | [diff] [blame] | 2145 | if (!cfs_bandwidth_used()) |
| 2146 | return; |
| 2147 | |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 2148 | if (likely(!cfs_rq->runtime_enabled || cfs_rq->runtime_remaining > 0)) |
| 2149 | return; |
| 2150 | |
| 2151 | /* |
| 2152 | * it's possible for a throttled entity to be forced into a running |
| 2153 | * state (e.g. set_curr_task), in this case we're finished. |
| 2154 | */ |
| 2155 | if (cfs_rq_throttled(cfs_rq)) |
| 2156 | return; |
| 2157 | |
| 2158 | throttle_cfs_rq(cfs_rq); |
| 2159 | } |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 2160 | |
| 2161 | static inline u64 default_cfs_period(void); |
| 2162 | static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun); |
| 2163 | static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b); |
| 2164 | |
| 2165 | static enum hrtimer_restart sched_cfs_slack_timer(struct hrtimer *timer) |
| 2166 | { |
| 2167 | struct cfs_bandwidth *cfs_b = |
| 2168 | container_of(timer, struct cfs_bandwidth, slack_timer); |
| 2169 | do_sched_cfs_slack_timer(cfs_b); |
| 2170 | |
| 2171 | return HRTIMER_NORESTART; |
| 2172 | } |
| 2173 | |
| 2174 | static enum hrtimer_restart sched_cfs_period_timer(struct hrtimer *timer) |
| 2175 | { |
| 2176 | struct cfs_bandwidth *cfs_b = |
| 2177 | container_of(timer, struct cfs_bandwidth, period_timer); |
| 2178 | ktime_t now; |
| 2179 | int overrun; |
| 2180 | int idle = 0; |
| 2181 | |
| 2182 | for (;;) { |
| 2183 | now = hrtimer_cb_get_time(timer); |
| 2184 | overrun = hrtimer_forward(timer, now, cfs_b->period); |
| 2185 | |
| 2186 | if (!overrun) |
| 2187 | break; |
| 2188 | |
| 2189 | idle = do_sched_cfs_period_timer(cfs_b, overrun); |
| 2190 | } |
| 2191 | |
| 2192 | return idle ? HRTIMER_NORESTART : HRTIMER_RESTART; |
| 2193 | } |
| 2194 | |
| 2195 | void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) |
| 2196 | { |
| 2197 | raw_spin_lock_init(&cfs_b->lock); |
| 2198 | cfs_b->runtime = 0; |
| 2199 | cfs_b->quota = RUNTIME_INF; |
| 2200 | cfs_b->period = ns_to_ktime(default_cfs_period()); |
| 2201 | |
| 2202 | INIT_LIST_HEAD(&cfs_b->throttled_cfs_rq); |
| 2203 | hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 2204 | cfs_b->period_timer.function = sched_cfs_period_timer; |
| 2205 | hrtimer_init(&cfs_b->slack_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 2206 | cfs_b->slack_timer.function = sched_cfs_slack_timer; |
| 2207 | } |
| 2208 | |
| 2209 | static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) |
| 2210 | { |
| 2211 | cfs_rq->runtime_enabled = 0; |
| 2212 | INIT_LIST_HEAD(&cfs_rq->throttled_list); |
| 2213 | } |
| 2214 | |
| 2215 | /* requires cfs_b->lock, may release to reprogram timer */ |
| 2216 | void __start_cfs_bandwidth(struct cfs_bandwidth *cfs_b) |
| 2217 | { |
| 2218 | /* |
| 2219 | * The timer may be active because we're trying to set a new bandwidth |
| 2220 | * period or because we're racing with the tear-down path |
| 2221 | * (timer_active==0 becomes visible before the hrtimer call-back |
| 2222 | * terminates). In either case we ensure that it's re-programmed |
| 2223 | */ |
| 2224 | while (unlikely(hrtimer_active(&cfs_b->period_timer))) { |
| 2225 | raw_spin_unlock(&cfs_b->lock); |
| 2226 | /* ensure cfs_b->lock is available while we wait */ |
| 2227 | hrtimer_cancel(&cfs_b->period_timer); |
| 2228 | |
| 2229 | raw_spin_lock(&cfs_b->lock); |
| 2230 | /* if someone else restarted the timer then we're done */ |
| 2231 | if (cfs_b->timer_active) |
| 2232 | return; |
| 2233 | } |
| 2234 | |
| 2235 | cfs_b->timer_active = 1; |
| 2236 | start_bandwidth_timer(&cfs_b->period_timer, cfs_b->period); |
| 2237 | } |
| 2238 | |
| 2239 | static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) |
| 2240 | { |
| 2241 | hrtimer_cancel(&cfs_b->period_timer); |
| 2242 | hrtimer_cancel(&cfs_b->slack_timer); |
| 2243 | } |
| 2244 | |
Peter Boonstoppel | a4c96ae | 2012-08-09 15:34:47 -0700 | [diff] [blame] | 2245 | static void unthrottle_offline_cfs_rqs(struct rq *rq) |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 2246 | { |
| 2247 | struct cfs_rq *cfs_rq; |
| 2248 | |
| 2249 | for_each_leaf_cfs_rq(rq, cfs_rq) { |
| 2250 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg); |
| 2251 | |
| 2252 | if (!cfs_rq->runtime_enabled) |
| 2253 | continue; |
| 2254 | |
| 2255 | /* |
| 2256 | * clock_task is not advancing so we just need to make sure |
| 2257 | * there's some valid quota amount |
| 2258 | */ |
| 2259 | cfs_rq->runtime_remaining = cfs_b->quota; |
| 2260 | if (cfs_rq_throttled(cfs_rq)) |
| 2261 | unthrottle_cfs_rq(cfs_rq); |
| 2262 | } |
| 2263 | } |
| 2264 | |
| 2265 | #else /* CONFIG_CFS_BANDWIDTH */ |
Peter Zijlstra | 6c16a6d | 2012-03-21 13:07:16 -0700 | [diff] [blame] | 2266 | static __always_inline |
| 2267 | void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec) {} |
Paul Turner | d3d9dc3 | 2011-07-21 09:43:39 -0700 | [diff] [blame] | 2268 | static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq) {} |
| 2269 | static void check_enqueue_throttle(struct cfs_rq *cfs_rq) {} |
Peter Zijlstra | 6c16a6d | 2012-03-21 13:07:16 -0700 | [diff] [blame] | 2270 | static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq) {} |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2271 | |
| 2272 | static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq) |
| 2273 | { |
| 2274 | return 0; |
| 2275 | } |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 2276 | |
| 2277 | static inline int throttled_hierarchy(struct cfs_rq *cfs_rq) |
| 2278 | { |
| 2279 | return 0; |
| 2280 | } |
| 2281 | |
| 2282 | static inline int throttled_lb_pair(struct task_group *tg, |
| 2283 | int src_cpu, int dest_cpu) |
| 2284 | { |
| 2285 | return 0; |
| 2286 | } |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 2287 | |
| 2288 | void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {} |
| 2289 | |
| 2290 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 2291 | static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {} |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 2292 | #endif |
| 2293 | |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 2294 | static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg) |
| 2295 | { |
| 2296 | return NULL; |
| 2297 | } |
| 2298 | static inline void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {} |
Peter Boonstoppel | a4c96ae | 2012-08-09 15:34:47 -0700 | [diff] [blame] | 2299 | static inline void unthrottle_offline_cfs_rqs(struct rq *rq) {} |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 2300 | |
| 2301 | #endif /* CONFIG_CFS_BANDWIDTH */ |
| 2302 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2303 | /************************************************** |
| 2304 | * CFS operations on tasks: |
| 2305 | */ |
| 2306 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2307 | #ifdef CONFIG_SCHED_HRTICK |
| 2308 | static void hrtick_start_fair(struct rq *rq, struct task_struct *p) |
| 2309 | { |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2310 | struct sched_entity *se = &p->se; |
| 2311 | struct cfs_rq *cfs_rq = cfs_rq_of(se); |
| 2312 | |
| 2313 | WARN_ON(task_rq(p) != rq); |
| 2314 | |
Mike Galbraith | b39e66e | 2011-11-22 15:20:07 +0100 | [diff] [blame] | 2315 | if (cfs_rq->nr_running > 1) { |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2316 | u64 slice = sched_slice(cfs_rq, se); |
| 2317 | u64 ran = se->sum_exec_runtime - se->prev_sum_exec_runtime; |
| 2318 | s64 delta = slice - ran; |
| 2319 | |
| 2320 | if (delta < 0) { |
| 2321 | if (rq->curr == p) |
| 2322 | resched_task(p); |
| 2323 | return; |
| 2324 | } |
| 2325 | |
| 2326 | /* |
| 2327 | * Don't schedule slices shorter than 10000ns, that just |
| 2328 | * doesn't make sense. Rely on vruntime for fairness. |
| 2329 | */ |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 2330 | if (rq->curr != p) |
Peter Zijlstra | 157124c | 2008-07-28 11:53:11 +0200 | [diff] [blame] | 2331 | delta = max_t(s64, 10000LL, delta); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2332 | |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 2333 | hrtick_start(rq, delta); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2334 | } |
| 2335 | } |
Peter Zijlstra | a4c2f00 | 2008-10-17 19:27:03 +0200 | [diff] [blame] | 2336 | |
| 2337 | /* |
| 2338 | * called from enqueue/dequeue and updates the hrtick when the |
| 2339 | * current task is from our class and nr_running is low enough |
| 2340 | * to matter. |
| 2341 | */ |
| 2342 | static void hrtick_update(struct rq *rq) |
| 2343 | { |
| 2344 | struct task_struct *curr = rq->curr; |
| 2345 | |
Mike Galbraith | b39e66e | 2011-11-22 15:20:07 +0100 | [diff] [blame] | 2346 | if (!hrtick_enabled(rq) || curr->sched_class != &fair_sched_class) |
Peter Zijlstra | a4c2f00 | 2008-10-17 19:27:03 +0200 | [diff] [blame] | 2347 | return; |
| 2348 | |
| 2349 | if (cfs_rq_of(&curr->se)->nr_running < sched_nr_latency) |
| 2350 | hrtick_start_fair(rq, curr); |
| 2351 | } |
Dhaval Giani | 55e12e5 | 2008-06-24 23:39:43 +0530 | [diff] [blame] | 2352 | #else /* !CONFIG_SCHED_HRTICK */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2353 | static inline void |
| 2354 | hrtick_start_fair(struct rq *rq, struct task_struct *p) |
| 2355 | { |
| 2356 | } |
Peter Zijlstra | a4c2f00 | 2008-10-17 19:27:03 +0200 | [diff] [blame] | 2357 | |
| 2358 | static inline void hrtick_update(struct rq *rq) |
| 2359 | { |
| 2360 | } |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2361 | #endif |
| 2362 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2363 | /* |
| 2364 | * The enqueue_task method is called before nr_running is |
| 2365 | * increased. Here we update the fair scheduling stats and |
| 2366 | * then put the task into the rbtree: |
| 2367 | */ |
Thomas Gleixner | ea87bb7 | 2010-01-20 20:58:57 +0000 | [diff] [blame] | 2368 | static void |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 2369 | enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2370 | { |
| 2371 | struct cfs_rq *cfs_rq; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 2372 | struct sched_entity *se = &p->se; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2373 | |
| 2374 | for_each_sched_entity(se) { |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 2375 | if (se->on_rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2376 | break; |
| 2377 | cfs_rq = cfs_rq_of(se); |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 2378 | enqueue_entity(cfs_rq, se, flags); |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2379 | |
| 2380 | /* |
| 2381 | * end evaluation on encountering a throttled cfs_rq |
| 2382 | * |
| 2383 | * note: in the case of encountering a throttled cfs_rq we will |
| 2384 | * post the final h_nr_running increment below. |
| 2385 | */ |
| 2386 | if (cfs_rq_throttled(cfs_rq)) |
| 2387 | break; |
Paul Turner | 953bfcd | 2011-07-21 09:43:27 -0700 | [diff] [blame] | 2388 | cfs_rq->h_nr_running++; |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2389 | |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 2390 | flags = ENQUEUE_WAKEUP; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2391 | } |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2392 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2393 | for_each_sched_entity(se) { |
Lin Ming | 0f31714 | 2011-07-22 09:14:31 +0800 | [diff] [blame] | 2394 | cfs_rq = cfs_rq_of(se); |
Paul Turner | 953bfcd | 2011-07-21 09:43:27 -0700 | [diff] [blame] | 2395 | cfs_rq->h_nr_running++; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2396 | |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2397 | if (cfs_rq_throttled(cfs_rq)) |
| 2398 | break; |
| 2399 | |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 2400 | update_cfs_load(cfs_rq, 0); |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 2401 | update_cfs_shares(cfs_rq); |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2402 | } |
| 2403 | |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2404 | if (!se) |
| 2405 | inc_nr_running(rq); |
Peter Zijlstra | a4c2f00 | 2008-10-17 19:27:03 +0200 | [diff] [blame] | 2406 | hrtick_update(rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2407 | } |
| 2408 | |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 2409 | static void set_next_buddy(struct sched_entity *se); |
| 2410 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2411 | /* |
| 2412 | * The dequeue_task method is called before nr_running is |
| 2413 | * decreased. We remove the task from the rbtree and |
| 2414 | * update the fair scheduling stats: |
| 2415 | */ |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 2416 | static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2417 | { |
| 2418 | struct cfs_rq *cfs_rq; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 2419 | struct sched_entity *se = &p->se; |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 2420 | int task_sleep = flags & DEQUEUE_SLEEP; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2421 | |
| 2422 | for_each_sched_entity(se) { |
| 2423 | cfs_rq = cfs_rq_of(se); |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 2424 | dequeue_entity(cfs_rq, se, flags); |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2425 | |
| 2426 | /* |
| 2427 | * end evaluation on encountering a throttled cfs_rq |
| 2428 | * |
| 2429 | * note: in the case of encountering a throttled cfs_rq we will |
| 2430 | * post the final h_nr_running decrement below. |
| 2431 | */ |
| 2432 | if (cfs_rq_throttled(cfs_rq)) |
| 2433 | break; |
Paul Turner | 953bfcd | 2011-07-21 09:43:27 -0700 | [diff] [blame] | 2434 | cfs_rq->h_nr_running--; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2435 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2436 | /* Don't dequeue parent if it has other entities besides us */ |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 2437 | if (cfs_rq->load.weight) { |
| 2438 | /* |
| 2439 | * Bias pick_next to pick a task from this cfs_rq, as |
| 2440 | * p is sleeping when it is within its sched_slice. |
| 2441 | */ |
| 2442 | if (task_sleep && parent_entity(se)) |
| 2443 | set_next_buddy(parent_entity(se)); |
Paul Turner | 9598c82 | 2011-07-06 22:30:37 -0700 | [diff] [blame] | 2444 | |
| 2445 | /* avoid re-evaluating load for this entity */ |
| 2446 | se = parent_entity(se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2447 | break; |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 2448 | } |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 2449 | flags |= DEQUEUE_SLEEP; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2450 | } |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 2451 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2452 | for_each_sched_entity(se) { |
Lin Ming | 0f31714 | 2011-07-22 09:14:31 +0800 | [diff] [blame] | 2453 | cfs_rq = cfs_rq_of(se); |
Paul Turner | 953bfcd | 2011-07-21 09:43:27 -0700 | [diff] [blame] | 2454 | cfs_rq->h_nr_running--; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2455 | |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2456 | if (cfs_rq_throttled(cfs_rq)) |
| 2457 | break; |
| 2458 | |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 2459 | update_cfs_load(cfs_rq, 0); |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 2460 | update_cfs_shares(cfs_rq); |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2461 | } |
| 2462 | |
Paul Turner | 85dac90 | 2011-07-21 09:43:33 -0700 | [diff] [blame] | 2463 | if (!se) |
| 2464 | dec_nr_running(rq); |
Peter Zijlstra | a4c2f00 | 2008-10-17 19:27:03 +0200 | [diff] [blame] | 2465 | hrtick_update(rq); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2466 | } |
| 2467 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2468 | #ifdef CONFIG_SMP |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 2469 | /* Used instead of source_load when we know the type == 0 */ |
| 2470 | static unsigned long weighted_cpuload(const int cpu) |
| 2471 | { |
| 2472 | return cpu_rq(cpu)->load.weight; |
| 2473 | } |
| 2474 | |
| 2475 | /* |
| 2476 | * Return a low guess at the load of a migration-source cpu weighted |
| 2477 | * according to the scheduling class and "nice" value. |
| 2478 | * |
| 2479 | * We want to under-estimate the load of migration sources, to |
| 2480 | * balance conservatively. |
| 2481 | */ |
| 2482 | static unsigned long source_load(int cpu, int type) |
| 2483 | { |
| 2484 | struct rq *rq = cpu_rq(cpu); |
| 2485 | unsigned long total = weighted_cpuload(cpu); |
| 2486 | |
| 2487 | if (type == 0 || !sched_feat(LB_BIAS)) |
| 2488 | return total; |
| 2489 | |
| 2490 | return min(rq->cpu_load[type-1], total); |
| 2491 | } |
| 2492 | |
| 2493 | /* |
| 2494 | * Return a high guess at the load of a migration-target cpu weighted |
| 2495 | * according to the scheduling class and "nice" value. |
| 2496 | */ |
| 2497 | static unsigned long target_load(int cpu, int type) |
| 2498 | { |
| 2499 | struct rq *rq = cpu_rq(cpu); |
| 2500 | unsigned long total = weighted_cpuload(cpu); |
| 2501 | |
| 2502 | if (type == 0 || !sched_feat(LB_BIAS)) |
| 2503 | return total; |
| 2504 | |
| 2505 | return max(rq->cpu_load[type-1], total); |
| 2506 | } |
| 2507 | |
| 2508 | static unsigned long power_of(int cpu) |
| 2509 | { |
| 2510 | return cpu_rq(cpu)->cpu_power; |
| 2511 | } |
| 2512 | |
| 2513 | static unsigned long cpu_avg_load_per_task(int cpu) |
| 2514 | { |
| 2515 | struct rq *rq = cpu_rq(cpu); |
| 2516 | unsigned long nr_running = ACCESS_ONCE(rq->nr_running); |
| 2517 | |
| 2518 | if (nr_running) |
| 2519 | return rq->load.weight / nr_running; |
| 2520 | |
| 2521 | return 0; |
| 2522 | } |
| 2523 | |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2524 | |
Peter Zijlstra | 74f8e4b | 2011-04-05 17:23:47 +0200 | [diff] [blame] | 2525 | static void task_waking_fair(struct task_struct *p) |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 2526 | { |
| 2527 | struct sched_entity *se = &p->se; |
| 2528 | struct cfs_rq *cfs_rq = cfs_rq_of(se); |
Peter Zijlstra | 3fe1698 | 2011-04-05 17:23:48 +0200 | [diff] [blame] | 2529 | u64 min_vruntime; |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 2530 | |
Peter Zijlstra | 3fe1698 | 2011-04-05 17:23:48 +0200 | [diff] [blame] | 2531 | #ifndef CONFIG_64BIT |
| 2532 | u64 min_vruntime_copy; |
Peter Zijlstra | 74f8e4b | 2011-04-05 17:23:47 +0200 | [diff] [blame] | 2533 | |
Peter Zijlstra | 3fe1698 | 2011-04-05 17:23:48 +0200 | [diff] [blame] | 2534 | do { |
| 2535 | min_vruntime_copy = cfs_rq->min_vruntime_copy; |
| 2536 | smp_rmb(); |
| 2537 | min_vruntime = cfs_rq->min_vruntime; |
| 2538 | } while (min_vruntime != min_vruntime_copy); |
| 2539 | #else |
| 2540 | min_vruntime = cfs_rq->min_vruntime; |
| 2541 | #endif |
| 2542 | |
| 2543 | se->vruntime -= min_vruntime; |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 2544 | } |
| 2545 | |
Peter Zijlstra | bb3469a | 2008-06-27 13:41:27 +0200 | [diff] [blame] | 2546 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | f5bfb7d | 2008-06-27 13:41:39 +0200 | [diff] [blame] | 2547 | /* |
| 2548 | * effective_load() calculates the load change as seen from the root_task_group |
| 2549 | * |
| 2550 | * Adding load to a group doesn't make a group heavier, but can cause movement |
| 2551 | * of group shares between cpus. Assuming the shares were perfectly aligned one |
| 2552 | * can calculate the shift in shares. |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2553 | * |
| 2554 | * Calculate the effective load difference if @wl is added (subtracted) to @tg |
| 2555 | * on this @cpu and results in a total addition (subtraction) of @wg to the |
| 2556 | * total group weight. |
| 2557 | * |
| 2558 | * Given a runqueue weight distribution (rw_i) we can compute a shares |
| 2559 | * distribution (s_i) using: |
| 2560 | * |
| 2561 | * s_i = rw_i / \Sum rw_j (1) |
| 2562 | * |
| 2563 | * Suppose we have 4 CPUs and our @tg is a direct child of the root group and |
| 2564 | * has 7 equal weight tasks, distributed as below (rw_i), with the resulting |
| 2565 | * shares distribution (s_i): |
| 2566 | * |
| 2567 | * rw_i = { 2, 4, 1, 0 } |
| 2568 | * s_i = { 2/7, 4/7, 1/7, 0 } |
| 2569 | * |
| 2570 | * As per wake_affine() we're interested in the load of two CPUs (the CPU the |
| 2571 | * task used to run on and the CPU the waker is running on), we need to |
| 2572 | * compute the effect of waking a task on either CPU and, in case of a sync |
| 2573 | * wakeup, compute the effect of the current task going to sleep. |
| 2574 | * |
| 2575 | * So for a change of @wl to the local @cpu with an overall group weight change |
| 2576 | * of @wl we can compute the new shares distribution (s'_i) using: |
| 2577 | * |
| 2578 | * s'_i = (rw_i + @wl) / (@wg + \Sum rw_j) (2) |
| 2579 | * |
| 2580 | * Suppose we're interested in CPUs 0 and 1, and want to compute the load |
| 2581 | * differences in waking a task to CPU 0. The additional task changes the |
| 2582 | * weight and shares distributions like: |
| 2583 | * |
| 2584 | * rw'_i = { 3, 4, 1, 0 } |
| 2585 | * s'_i = { 3/8, 4/8, 1/8, 0 } |
| 2586 | * |
| 2587 | * We can then compute the difference in effective weight by using: |
| 2588 | * |
| 2589 | * dw_i = S * (s'_i - s_i) (3) |
| 2590 | * |
| 2591 | * Where 'S' is the group weight as seen by its parent. |
| 2592 | * |
| 2593 | * Therefore the effective change in loads on CPU 0 would be 5/56 (3/8 - 2/7) |
| 2594 | * times the weight of the group. The effect on CPU 1 would be -4/56 (4/8 - |
| 2595 | * 4/7) times the weight of the group. |
Peter Zijlstra | f5bfb7d | 2008-06-27 13:41:39 +0200 | [diff] [blame] | 2596 | */ |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 2597 | static long effective_load(struct task_group *tg, int cpu, long wl, long wg) |
Peter Zijlstra | bb3469a | 2008-06-27 13:41:27 +0200 | [diff] [blame] | 2598 | { |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2599 | struct sched_entity *se = tg->se[cpu]; |
Peter Zijlstra | f1d239f | 2008-06-27 13:41:38 +0200 | [diff] [blame] | 2600 | |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2601 | if (!tg->parent) /* the trivial, non-cgroup case */ |
Peter Zijlstra | f1d239f | 2008-06-27 13:41:38 +0200 | [diff] [blame] | 2602 | return wl; |
| 2603 | |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2604 | for_each_sched_entity(se) { |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2605 | long w, W; |
Peter Zijlstra | bb3469a | 2008-06-27 13:41:27 +0200 | [diff] [blame] | 2606 | |
Paul Turner | 977dda7 | 2011-01-14 17:57:50 -0800 | [diff] [blame] | 2607 | tg = se->my_q->tg; |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2608 | |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2609 | /* |
| 2610 | * W = @wg + \Sum rw_j |
| 2611 | */ |
| 2612 | W = wg + calc_tg_weight(tg, se->my_q); |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2613 | |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2614 | /* |
| 2615 | * w = rw_i + @wl |
| 2616 | */ |
| 2617 | w = se->my_q->load.weight + wl; |
Peter Zijlstra | 940959e | 2008-09-23 15:33:42 +0200 | [diff] [blame] | 2618 | |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2619 | /* |
| 2620 | * wl = S * s'_i; see (2) |
| 2621 | */ |
| 2622 | if (W > 0 && w < W) |
| 2623 | wl = (w * tg->shares) / W; |
Paul Turner | 977dda7 | 2011-01-14 17:57:50 -0800 | [diff] [blame] | 2624 | else |
| 2625 | wl = tg->shares; |
Peter Zijlstra | 940959e | 2008-09-23 15:33:42 +0200 | [diff] [blame] | 2626 | |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2627 | /* |
| 2628 | * Per the above, wl is the new se->load.weight value; since |
| 2629 | * those are clipped to [MIN_SHARES, ...) do so now. See |
| 2630 | * calc_cfs_shares(). |
| 2631 | */ |
Paul Turner | 977dda7 | 2011-01-14 17:57:50 -0800 | [diff] [blame] | 2632 | if (wl < MIN_SHARES) |
| 2633 | wl = MIN_SHARES; |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2634 | |
| 2635 | /* |
| 2636 | * wl = dw_i = S * (s'_i - s_i); see (3) |
| 2637 | */ |
Paul Turner | 977dda7 | 2011-01-14 17:57:50 -0800 | [diff] [blame] | 2638 | wl -= se->load.weight; |
Peter Zijlstra | cf5f0ac | 2011-10-13 16:52:28 +0200 | [diff] [blame] | 2639 | |
| 2640 | /* |
| 2641 | * Recursively apply this logic to all parent groups to compute |
| 2642 | * the final effective load change on the root group. Since |
| 2643 | * only the @tg group gets extra weight, all parent groups can |
| 2644 | * only redistribute existing shares. @wl is the shift in shares |
| 2645 | * resulting from this level per the above. |
| 2646 | */ |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2647 | wg = 0; |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2648 | } |
| 2649 | |
| 2650 | return wl; |
Peter Zijlstra | bb3469a | 2008-06-27 13:41:27 +0200 | [diff] [blame] | 2651 | } |
| 2652 | #else |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2653 | |
Peter Zijlstra | 8337826 | 2008-06-27 13:41:37 +0200 | [diff] [blame] | 2654 | static inline unsigned long effective_load(struct task_group *tg, int cpu, |
| 2655 | unsigned long wl, unsigned long wg) |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2656 | { |
Peter Zijlstra | 8337826 | 2008-06-27 13:41:37 +0200 | [diff] [blame] | 2657 | return wl; |
Peter Zijlstra | bb3469a | 2008-06-27 13:41:27 +0200 | [diff] [blame] | 2658 | } |
Peter Zijlstra | 4be9daa | 2008-06-27 13:41:30 +0200 | [diff] [blame] | 2659 | |
Peter Zijlstra | bb3469a | 2008-06-27 13:41:27 +0200 | [diff] [blame] | 2660 | #endif |
| 2661 | |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2662 | static int wake_affine(struct sched_domain *sd, struct task_struct *p, int sync) |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2663 | { |
Paul Turner | e37b6a7 | 2011-01-21 20:44:59 -0800 | [diff] [blame] | 2664 | s64 this_load, load; |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2665 | int idx, this_cpu, prev_cpu; |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2666 | unsigned long tl_per_task; |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2667 | struct task_group *tg; |
Peter Zijlstra | 8337826 | 2008-06-27 13:41:37 +0200 | [diff] [blame] | 2668 | unsigned long weight; |
Mike Galbraith | b3137bc | 2008-05-29 11:11:41 +0200 | [diff] [blame] | 2669 | int balanced; |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2670 | |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2671 | idx = sd->wake_idx; |
| 2672 | this_cpu = smp_processor_id(); |
| 2673 | prev_cpu = task_cpu(p); |
| 2674 | load = source_load(prev_cpu, idx); |
| 2675 | this_load = target_load(this_cpu, idx); |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2676 | |
| 2677 | /* |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2678 | * If sync wakeup then subtract the (maximum possible) |
| 2679 | * effect of the currently running task from the load |
| 2680 | * of the current CPU: |
| 2681 | */ |
Peter Zijlstra | 8337826 | 2008-06-27 13:41:37 +0200 | [diff] [blame] | 2682 | if (sync) { |
| 2683 | tg = task_group(current); |
| 2684 | weight = current->se.load.weight; |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2685 | |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2686 | this_load += effective_load(tg, this_cpu, -weight, -weight); |
Peter Zijlstra | 8337826 | 2008-06-27 13:41:37 +0200 | [diff] [blame] | 2687 | load += effective_load(tg, prev_cpu, 0, -weight); |
| 2688 | } |
| 2689 | |
| 2690 | tg = task_group(p); |
| 2691 | weight = p->se.load.weight; |
| 2692 | |
Peter Zijlstra | 71a29aa | 2009-09-07 18:28:05 +0200 | [diff] [blame] | 2693 | /* |
| 2694 | * In low-load situations, where prev_cpu is idle and this_cpu is idle |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2695 | * due to the sync cause above having dropped this_load to 0, we'll |
| 2696 | * always have an imbalance, but there's really nothing you can do |
| 2697 | * about that, so that's good too. |
Peter Zijlstra | 71a29aa | 2009-09-07 18:28:05 +0200 | [diff] [blame] | 2698 | * |
| 2699 | * Otherwise check if either cpus are near enough in load to allow this |
| 2700 | * task to be woken on this_cpu. |
| 2701 | */ |
Paul Turner | e37b6a7 | 2011-01-21 20:44:59 -0800 | [diff] [blame] | 2702 | if (this_load > 0) { |
| 2703 | s64 this_eff_load, prev_eff_load; |
Peter Zijlstra | e51fd5e | 2010-05-31 12:37:30 +0200 | [diff] [blame] | 2704 | |
| 2705 | this_eff_load = 100; |
| 2706 | this_eff_load *= power_of(prev_cpu); |
| 2707 | this_eff_load *= this_load + |
| 2708 | effective_load(tg, this_cpu, weight, weight); |
| 2709 | |
| 2710 | prev_eff_load = 100 + (sd->imbalance_pct - 100) / 2; |
| 2711 | prev_eff_load *= power_of(this_cpu); |
| 2712 | prev_eff_load *= load + effective_load(tg, prev_cpu, 0, weight); |
| 2713 | |
| 2714 | balanced = this_eff_load <= prev_eff_load; |
| 2715 | } else |
| 2716 | balanced = true; |
Mike Galbraith | b3137bc | 2008-05-29 11:11:41 +0200 | [diff] [blame] | 2717 | |
| 2718 | /* |
| 2719 | * If the currently running task will sleep within |
| 2720 | * a reasonable amount of time then attract this newly |
| 2721 | * woken task: |
| 2722 | */ |
Peter Zijlstra | 2fb7635 | 2008-10-08 09:16:04 +0200 | [diff] [blame] | 2723 | if (sync && balanced) |
| 2724 | return 1; |
Mike Galbraith | b3137bc | 2008-05-29 11:11:41 +0200 | [diff] [blame] | 2725 | |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 2726 | schedstat_inc(p, se.statistics.nr_wakeups_affine_attempts); |
Mike Galbraith | b3137bc | 2008-05-29 11:11:41 +0200 | [diff] [blame] | 2727 | tl_per_task = cpu_avg_load_per_task(this_cpu); |
| 2728 | |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2729 | if (balanced || |
| 2730 | (this_load <= load && |
| 2731 | this_load + target_load(prev_cpu, idx) <= tl_per_task)) { |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2732 | /* |
| 2733 | * This domain has SD_WAKE_AFFINE and |
| 2734 | * p is cache cold in this domain, and |
| 2735 | * there is no bad imbalance. |
| 2736 | */ |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2737 | schedstat_inc(sd, ttwu_move_affine); |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 2738 | schedstat_inc(p, se.statistics.nr_wakeups_affine); |
Ingo Molnar | 098fb9d | 2008-03-16 20:36:10 +0100 | [diff] [blame] | 2739 | |
| 2740 | return 1; |
| 2741 | } |
| 2742 | return 0; |
| 2743 | } |
| 2744 | |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2745 | /* |
| 2746 | * find_idlest_group finds and returns the least busy CPU group within the |
| 2747 | * domain. |
| 2748 | */ |
| 2749 | static struct sched_group * |
Peter Zijlstra | 78e7ed5 | 2009-09-03 13:16:51 +0200 | [diff] [blame] | 2750 | find_idlest_group(struct sched_domain *sd, struct task_struct *p, |
Peter Zijlstra | 5158f4e | 2009-09-16 13:46:59 +0200 | [diff] [blame] | 2751 | int this_cpu, int load_idx) |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2752 | { |
Andi Kleen | b3bd3de | 2010-08-10 14:17:51 -0700 | [diff] [blame] | 2753 | struct sched_group *idlest = NULL, *group = sd->groups; |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2754 | unsigned long min_load = ULONG_MAX, this_load = 0; |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2755 | int imbalance = 100 + (sd->imbalance_pct-100)/2; |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2756 | |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2757 | do { |
| 2758 | unsigned long load, avg_load; |
| 2759 | int local_group; |
| 2760 | int i; |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2761 | |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2762 | /* Skip over this group if it has no CPUs allowed */ |
| 2763 | if (!cpumask_intersects(sched_group_cpus(group), |
Peter Zijlstra | fa17b50 | 2011-06-16 12:23:22 +0200 | [diff] [blame] | 2764 | tsk_cpus_allowed(p))) |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2765 | continue; |
| 2766 | |
| 2767 | local_group = cpumask_test_cpu(this_cpu, |
| 2768 | sched_group_cpus(group)); |
| 2769 | |
| 2770 | /* Tally up the load of all CPUs in the group */ |
| 2771 | avg_load = 0; |
| 2772 | |
| 2773 | for_each_cpu(i, sched_group_cpus(group)) { |
| 2774 | /* Bias balancing toward cpus of our domain */ |
| 2775 | if (local_group) |
| 2776 | load = source_load(i, load_idx); |
| 2777 | else |
| 2778 | load = target_load(i, load_idx); |
| 2779 | |
| 2780 | avg_load += load; |
| 2781 | } |
| 2782 | |
| 2783 | /* Adjust by relative CPU power of the group */ |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 2784 | avg_load = (avg_load * SCHED_POWER_SCALE) / group->sgp->power; |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2785 | |
| 2786 | if (local_group) { |
| 2787 | this_load = avg_load; |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2788 | } else if (avg_load < min_load) { |
| 2789 | min_load = avg_load; |
| 2790 | idlest = group; |
| 2791 | } |
| 2792 | } while (group = group->next, group != sd->groups); |
| 2793 | |
| 2794 | if (!idlest || 100*this_load < imbalance*min_load) |
| 2795 | return NULL; |
| 2796 | return idlest; |
| 2797 | } |
| 2798 | |
| 2799 | /* |
| 2800 | * find_idlest_cpu - find the idlest cpu among the cpus in group. |
| 2801 | */ |
| 2802 | static int |
| 2803 | find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu) |
| 2804 | { |
| 2805 | unsigned long load, min_load = ULONG_MAX; |
| 2806 | int idlest = -1; |
| 2807 | int i; |
| 2808 | |
| 2809 | /* Traverse only the allowed CPUs */ |
Peter Zijlstra | fa17b50 | 2011-06-16 12:23:22 +0200 | [diff] [blame] | 2810 | for_each_cpu_and(i, sched_group_cpus(group), tsk_cpus_allowed(p)) { |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2811 | load = weighted_cpuload(i); |
| 2812 | |
| 2813 | if (load < min_load || (load == min_load && i == this_cpu)) { |
| 2814 | min_load = load; |
| 2815 | idlest = i; |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2816 | } |
| 2817 | } |
| 2818 | |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2819 | return idlest; |
| 2820 | } |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2821 | |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2822 | /* |
Peter Zijlstra | a50bde5 | 2009-11-12 15:55:28 +0100 | [diff] [blame] | 2823 | * Try and locate an idle CPU in the sched_domain. |
| 2824 | */ |
Suresh Siddha | 99bd5e2 | 2010-03-31 16:47:45 -0700 | [diff] [blame] | 2825 | static int select_idle_sibling(struct task_struct *p, int target) |
Peter Zijlstra | a50bde5 | 2009-11-12 15:55:28 +0100 | [diff] [blame] | 2826 | { |
| 2827 | int cpu = smp_processor_id(); |
| 2828 | int prev_cpu = task_cpu(p); |
Suresh Siddha | 99bd5e2 | 2010-03-31 16:47:45 -0700 | [diff] [blame] | 2829 | struct sched_domain *sd; |
Linus Torvalds | 37407ea | 2012-09-16 12:29:43 -0700 | [diff] [blame] | 2830 | struct sched_group *sg; |
| 2831 | int i; |
Peter Zijlstra | a50bde5 | 2009-11-12 15:55:28 +0100 | [diff] [blame] | 2832 | |
| 2833 | /* |
Suresh Siddha | 99bd5e2 | 2010-03-31 16:47:45 -0700 | [diff] [blame] | 2834 | * If the task is going to be woken-up on this cpu and if it is |
| 2835 | * already idle, then it is the right target. |
Peter Zijlstra | a50bde5 | 2009-11-12 15:55:28 +0100 | [diff] [blame] | 2836 | */ |
Suresh Siddha | 99bd5e2 | 2010-03-31 16:47:45 -0700 | [diff] [blame] | 2837 | if (target == cpu && idle_cpu(cpu)) |
| 2838 | return cpu; |
| 2839 | |
| 2840 | /* |
| 2841 | * If the task is going to be woken-up on the cpu where it previously |
| 2842 | * ran and if it is currently idle, then it the right target. |
| 2843 | */ |
| 2844 | if (target == prev_cpu && idle_cpu(prev_cpu)) |
Peter Zijlstra | fe3bcfe | 2009-11-12 15:55:29 +0100 | [diff] [blame] | 2845 | return prev_cpu; |
Peter Zijlstra | a50bde5 | 2009-11-12 15:55:28 +0100 | [diff] [blame] | 2846 | |
| 2847 | /* |
Linus Torvalds | 37407ea | 2012-09-16 12:29:43 -0700 | [diff] [blame] | 2848 | * Otherwise, iterate the domains and find an elegible idle cpu. |
Peter Zijlstra | a50bde5 | 2009-11-12 15:55:28 +0100 | [diff] [blame] | 2849 | */ |
Peter Zijlstra | 518cd62 | 2011-12-07 15:07:31 +0100 | [diff] [blame] | 2850 | sd = rcu_dereference(per_cpu(sd_llc, target)); |
Suresh Siddha | 77e8136 | 2011-11-17 11:08:23 -0800 | [diff] [blame] | 2851 | for_each_lower_domain(sd) { |
Linus Torvalds | 37407ea | 2012-09-16 12:29:43 -0700 | [diff] [blame] | 2852 | sg = sd->groups; |
| 2853 | do { |
| 2854 | if (!cpumask_intersects(sched_group_cpus(sg), |
| 2855 | tsk_cpus_allowed(p))) |
| 2856 | goto next; |
Mike Galbraith | 970e178 | 2012-06-12 05:18:32 +0200 | [diff] [blame] | 2857 | |
Linus Torvalds | 37407ea | 2012-09-16 12:29:43 -0700 | [diff] [blame] | 2858 | for_each_cpu(i, sched_group_cpus(sg)) { |
| 2859 | if (!idle_cpu(i)) |
| 2860 | goto next; |
| 2861 | } |
| 2862 | |
| 2863 | target = cpumask_first_and(sched_group_cpus(sg), |
| 2864 | tsk_cpus_allowed(p)); |
| 2865 | goto done; |
| 2866 | next: |
| 2867 | sg = sg->next; |
| 2868 | } while (sg != sd->groups); |
| 2869 | } |
| 2870 | done: |
Peter Zijlstra | a50bde5 | 2009-11-12 15:55:28 +0100 | [diff] [blame] | 2871 | return target; |
| 2872 | } |
| 2873 | |
| 2874 | /* |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2875 | * sched_balance_self: balance the current task (running on cpu) in domains |
| 2876 | * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and |
| 2877 | * SD_BALANCE_EXEC. |
| 2878 | * |
| 2879 | * Balance, ie. select the least loaded group. |
| 2880 | * |
| 2881 | * Returns the target CPU number, or the same CPU if no balancing is needed. |
| 2882 | * |
| 2883 | * preempt must be disabled. |
| 2884 | */ |
Peter Zijlstra | 0017d73 | 2010-03-24 18:34:10 +0100 | [diff] [blame] | 2885 | static int |
Peter Zijlstra | 7608dec | 2011-04-05 17:23:46 +0200 | [diff] [blame] | 2886 | select_task_rq_fair(struct task_struct *p, int sd_flag, int wake_flags) |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2887 | { |
Peter Zijlstra | 29cd8ba | 2009-09-17 09:01:14 +0200 | [diff] [blame] | 2888 | struct sched_domain *tmp, *affine_sd = NULL, *sd = NULL; |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2889 | int cpu = smp_processor_id(); |
| 2890 | int prev_cpu = task_cpu(p); |
| 2891 | int new_cpu = cpu; |
Suresh Siddha | 99bd5e2 | 2010-03-31 16:47:45 -0700 | [diff] [blame] | 2892 | int want_affine = 0; |
Peter Zijlstra | 5158f4e | 2009-09-16 13:46:59 +0200 | [diff] [blame] | 2893 | int sync = wake_flags & WF_SYNC; |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2894 | |
Peter Zijlstra | 29baa74 | 2012-04-23 12:11:21 +0200 | [diff] [blame] | 2895 | if (p->nr_cpus_allowed == 1) |
Mike Galbraith | 76854c7 | 2011-11-22 15:18:24 +0100 | [diff] [blame] | 2896 | return prev_cpu; |
| 2897 | |
Peter Zijlstra | 0763a66 | 2009-09-14 19:37:39 +0200 | [diff] [blame] | 2898 | if (sd_flag & SD_BALANCE_WAKE) { |
Peter Zijlstra | fa17b50 | 2011-06-16 12:23:22 +0200 | [diff] [blame] | 2899 | if (cpumask_test_cpu(cpu, tsk_cpus_allowed(p))) |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2900 | want_affine = 1; |
| 2901 | new_cpu = prev_cpu; |
| 2902 | } |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2903 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 2904 | rcu_read_lock(); |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2905 | for_each_domain(cpu, tmp) { |
Peter Zijlstra | e4f4288 | 2009-12-16 18:04:34 +0100 | [diff] [blame] | 2906 | if (!(tmp->flags & SD_LOAD_BALANCE)) |
| 2907 | continue; |
| 2908 | |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2909 | /* |
Suresh Siddha | 99bd5e2 | 2010-03-31 16:47:45 -0700 | [diff] [blame] | 2910 | * If both cpu and prev_cpu are part of this domain, |
| 2911 | * cpu is a valid SD_WAKE_AFFINE target. |
Peter Zijlstra | fe3bcfe | 2009-11-12 15:55:29 +0100 | [diff] [blame] | 2912 | */ |
Suresh Siddha | 99bd5e2 | 2010-03-31 16:47:45 -0700 | [diff] [blame] | 2913 | if (want_affine && (tmp->flags & SD_WAKE_AFFINE) && |
| 2914 | cpumask_test_cpu(prev_cpu, sched_domain_span(tmp))) { |
| 2915 | affine_sd = tmp; |
Alex Shi | f03542a | 2012-07-26 08:55:34 +0800 | [diff] [blame] | 2916 | break; |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2917 | } |
| 2918 | |
Alex Shi | f03542a | 2012-07-26 08:55:34 +0800 | [diff] [blame] | 2919 | if (tmp->flags & sd_flag) |
Peter Zijlstra | 29cd8ba | 2009-09-17 09:01:14 +0200 | [diff] [blame] | 2920 | sd = tmp; |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2921 | } |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2922 | |
Mike Galbraith | 8b911ac | 2010-03-11 17:17:16 +0100 | [diff] [blame] | 2923 | if (affine_sd) { |
Alex Shi | f03542a | 2012-07-26 08:55:34 +0800 | [diff] [blame] | 2924 | if (cpu != prev_cpu && wake_affine(affine_sd, p, sync)) |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 2925 | prev_cpu = cpu; |
| 2926 | |
| 2927 | new_cpu = select_idle_sibling(p, prev_cpu); |
| 2928 | goto unlock; |
Mike Galbraith | 8b911ac | 2010-03-11 17:17:16 +0100 | [diff] [blame] | 2929 | } |
Peter Zijlstra | 3b64089 | 2009-09-16 13:44:33 +0200 | [diff] [blame] | 2930 | |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2931 | while (sd) { |
Peter Zijlstra | 5158f4e | 2009-09-16 13:46:59 +0200 | [diff] [blame] | 2932 | int load_idx = sd->forkexec_idx; |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2933 | struct sched_group *group; |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2934 | int weight; |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2935 | |
Peter Zijlstra | 0763a66 | 2009-09-14 19:37:39 +0200 | [diff] [blame] | 2936 | if (!(sd->flags & sd_flag)) { |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2937 | sd = sd->child; |
| 2938 | continue; |
| 2939 | } |
| 2940 | |
Peter Zijlstra | 5158f4e | 2009-09-16 13:46:59 +0200 | [diff] [blame] | 2941 | if (sd_flag & SD_BALANCE_WAKE) |
| 2942 | load_idx = sd->wake_idx; |
| 2943 | |
| 2944 | group = find_idlest_group(sd, p, cpu, load_idx); |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2945 | if (!group) { |
| 2946 | sd = sd->child; |
| 2947 | continue; |
| 2948 | } |
| 2949 | |
Peter Zijlstra | d7c33c4 | 2009-09-11 12:45:38 +0200 | [diff] [blame] | 2950 | new_cpu = find_idlest_cpu(group, p, cpu); |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2951 | if (new_cpu == -1 || new_cpu == cpu) { |
| 2952 | /* Now try balancing at a lower domain level of cpu */ |
| 2953 | sd = sd->child; |
| 2954 | continue; |
| 2955 | } |
| 2956 | |
| 2957 | /* Now try balancing at a lower domain level of new_cpu */ |
| 2958 | cpu = new_cpu; |
Peter Zijlstra | 669c55e | 2010-04-16 14:59:29 +0200 | [diff] [blame] | 2959 | weight = sd->span_weight; |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2960 | sd = NULL; |
| 2961 | for_each_domain(cpu, tmp) { |
Peter Zijlstra | 669c55e | 2010-04-16 14:59:29 +0200 | [diff] [blame] | 2962 | if (weight <= tmp->span_weight) |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2963 | break; |
Peter Zijlstra | 0763a66 | 2009-09-14 19:37:39 +0200 | [diff] [blame] | 2964 | if (tmp->flags & sd_flag) |
Peter Zijlstra | aaee120 | 2009-09-10 13:36:25 +0200 | [diff] [blame] | 2965 | sd = tmp; |
| 2966 | } |
| 2967 | /* while loop will break here if sd == NULL */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2968 | } |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 2969 | unlock: |
| 2970 | rcu_read_unlock(); |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2971 | |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 2972 | return new_cpu; |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2973 | } |
| 2974 | #endif /* CONFIG_SMP */ |
| 2975 | |
Peter Zijlstra | e52fb7c | 2009-01-14 12:39:19 +0100 | [diff] [blame] | 2976 | static unsigned long |
| 2977 | wakeup_gran(struct sched_entity *curr, struct sched_entity *se) |
Peter Zijlstra | 0bbd333 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 2978 | { |
| 2979 | unsigned long gran = sysctl_sched_wakeup_granularity; |
| 2980 | |
| 2981 | /* |
Peter Zijlstra | e52fb7c | 2009-01-14 12:39:19 +0100 | [diff] [blame] | 2982 | * Since its curr running now, convert the gran from real-time |
| 2983 | * to virtual-time in his units. |
Mike Galbraith | 13814d4 | 2010-03-11 17:17:04 +0100 | [diff] [blame] | 2984 | * |
| 2985 | * By using 'se' instead of 'curr' we penalize light tasks, so |
| 2986 | * they get preempted easier. That is, if 'se' < 'curr' then |
| 2987 | * the resulting gran will be larger, therefore penalizing the |
| 2988 | * lighter, if otoh 'se' > 'curr' then the resulting gran will |
| 2989 | * be smaller, again penalizing the lighter task. |
| 2990 | * |
| 2991 | * This is especially important for buddies when the leftmost |
| 2992 | * task is higher priority than the buddy. |
Peter Zijlstra | 0bbd333 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 2993 | */ |
Shaohua Li | f4ad9bd | 2011-04-08 12:53:09 +0800 | [diff] [blame] | 2994 | return calc_delta_fair(gran, se); |
Peter Zijlstra | 0bbd333 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 2995 | } |
| 2996 | |
| 2997 | /* |
Peter Zijlstra | 464b752 | 2008-10-24 11:06:15 +0200 | [diff] [blame] | 2998 | * Should 'se' preempt 'curr'. |
| 2999 | * |
| 3000 | * |s1 |
| 3001 | * |s2 |
| 3002 | * |s3 |
| 3003 | * g |
| 3004 | * |<--->|c |
| 3005 | * |
| 3006 | * w(c, s1) = -1 |
| 3007 | * w(c, s2) = 0 |
| 3008 | * w(c, s3) = 1 |
| 3009 | * |
| 3010 | */ |
| 3011 | static int |
| 3012 | wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se) |
| 3013 | { |
| 3014 | s64 gran, vdiff = curr->vruntime - se->vruntime; |
| 3015 | |
| 3016 | if (vdiff <= 0) |
| 3017 | return -1; |
| 3018 | |
Peter Zijlstra | e52fb7c | 2009-01-14 12:39:19 +0100 | [diff] [blame] | 3019 | gran = wakeup_gran(curr, se); |
Peter Zijlstra | 464b752 | 2008-10-24 11:06:15 +0200 | [diff] [blame] | 3020 | if (vdiff > gran) |
| 3021 | return 1; |
| 3022 | |
| 3023 | return 0; |
| 3024 | } |
| 3025 | |
Peter Zijlstra | 0247909 | 2008-11-04 21:25:10 +0100 | [diff] [blame] | 3026 | static void set_last_buddy(struct sched_entity *se) |
| 3027 | { |
Venkatesh Pallipadi | 69c80f3 | 2011-04-13 18:21:09 -0700 | [diff] [blame] | 3028 | if (entity_is_task(se) && unlikely(task_of(se)->policy == SCHED_IDLE)) |
| 3029 | return; |
| 3030 | |
| 3031 | for_each_sched_entity(se) |
| 3032 | cfs_rq_of(se)->last = se; |
Peter Zijlstra | 0247909 | 2008-11-04 21:25:10 +0100 | [diff] [blame] | 3033 | } |
| 3034 | |
| 3035 | static void set_next_buddy(struct sched_entity *se) |
| 3036 | { |
Venkatesh Pallipadi | 69c80f3 | 2011-04-13 18:21:09 -0700 | [diff] [blame] | 3037 | if (entity_is_task(se) && unlikely(task_of(se)->policy == SCHED_IDLE)) |
| 3038 | return; |
| 3039 | |
| 3040 | for_each_sched_entity(se) |
| 3041 | cfs_rq_of(se)->next = se; |
Peter Zijlstra | 0247909 | 2008-11-04 21:25:10 +0100 | [diff] [blame] | 3042 | } |
| 3043 | |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 3044 | static void set_skip_buddy(struct sched_entity *se) |
| 3045 | { |
Venkatesh Pallipadi | 69c80f3 | 2011-04-13 18:21:09 -0700 | [diff] [blame] | 3046 | for_each_sched_entity(se) |
| 3047 | cfs_rq_of(se)->skip = se; |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 3048 | } |
| 3049 | |
Peter Zijlstra | 464b752 | 2008-10-24 11:06:15 +0200 | [diff] [blame] | 3050 | /* |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3051 | * Preempt the current task with a newly woken task if needed: |
| 3052 | */ |
Peter Zijlstra | 5a9b86f | 2009-09-16 13:47:58 +0200 | [diff] [blame] | 3053 | static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_flags) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3054 | { |
| 3055 | struct task_struct *curr = rq->curr; |
Srivatsa Vaddagiri | 8651a86 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3056 | struct sched_entity *se = &curr->se, *pse = &p->se; |
Mike Galbraith | 03e89e4 | 2008-12-16 08:45:30 +0100 | [diff] [blame] | 3057 | struct cfs_rq *cfs_rq = task_cfs_rq(curr); |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 3058 | int scale = cfs_rq->nr_running >= sched_nr_latency; |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 3059 | int next_buddy_marked = 0; |
Mike Galbraith | 03e89e4 | 2008-12-16 08:45:30 +0100 | [diff] [blame] | 3060 | |
Ingo Molnar | 4ae7d5c | 2008-03-19 01:42:00 +0100 | [diff] [blame] | 3061 | if (unlikely(se == pse)) |
| 3062 | return; |
| 3063 | |
Paul Turner | 5238cdd | 2011-07-21 09:43:37 -0700 | [diff] [blame] | 3064 | /* |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3065 | * This is possible from callers such as move_task(), in which we |
Paul Turner | 5238cdd | 2011-07-21 09:43:37 -0700 | [diff] [blame] | 3066 | * unconditionally check_prempt_curr() after an enqueue (which may have |
| 3067 | * lead to a throttle). This both saves work and prevents false |
| 3068 | * next-buddy nomination below. |
| 3069 | */ |
| 3070 | if (unlikely(throttled_hierarchy(cfs_rq_of(pse)))) |
| 3071 | return; |
| 3072 | |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 3073 | if (sched_feat(NEXT_BUDDY) && scale && !(wake_flags & WF_FORK)) { |
Mike Galbraith | 3cb63d5 | 2009-09-11 12:01:17 +0200 | [diff] [blame] | 3074 | set_next_buddy(pse); |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 3075 | next_buddy_marked = 1; |
| 3076 | } |
Peter Zijlstra | 57fdc26 | 2008-09-23 15:33:45 +0200 | [diff] [blame] | 3077 | |
Bharata B Rao | aec0a51 | 2008-08-28 14:42:49 +0530 | [diff] [blame] | 3078 | /* |
| 3079 | * We can come here with TIF_NEED_RESCHED already set from new task |
| 3080 | * wake up path. |
Paul Turner | 5238cdd | 2011-07-21 09:43:37 -0700 | [diff] [blame] | 3081 | * |
| 3082 | * Note: this also catches the edge-case of curr being in a throttled |
| 3083 | * group (e.g. via set_curr_task), since update_curr() (in the |
| 3084 | * enqueue of curr) will have resulted in resched being set. This |
| 3085 | * prevents us from potentially nominating it as a false LAST_BUDDY |
| 3086 | * below. |
Bharata B Rao | aec0a51 | 2008-08-28 14:42:49 +0530 | [diff] [blame] | 3087 | */ |
| 3088 | if (test_tsk_need_resched(curr)) |
| 3089 | return; |
| 3090 | |
Darren Hart | a2f5c9a | 2011-02-22 13:04:33 -0800 | [diff] [blame] | 3091 | /* Idle tasks are by definition preempted by non-idle tasks. */ |
| 3092 | if (unlikely(curr->policy == SCHED_IDLE) && |
| 3093 | likely(p->policy != SCHED_IDLE)) |
| 3094 | goto preempt; |
| 3095 | |
Ingo Molnar | 91c234b | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 3096 | /* |
Darren Hart | a2f5c9a | 2011-02-22 13:04:33 -0800 | [diff] [blame] | 3097 | * Batch and idle tasks do not preempt non-idle tasks (their preemption |
| 3098 | * is driven by the tick): |
Ingo Molnar | 91c234b | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 3099 | */ |
Peter Zijlstra | 6bc912b | 2009-01-15 14:53:38 +0100 | [diff] [blame] | 3100 | if (unlikely(p->policy != SCHED_NORMAL)) |
Ingo Molnar | 91c234b | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 3101 | return; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3102 | |
Peter Zijlstra | 3a7e73a | 2009-11-28 18:51:02 +0100 | [diff] [blame] | 3103 | find_matching_se(&se, &pse); |
Paul Turner | 9bbd737 | 2011-07-05 19:07:21 -0700 | [diff] [blame] | 3104 | update_curr(cfs_rq_of(se)); |
Peter Zijlstra | 3a7e73a | 2009-11-28 18:51:02 +0100 | [diff] [blame] | 3105 | BUG_ON(!pse); |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 3106 | if (wakeup_preempt_entity(se, pse) == 1) { |
| 3107 | /* |
| 3108 | * Bias pick_next to pick the sched entity that is |
| 3109 | * triggering this preemption. |
| 3110 | */ |
| 3111 | if (!next_buddy_marked) |
| 3112 | set_next_buddy(pse); |
Peter Zijlstra | 3a7e73a | 2009-11-28 18:51:02 +0100 | [diff] [blame] | 3113 | goto preempt; |
Venkatesh Pallipadi | 2f36825 | 2011-04-14 10:30:53 -0700 | [diff] [blame] | 3114 | } |
Jupyung Lee | a65ac74 | 2009-11-17 18:51:40 +0900 | [diff] [blame] | 3115 | |
Peter Zijlstra | 3a7e73a | 2009-11-28 18:51:02 +0100 | [diff] [blame] | 3116 | return; |
| 3117 | |
| 3118 | preempt: |
| 3119 | resched_task(curr); |
| 3120 | /* |
| 3121 | * Only set the backward buddy when the current task is still |
| 3122 | * on the rq. This can happen when a wakeup gets interleaved |
| 3123 | * with schedule on the ->pre_schedule() or idle_balance() |
| 3124 | * point, either of which can * drop the rq lock. |
| 3125 | * |
| 3126 | * Also, during early boot the idle thread is in the fair class, |
| 3127 | * for obvious reasons its a bad idea to schedule back to it. |
| 3128 | */ |
| 3129 | if (unlikely(!se->on_rq || curr == rq->idle)) |
| 3130 | return; |
| 3131 | |
| 3132 | if (sched_feat(LAST_BUDDY) && scale && entity_is_task(se)) |
| 3133 | set_last_buddy(se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3134 | } |
| 3135 | |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 3136 | static struct task_struct *pick_next_task_fair(struct rq *rq) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3137 | { |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3138 | struct task_struct *p; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3139 | struct cfs_rq *cfs_rq = &rq->cfs; |
| 3140 | struct sched_entity *se; |
| 3141 | |
Tim Blechmann | 36ace27 | 2009-11-24 11:55:45 +0100 | [diff] [blame] | 3142 | if (!cfs_rq->nr_running) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3143 | return NULL; |
| 3144 | |
| 3145 | do { |
Ingo Molnar | 9948f4b | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 3146 | se = pick_next_entity(cfs_rq); |
Peter Zijlstra | f4b6755 | 2008-11-04 21:25:07 +0100 | [diff] [blame] | 3147 | set_next_entity(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3148 | cfs_rq = group_cfs_rq(se); |
| 3149 | } while (cfs_rq); |
| 3150 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3151 | p = task_of(se); |
Mike Galbraith | b39e66e | 2011-11-22 15:20:07 +0100 | [diff] [blame] | 3152 | if (hrtick_enabled(rq)) |
| 3153 | hrtick_start_fair(rq, p); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3154 | |
| 3155 | return p; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3156 | } |
| 3157 | |
| 3158 | /* |
| 3159 | * Account for a descheduled task: |
| 3160 | */ |
Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3161 | 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] | 3162 | { |
| 3163 | struct sched_entity *se = &prev->se; |
| 3164 | struct cfs_rq *cfs_rq; |
| 3165 | |
| 3166 | for_each_sched_entity(se) { |
| 3167 | cfs_rq = cfs_rq_of(se); |
Ingo Molnar | ab6cde2 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 3168 | put_prev_entity(cfs_rq, se); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3169 | } |
| 3170 | } |
| 3171 | |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 3172 | /* |
| 3173 | * sched_yield() is very simple |
| 3174 | * |
| 3175 | * The magic of dealing with the ->skip buddy is in pick_next_entity. |
| 3176 | */ |
| 3177 | static void yield_task_fair(struct rq *rq) |
| 3178 | { |
| 3179 | struct task_struct *curr = rq->curr; |
| 3180 | struct cfs_rq *cfs_rq = task_cfs_rq(curr); |
| 3181 | struct sched_entity *se = &curr->se; |
| 3182 | |
| 3183 | /* |
| 3184 | * Are we the only task in the tree? |
| 3185 | */ |
| 3186 | if (unlikely(rq->nr_running == 1)) |
| 3187 | return; |
| 3188 | |
| 3189 | clear_buddies(cfs_rq, se); |
| 3190 | |
| 3191 | if (curr->policy != SCHED_BATCH) { |
| 3192 | update_rq_clock(rq); |
| 3193 | /* |
| 3194 | * Update run-time statistics of the 'current'. |
| 3195 | */ |
| 3196 | update_curr(cfs_rq); |
Mike Galbraith | 916671c | 2011-11-22 15:21:26 +0100 | [diff] [blame] | 3197 | /* |
| 3198 | * Tell update_rq_clock() that we've just updated, |
| 3199 | * so we don't do microscopic update in schedule() |
| 3200 | * and double the fastpath cost. |
| 3201 | */ |
| 3202 | rq->skip_clock_update = 1; |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 3203 | } |
| 3204 | |
| 3205 | set_skip_buddy(se); |
| 3206 | } |
| 3207 | |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 3208 | static bool yield_to_task_fair(struct rq *rq, struct task_struct *p, bool preempt) |
| 3209 | { |
| 3210 | struct sched_entity *se = &p->se; |
| 3211 | |
Paul Turner | 5238cdd | 2011-07-21 09:43:37 -0700 | [diff] [blame] | 3212 | /* throttled hierarchies are not runnable */ |
| 3213 | if (!se->on_rq || throttled_hierarchy(cfs_rq_of(se))) |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 3214 | return false; |
| 3215 | |
| 3216 | /* Tell the scheduler that we'd really like pse to run next. */ |
| 3217 | set_next_buddy(se); |
| 3218 | |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 3219 | yield_task_fair(rq); |
| 3220 | |
| 3221 | return true; |
| 3222 | } |
| 3223 | |
Peter Williams | 681f3e6 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 3224 | #ifdef CONFIG_SMP |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3225 | /************************************************** |
| 3226 | * Fair scheduling class load-balancing methods: |
| 3227 | */ |
| 3228 | |
Hiroshi Shimamoto | ed387b7 | 2012-01-31 11:40:32 +0900 | [diff] [blame] | 3229 | static unsigned long __read_mostly max_load_balance_interval = HZ/10; |
| 3230 | |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3231 | #define LBF_ALL_PINNED 0x01 |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3232 | #define LBF_NEED_BREAK 0x02 |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 3233 | #define LBF_SOME_PINNED 0x04 |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3234 | |
| 3235 | struct lb_env { |
| 3236 | struct sched_domain *sd; |
| 3237 | |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3238 | struct rq *src_rq; |
Prashanth Nageshappa | 85c1e7d | 2012-06-19 17:47:34 +0530 | [diff] [blame] | 3239 | int src_cpu; |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3240 | |
| 3241 | int dst_cpu; |
| 3242 | struct rq *dst_rq; |
| 3243 | |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 3244 | struct cpumask *dst_grpmask; |
| 3245 | int new_dst_cpu; |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3246 | enum cpu_idle_type idle; |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3247 | long imbalance; |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 3248 | /* The set of CPUs under consideration for load-balancing */ |
| 3249 | struct cpumask *cpus; |
| 3250 | |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3251 | unsigned int flags; |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3252 | |
| 3253 | unsigned int loop; |
| 3254 | unsigned int loop_break; |
| 3255 | unsigned int loop_max; |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3256 | }; |
| 3257 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3258 | /* |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3259 | * move_task - move a task from one runqueue to another runqueue. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3260 | * Both runqueues must be locked. |
| 3261 | */ |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3262 | static void move_task(struct task_struct *p, struct lb_env *env) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3263 | { |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3264 | deactivate_task(env->src_rq, p, 0); |
| 3265 | set_task_cpu(p, env->dst_cpu); |
| 3266 | activate_task(env->dst_rq, p, 0); |
| 3267 | check_preempt_curr(env->dst_rq, p, 0); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3268 | } |
| 3269 | |
| 3270 | /* |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 3271 | * Is this task likely cache-hot: |
| 3272 | */ |
| 3273 | static int |
| 3274 | task_hot(struct task_struct *p, u64 now, struct sched_domain *sd) |
| 3275 | { |
| 3276 | s64 delta; |
| 3277 | |
| 3278 | if (p->sched_class != &fair_sched_class) |
| 3279 | return 0; |
| 3280 | |
| 3281 | if (unlikely(p->policy == SCHED_IDLE)) |
| 3282 | return 0; |
| 3283 | |
| 3284 | /* |
| 3285 | * Buddy candidates are cache hot: |
| 3286 | */ |
| 3287 | if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running && |
| 3288 | (&p->se == cfs_rq_of(&p->se)->next || |
| 3289 | &p->se == cfs_rq_of(&p->se)->last)) |
| 3290 | return 1; |
| 3291 | |
| 3292 | if (sysctl_sched_migration_cost == -1) |
| 3293 | return 1; |
| 3294 | if (sysctl_sched_migration_cost == 0) |
| 3295 | return 0; |
| 3296 | |
| 3297 | delta = now - p->se.exec_start; |
| 3298 | |
| 3299 | return delta < (s64)sysctl_sched_migration_cost; |
| 3300 | } |
| 3301 | |
| 3302 | /* |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3303 | * can_migrate_task - may task p from runqueue rq be migrated to this_cpu? |
| 3304 | */ |
| 3305 | static |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 3306 | int can_migrate_task(struct task_struct *p, struct lb_env *env) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3307 | { |
| 3308 | int tsk_cache_hot = 0; |
| 3309 | /* |
| 3310 | * We do not migrate tasks that are: |
| 3311 | * 1) running (obviously), or |
| 3312 | * 2) cannot be migrated to this CPU due to cpus_allowed, or |
| 3313 | * 3) are cache-hot on their current CPU. |
| 3314 | */ |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3315 | if (!cpumask_test_cpu(env->dst_cpu, tsk_cpus_allowed(p))) { |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 3316 | int new_dst_cpu; |
| 3317 | |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 3318 | schedstat_inc(p, se.statistics.nr_failed_migrations_affine); |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 3319 | |
| 3320 | /* |
| 3321 | * Remember if this task can be migrated to any other cpu in |
| 3322 | * our sched_group. We may want to revisit it if we couldn't |
| 3323 | * meet load balance goals by pulling other tasks on src_cpu. |
| 3324 | * |
| 3325 | * Also avoid computing new_dst_cpu if we have already computed |
| 3326 | * one in current iteration. |
| 3327 | */ |
| 3328 | if (!env->dst_grpmask || (env->flags & LBF_SOME_PINNED)) |
| 3329 | return 0; |
| 3330 | |
| 3331 | new_dst_cpu = cpumask_first_and(env->dst_grpmask, |
| 3332 | tsk_cpus_allowed(p)); |
| 3333 | if (new_dst_cpu < nr_cpu_ids) { |
| 3334 | env->flags |= LBF_SOME_PINNED; |
| 3335 | env->new_dst_cpu = new_dst_cpu; |
| 3336 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3337 | return 0; |
| 3338 | } |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 3339 | |
| 3340 | /* Record that we found atleast one task that could run on dst_cpu */ |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 3341 | env->flags &= ~LBF_ALL_PINNED; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3342 | |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3343 | if (task_running(env->src_rq, p)) { |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 3344 | schedstat_inc(p, se.statistics.nr_failed_migrations_running); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3345 | return 0; |
| 3346 | } |
| 3347 | |
| 3348 | /* |
| 3349 | * Aggressive migration if: |
| 3350 | * 1) task is cache cold, or |
| 3351 | * 2) too many balance attempts have failed. |
| 3352 | */ |
| 3353 | |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3354 | tsk_cache_hot = task_hot(p, env->src_rq->clock_task, env->sd); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3355 | if (!tsk_cache_hot || |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 3356 | env->sd->nr_balance_failed > env->sd->cache_nice_tries) { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3357 | #ifdef CONFIG_SCHEDSTATS |
| 3358 | if (tsk_cache_hot) { |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 3359 | schedstat_inc(env->sd, lb_hot_gained[env->idle]); |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 3360 | schedstat_inc(p, se.statistics.nr_forced_migrations); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3361 | } |
| 3362 | #endif |
| 3363 | return 1; |
| 3364 | } |
| 3365 | |
| 3366 | if (tsk_cache_hot) { |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 3367 | schedstat_inc(p, se.statistics.nr_failed_migrations_hot); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3368 | return 0; |
| 3369 | } |
| 3370 | return 1; |
| 3371 | } |
| 3372 | |
Peter Zijlstra | 897c395 | 2009-12-17 17:45:42 +0100 | [diff] [blame] | 3373 | /* |
| 3374 | * move_one_task tries to move exactly one task from busiest to this_rq, as |
| 3375 | * part of active balancing operations within "domain". |
| 3376 | * Returns 1 if successful and 0 otherwise. |
| 3377 | * |
| 3378 | * Called with both runqueues locked. |
| 3379 | */ |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 3380 | static int move_one_task(struct lb_env *env) |
Peter Zijlstra | 897c395 | 2009-12-17 17:45:42 +0100 | [diff] [blame] | 3381 | { |
| 3382 | struct task_struct *p, *n; |
Peter Zijlstra | 897c395 | 2009-12-17 17:45:42 +0100 | [diff] [blame] | 3383 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3384 | list_for_each_entry_safe(p, n, &env->src_rq->cfs_tasks, se.group_node) { |
| 3385 | if (throttled_lb_pair(task_group(p), env->src_rq->cpu, env->dst_cpu)) |
| 3386 | continue; |
Peter Zijlstra | 897c395 | 2009-12-17 17:45:42 +0100 | [diff] [blame] | 3387 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3388 | if (!can_migrate_task(p, env)) |
| 3389 | continue; |
Peter Zijlstra | 897c395 | 2009-12-17 17:45:42 +0100 | [diff] [blame] | 3390 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3391 | move_task(p, env); |
| 3392 | /* |
| 3393 | * Right now, this is only the second place move_task() |
| 3394 | * is called, so we can safely collect move_task() |
| 3395 | * stats here rather than inside move_task(). |
| 3396 | */ |
| 3397 | schedstat_inc(env->sd, lb_gained[env->idle]); |
| 3398 | return 1; |
Peter Zijlstra | 897c395 | 2009-12-17 17:45:42 +0100 | [diff] [blame] | 3399 | } |
Peter Zijlstra | 897c395 | 2009-12-17 17:45:42 +0100 | [diff] [blame] | 3400 | return 0; |
| 3401 | } |
| 3402 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3403 | static unsigned long task_h_load(struct task_struct *p); |
| 3404 | |
Peter Zijlstra | eb95308 | 2012-04-17 13:38:40 +0200 | [diff] [blame] | 3405 | static const unsigned int sched_nr_migrate_break = 32; |
| 3406 | |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3407 | /* |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3408 | * move_tasks tries to move up to imbalance weighted load from busiest to |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3409 | * this_rq, as part of a balancing operation within domain "sd". |
| 3410 | * Returns 1 if successful and 0 otherwise. |
| 3411 | * |
| 3412 | * Called with both runqueues locked. |
| 3413 | */ |
| 3414 | static int move_tasks(struct lb_env *env) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3415 | { |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3416 | struct list_head *tasks = &env->src_rq->cfs_tasks; |
| 3417 | struct task_struct *p; |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3418 | unsigned long load; |
| 3419 | int pulled = 0; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3420 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3421 | if (env->imbalance <= 0) |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3422 | return 0; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3423 | |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3424 | while (!list_empty(tasks)) { |
| 3425 | p = list_first_entry(tasks, struct task_struct, se.group_node); |
| 3426 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3427 | env->loop++; |
| 3428 | /* We've more or less seen every task there is, call it quits */ |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3429 | if (env->loop > env->loop_max) |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3430 | break; |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3431 | |
| 3432 | /* take a breather every nr_migrate tasks */ |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3433 | if (env->loop > env->loop_break) { |
Peter Zijlstra | eb95308 | 2012-04-17 13:38:40 +0200 | [diff] [blame] | 3434 | env->loop_break += sched_nr_migrate_break; |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 3435 | env->flags |= LBF_NEED_BREAK; |
Peter Zijlstra | ee00e66 | 2009-12-17 17:25:20 +0100 | [diff] [blame] | 3436 | break; |
Peter Zijlstra | a195f00 | 2011-09-22 15:30:18 +0200 | [diff] [blame] | 3437 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3438 | |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3439 | if (throttled_lb_pair(task_group(p), env->src_cpu, env->dst_cpu)) |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3440 | goto next; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3441 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3442 | load = task_h_load(p); |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3443 | |
Peter Zijlstra | eb95308 | 2012-04-17 13:38:40 +0200 | [diff] [blame] | 3444 | if (sched_feat(LB_MIN) && load < 16 && !env->sd->nr_balance_failed) |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3445 | goto next; |
| 3446 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3447 | if ((load / 2) > env->imbalance) |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3448 | goto next; |
| 3449 | |
| 3450 | if (!can_migrate_task(p, env)) |
| 3451 | goto next; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3452 | |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3453 | move_task(p, env); |
Peter Zijlstra | ee00e66 | 2009-12-17 17:25:20 +0100 | [diff] [blame] | 3454 | pulled++; |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3455 | env->imbalance -= load; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3456 | |
| 3457 | #ifdef CONFIG_PREEMPT |
Peter Zijlstra | ee00e66 | 2009-12-17 17:25:20 +0100 | [diff] [blame] | 3458 | /* |
| 3459 | * NEWIDLE balancing is a source of latency, so preemptible |
| 3460 | * kernels will stop after the first task is pulled to minimize |
| 3461 | * the critical section. |
| 3462 | */ |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3463 | if (env->idle == CPU_NEWLY_IDLE) |
Peter Zijlstra | ee00e66 | 2009-12-17 17:25:20 +0100 | [diff] [blame] | 3464 | break; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3465 | #endif |
| 3466 | |
Peter Zijlstra | ee00e66 | 2009-12-17 17:25:20 +0100 | [diff] [blame] | 3467 | /* |
| 3468 | * We only want to steal up to the prescribed amount of |
| 3469 | * weighted load. |
| 3470 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3471 | if (env->imbalance <= 0) |
Peter Zijlstra | ee00e66 | 2009-12-17 17:25:20 +0100 | [diff] [blame] | 3472 | break; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3473 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3474 | continue; |
| 3475 | next: |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3476 | list_move_tail(&p->se.group_node, tasks); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3477 | } |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3478 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3479 | /* |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 3480 | * Right now, this is one of only two places move_task() is called, |
| 3481 | * so we can safely collect move_task() stats here rather than |
| 3482 | * inside move_task(). |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3483 | */ |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 3484 | schedstat_add(env->sd, lb_gained[env->idle], pulled); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3485 | |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 3486 | return pulled; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3487 | } |
| 3488 | |
Peter Zijlstra | 230059de | 2009-12-17 17:47:12 +0100 | [diff] [blame] | 3489 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | 9e3081c | 2010-11-15 15:47:02 -0800 | [diff] [blame] | 3490 | /* |
| 3491 | * update tg->load_weight by folding this cpu's load_avg |
| 3492 | */ |
Paul Turner | 67e8625 | 2010-11-15 15:47:05 -0800 | [diff] [blame] | 3493 | static int update_shares_cpu(struct task_group *tg, int cpu) |
Peter Zijlstra | 9e3081c | 2010-11-15 15:47:02 -0800 | [diff] [blame] | 3494 | { |
| 3495 | struct cfs_rq *cfs_rq; |
| 3496 | unsigned long flags; |
| 3497 | struct rq *rq; |
Peter Zijlstra | 9e3081c | 2010-11-15 15:47:02 -0800 | [diff] [blame] | 3498 | |
| 3499 | if (!tg->se[cpu]) |
| 3500 | return 0; |
| 3501 | |
| 3502 | rq = cpu_rq(cpu); |
| 3503 | cfs_rq = tg->cfs_rq[cpu]; |
| 3504 | |
| 3505 | raw_spin_lock_irqsave(&rq->lock, flags); |
| 3506 | |
| 3507 | update_rq_clock(rq); |
Paul Turner | d6b5591 | 2010-11-15 15:47:09 -0800 | [diff] [blame] | 3508 | update_cfs_load(cfs_rq, 1); |
Peter Zijlstra | 9e3081c | 2010-11-15 15:47:02 -0800 | [diff] [blame] | 3509 | |
| 3510 | /* |
| 3511 | * We need to update shares after updating tg->load_weight in |
| 3512 | * order to adjust the weight of groups with long running tasks. |
| 3513 | */ |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 3514 | update_cfs_shares(cfs_rq); |
Peter Zijlstra | 9e3081c | 2010-11-15 15:47:02 -0800 | [diff] [blame] | 3515 | |
| 3516 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
| 3517 | |
| 3518 | return 0; |
| 3519 | } |
| 3520 | |
| 3521 | static void update_shares(int cpu) |
| 3522 | { |
| 3523 | struct cfs_rq *cfs_rq; |
| 3524 | struct rq *rq = cpu_rq(cpu); |
| 3525 | |
| 3526 | rcu_read_lock(); |
Peter Zijlstra | 9763b67 | 2011-07-13 13:09:25 +0200 | [diff] [blame] | 3527 | /* |
| 3528 | * Iterates the task_group tree in a bottom up fashion, see |
| 3529 | * list_add_leaf_cfs_rq() for details. |
| 3530 | */ |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 3531 | for_each_leaf_cfs_rq(rq, cfs_rq) { |
| 3532 | /* throttled entities do not contribute to load */ |
| 3533 | if (throttled_hierarchy(cfs_rq)) |
| 3534 | continue; |
| 3535 | |
Paul Turner | 67e8625 | 2010-11-15 15:47:05 -0800 | [diff] [blame] | 3536 | update_shares_cpu(cfs_rq->tg, cpu); |
Paul Turner | 64660c8 | 2011-07-21 09:43:36 -0700 | [diff] [blame] | 3537 | } |
Peter Zijlstra | 9e3081c | 2010-11-15 15:47:02 -0800 | [diff] [blame] | 3538 | rcu_read_unlock(); |
| 3539 | } |
| 3540 | |
Peter Zijlstra | 9763b67 | 2011-07-13 13:09:25 +0200 | [diff] [blame] | 3541 | /* |
| 3542 | * Compute the cpu's hierarchical load factor for each task group. |
| 3543 | * This needs to be done in a top-down fashion because the load of a child |
| 3544 | * group is a fraction of its parents load. |
| 3545 | */ |
| 3546 | static int tg_load_down(struct task_group *tg, void *data) |
| 3547 | { |
| 3548 | unsigned long load; |
| 3549 | long cpu = (long)data; |
| 3550 | |
| 3551 | if (!tg->parent) { |
| 3552 | load = cpu_rq(cpu)->load.weight; |
| 3553 | } else { |
| 3554 | load = tg->parent->cfs_rq[cpu]->h_load; |
| 3555 | load *= tg->se[cpu]->load.weight; |
| 3556 | load /= tg->parent->cfs_rq[cpu]->load.weight + 1; |
| 3557 | } |
| 3558 | |
| 3559 | tg->cfs_rq[cpu]->h_load = load; |
| 3560 | |
| 3561 | return 0; |
| 3562 | } |
| 3563 | |
| 3564 | static void update_h_load(long cpu) |
| 3565 | { |
Peter Zijlstra | a35b646 | 2012-08-08 21:46:40 +0200 | [diff] [blame] | 3566 | struct rq *rq = cpu_rq(cpu); |
| 3567 | unsigned long now = jiffies; |
| 3568 | |
| 3569 | if (rq->h_load_throttle == now) |
| 3570 | return; |
| 3571 | |
| 3572 | rq->h_load_throttle = now; |
| 3573 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3574 | rcu_read_lock(); |
Peter Zijlstra | 9763b67 | 2011-07-13 13:09:25 +0200 | [diff] [blame] | 3575 | walk_tg_tree(tg_load_down, tg_nop, (void *)cpu); |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3576 | rcu_read_unlock(); |
Peter Zijlstra | 9763b67 | 2011-07-13 13:09:25 +0200 | [diff] [blame] | 3577 | } |
| 3578 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3579 | static unsigned long task_h_load(struct task_struct *p) |
Peter Zijlstra | 230059de | 2009-12-17 17:47:12 +0100 | [diff] [blame] | 3580 | { |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3581 | struct cfs_rq *cfs_rq = task_cfs_rq(p); |
| 3582 | unsigned long load; |
Peter Zijlstra | 230059de | 2009-12-17 17:47:12 +0100 | [diff] [blame] | 3583 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3584 | load = p->se.load.weight; |
| 3585 | load = div_u64(load * cfs_rq->h_load, cfs_rq->load.weight + 1); |
Peter Zijlstra | 230059de | 2009-12-17 17:47:12 +0100 | [diff] [blame] | 3586 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3587 | return load; |
Peter Zijlstra | 230059de | 2009-12-17 17:47:12 +0100 | [diff] [blame] | 3588 | } |
| 3589 | #else |
Peter Zijlstra | 9e3081c | 2010-11-15 15:47:02 -0800 | [diff] [blame] | 3590 | static inline void update_shares(int cpu) |
| 3591 | { |
| 3592 | } |
| 3593 | |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3594 | static inline void update_h_load(long cpu) |
Peter Zijlstra | 230059de | 2009-12-17 17:47:12 +0100 | [diff] [blame] | 3595 | { |
Peter Zijlstra | 367456c | 2012-02-20 21:49:09 +0100 | [diff] [blame] | 3596 | } |
| 3597 | |
| 3598 | static unsigned long task_h_load(struct task_struct *p) |
| 3599 | { |
| 3600 | return p->se.load.weight; |
Peter Zijlstra | 230059de | 2009-12-17 17:47:12 +0100 | [diff] [blame] | 3601 | } |
| 3602 | #endif |
| 3603 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3604 | /********** Helpers for find_busiest_group ************************/ |
| 3605 | /* |
| 3606 | * sd_lb_stats - Structure to store the statistics of a sched_domain |
| 3607 | * during load balancing. |
| 3608 | */ |
| 3609 | struct sd_lb_stats { |
| 3610 | struct sched_group *busiest; /* Busiest group in this sd */ |
| 3611 | struct sched_group *this; /* Local group in this sd */ |
| 3612 | unsigned long total_load; /* Total load of all groups in sd */ |
| 3613 | unsigned long total_pwr; /* Total power of all groups in sd */ |
| 3614 | unsigned long avg_load; /* Average load across all groups in sd */ |
| 3615 | |
| 3616 | /** Statistics of this group */ |
| 3617 | unsigned long this_load; |
| 3618 | unsigned long this_load_per_task; |
| 3619 | unsigned long this_nr_running; |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 3620 | unsigned long this_has_capacity; |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 3621 | unsigned int this_idle_cpus; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3622 | |
| 3623 | /* Statistics of the busiest group */ |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 3624 | unsigned int busiest_idle_cpus; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3625 | unsigned long max_load; |
| 3626 | unsigned long busiest_load_per_task; |
| 3627 | unsigned long busiest_nr_running; |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 3628 | unsigned long busiest_group_capacity; |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 3629 | unsigned long busiest_has_capacity; |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 3630 | unsigned int busiest_group_weight; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3631 | |
| 3632 | int group_imb; /* Is there imbalance in this sd */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3633 | }; |
| 3634 | |
| 3635 | /* |
| 3636 | * sg_lb_stats - stats of a sched_group required for load_balancing |
| 3637 | */ |
| 3638 | struct sg_lb_stats { |
| 3639 | unsigned long avg_load; /*Avg load across the CPUs of the group */ |
| 3640 | unsigned long group_load; /* Total load over the CPUs of the group */ |
| 3641 | unsigned long sum_nr_running; /* Nr tasks running in the group */ |
| 3642 | unsigned long sum_weighted_load; /* Weighted load of group's tasks */ |
| 3643 | unsigned long group_capacity; |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 3644 | unsigned long idle_cpus; |
| 3645 | unsigned long group_weight; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3646 | int group_imb; /* Is there an imbalance in the group ? */ |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 3647 | int group_has_capacity; /* Is there extra capacity in the group? */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3648 | }; |
| 3649 | |
| 3650 | /** |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3651 | * get_sd_load_idx - Obtain the load index for a given sched domain. |
| 3652 | * @sd: The sched_domain whose load_idx is to be obtained. |
| 3653 | * @idle: The Idle status of the CPU for whose sd load_icx is obtained. |
| 3654 | */ |
| 3655 | static inline int get_sd_load_idx(struct sched_domain *sd, |
| 3656 | enum cpu_idle_type idle) |
| 3657 | { |
| 3658 | int load_idx; |
| 3659 | |
| 3660 | switch (idle) { |
| 3661 | case CPU_NOT_IDLE: |
| 3662 | load_idx = sd->busy_idx; |
| 3663 | break; |
| 3664 | |
| 3665 | case CPU_NEWLY_IDLE: |
| 3666 | load_idx = sd->newidle_idx; |
| 3667 | break; |
| 3668 | default: |
| 3669 | load_idx = sd->idle_idx; |
| 3670 | break; |
| 3671 | } |
| 3672 | |
| 3673 | return load_idx; |
| 3674 | } |
| 3675 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3676 | unsigned long default_scale_freq_power(struct sched_domain *sd, int cpu) |
| 3677 | { |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3678 | return SCHED_POWER_SCALE; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3679 | } |
| 3680 | |
| 3681 | unsigned long __weak arch_scale_freq_power(struct sched_domain *sd, int cpu) |
| 3682 | { |
| 3683 | return default_scale_freq_power(sd, cpu); |
| 3684 | } |
| 3685 | |
| 3686 | unsigned long default_scale_smt_power(struct sched_domain *sd, int cpu) |
| 3687 | { |
Peter Zijlstra | 669c55e | 2010-04-16 14:59:29 +0200 | [diff] [blame] | 3688 | unsigned long weight = sd->span_weight; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3689 | unsigned long smt_gain = sd->smt_gain; |
| 3690 | |
| 3691 | smt_gain /= weight; |
| 3692 | |
| 3693 | return smt_gain; |
| 3694 | } |
| 3695 | |
| 3696 | unsigned long __weak arch_scale_smt_power(struct sched_domain *sd, int cpu) |
| 3697 | { |
| 3698 | return default_scale_smt_power(sd, cpu); |
| 3699 | } |
| 3700 | |
| 3701 | unsigned long scale_rt_power(int cpu) |
| 3702 | { |
| 3703 | struct rq *rq = cpu_rq(cpu); |
Peter Zijlstra | b654f7d | 2012-05-22 14:04:28 +0200 | [diff] [blame] | 3704 | u64 total, available, age_stamp, avg; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3705 | |
Peter Zijlstra | b654f7d | 2012-05-22 14:04:28 +0200 | [diff] [blame] | 3706 | /* |
| 3707 | * Since we're reading these variables without serialization make sure |
| 3708 | * we read them once before doing sanity checks on them. |
| 3709 | */ |
| 3710 | age_stamp = ACCESS_ONCE(rq->age_stamp); |
| 3711 | avg = ACCESS_ONCE(rq->rt_avg); |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 3712 | |
Peter Zijlstra | b654f7d | 2012-05-22 14:04:28 +0200 | [diff] [blame] | 3713 | total = sched_avg_period() + (rq->clock - age_stamp); |
| 3714 | |
| 3715 | if (unlikely(total < avg)) { |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 3716 | /* Ensures that power won't end up being negative */ |
| 3717 | available = 0; |
| 3718 | } else { |
Peter Zijlstra | b654f7d | 2012-05-22 14:04:28 +0200 | [diff] [blame] | 3719 | available = total - avg; |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 3720 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3721 | |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3722 | if (unlikely((s64)total < SCHED_POWER_SCALE)) |
| 3723 | total = SCHED_POWER_SCALE; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3724 | |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3725 | total >>= SCHED_POWER_SHIFT; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3726 | |
| 3727 | return div_u64(available, total); |
| 3728 | } |
| 3729 | |
| 3730 | static void update_cpu_power(struct sched_domain *sd, int cpu) |
| 3731 | { |
Peter Zijlstra | 669c55e | 2010-04-16 14:59:29 +0200 | [diff] [blame] | 3732 | unsigned long weight = sd->span_weight; |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3733 | unsigned long power = SCHED_POWER_SCALE; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3734 | struct sched_group *sdg = sd->groups; |
| 3735 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3736 | if ((sd->flags & SD_SHARE_CPUPOWER) && weight > 1) { |
| 3737 | if (sched_feat(ARCH_POWER)) |
| 3738 | power *= arch_scale_smt_power(sd, cpu); |
| 3739 | else |
| 3740 | power *= default_scale_smt_power(sd, cpu); |
| 3741 | |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3742 | power >>= SCHED_POWER_SHIFT; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3743 | } |
| 3744 | |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 3745 | sdg->sgp->power_orig = power; |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3746 | |
| 3747 | if (sched_feat(ARCH_POWER)) |
| 3748 | power *= arch_scale_freq_power(sd, cpu); |
| 3749 | else |
| 3750 | power *= default_scale_freq_power(sd, cpu); |
| 3751 | |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3752 | power >>= SCHED_POWER_SHIFT; |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3753 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3754 | power *= scale_rt_power(cpu); |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3755 | power >>= SCHED_POWER_SHIFT; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3756 | |
| 3757 | if (!power) |
| 3758 | power = 1; |
| 3759 | |
Peter Zijlstra | e51fd5e | 2010-05-31 12:37:30 +0200 | [diff] [blame] | 3760 | cpu_rq(cpu)->cpu_power = power; |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 3761 | sdg->sgp->power = power; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3762 | } |
| 3763 | |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 3764 | void update_group_power(struct sched_domain *sd, int cpu) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3765 | { |
| 3766 | struct sched_domain *child = sd->child; |
| 3767 | struct sched_group *group, *sdg = sd->groups; |
| 3768 | unsigned long power; |
Vincent Guittot | 4ec4412 | 2011-12-12 20:21:08 +0100 | [diff] [blame] | 3769 | unsigned long interval; |
| 3770 | |
| 3771 | interval = msecs_to_jiffies(sd->balance_interval); |
| 3772 | interval = clamp(interval, 1UL, max_load_balance_interval); |
| 3773 | sdg->sgp->next_update = jiffies + interval; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3774 | |
| 3775 | if (!child) { |
| 3776 | update_cpu_power(sd, cpu); |
| 3777 | return; |
| 3778 | } |
| 3779 | |
| 3780 | power = 0; |
| 3781 | |
Peter Zijlstra | 74a5ce2 | 2012-05-23 18:00:43 +0200 | [diff] [blame] | 3782 | if (child->flags & SD_OVERLAP) { |
| 3783 | /* |
| 3784 | * SD_OVERLAP domains cannot assume that child groups |
| 3785 | * span the current group. |
| 3786 | */ |
| 3787 | |
| 3788 | for_each_cpu(cpu, sched_group_cpus(sdg)) |
| 3789 | power += power_of(cpu); |
| 3790 | } else { |
| 3791 | /* |
| 3792 | * !SD_OVERLAP domains can assume that child groups |
| 3793 | * span the current group. |
| 3794 | */ |
| 3795 | |
| 3796 | group = child->groups; |
| 3797 | do { |
| 3798 | power += group->sgp->power; |
| 3799 | group = group->next; |
| 3800 | } while (group != child->groups); |
| 3801 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3802 | |
Peter Zijlstra | c3decf0 | 2012-05-31 12:05:32 +0200 | [diff] [blame] | 3803 | sdg->sgp->power_orig = sdg->sgp->power = power; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3804 | } |
| 3805 | |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3806 | /* |
| 3807 | * Try and fix up capacity for tiny siblings, this is needed when |
| 3808 | * things like SD_ASYM_PACKING need f_b_g to select another sibling |
| 3809 | * which on its own isn't powerful enough. |
| 3810 | * |
| 3811 | * See update_sd_pick_busiest() and check_asym_packing(). |
| 3812 | */ |
| 3813 | static inline int |
| 3814 | fix_small_capacity(struct sched_domain *sd, struct sched_group *group) |
| 3815 | { |
| 3816 | /* |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3817 | * Only siblings can have significantly less than SCHED_POWER_SCALE |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3818 | */ |
Peter Zijlstra | a6c75f2 | 2011-04-07 14:09:52 +0200 | [diff] [blame] | 3819 | if (!(sd->flags & SD_SHARE_CPUPOWER)) |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3820 | return 0; |
| 3821 | |
| 3822 | /* |
| 3823 | * If ~90% of the cpu_power is still there, we're good. |
| 3824 | */ |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 3825 | if (group->sgp->power * 32 > group->sgp->power_orig * 29) |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3826 | return 1; |
| 3827 | |
| 3828 | return 0; |
| 3829 | } |
| 3830 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3831 | /** |
| 3832 | * update_sg_lb_stats - Update sched_group's statistics for load balancing. |
Randy Dunlap | cd96891 | 2012-06-08 13:18:33 -0700 | [diff] [blame] | 3833 | * @env: The load balancing environment. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3834 | * @group: sched_group whose statistics are to be updated. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3835 | * @load_idx: Load index of sched_domain of this_cpu for load calc. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3836 | * @local_group: Does group contain this_cpu. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3837 | * @balance: Should we balance. |
| 3838 | * @sgs: variable to hold the statistics for this group. |
| 3839 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3840 | static inline void update_sg_lb_stats(struct lb_env *env, |
| 3841 | struct sched_group *group, int load_idx, |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 3842 | int local_group, int *balance, struct sg_lb_stats *sgs) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3843 | { |
Peter Zijlstra | e44bc5c | 2012-05-11 00:22:12 +0200 | [diff] [blame] | 3844 | unsigned long nr_running, max_nr_running, min_nr_running; |
| 3845 | unsigned long load, max_cpu_load, min_cpu_load; |
Peter Zijlstra | 04f733b | 2012-05-11 00:12:02 +0200 | [diff] [blame] | 3846 | unsigned int balance_cpu = -1, first_idle_cpu = 0; |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 3847 | unsigned long avg_load_per_task = 0; |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3848 | int i; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3849 | |
Gautham R Shenoy | 871e35b | 2010-01-20 14:02:44 -0600 | [diff] [blame] | 3850 | if (local_group) |
Peter Zijlstra | c117487 | 2012-05-31 14:47:33 +0200 | [diff] [blame] | 3851 | balance_cpu = group_balance_cpu(group); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3852 | |
| 3853 | /* Tally up the load of all CPUs in the group */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3854 | max_cpu_load = 0; |
| 3855 | min_cpu_load = ~0UL; |
Nikhil Rao | 2582f0e | 2010-10-13 12:09:36 -0700 | [diff] [blame] | 3856 | max_nr_running = 0; |
Peter Zijlstra | e44bc5c | 2012-05-11 00:22:12 +0200 | [diff] [blame] | 3857 | min_nr_running = ~0UL; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3858 | |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 3859 | for_each_cpu_and(i, sched_group_cpus(group), env->cpus) { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3860 | struct rq *rq = cpu_rq(i); |
| 3861 | |
Peter Zijlstra | e44bc5c | 2012-05-11 00:22:12 +0200 | [diff] [blame] | 3862 | nr_running = rq->nr_running; |
| 3863 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3864 | /* Bias balancing toward cpus of our domain */ |
| 3865 | if (local_group) { |
Peter Zijlstra | c117487 | 2012-05-31 14:47:33 +0200 | [diff] [blame] | 3866 | if (idle_cpu(i) && !first_idle_cpu && |
| 3867 | cpumask_test_cpu(i, sched_group_mask(group))) { |
Peter Zijlstra | 04f733b | 2012-05-11 00:12:02 +0200 | [diff] [blame] | 3868 | first_idle_cpu = 1; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3869 | balance_cpu = i; |
| 3870 | } |
Peter Zijlstra | 04f733b | 2012-05-11 00:12:02 +0200 | [diff] [blame] | 3871 | |
| 3872 | load = target_load(i, load_idx); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3873 | } else { |
| 3874 | load = source_load(i, load_idx); |
Peter Zijlstra | e44bc5c | 2012-05-11 00:22:12 +0200 | [diff] [blame] | 3875 | if (load > max_cpu_load) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3876 | max_cpu_load = load; |
| 3877 | if (min_cpu_load > load) |
| 3878 | min_cpu_load = load; |
Peter Zijlstra | e44bc5c | 2012-05-11 00:22:12 +0200 | [diff] [blame] | 3879 | |
| 3880 | if (nr_running > max_nr_running) |
| 3881 | max_nr_running = nr_running; |
| 3882 | if (min_nr_running > nr_running) |
| 3883 | min_nr_running = nr_running; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3884 | } |
| 3885 | |
| 3886 | sgs->group_load += load; |
Peter Zijlstra | e44bc5c | 2012-05-11 00:22:12 +0200 | [diff] [blame] | 3887 | sgs->sum_nr_running += nr_running; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3888 | sgs->sum_weighted_load += weighted_cpuload(i); |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 3889 | if (idle_cpu(i)) |
| 3890 | sgs->idle_cpus++; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3891 | } |
| 3892 | |
| 3893 | /* |
| 3894 | * First idle cpu or the first cpu(busiest) in this sched group |
| 3895 | * is eligible for doing load balancing at this and above |
| 3896 | * domains. In the newly idle case, we will allow all the cpu's |
| 3897 | * to do the newly idle load balance. |
| 3898 | */ |
Vincent Guittot | 4ec4412 | 2011-12-12 20:21:08 +0100 | [diff] [blame] | 3899 | if (local_group) { |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3900 | if (env->idle != CPU_NEWLY_IDLE) { |
Peter Zijlstra | 04f733b | 2012-05-11 00:12:02 +0200 | [diff] [blame] | 3901 | if (balance_cpu != env->dst_cpu) { |
Vincent Guittot | 4ec4412 | 2011-12-12 20:21:08 +0100 | [diff] [blame] | 3902 | *balance = 0; |
| 3903 | return; |
| 3904 | } |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3905 | update_group_power(env->sd, env->dst_cpu); |
Vincent Guittot | 4ec4412 | 2011-12-12 20:21:08 +0100 | [diff] [blame] | 3906 | } else if (time_after_eq(jiffies, group->sgp->next_update)) |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3907 | update_group_power(env->sd, env->dst_cpu); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3908 | } |
| 3909 | |
| 3910 | /* Adjust by relative CPU power of the group */ |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 3911 | sgs->avg_load = (sgs->group_load*SCHED_POWER_SCALE) / group->sgp->power; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3912 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3913 | /* |
| 3914 | * Consider the group unbalanced when the imbalance is larger |
Peter Zijlstra | 866ab43 | 2011-02-21 18:56:47 +0100 | [diff] [blame] | 3915 | * than the average weight of a task. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3916 | * |
| 3917 | * APZ: with cgroup the avg task weight can vary wildly and |
| 3918 | * might not be a suitable number - should we keep a |
| 3919 | * normalized nr_running number somewhere that negates |
| 3920 | * the hierarchy? |
| 3921 | */ |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 3922 | if (sgs->sum_nr_running) |
| 3923 | avg_load_per_task = sgs->sum_weighted_load / sgs->sum_nr_running; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3924 | |
Peter Zijlstra | e44bc5c | 2012-05-11 00:22:12 +0200 | [diff] [blame] | 3925 | if ((max_cpu_load - min_cpu_load) >= avg_load_per_task && |
| 3926 | (max_nr_running - min_nr_running) > 1) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3927 | sgs->group_imb = 1; |
| 3928 | |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 3929 | sgs->group_capacity = DIV_ROUND_CLOSEST(group->sgp->power, |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 3930 | SCHED_POWER_SCALE); |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3931 | if (!sgs->group_capacity) |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3932 | sgs->group_capacity = fix_small_capacity(env->sd, group); |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 3933 | sgs->group_weight = group->group_weight; |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 3934 | |
| 3935 | if (sgs->group_capacity > sgs->sum_nr_running) |
| 3936 | sgs->group_has_capacity = 1; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3937 | } |
| 3938 | |
| 3939 | /** |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3940 | * update_sd_pick_busiest - return 1 on busiest group |
Randy Dunlap | cd96891 | 2012-06-08 13:18:33 -0700 | [diff] [blame] | 3941 | * @env: The load balancing environment. |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3942 | * @sds: sched_domain statistics |
| 3943 | * @sg: sched_group candidate to be checked for being the busiest |
Michael Neuling | b6b1229 | 2010-06-10 12:06:21 +1000 | [diff] [blame] | 3944 | * @sgs: sched_group statistics |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3945 | * |
| 3946 | * Determine if @sg is a busier group than the previously selected |
| 3947 | * busiest group. |
| 3948 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3949 | static bool update_sd_pick_busiest(struct lb_env *env, |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3950 | struct sd_lb_stats *sds, |
| 3951 | struct sched_group *sg, |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3952 | struct sg_lb_stats *sgs) |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3953 | { |
| 3954 | if (sgs->avg_load <= sds->max_load) |
| 3955 | return false; |
| 3956 | |
| 3957 | if (sgs->sum_nr_running > sgs->group_capacity) |
| 3958 | return true; |
| 3959 | |
| 3960 | if (sgs->group_imb) |
| 3961 | return true; |
| 3962 | |
| 3963 | /* |
| 3964 | * ASYM_PACKING needs to move all the work to the lowest |
| 3965 | * numbered CPUs in the group, therefore mark all groups |
| 3966 | * higher than ourself as busy. |
| 3967 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3968 | if ((env->sd->flags & SD_ASYM_PACKING) && sgs->sum_nr_running && |
| 3969 | env->dst_cpu < group_first_cpu(sg)) { |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 3970 | if (!sds->busiest) |
| 3971 | return true; |
| 3972 | |
| 3973 | if (group_first_cpu(sds->busiest) > group_first_cpu(sg)) |
| 3974 | return true; |
| 3975 | } |
| 3976 | |
| 3977 | return false; |
| 3978 | } |
| 3979 | |
| 3980 | /** |
Hui Kang | 461819a | 2011-10-11 23:00:59 -0400 | [diff] [blame] | 3981 | * update_sd_lb_stats - Update sched_domain's statistics for load balancing. |
Randy Dunlap | cd96891 | 2012-06-08 13:18:33 -0700 | [diff] [blame] | 3982 | * @env: The load balancing environment. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3983 | * @balance: Should we balance. |
| 3984 | * @sds: variable to hold the statistics for this sched_domain. |
| 3985 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3986 | static inline void update_sd_lb_stats(struct lb_env *env, |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 3987 | int *balance, struct sd_lb_stats *sds) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3988 | { |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3989 | struct sched_domain *child = env->sd->child; |
| 3990 | struct sched_group *sg = env->sd->groups; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3991 | struct sg_lb_stats sgs; |
| 3992 | int load_idx, prefer_sibling = 0; |
| 3993 | |
| 3994 | if (child && child->flags & SD_PREFER_SIBLING) |
| 3995 | prefer_sibling = 1; |
| 3996 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 3997 | load_idx = get_sd_load_idx(env->sd, env->idle); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 3998 | |
| 3999 | do { |
| 4000 | int local_group; |
| 4001 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4002 | local_group = cpumask_test_cpu(env->dst_cpu, sched_group_cpus(sg)); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4003 | memset(&sgs, 0, sizeof(sgs)); |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4004 | update_sg_lb_stats(env, sg, load_idx, local_group, balance, &sgs); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4005 | |
Peter Zijlstra | 8f190fb | 2009-12-24 14:18:21 +0100 | [diff] [blame] | 4006 | if (local_group && !(*balance)) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4007 | return; |
| 4008 | |
| 4009 | sds->total_load += sgs.group_load; |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4010 | sds->total_pwr += sg->sgp->power; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4011 | |
| 4012 | /* |
| 4013 | * In case the child domain prefers tasks go to siblings |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4014 | * first, lower the sg capacity to one so that we'll try |
Nikhil Rao | 75dd321 | 2010-10-15 13:12:30 -0700 | [diff] [blame] | 4015 | * and move all the excess tasks away. We lower the capacity |
| 4016 | * of a group only if the local group has the capacity to fit |
| 4017 | * these excess tasks, i.e. nr_running < group_capacity. The |
| 4018 | * extra check prevents the case where you always pull from the |
| 4019 | * heaviest group when it is already under-utilized (possible |
| 4020 | * with a large weight task outweighs the tasks on the system). |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4021 | */ |
Nikhil Rao | 75dd321 | 2010-10-15 13:12:30 -0700 | [diff] [blame] | 4022 | if (prefer_sibling && !local_group && sds->this_has_capacity) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4023 | sgs.group_capacity = min(sgs.group_capacity, 1UL); |
| 4024 | |
| 4025 | if (local_group) { |
| 4026 | sds->this_load = sgs.avg_load; |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4027 | sds->this = sg; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4028 | sds->this_nr_running = sgs.sum_nr_running; |
| 4029 | sds->this_load_per_task = sgs.sum_weighted_load; |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 4030 | sds->this_has_capacity = sgs.group_has_capacity; |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 4031 | sds->this_idle_cpus = sgs.idle_cpus; |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4032 | } else if (update_sd_pick_busiest(env, sds, sg, &sgs)) { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4033 | sds->max_load = sgs.avg_load; |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4034 | sds->busiest = sg; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4035 | sds->busiest_nr_running = sgs.sum_nr_running; |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 4036 | sds->busiest_idle_cpus = sgs.idle_cpus; |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4037 | sds->busiest_group_capacity = sgs.group_capacity; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4038 | sds->busiest_load_per_task = sgs.sum_weighted_load; |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 4039 | sds->busiest_has_capacity = sgs.group_has_capacity; |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 4040 | sds->busiest_group_weight = sgs.group_weight; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4041 | sds->group_imb = sgs.group_imb; |
| 4042 | } |
| 4043 | |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4044 | sg = sg->next; |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4045 | } while (sg != env->sd->groups); |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4046 | } |
| 4047 | |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4048 | /** |
| 4049 | * check_asym_packing - Check to see if the group is packed into the |
| 4050 | * sched doman. |
| 4051 | * |
| 4052 | * This is primarily intended to used at the sibling level. Some |
| 4053 | * cores like POWER7 prefer to use lower numbered SMT threads. In the |
| 4054 | * case of POWER7, it can move to lower SMT modes only when higher |
| 4055 | * threads are idle. When in lower SMT modes, the threads will |
| 4056 | * perform better since they share less core resources. Hence when we |
| 4057 | * have idle threads, we want them to be the higher ones. |
| 4058 | * |
| 4059 | * This packing function is run on idle threads. It checks to see if |
| 4060 | * the busiest CPU in this domain (core in the P7 case) has a higher |
| 4061 | * CPU number than the packing function is being run on. Here we are |
| 4062 | * assuming lower CPU number will be equivalent to lower a SMT thread |
| 4063 | * number. |
| 4064 | * |
Michael Neuling | b6b1229 | 2010-06-10 12:06:21 +1000 | [diff] [blame] | 4065 | * Returns 1 when packing is required and a task should be moved to |
| 4066 | * this CPU. The amount of the imbalance is returned in *imbalance. |
| 4067 | * |
Randy Dunlap | cd96891 | 2012-06-08 13:18:33 -0700 | [diff] [blame] | 4068 | * @env: The load balancing environment. |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4069 | * @sds: Statistics of the sched_domain which is to be packed |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4070 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4071 | static int check_asym_packing(struct lb_env *env, struct sd_lb_stats *sds) |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4072 | { |
| 4073 | int busiest_cpu; |
| 4074 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4075 | if (!(env->sd->flags & SD_ASYM_PACKING)) |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4076 | return 0; |
| 4077 | |
| 4078 | if (!sds->busiest) |
| 4079 | return 0; |
| 4080 | |
| 4081 | busiest_cpu = group_first_cpu(sds->busiest); |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4082 | if (env->dst_cpu > busiest_cpu) |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4083 | return 0; |
| 4084 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4085 | env->imbalance = DIV_ROUND_CLOSEST( |
| 4086 | sds->max_load * sds->busiest->sgp->power, SCHED_POWER_SCALE); |
| 4087 | |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4088 | return 1; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4089 | } |
| 4090 | |
| 4091 | /** |
| 4092 | * fix_small_imbalance - Calculate the minor imbalance that exists |
| 4093 | * amongst the groups of a sched_domain, during |
| 4094 | * load balancing. |
Randy Dunlap | cd96891 | 2012-06-08 13:18:33 -0700 | [diff] [blame] | 4095 | * @env: The load balancing environment. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4096 | * @sds: Statistics of the sched_domain whose imbalance is to be calculated. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4097 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4098 | static inline |
| 4099 | void fix_small_imbalance(struct lb_env *env, struct sd_lb_stats *sds) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4100 | { |
| 4101 | unsigned long tmp, pwr_now = 0, pwr_move = 0; |
| 4102 | unsigned int imbn = 2; |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4103 | unsigned long scaled_busy_load_per_task; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4104 | |
| 4105 | if (sds->this_nr_running) { |
| 4106 | sds->this_load_per_task /= sds->this_nr_running; |
| 4107 | if (sds->busiest_load_per_task > |
| 4108 | sds->this_load_per_task) |
| 4109 | imbn = 1; |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4110 | } else { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4111 | sds->this_load_per_task = |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4112 | cpu_avg_load_per_task(env->dst_cpu); |
| 4113 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4114 | |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4115 | scaled_busy_load_per_task = sds->busiest_load_per_task |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4116 | * SCHED_POWER_SCALE; |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4117 | scaled_busy_load_per_task /= sds->busiest->sgp->power; |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4118 | |
| 4119 | if (sds->max_load - sds->this_load + scaled_busy_load_per_task >= |
| 4120 | (scaled_busy_load_per_task * imbn)) { |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4121 | env->imbalance = sds->busiest_load_per_task; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4122 | return; |
| 4123 | } |
| 4124 | |
| 4125 | /* |
| 4126 | * OK, we don't have enough imbalance to justify moving tasks, |
| 4127 | * however we may be able to increase total CPU power used by |
| 4128 | * moving them. |
| 4129 | */ |
| 4130 | |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4131 | pwr_now += sds->busiest->sgp->power * |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4132 | min(sds->busiest_load_per_task, sds->max_load); |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4133 | pwr_now += sds->this->sgp->power * |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4134 | min(sds->this_load_per_task, sds->this_load); |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4135 | pwr_now /= SCHED_POWER_SCALE; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4136 | |
| 4137 | /* Amount of load we'd subtract */ |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4138 | tmp = (sds->busiest_load_per_task * SCHED_POWER_SCALE) / |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4139 | sds->busiest->sgp->power; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4140 | if (sds->max_load > tmp) |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4141 | pwr_move += sds->busiest->sgp->power * |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4142 | min(sds->busiest_load_per_task, sds->max_load - tmp); |
| 4143 | |
| 4144 | /* Amount of load we'd add */ |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4145 | if (sds->max_load * sds->busiest->sgp->power < |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4146 | sds->busiest_load_per_task * SCHED_POWER_SCALE) |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4147 | tmp = (sds->max_load * sds->busiest->sgp->power) / |
| 4148 | sds->this->sgp->power; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4149 | else |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4150 | tmp = (sds->busiest_load_per_task * SCHED_POWER_SCALE) / |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4151 | sds->this->sgp->power; |
| 4152 | pwr_move += sds->this->sgp->power * |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4153 | min(sds->this_load_per_task, sds->this_load + tmp); |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4154 | pwr_move /= SCHED_POWER_SCALE; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4155 | |
| 4156 | /* Move if we gain throughput */ |
| 4157 | if (pwr_move > pwr_now) |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4158 | env->imbalance = sds->busiest_load_per_task; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4159 | } |
| 4160 | |
| 4161 | /** |
| 4162 | * calculate_imbalance - Calculate the amount of imbalance present within the |
| 4163 | * groups of a given sched_domain during load balance. |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4164 | * @env: load balance environment |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4165 | * @sds: statistics of the sched_domain whose imbalance is to be calculated. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4166 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4167 | static inline void calculate_imbalance(struct lb_env *env, struct sd_lb_stats *sds) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4168 | { |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4169 | unsigned long max_pull, load_above_capacity = ~0UL; |
| 4170 | |
| 4171 | sds->busiest_load_per_task /= sds->busiest_nr_running; |
| 4172 | if (sds->group_imb) { |
| 4173 | sds->busiest_load_per_task = |
| 4174 | min(sds->busiest_load_per_task, sds->avg_load); |
| 4175 | } |
| 4176 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4177 | /* |
| 4178 | * In the presence of smp nice balancing, certain scenarios can have |
| 4179 | * max load less than avg load(as we skip the groups at or below |
| 4180 | * its cpu_power, while calculating max_load..) |
| 4181 | */ |
| 4182 | if (sds->max_load < sds->avg_load) { |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4183 | env->imbalance = 0; |
| 4184 | return fix_small_imbalance(env, sds); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4185 | } |
| 4186 | |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4187 | if (!sds->group_imb) { |
| 4188 | /* |
| 4189 | * Don't want to pull so many tasks that a group would go idle. |
| 4190 | */ |
| 4191 | load_above_capacity = (sds->busiest_nr_running - |
| 4192 | sds->busiest_group_capacity); |
| 4193 | |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4194 | load_above_capacity *= (SCHED_LOAD_SCALE * SCHED_POWER_SCALE); |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4195 | |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4196 | load_above_capacity /= sds->busiest->sgp->power; |
Suresh Siddha | dd5feea | 2010-02-23 16:13:52 -0800 | [diff] [blame] | 4197 | } |
| 4198 | |
| 4199 | /* |
| 4200 | * We're trying to get all the cpus to the average_load, so we don't |
| 4201 | * want to push ourselves above the average load, nor do we wish to |
| 4202 | * reduce the max loaded cpu below the average load. At the same time, |
| 4203 | * we also don't want to reduce the group load below the group capacity |
| 4204 | * (so that we can implement power-savings policies etc). Thus we look |
| 4205 | * for the minimum possible imbalance. |
| 4206 | * Be careful of negative numbers as they'll appear as very large values |
| 4207 | * with unsigned longs. |
| 4208 | */ |
| 4209 | max_pull = min(sds->max_load - sds->avg_load, load_above_capacity); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4210 | |
| 4211 | /* How much load to actually move to equalise the imbalance */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4212 | env->imbalance = min(max_pull * sds->busiest->sgp->power, |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 4213 | (sds->avg_load - sds->this_load) * sds->this->sgp->power) |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4214 | / SCHED_POWER_SCALE; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4215 | |
| 4216 | /* |
| 4217 | * if *imbalance is less than the average load per runnable task |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4218 | * there is no guarantee that any tasks will be moved so we'll have |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4219 | * a think about bumping its value to force at least one task to be |
| 4220 | * moved |
| 4221 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4222 | if (env->imbalance < sds->busiest_load_per_task) |
| 4223 | return fix_small_imbalance(env, sds); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4224 | |
| 4225 | } |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 4226 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4227 | /******* find_busiest_group() helpers end here *********************/ |
| 4228 | |
| 4229 | /** |
| 4230 | * find_busiest_group - Returns the busiest group within the sched_domain |
| 4231 | * if there is an imbalance. If there isn't an imbalance, and |
| 4232 | * the user has opted for power-savings, it returns a group whose |
| 4233 | * CPUs can be put to idle by rebalancing those tasks elsewhere, if |
| 4234 | * such a group exists. |
| 4235 | * |
| 4236 | * Also calculates the amount of weighted load which should be moved |
| 4237 | * to restore balance. |
| 4238 | * |
Randy Dunlap | cd96891 | 2012-06-08 13:18:33 -0700 | [diff] [blame] | 4239 | * @env: The load balancing environment. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4240 | * @balance: Pointer to a variable indicating if this_cpu |
| 4241 | * is the appropriate cpu to perform load balancing at this_level. |
| 4242 | * |
| 4243 | * Returns: - the busiest group if imbalance exists. |
| 4244 | * - If no imbalance and user has opted for power-savings balance, |
| 4245 | * return the least loaded group whose CPUs can be |
| 4246 | * put to idle by rebalancing its tasks onto our group. |
| 4247 | */ |
| 4248 | static struct sched_group * |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4249 | find_busiest_group(struct lb_env *env, int *balance) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4250 | { |
| 4251 | struct sd_lb_stats sds; |
| 4252 | |
| 4253 | memset(&sds, 0, sizeof(sds)); |
| 4254 | |
| 4255 | /* |
| 4256 | * Compute the various statistics relavent for load balancing at |
| 4257 | * this level. |
| 4258 | */ |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4259 | update_sd_lb_stats(env, balance, &sds); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4260 | |
Peter Zijlstra | cc57aa8 | 2011-02-21 18:55:32 +0100 | [diff] [blame] | 4261 | /* |
| 4262 | * this_cpu is not the appropriate cpu to perform load balancing at |
| 4263 | * this level. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4264 | */ |
Peter Zijlstra | 8f190fb | 2009-12-24 14:18:21 +0100 | [diff] [blame] | 4265 | if (!(*balance)) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4266 | goto ret; |
| 4267 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4268 | if ((env->idle == CPU_IDLE || env->idle == CPU_NEWLY_IDLE) && |
| 4269 | check_asym_packing(env, &sds)) |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4270 | return sds.busiest; |
| 4271 | |
Peter Zijlstra | cc57aa8 | 2011-02-21 18:55:32 +0100 | [diff] [blame] | 4272 | /* There is no busy sibling group to pull tasks from */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4273 | if (!sds.busiest || sds.busiest_nr_running == 0) |
| 4274 | goto out_balanced; |
| 4275 | |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4276 | sds.avg_load = (SCHED_POWER_SCALE * sds.total_load) / sds.total_pwr; |
Ken Chen | b0432d8 | 2011-04-07 17:23:22 -0700 | [diff] [blame] | 4277 | |
Peter Zijlstra | 866ab43 | 2011-02-21 18:56:47 +0100 | [diff] [blame] | 4278 | /* |
| 4279 | * If the busiest group is imbalanced the below checks don't |
| 4280 | * work because they assumes all things are equal, which typically |
| 4281 | * isn't true due to cpus_allowed constraints and the like. |
| 4282 | */ |
| 4283 | if (sds.group_imb) |
| 4284 | goto force_balance; |
| 4285 | |
Peter Zijlstra | cc57aa8 | 2011-02-21 18:55:32 +0100 | [diff] [blame] | 4286 | /* SD_BALANCE_NEWIDLE trumps SMP nice when underutilized */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4287 | if (env->idle == CPU_NEWLY_IDLE && sds.this_has_capacity && |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 4288 | !sds.busiest_has_capacity) |
| 4289 | goto force_balance; |
| 4290 | |
Peter Zijlstra | cc57aa8 | 2011-02-21 18:55:32 +0100 | [diff] [blame] | 4291 | /* |
| 4292 | * If the local group is more busy than the selected busiest group |
| 4293 | * don't try and pull any tasks. |
| 4294 | */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4295 | if (sds.this_load >= sds.max_load) |
| 4296 | goto out_balanced; |
| 4297 | |
Peter Zijlstra | cc57aa8 | 2011-02-21 18:55:32 +0100 | [diff] [blame] | 4298 | /* |
| 4299 | * Don't pull any tasks if this group is already above the domain |
| 4300 | * average load. |
| 4301 | */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4302 | if (sds.this_load >= sds.avg_load) |
| 4303 | goto out_balanced; |
| 4304 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4305 | if (env->idle == CPU_IDLE) { |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 4306 | /* |
| 4307 | * This cpu is idle. If the busiest group load doesn't |
| 4308 | * have more tasks than the number of available cpu's and |
| 4309 | * there is no imbalance between this and busiest group |
| 4310 | * wrt to idle cpu's, it is balanced. |
| 4311 | */ |
Peter Zijlstra | c186faf | 2011-02-21 18:52:53 +0100 | [diff] [blame] | 4312 | if ((sds.this_idle_cpus <= sds.busiest_idle_cpus + 1) && |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 4313 | sds.busiest_nr_running <= sds.busiest_group_weight) |
| 4314 | goto out_balanced; |
Peter Zijlstra | c186faf | 2011-02-21 18:52:53 +0100 | [diff] [blame] | 4315 | } else { |
| 4316 | /* |
| 4317 | * In the CPU_NEWLY_IDLE, CPU_NOT_IDLE cases, use |
| 4318 | * imbalance_pct to be conservative. |
| 4319 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4320 | if (100 * sds.max_load <= env->sd->imbalance_pct * sds.this_load) |
Peter Zijlstra | c186faf | 2011-02-21 18:52:53 +0100 | [diff] [blame] | 4321 | goto out_balanced; |
Suresh Siddha | aae6d3d | 2010-09-17 15:02:32 -0700 | [diff] [blame] | 4322 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4323 | |
Nikhil Rao | fab4762 | 2010-10-15 13:12:29 -0700 | [diff] [blame] | 4324 | force_balance: |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4325 | /* Looks like there is an imbalance. Compute it */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4326 | calculate_imbalance(env, &sds); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4327 | return sds.busiest; |
| 4328 | |
| 4329 | out_balanced: |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4330 | ret: |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4331 | env->imbalance = 0; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4332 | return NULL; |
| 4333 | } |
| 4334 | |
| 4335 | /* |
| 4336 | * find_busiest_queue - find the busiest runqueue among the cpus in group. |
| 4337 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4338 | static struct rq *find_busiest_queue(struct lb_env *env, |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4339 | struct sched_group *group) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4340 | { |
| 4341 | struct rq *busiest = NULL, *rq; |
| 4342 | unsigned long max_load = 0; |
| 4343 | int i; |
| 4344 | |
| 4345 | for_each_cpu(i, sched_group_cpus(group)) { |
| 4346 | unsigned long power = power_of(i); |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4347 | unsigned long capacity = DIV_ROUND_CLOSEST(power, |
| 4348 | SCHED_POWER_SCALE); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4349 | unsigned long wl; |
| 4350 | |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4351 | if (!capacity) |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4352 | capacity = fix_small_capacity(env->sd, group); |
Srivatsa Vaddagiri | 9d5efe0 | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4353 | |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4354 | if (!cpumask_test_cpu(i, env->cpus)) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4355 | continue; |
| 4356 | |
| 4357 | rq = cpu_rq(i); |
Thomas Gleixner | 6e40f5b | 2010-02-16 16:48:56 +0100 | [diff] [blame] | 4358 | wl = weighted_cpuload(i); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4359 | |
Thomas Gleixner | 6e40f5b | 2010-02-16 16:48:56 +0100 | [diff] [blame] | 4360 | /* |
| 4361 | * When comparing with imbalance, use weighted_cpuload() |
| 4362 | * which is not scaled with the cpu power. |
| 4363 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4364 | if (capacity && rq->nr_running == 1 && wl > env->imbalance) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4365 | continue; |
| 4366 | |
Thomas Gleixner | 6e40f5b | 2010-02-16 16:48:56 +0100 | [diff] [blame] | 4367 | /* |
| 4368 | * For the load comparisons with the other cpu's, consider |
| 4369 | * the weighted_cpuload() scaled with the cpu power, so that |
| 4370 | * the load can be moved away from the cpu that is potentially |
| 4371 | * running at a lower capacity. |
| 4372 | */ |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 4373 | wl = (wl * SCHED_POWER_SCALE) / power; |
Thomas Gleixner | 6e40f5b | 2010-02-16 16:48:56 +0100 | [diff] [blame] | 4374 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4375 | if (wl > max_load) { |
| 4376 | max_load = wl; |
| 4377 | busiest = rq; |
| 4378 | } |
| 4379 | } |
| 4380 | |
| 4381 | return busiest; |
| 4382 | } |
| 4383 | |
| 4384 | /* |
| 4385 | * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but |
| 4386 | * so long as it is large enough. |
| 4387 | */ |
| 4388 | #define MAX_PINNED_INTERVAL 512 |
| 4389 | |
| 4390 | /* Working cpumask for load_balance and load_balance_newidle. */ |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 4391 | DEFINE_PER_CPU(cpumask_var_t, load_balance_tmpmask); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4392 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4393 | static int need_active_balance(struct lb_env *env) |
Peter Zijlstra | 1af3ed3 | 2009-12-23 15:10:31 +0100 | [diff] [blame] | 4394 | { |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4395 | struct sched_domain *sd = env->sd; |
| 4396 | |
| 4397 | if (env->idle == CPU_NEWLY_IDLE) { |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4398 | |
| 4399 | /* |
| 4400 | * ASYM_PACKING needs to force migrate tasks from busy but |
| 4401 | * higher numbered CPUs in order to pack all tasks in the |
| 4402 | * lowest numbered CPUs. |
| 4403 | */ |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4404 | if ((sd->flags & SD_ASYM_PACKING) && env->src_cpu > env->dst_cpu) |
Michael Neuling | 532cb4c | 2010-06-08 14:57:02 +1000 | [diff] [blame] | 4405 | return 1; |
Peter Zijlstra | 1af3ed3 | 2009-12-23 15:10:31 +0100 | [diff] [blame] | 4406 | } |
| 4407 | |
| 4408 | return unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2); |
| 4409 | } |
| 4410 | |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4411 | static int active_load_balance_cpu_stop(void *data); |
| 4412 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4413 | /* |
| 4414 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 4415 | * tasks if there is an imbalance. |
| 4416 | */ |
| 4417 | static int load_balance(int this_cpu, struct rq *this_rq, |
| 4418 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 4419 | int *balance) |
| 4420 | { |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 4421 | int ld_moved, cur_ld_moved, active_balance = 0; |
| 4422 | int lb_iterations, max_lb_iterations; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4423 | struct sched_group *group; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4424 | struct rq *busiest; |
| 4425 | unsigned long flags; |
| 4426 | struct cpumask *cpus = __get_cpu_var(load_balance_tmpmask); |
| 4427 | |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4428 | struct lb_env env = { |
| 4429 | .sd = sd, |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 4430 | .dst_cpu = this_cpu, |
| 4431 | .dst_rq = this_rq, |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 4432 | .dst_grpmask = sched_group_cpus(sd->groups), |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4433 | .idle = idle, |
Peter Zijlstra | eb95308 | 2012-04-17 13:38:40 +0200 | [diff] [blame] | 4434 | .loop_break = sched_nr_migrate_break, |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4435 | .cpus = cpus, |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4436 | }; |
| 4437 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4438 | cpumask_copy(cpus, cpu_active_mask); |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 4439 | max_lb_iterations = cpumask_weight(env.dst_grpmask); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4440 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4441 | schedstat_inc(sd, lb_count[idle]); |
| 4442 | |
| 4443 | redo: |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4444 | group = find_busiest_group(&env, balance); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4445 | |
| 4446 | if (*balance == 0) |
| 4447 | goto out_balanced; |
| 4448 | |
| 4449 | if (!group) { |
| 4450 | schedstat_inc(sd, lb_nobusyg[idle]); |
| 4451 | goto out_balanced; |
| 4452 | } |
| 4453 | |
Michael Wang | b940313 | 2012-07-12 16:10:13 +0800 | [diff] [blame] | 4454 | busiest = find_busiest_queue(&env, group); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4455 | if (!busiest) { |
| 4456 | schedstat_inc(sd, lb_nobusyq[idle]); |
| 4457 | goto out_balanced; |
| 4458 | } |
| 4459 | |
Michael Wang | 78feefc | 2012-08-06 16:41:59 +0800 | [diff] [blame] | 4460 | BUG_ON(busiest == env.dst_rq); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4461 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4462 | schedstat_add(sd, lb_imbalance[idle], env.imbalance); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4463 | |
| 4464 | ld_moved = 0; |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 4465 | lb_iterations = 1; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4466 | if (busiest->nr_running > 1) { |
| 4467 | /* |
| 4468 | * Attempt to move tasks. If find_busiest_group has found |
| 4469 | * an imbalance but busiest->nr_running <= 1, the group is |
| 4470 | * still unbalanced. ld_moved simply stays zero, so it is |
| 4471 | * correctly treated as an imbalance. |
| 4472 | */ |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4473 | env.flags |= LBF_ALL_PINNED; |
Peter Zijlstra | c82513e | 2012-04-26 13:12:27 +0200 | [diff] [blame] | 4474 | env.src_cpu = busiest->cpu; |
| 4475 | env.src_rq = busiest; |
| 4476 | env.loop_max = min(sysctl_sched_nr_migrate, busiest->nr_running); |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4477 | |
Peter Zijlstra | a35b646 | 2012-08-08 21:46:40 +0200 | [diff] [blame] | 4478 | update_h_load(env.src_cpu); |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 4479 | more_balance: |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4480 | local_irq_save(flags); |
Michael Wang | 78feefc | 2012-08-06 16:41:59 +0800 | [diff] [blame] | 4481 | double_rq_lock(env.dst_rq, busiest); |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 4482 | |
| 4483 | /* |
| 4484 | * cur_ld_moved - load moved in current iteration |
| 4485 | * ld_moved - cumulative load moved across iterations |
| 4486 | */ |
| 4487 | cur_ld_moved = move_tasks(&env); |
| 4488 | ld_moved += cur_ld_moved; |
Michael Wang | 78feefc | 2012-08-06 16:41:59 +0800 | [diff] [blame] | 4489 | double_rq_unlock(env.dst_rq, busiest); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4490 | local_irq_restore(flags); |
| 4491 | |
Peter Zijlstra | 5d6523e | 2012-03-10 00:07:36 +0100 | [diff] [blame] | 4492 | if (env.flags & LBF_NEED_BREAK) { |
| 4493 | env.flags &= ~LBF_NEED_BREAK; |
| 4494 | goto more_balance; |
| 4495 | } |
| 4496 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4497 | /* |
| 4498 | * some other cpu did the load balance for us. |
| 4499 | */ |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 4500 | if (cur_ld_moved && env.dst_cpu != smp_processor_id()) |
| 4501 | resched_cpu(env.dst_cpu); |
| 4502 | |
| 4503 | /* |
| 4504 | * Revisit (affine) tasks on src_cpu that couldn't be moved to |
| 4505 | * us and move them to an alternate dst_cpu in our sched_group |
| 4506 | * where they can run. The upper limit on how many times we |
| 4507 | * iterate on same src_cpu is dependent on number of cpus in our |
| 4508 | * sched_group. |
| 4509 | * |
| 4510 | * This changes load balance semantics a bit on who can move |
| 4511 | * load to a given_cpu. In addition to the given_cpu itself |
| 4512 | * (or a ilb_cpu acting on its behalf where given_cpu is |
| 4513 | * nohz-idle), we now have balance_cpu in a position to move |
| 4514 | * load to given_cpu. In rare situations, this may cause |
| 4515 | * conflicts (balance_cpu and given_cpu/ilb_cpu deciding |
| 4516 | * _independently_ and at _same_ time to move some load to |
| 4517 | * given_cpu) causing exceess load to be moved to given_cpu. |
| 4518 | * This however should not happen so much in practice and |
| 4519 | * moreover subsequent load balance cycles should correct the |
| 4520 | * excess load moved. |
| 4521 | */ |
| 4522 | if ((env.flags & LBF_SOME_PINNED) && env.imbalance > 0 && |
| 4523 | lb_iterations++ < max_lb_iterations) { |
| 4524 | |
Michael Wang | 78feefc | 2012-08-06 16:41:59 +0800 | [diff] [blame] | 4525 | env.dst_rq = cpu_rq(env.new_dst_cpu); |
Srivatsa Vaddagiri | 88b8dac | 2012-06-19 17:43:15 +0530 | [diff] [blame] | 4526 | env.dst_cpu = env.new_dst_cpu; |
| 4527 | env.flags &= ~LBF_SOME_PINNED; |
| 4528 | env.loop = 0; |
| 4529 | env.loop_break = sched_nr_migrate_break; |
| 4530 | /* |
| 4531 | * Go back to "more_balance" rather than "redo" since we |
| 4532 | * need to continue with same src_cpu. |
| 4533 | */ |
| 4534 | goto more_balance; |
| 4535 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4536 | |
| 4537 | /* All tasks on this runqueue were pinned by CPU affinity */ |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4538 | if (unlikely(env.flags & LBF_ALL_PINNED)) { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4539 | cpumask_clear_cpu(cpu_of(busiest), cpus); |
Prashanth Nageshappa | bbf18b1 | 2012-06-19 17:52:07 +0530 | [diff] [blame] | 4540 | if (!cpumask_empty(cpus)) { |
| 4541 | env.loop = 0; |
| 4542 | env.loop_break = sched_nr_migrate_break; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4543 | goto redo; |
Prashanth Nageshappa | bbf18b1 | 2012-06-19 17:52:07 +0530 | [diff] [blame] | 4544 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4545 | goto out_balanced; |
| 4546 | } |
| 4547 | } |
| 4548 | |
| 4549 | if (!ld_moved) { |
| 4550 | schedstat_inc(sd, lb_failed[idle]); |
Venkatesh Pallipadi | 58b26c4 | 2010-09-10 18:19:17 -0700 | [diff] [blame] | 4551 | /* |
| 4552 | * Increment the failure counter only on periodic balance. |
| 4553 | * We do not want newidle balance, which can be very |
| 4554 | * frequent, pollute the failure counter causing |
| 4555 | * excessive cache_hot migrations and active balances. |
| 4556 | */ |
| 4557 | if (idle != CPU_NEWLY_IDLE) |
| 4558 | sd->nr_balance_failed++; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4559 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4560 | if (need_active_balance(&env)) { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4561 | raw_spin_lock_irqsave(&busiest->lock, flags); |
| 4562 | |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4563 | /* don't kick the active_load_balance_cpu_stop, |
| 4564 | * if the curr task on busiest cpu can't be |
| 4565 | * moved to this_cpu |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4566 | */ |
| 4567 | if (!cpumask_test_cpu(this_cpu, |
Peter Zijlstra | fa17b50 | 2011-06-16 12:23:22 +0200 | [diff] [blame] | 4568 | tsk_cpus_allowed(busiest->curr))) { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4569 | raw_spin_unlock_irqrestore(&busiest->lock, |
| 4570 | flags); |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4571 | env.flags |= LBF_ALL_PINNED; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4572 | goto out_one_pinned; |
| 4573 | } |
| 4574 | |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4575 | /* |
| 4576 | * ->active_balance synchronizes accesses to |
| 4577 | * ->active_balance_work. Once set, it's cleared |
| 4578 | * only after active load balance is finished. |
| 4579 | */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4580 | if (!busiest->active_balance) { |
| 4581 | busiest->active_balance = 1; |
| 4582 | busiest->push_cpu = this_cpu; |
| 4583 | active_balance = 1; |
| 4584 | } |
| 4585 | raw_spin_unlock_irqrestore(&busiest->lock, flags); |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4586 | |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4587 | if (active_balance) { |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4588 | stop_one_cpu_nowait(cpu_of(busiest), |
| 4589 | active_load_balance_cpu_stop, busiest, |
| 4590 | &busiest->active_balance_work); |
Peter Zijlstra | bd939f4 | 2012-05-02 14:20:37 +0200 | [diff] [blame] | 4591 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4592 | |
| 4593 | /* |
| 4594 | * We've kicked active balancing, reset the failure |
| 4595 | * counter. |
| 4596 | */ |
| 4597 | sd->nr_balance_failed = sd->cache_nice_tries+1; |
| 4598 | } |
| 4599 | } else |
| 4600 | sd->nr_balance_failed = 0; |
| 4601 | |
| 4602 | if (likely(!active_balance)) { |
| 4603 | /* We were unbalanced, so reset the balancing interval */ |
| 4604 | sd->balance_interval = sd->min_interval; |
| 4605 | } else { |
| 4606 | /* |
| 4607 | * If we've begun active balancing, start to back off. This |
| 4608 | * case may not be covered by the all_pinned logic if there |
| 4609 | * is only 1 task on the busy runqueue (because we don't call |
| 4610 | * move_tasks). |
| 4611 | */ |
| 4612 | if (sd->balance_interval < sd->max_interval) |
| 4613 | sd->balance_interval *= 2; |
| 4614 | } |
| 4615 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4616 | goto out; |
| 4617 | |
| 4618 | out_balanced: |
| 4619 | schedstat_inc(sd, lb_balanced[idle]); |
| 4620 | |
| 4621 | sd->nr_balance_failed = 0; |
| 4622 | |
| 4623 | out_one_pinned: |
| 4624 | /* tune up the balancing interval */ |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4625 | if (((env.flags & LBF_ALL_PINNED) && |
Peter Zijlstra | 5b54b56 | 2011-09-22 15:23:13 +0200 | [diff] [blame] | 4626 | sd->balance_interval < MAX_PINNED_INTERVAL) || |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4627 | (sd->balance_interval < sd->max_interval)) |
| 4628 | sd->balance_interval *= 2; |
| 4629 | |
Venkatesh Pallipadi | 46e49b3 | 2011-02-14 14:38:50 -0800 | [diff] [blame] | 4630 | ld_moved = 0; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4631 | out: |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4632 | return ld_moved; |
| 4633 | } |
| 4634 | |
| 4635 | /* |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4636 | * idle_balance is called by schedule() if this_cpu is about to become |
| 4637 | * idle. Attempts to pull tasks from other CPUs. |
| 4638 | */ |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 4639 | void idle_balance(int this_cpu, struct rq *this_rq) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4640 | { |
| 4641 | struct sched_domain *sd; |
| 4642 | int pulled_task = 0; |
| 4643 | unsigned long next_balance = jiffies + HZ; |
| 4644 | |
| 4645 | this_rq->idle_stamp = this_rq->clock; |
| 4646 | |
| 4647 | if (this_rq->avg_idle < sysctl_sched_migration_cost) |
| 4648 | return; |
| 4649 | |
Peter Zijlstra | f492e12 | 2009-12-23 15:29:42 +0100 | [diff] [blame] | 4650 | /* |
| 4651 | * Drop the rq->lock, but keep IRQ/preempt disabled. |
| 4652 | */ |
| 4653 | raw_spin_unlock(&this_rq->lock); |
| 4654 | |
Paul Turner | c66eaf6 | 2010-11-15 15:47:07 -0800 | [diff] [blame] | 4655 | update_shares(this_cpu); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 4656 | rcu_read_lock(); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4657 | for_each_domain(this_cpu, sd) { |
| 4658 | unsigned long interval; |
Peter Zijlstra | f492e12 | 2009-12-23 15:29:42 +0100 | [diff] [blame] | 4659 | int balance = 1; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4660 | |
| 4661 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 4662 | continue; |
| 4663 | |
Peter Zijlstra | f492e12 | 2009-12-23 15:29:42 +0100 | [diff] [blame] | 4664 | if (sd->flags & SD_BALANCE_NEWIDLE) { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4665 | /* If we've pulled tasks over stop searching: */ |
Peter Zijlstra | f492e12 | 2009-12-23 15:29:42 +0100 | [diff] [blame] | 4666 | pulled_task = load_balance(this_cpu, this_rq, |
| 4667 | sd, CPU_NEWLY_IDLE, &balance); |
| 4668 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4669 | |
| 4670 | interval = msecs_to_jiffies(sd->balance_interval); |
| 4671 | if (time_after(next_balance, sd->last_balance + interval)) |
| 4672 | next_balance = sd->last_balance + interval; |
Nikhil Rao | d5ad140 | 2010-11-17 11:42:04 -0800 | [diff] [blame] | 4673 | if (pulled_task) { |
| 4674 | this_rq->idle_stamp = 0; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4675 | break; |
Nikhil Rao | d5ad140 | 2010-11-17 11:42:04 -0800 | [diff] [blame] | 4676 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4677 | } |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 4678 | rcu_read_unlock(); |
Peter Zijlstra | f492e12 | 2009-12-23 15:29:42 +0100 | [diff] [blame] | 4679 | |
| 4680 | raw_spin_lock(&this_rq->lock); |
| 4681 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4682 | if (pulled_task || time_after(jiffies, this_rq->next_balance)) { |
| 4683 | /* |
| 4684 | * We are going idle. next_balance may be set based on |
| 4685 | * a busy processor. So reset next_balance. |
| 4686 | */ |
| 4687 | this_rq->next_balance = next_balance; |
| 4688 | } |
| 4689 | } |
| 4690 | |
| 4691 | /* |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4692 | * active_load_balance_cpu_stop is run by cpu stopper. It pushes |
| 4693 | * running tasks off the busiest CPU onto idle CPUs. It requires at |
| 4694 | * least 1 task to be running on each physical CPU where possible, and |
| 4695 | * avoids physical / logical imbalances. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4696 | */ |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4697 | static int active_load_balance_cpu_stop(void *data) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4698 | { |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4699 | struct rq *busiest_rq = data; |
| 4700 | int busiest_cpu = cpu_of(busiest_rq); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4701 | int target_cpu = busiest_rq->push_cpu; |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4702 | struct rq *target_rq = cpu_rq(target_cpu); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4703 | struct sched_domain *sd; |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4704 | |
| 4705 | raw_spin_lock_irq(&busiest_rq->lock); |
| 4706 | |
| 4707 | /* make sure the requested cpu hasn't gone down in the meantime */ |
| 4708 | if (unlikely(busiest_cpu != smp_processor_id() || |
| 4709 | !busiest_rq->active_balance)) |
| 4710 | goto out_unlock; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4711 | |
| 4712 | /* Is there any task to move? */ |
| 4713 | if (busiest_rq->nr_running <= 1) |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4714 | goto out_unlock; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4715 | |
| 4716 | /* |
| 4717 | * This condition is "impossible", if it occurs |
| 4718 | * we need to fix it. Originally reported by |
| 4719 | * Bjorn Helgaas on a 128-cpu setup. |
| 4720 | */ |
| 4721 | BUG_ON(busiest_rq == target_rq); |
| 4722 | |
| 4723 | /* move a task from busiest_rq to target_rq */ |
| 4724 | double_lock_balance(busiest_rq, target_rq); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4725 | |
| 4726 | /* Search for an sd spanning us and the target CPU. */ |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 4727 | rcu_read_lock(); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4728 | for_each_domain(target_cpu, sd) { |
| 4729 | if ((sd->flags & SD_LOAD_BALANCE) && |
| 4730 | cpumask_test_cpu(busiest_cpu, sched_domain_span(sd))) |
| 4731 | break; |
| 4732 | } |
| 4733 | |
| 4734 | if (likely(sd)) { |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4735 | struct lb_env env = { |
| 4736 | .sd = sd, |
Peter Zijlstra | ddcdf6e | 2012-02-22 19:27:40 +0100 | [diff] [blame] | 4737 | .dst_cpu = target_cpu, |
| 4738 | .dst_rq = target_rq, |
| 4739 | .src_cpu = busiest_rq->cpu, |
| 4740 | .src_rq = busiest_rq, |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4741 | .idle = CPU_IDLE, |
| 4742 | }; |
| 4743 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4744 | schedstat_inc(sd, alb_count); |
| 4745 | |
Peter Zijlstra | 8e45cb5 | 2012-02-22 12:47:19 +0100 | [diff] [blame] | 4746 | if (move_one_task(&env)) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4747 | schedstat_inc(sd, alb_pushed); |
| 4748 | else |
| 4749 | schedstat_inc(sd, alb_failed); |
| 4750 | } |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 4751 | rcu_read_unlock(); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4752 | double_unlock_balance(busiest_rq, target_rq); |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 4753 | out_unlock: |
| 4754 | busiest_rq->active_balance = 0; |
| 4755 | raw_spin_unlock_irq(&busiest_rq->lock); |
| 4756 | return 0; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4757 | } |
| 4758 | |
| 4759 | #ifdef CONFIG_NO_HZ |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4760 | /* |
| 4761 | * idle load balancing details |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4762 | * - When one of the busy CPUs notice that there may be an idle rebalancing |
| 4763 | * needed, they will kick the idle load balancer, which then does idle |
| 4764 | * load balancing for all the idle CPUs. |
| 4765 | */ |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4766 | static struct { |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4767 | cpumask_var_t idle_cpus_mask; |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 4768 | atomic_t nr_cpus; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4769 | unsigned long next_balance; /* in jiffy units */ |
| 4770 | } nohz ____cacheline_aligned; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4771 | |
Peter Zijlstra | 8e7fbcb | 2012-01-09 11:28:35 +0100 | [diff] [blame] | 4772 | static inline int find_new_ilb(int call_cpu) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4773 | { |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 4774 | int ilb = cpumask_first(nohz.idle_cpus_mask); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4775 | |
Suresh Siddha | 786d6dc | 2011-12-01 17:07:35 -0800 | [diff] [blame] | 4776 | if (ilb < nr_cpu_ids && idle_cpu(ilb)) |
| 4777 | return ilb; |
| 4778 | |
| 4779 | return nr_cpu_ids; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4780 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4781 | |
| 4782 | /* |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4783 | * Kick a CPU to do the nohz balancing, if it is time for it. We pick the |
| 4784 | * nohz_load_balancer CPU (if there is one) otherwise fallback to any idle |
| 4785 | * CPU (if there is one). |
| 4786 | */ |
| 4787 | static void nohz_balancer_kick(int cpu) |
| 4788 | { |
| 4789 | int ilb_cpu; |
| 4790 | |
| 4791 | nohz.next_balance++; |
| 4792 | |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 4793 | ilb_cpu = find_new_ilb(cpu); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4794 | |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 4795 | if (ilb_cpu >= nr_cpu_ids) |
| 4796 | return; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4797 | |
Suresh Siddha | cd490c5 | 2011-12-06 11:26:34 -0800 | [diff] [blame] | 4798 | if (test_and_set_bit(NOHZ_BALANCE_KICK, nohz_flags(ilb_cpu))) |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 4799 | return; |
| 4800 | /* |
| 4801 | * Use smp_send_reschedule() instead of resched_cpu(). |
| 4802 | * This way we generate a sched IPI on the target cpu which |
| 4803 | * is idle. And the softirq performing nohz idle load balance |
| 4804 | * will be run before returning from the IPI. |
| 4805 | */ |
| 4806 | smp_send_reschedule(ilb_cpu); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4807 | return; |
| 4808 | } |
| 4809 | |
Alex Shi | c1cc017 | 2012-09-10 15:10:58 +0800 | [diff] [blame] | 4810 | static inline void nohz_balance_exit_idle(int cpu) |
Suresh Siddha | 7132596 | 2012-01-19 18:28:57 -0800 | [diff] [blame] | 4811 | { |
| 4812 | if (unlikely(test_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)))) { |
| 4813 | cpumask_clear_cpu(cpu, nohz.idle_cpus_mask); |
| 4814 | atomic_dec(&nohz.nr_cpus); |
| 4815 | clear_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)); |
| 4816 | } |
| 4817 | } |
| 4818 | |
Suresh Siddha | 69e1e81 | 2011-12-01 17:07:33 -0800 | [diff] [blame] | 4819 | static inline void set_cpu_sd_state_busy(void) |
| 4820 | { |
| 4821 | struct sched_domain *sd; |
| 4822 | int cpu = smp_processor_id(); |
| 4823 | |
| 4824 | if (!test_bit(NOHZ_IDLE, nohz_flags(cpu))) |
| 4825 | return; |
| 4826 | clear_bit(NOHZ_IDLE, nohz_flags(cpu)); |
| 4827 | |
| 4828 | rcu_read_lock(); |
| 4829 | for_each_domain(cpu, sd) |
| 4830 | atomic_inc(&sd->groups->sgp->nr_busy_cpus); |
| 4831 | rcu_read_unlock(); |
| 4832 | } |
| 4833 | |
| 4834 | void set_cpu_sd_state_idle(void) |
| 4835 | { |
| 4836 | struct sched_domain *sd; |
| 4837 | int cpu = smp_processor_id(); |
| 4838 | |
| 4839 | if (test_bit(NOHZ_IDLE, nohz_flags(cpu))) |
| 4840 | return; |
| 4841 | set_bit(NOHZ_IDLE, nohz_flags(cpu)); |
| 4842 | |
| 4843 | rcu_read_lock(); |
| 4844 | for_each_domain(cpu, sd) |
| 4845 | atomic_dec(&sd->groups->sgp->nr_busy_cpus); |
| 4846 | rcu_read_unlock(); |
| 4847 | } |
| 4848 | |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4849 | /* |
Alex Shi | c1cc017 | 2012-09-10 15:10:58 +0800 | [diff] [blame] | 4850 | * This routine will record that the cpu is going idle with tick stopped. |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 4851 | * This info will be used in performing idle load balancing in the future. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4852 | */ |
Alex Shi | c1cc017 | 2012-09-10 15:10:58 +0800 | [diff] [blame] | 4853 | void nohz_balance_enter_idle(int cpu) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4854 | { |
Suresh Siddha | 7132596 | 2012-01-19 18:28:57 -0800 | [diff] [blame] | 4855 | /* |
| 4856 | * If this cpu is going down, then nothing needs to be done. |
| 4857 | */ |
| 4858 | if (!cpu_active(cpu)) |
| 4859 | return; |
| 4860 | |
Alex Shi | c1cc017 | 2012-09-10 15:10:58 +0800 | [diff] [blame] | 4861 | if (test_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu))) |
| 4862 | return; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4863 | |
Alex Shi | c1cc017 | 2012-09-10 15:10:58 +0800 | [diff] [blame] | 4864 | cpumask_set_cpu(cpu, nohz.idle_cpus_mask); |
| 4865 | atomic_inc(&nohz.nr_cpus); |
| 4866 | set_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4867 | } |
Suresh Siddha | 7132596 | 2012-01-19 18:28:57 -0800 | [diff] [blame] | 4868 | |
| 4869 | static int __cpuinit sched_ilb_notifier(struct notifier_block *nfb, |
| 4870 | unsigned long action, void *hcpu) |
| 4871 | { |
| 4872 | switch (action & ~CPU_TASKS_FROZEN) { |
| 4873 | case CPU_DYING: |
Alex Shi | c1cc017 | 2012-09-10 15:10:58 +0800 | [diff] [blame] | 4874 | nohz_balance_exit_idle(smp_processor_id()); |
Suresh Siddha | 7132596 | 2012-01-19 18:28:57 -0800 | [diff] [blame] | 4875 | return NOTIFY_OK; |
| 4876 | default: |
| 4877 | return NOTIFY_DONE; |
| 4878 | } |
| 4879 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4880 | #endif |
| 4881 | |
| 4882 | static DEFINE_SPINLOCK(balancing); |
| 4883 | |
Peter Zijlstra | 49c022e | 2011-04-05 10:14:25 +0200 | [diff] [blame] | 4884 | /* |
| 4885 | * Scale the max load_balance interval with the number of CPUs in the system. |
| 4886 | * This trades load-balance latency on larger machines for less cross talk. |
| 4887 | */ |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 4888 | void update_max_interval(void) |
Peter Zijlstra | 49c022e | 2011-04-05 10:14:25 +0200 | [diff] [blame] | 4889 | { |
| 4890 | max_load_balance_interval = HZ*num_online_cpus()/10; |
| 4891 | } |
| 4892 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4893 | /* |
| 4894 | * It checks each scheduling domain to see if it is due to be balanced, |
| 4895 | * and initiates a balancing operation if so. |
| 4896 | * |
| 4897 | * Balancing parameters are set up in arch_init_sched_domains. |
| 4898 | */ |
| 4899 | static void rebalance_domains(int cpu, enum cpu_idle_type idle) |
| 4900 | { |
| 4901 | int balance = 1; |
| 4902 | struct rq *rq = cpu_rq(cpu); |
| 4903 | unsigned long interval; |
Peter Zijlstra | 04f733b | 2012-05-11 00:12:02 +0200 | [diff] [blame] | 4904 | struct sched_domain *sd; |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4905 | /* Earliest time when we have to do rebalance again */ |
| 4906 | unsigned long next_balance = jiffies + 60*HZ; |
| 4907 | int update_next_balance = 0; |
| 4908 | int need_serialize; |
| 4909 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 4910 | update_shares(cpu); |
| 4911 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 4912 | rcu_read_lock(); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4913 | for_each_domain(cpu, sd) { |
| 4914 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 4915 | continue; |
| 4916 | |
| 4917 | interval = sd->balance_interval; |
| 4918 | if (idle != CPU_IDLE) |
| 4919 | interval *= sd->busy_factor; |
| 4920 | |
| 4921 | /* scale ms to jiffies */ |
| 4922 | interval = msecs_to_jiffies(interval); |
Peter Zijlstra | 49c022e | 2011-04-05 10:14:25 +0200 | [diff] [blame] | 4923 | interval = clamp(interval, 1UL, max_load_balance_interval); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4924 | |
| 4925 | need_serialize = sd->flags & SD_SERIALIZE; |
| 4926 | |
| 4927 | if (need_serialize) { |
| 4928 | if (!spin_trylock(&balancing)) |
| 4929 | goto out; |
| 4930 | } |
| 4931 | |
| 4932 | if (time_after_eq(jiffies, sd->last_balance + interval)) { |
| 4933 | if (load_balance(cpu, rq, sd, idle, &balance)) { |
| 4934 | /* |
| 4935 | * We've pulled tasks over so either we're no |
Peter Zijlstra | c186faf | 2011-02-21 18:52:53 +0100 | [diff] [blame] | 4936 | * longer idle. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4937 | */ |
| 4938 | idle = CPU_NOT_IDLE; |
| 4939 | } |
| 4940 | sd->last_balance = jiffies; |
| 4941 | } |
| 4942 | if (need_serialize) |
| 4943 | spin_unlock(&balancing); |
| 4944 | out: |
| 4945 | if (time_after(next_balance, sd->last_balance + interval)) { |
| 4946 | next_balance = sd->last_balance + interval; |
| 4947 | update_next_balance = 1; |
| 4948 | } |
| 4949 | |
| 4950 | /* |
| 4951 | * Stop the load balance at this level. There is another |
| 4952 | * CPU in our sched group which is doing load balancing more |
| 4953 | * actively. |
| 4954 | */ |
| 4955 | if (!balance) |
| 4956 | break; |
| 4957 | } |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 4958 | rcu_read_unlock(); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 4959 | |
| 4960 | /* |
| 4961 | * next_balance will be updated only when there is a need. |
| 4962 | * When the cpu is attached to null domain for ex, it will not be |
| 4963 | * updated. |
| 4964 | */ |
| 4965 | if (likely(update_next_balance)) |
| 4966 | rq->next_balance = next_balance; |
| 4967 | } |
| 4968 | |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4969 | #ifdef CONFIG_NO_HZ |
| 4970 | /* |
| 4971 | * In CONFIG_NO_HZ case, the idle balance kickee will do the |
| 4972 | * rebalancing for all the cpus for whom scheduler ticks are stopped. |
| 4973 | */ |
| 4974 | static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle) |
| 4975 | { |
| 4976 | struct rq *this_rq = cpu_rq(this_cpu); |
| 4977 | struct rq *rq; |
| 4978 | int balance_cpu; |
| 4979 | |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 4980 | if (idle != CPU_IDLE || |
| 4981 | !test_bit(NOHZ_BALANCE_KICK, nohz_flags(this_cpu))) |
| 4982 | goto end; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4983 | |
| 4984 | for_each_cpu(balance_cpu, nohz.idle_cpus_mask) { |
Suresh Siddha | 8a6d42d | 2011-12-06 11:19:37 -0800 | [diff] [blame] | 4985 | if (balance_cpu == this_cpu || !idle_cpu(balance_cpu)) |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4986 | continue; |
| 4987 | |
| 4988 | /* |
| 4989 | * If this cpu gets work to do, stop the load balancing |
| 4990 | * work being done for other cpus. Next load |
| 4991 | * balancing owner will pick it up. |
| 4992 | */ |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 4993 | if (need_resched()) |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4994 | break; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 4995 | |
Vincent Guittot | 5ed4f1d | 2012-09-13 06:11:26 +0200 | [diff] [blame] | 4996 | rq = cpu_rq(balance_cpu); |
| 4997 | |
| 4998 | raw_spin_lock_irq(&rq->lock); |
| 4999 | update_rq_clock(rq); |
| 5000 | update_idle_cpu_load(rq); |
| 5001 | raw_spin_unlock_irq(&rq->lock); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5002 | |
| 5003 | rebalance_domains(balance_cpu, CPU_IDLE); |
| 5004 | |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5005 | if (time_after(this_rq->next_balance, rq->next_balance)) |
| 5006 | this_rq->next_balance = rq->next_balance; |
| 5007 | } |
| 5008 | nohz.next_balance = this_rq->next_balance; |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 5009 | end: |
| 5010 | clear_bit(NOHZ_BALANCE_KICK, nohz_flags(this_cpu)); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5011 | } |
| 5012 | |
| 5013 | /* |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5014 | * Current heuristic for kicking the idle load balancer in the presence |
| 5015 | * of an idle cpu is the system. |
| 5016 | * - This rq has more than one task. |
| 5017 | * - At any scheduler domain level, this cpu's scheduler group has multiple |
| 5018 | * busy cpu's exceeding the group's power. |
| 5019 | * - For SD_ASYM_PACKING, if the lower numbered cpu's in the scheduler |
| 5020 | * domain span are idle. |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5021 | */ |
| 5022 | static inline int nohz_kick_needed(struct rq *rq, int cpu) |
| 5023 | { |
| 5024 | unsigned long now = jiffies; |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5025 | struct sched_domain *sd; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5026 | |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 5027 | if (unlikely(idle_cpu(cpu))) |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5028 | return 0; |
| 5029 | |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 5030 | /* |
| 5031 | * We may be recently in ticked or tickless idle mode. At the first |
| 5032 | * busy tick after returning from idle, we will update the busy stats. |
| 5033 | */ |
Suresh Siddha | 69e1e81 | 2011-12-01 17:07:33 -0800 | [diff] [blame] | 5034 | set_cpu_sd_state_busy(); |
Alex Shi | c1cc017 | 2012-09-10 15:10:58 +0800 | [diff] [blame] | 5035 | nohz_balance_exit_idle(cpu); |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5036 | |
| 5037 | /* |
| 5038 | * None are in tickless mode and hence no need for NOHZ idle load |
| 5039 | * balancing. |
| 5040 | */ |
| 5041 | if (likely(!atomic_read(&nohz.nr_cpus))) |
| 5042 | return 0; |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 5043 | |
| 5044 | if (time_before(now, nohz.next_balance)) |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5045 | return 0; |
| 5046 | |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5047 | if (rq->nr_running >= 2) |
| 5048 | goto need_kick; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5049 | |
Peter Zijlstra | 067491b | 2011-12-07 14:32:08 +0100 | [diff] [blame] | 5050 | rcu_read_lock(); |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5051 | for_each_domain(cpu, sd) { |
| 5052 | struct sched_group *sg = sd->groups; |
| 5053 | struct sched_group_power *sgp = sg->sgp; |
| 5054 | int nr_busy = atomic_read(&sgp->nr_busy_cpus); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5055 | |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5056 | if (sd->flags & SD_SHARE_PKG_RESOURCES && nr_busy > 1) |
Peter Zijlstra | 067491b | 2011-12-07 14:32:08 +0100 | [diff] [blame] | 5057 | goto need_kick_unlock; |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5058 | |
| 5059 | if (sd->flags & SD_ASYM_PACKING && nr_busy != sg->group_weight |
| 5060 | && (cpumask_first_and(nohz.idle_cpus_mask, |
| 5061 | sched_domain_span(sd)) < cpu)) |
Peter Zijlstra | 067491b | 2011-12-07 14:32:08 +0100 | [diff] [blame] | 5062 | goto need_kick_unlock; |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5063 | |
| 5064 | if (!(sd->flags & (SD_SHARE_PKG_RESOURCES | SD_ASYM_PACKING))) |
| 5065 | break; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5066 | } |
Peter Zijlstra | 067491b | 2011-12-07 14:32:08 +0100 | [diff] [blame] | 5067 | rcu_read_unlock(); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5068 | return 0; |
Peter Zijlstra | 067491b | 2011-12-07 14:32:08 +0100 | [diff] [blame] | 5069 | |
| 5070 | need_kick_unlock: |
| 5071 | rcu_read_unlock(); |
Suresh Siddha | 0b005cf | 2011-12-01 17:07:34 -0800 | [diff] [blame] | 5072 | need_kick: |
| 5073 | return 1; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5074 | } |
| 5075 | #else |
| 5076 | static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle) { } |
| 5077 | #endif |
| 5078 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5079 | /* |
| 5080 | * run_rebalance_domains is triggered when needed from the scheduler tick. |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5081 | * Also triggered for nohz idle balancing (with nohz_balancing_kick set). |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5082 | */ |
| 5083 | static void run_rebalance_domains(struct softirq_action *h) |
| 5084 | { |
| 5085 | int this_cpu = smp_processor_id(); |
| 5086 | struct rq *this_rq = cpu_rq(this_cpu); |
Suresh Siddha | 6eb57e0 | 2011-10-03 15:09:01 -0700 | [diff] [blame] | 5087 | enum cpu_idle_type idle = this_rq->idle_balance ? |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5088 | CPU_IDLE : CPU_NOT_IDLE; |
| 5089 | |
| 5090 | rebalance_domains(this_cpu, idle); |
| 5091 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5092 | /* |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5093 | * If this cpu has a pending nohz_balance_kick, then do the |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5094 | * balancing on behalf of the other idle cpus whose ticks are |
| 5095 | * stopped. |
| 5096 | */ |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5097 | nohz_idle_balance(this_cpu, idle); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5098 | } |
| 5099 | |
| 5100 | static inline int on_null_domain(int cpu) |
| 5101 | { |
Paul E. McKenney | 90a6501 | 2010-02-28 08:32:18 -0800 | [diff] [blame] | 5102 | return !rcu_dereference_sched(cpu_rq(cpu)->sd); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5103 | } |
| 5104 | |
| 5105 | /* |
| 5106 | * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing. |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5107 | */ |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5108 | void trigger_load_balance(struct rq *rq, int cpu) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5109 | { |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5110 | /* Don't need to rebalance while attached to NULL domain */ |
| 5111 | if (time_after_eq(jiffies, rq->next_balance) && |
| 5112 | likely(!on_null_domain(cpu))) |
| 5113 | raise_softirq(SCHED_SOFTIRQ); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5114 | #ifdef CONFIG_NO_HZ |
Suresh Siddha | 1c792db | 2011-12-01 17:07:32 -0800 | [diff] [blame] | 5115 | if (nohz_kick_needed(rq, cpu) && likely(!on_null_domain(cpu))) |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 5116 | nohz_balancer_kick(cpu); |
| 5117 | #endif |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 5118 | } |
| 5119 | |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 5120 | static void rq_online_fair(struct rq *rq) |
| 5121 | { |
| 5122 | update_sysctl(); |
| 5123 | } |
| 5124 | |
| 5125 | static void rq_offline_fair(struct rq *rq) |
| 5126 | { |
| 5127 | update_sysctl(); |
Peter Boonstoppel | a4c96ae | 2012-08-09 15:34:47 -0700 | [diff] [blame] | 5128 | |
| 5129 | /* Ensure any throttled groups are reachable by pick_next_task */ |
| 5130 | unthrottle_offline_cfs_rqs(rq); |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 5131 | } |
| 5132 | |
Dhaval Giani | 55e12e5 | 2008-06-24 23:39:43 +0530 | [diff] [blame] | 5133 | #endif /* CONFIG_SMP */ |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 5134 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5135 | /* |
| 5136 | * scheduler tick hitting a task of our scheduling class: |
| 5137 | */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 5138 | static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5139 | { |
| 5140 | struct cfs_rq *cfs_rq; |
| 5141 | struct sched_entity *se = &curr->se; |
| 5142 | |
| 5143 | for_each_sched_entity(se) { |
| 5144 | cfs_rq = cfs_rq_of(se); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 5145 | entity_tick(cfs_rq, se, queued); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5146 | } |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 5147 | |
| 5148 | if (sched_feat_numa(NUMA)) |
| 5149 | task_tick_numa(rq, curr); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5150 | } |
| 5151 | |
| 5152 | /* |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5153 | * called on fork with the child task as argument from the parent's context |
| 5154 | * - child not yet on the tasklist |
| 5155 | * - preemption disabled |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5156 | */ |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5157 | static void task_fork_fair(struct task_struct *p) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5158 | { |
Daisuke Nishimura | 4fc420c | 2011-12-15 14:36:55 +0900 | [diff] [blame] | 5159 | struct cfs_rq *cfs_rq; |
| 5160 | struct sched_entity *se = &p->se, *curr; |
Ingo Molnar | 00bf7bf | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5161 | int this_cpu = smp_processor_id(); |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5162 | struct rq *rq = this_rq(); |
| 5163 | unsigned long flags; |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5164 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 5165 | raw_spin_lock_irqsave(&rq->lock, flags); |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5166 | |
Peter Zijlstra | 861d034 | 2010-08-19 13:31:43 +0200 | [diff] [blame] | 5167 | update_rq_clock(rq); |
| 5168 | |
Daisuke Nishimura | 4fc420c | 2011-12-15 14:36:55 +0900 | [diff] [blame] | 5169 | cfs_rq = task_cfs_rq(current); |
| 5170 | curr = cfs_rq->curr; |
| 5171 | |
Paul E. McKenney | b0a0f66 | 2010-10-06 17:32:51 -0700 | [diff] [blame] | 5172 | if (unlikely(task_cpu(p) != this_cpu)) { |
| 5173 | rcu_read_lock(); |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5174 | __set_task_cpu(p, this_cpu); |
Paul E. McKenney | b0a0f66 | 2010-10-06 17:32:51 -0700 | [diff] [blame] | 5175 | rcu_read_unlock(); |
| 5176 | } |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5177 | |
Ting Yang | 7109c44 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 5178 | update_curr(cfs_rq); |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5179 | |
Mike Galbraith | b5d9d73 | 2009-09-08 11:12:28 +0200 | [diff] [blame] | 5180 | if (curr) |
| 5181 | se->vruntime = curr->vruntime; |
Peter Zijlstra | aeb73b0 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 5182 | place_entity(cfs_rq, se, 1); |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 5183 | |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5184 | if (sysctl_sched_child_runs_first && curr && entity_before(curr, se)) { |
Dmitry Adamushko | 87fefa3 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5185 | /* |
Ingo Molnar | edcb60a | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5186 | * Upon rescheduling, sched_class::put_prev_task() will place |
| 5187 | * 'current' within the tree based on its new key value. |
| 5188 | */ |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 5189 | swap(curr->vruntime, se->vruntime); |
Bharata B Rao | aec0a51 | 2008-08-28 14:42:49 +0530 | [diff] [blame] | 5190 | resched_task(rq->curr); |
Peter Zijlstra | 4d78e7b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 5191 | } |
| 5192 | |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 5193 | se->vruntime -= cfs_rq->min_vruntime; |
| 5194 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 5195 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5196 | } |
| 5197 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5198 | /* |
| 5199 | * Priority of the task has changed. Check to see if we preempt |
| 5200 | * the current task. |
| 5201 | */ |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5202 | static void |
| 5203 | prio_changed_fair(struct rq *rq, struct task_struct *p, int oldprio) |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5204 | { |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5205 | if (!p->se.on_rq) |
| 5206 | return; |
| 5207 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5208 | /* |
| 5209 | * Reschedule if we are currently running on this runqueue and |
| 5210 | * our priority decreased, or if we are not currently running on |
| 5211 | * this runqueue and our priority is higher than the current's |
| 5212 | */ |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5213 | if (rq->curr == p) { |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5214 | if (p->prio > oldprio) |
| 5215 | resched_task(rq->curr); |
| 5216 | } else |
Peter Zijlstra | 15afe09 | 2008-09-20 23:38:02 +0200 | [diff] [blame] | 5217 | check_preempt_curr(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5218 | } |
| 5219 | |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5220 | static void switched_from_fair(struct rq *rq, struct task_struct *p) |
| 5221 | { |
| 5222 | struct sched_entity *se = &p->se; |
| 5223 | struct cfs_rq *cfs_rq = cfs_rq_of(se); |
| 5224 | |
| 5225 | /* |
| 5226 | * Ensure the task's vruntime is normalized, so that when its |
| 5227 | * switched back to the fair class the enqueue_entity(.flags=0) will |
| 5228 | * do the right thing. |
| 5229 | * |
| 5230 | * If it was on_rq, then the dequeue_entity(.flags=0) will already |
| 5231 | * have normalized the vruntime, if it was !on_rq, then only when |
| 5232 | * the task is sleeping will it still have non-normalized vruntime. |
| 5233 | */ |
| 5234 | if (!se->on_rq && p->state != TASK_RUNNING) { |
| 5235 | /* |
| 5236 | * Fix up our vruntime so that the current sleep doesn't |
| 5237 | * cause 'unlimited' sleep bonus. |
| 5238 | */ |
| 5239 | place_entity(cfs_rq, se, 0); |
| 5240 | se->vruntime -= cfs_rq->min_vruntime; |
| 5241 | } |
| 5242 | } |
| 5243 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5244 | /* |
| 5245 | * We switched to the sched_fair class. |
| 5246 | */ |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5247 | static void switched_to_fair(struct rq *rq, struct task_struct *p) |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5248 | { |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5249 | if (!p->se.on_rq) |
| 5250 | return; |
| 5251 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5252 | /* |
| 5253 | * We were most likely switched from sched_rt, so |
| 5254 | * kick off the schedule if running, otherwise just see |
| 5255 | * if we can still preempt the current task. |
| 5256 | */ |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5257 | if (rq->curr == p) |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5258 | resched_task(rq->curr); |
| 5259 | else |
Peter Zijlstra | 15afe09 | 2008-09-20 23:38:02 +0200 | [diff] [blame] | 5260 | check_preempt_curr(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5261 | } |
| 5262 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5263 | /* Account for a task changing its policy or group. |
| 5264 | * |
| 5265 | * This routine is mostly called to set cfs_rq->curr field when a task |
| 5266 | * migrates between groups/classes. |
| 5267 | */ |
| 5268 | static void set_curr_task_fair(struct rq *rq) |
| 5269 | { |
| 5270 | struct sched_entity *se = &rq->curr->se; |
| 5271 | |
Paul Turner | ec12cb7 | 2011-07-21 09:43:30 -0700 | [diff] [blame] | 5272 | for_each_sched_entity(se) { |
| 5273 | struct cfs_rq *cfs_rq = cfs_rq_of(se); |
| 5274 | |
| 5275 | set_next_entity(cfs_rq, se); |
| 5276 | /* ensure bandwidth has been allocated on our new cfs_rq */ |
| 5277 | account_cfs_rq_runtime(cfs_rq, 0); |
| 5278 | } |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5279 | } |
| 5280 | |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5281 | void init_cfs_rq(struct cfs_rq *cfs_rq) |
| 5282 | { |
| 5283 | cfs_rq->tasks_timeline = RB_ROOT; |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5284 | cfs_rq->min_vruntime = (u64)(-(1LL << 20)); |
| 5285 | #ifndef CONFIG_64BIT |
| 5286 | cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime; |
| 5287 | #endif |
| 5288 | } |
| 5289 | |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5290 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | b2b5ce0 | 2010-10-15 15:24:15 +0200 | [diff] [blame] | 5291 | static void task_move_group_fair(struct task_struct *p, int on_rq) |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5292 | { |
Peter Zijlstra | b2b5ce0 | 2010-10-15 15:24:15 +0200 | [diff] [blame] | 5293 | /* |
| 5294 | * If the task was not on the rq at the time of this cgroup movement |
| 5295 | * it must have been asleep, sleeping tasks keep their ->vruntime |
| 5296 | * absolute on their old rq until wakeup (needed for the fair sleeper |
| 5297 | * bonus in place_entity()). |
| 5298 | * |
| 5299 | * If it was on the rq, we've just 'preempted' it, which does convert |
| 5300 | * ->vruntime to a relative base. |
| 5301 | * |
| 5302 | * Make sure both cases convert their relative position when migrating |
| 5303 | * to another cgroup's rq. This does somewhat interfere with the |
| 5304 | * fair sleeper stuff for the first placement, but who cares. |
| 5305 | */ |
Daisuke Nishimura | 7ceff01 | 2011-12-15 14:36:07 +0900 | [diff] [blame] | 5306 | /* |
| 5307 | * When !on_rq, vruntime of the task has usually NOT been normalized. |
| 5308 | * But there are some cases where it has already been normalized: |
| 5309 | * |
| 5310 | * - Moving a forked child which is waiting for being woken up by |
| 5311 | * wake_up_new_task(). |
Daisuke Nishimura | 62af378 | 2011-12-15 14:37:41 +0900 | [diff] [blame] | 5312 | * - Moving a task which has been woken up by try_to_wake_up() and |
| 5313 | * waiting for actually being woken up by sched_ttwu_pending(). |
Daisuke Nishimura | 7ceff01 | 2011-12-15 14:36:07 +0900 | [diff] [blame] | 5314 | * |
| 5315 | * To prevent boost or penalty in the new cfs_rq caused by delta |
| 5316 | * min_vruntime between the two cfs_rqs, we skip vruntime adjustment. |
| 5317 | */ |
Daisuke Nishimura | 62af378 | 2011-12-15 14:37:41 +0900 | [diff] [blame] | 5318 | if (!on_rq && (!p->se.sum_exec_runtime || p->state == TASK_WAKING)) |
Daisuke Nishimura | 7ceff01 | 2011-12-15 14:36:07 +0900 | [diff] [blame] | 5319 | on_rq = 1; |
| 5320 | |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 5321 | if (!on_rq) |
Peter Zijlstra | b2b5ce0 | 2010-10-15 15:24:15 +0200 | [diff] [blame] | 5322 | p->se.vruntime -= cfs_rq_of(&p->se)->min_vruntime; |
| 5323 | set_task_rq(p, task_cpu(p)); |
| 5324 | if (!on_rq) |
| 5325 | p->se.vruntime += cfs_rq_of(&p->se)->min_vruntime; |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5326 | } |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5327 | |
| 5328 | void free_fair_sched_group(struct task_group *tg) |
| 5329 | { |
| 5330 | int i; |
| 5331 | |
| 5332 | destroy_cfs_bandwidth(tg_cfs_bandwidth(tg)); |
| 5333 | |
| 5334 | for_each_possible_cpu(i) { |
| 5335 | if (tg->cfs_rq) |
| 5336 | kfree(tg->cfs_rq[i]); |
| 5337 | if (tg->se) |
| 5338 | kfree(tg->se[i]); |
| 5339 | } |
| 5340 | |
| 5341 | kfree(tg->cfs_rq); |
| 5342 | kfree(tg->se); |
| 5343 | } |
| 5344 | |
| 5345 | int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent) |
| 5346 | { |
| 5347 | struct cfs_rq *cfs_rq; |
| 5348 | struct sched_entity *se; |
| 5349 | int i; |
| 5350 | |
| 5351 | tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL); |
| 5352 | if (!tg->cfs_rq) |
| 5353 | goto err; |
| 5354 | tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL); |
| 5355 | if (!tg->se) |
| 5356 | goto err; |
| 5357 | |
| 5358 | tg->shares = NICE_0_LOAD; |
| 5359 | |
| 5360 | init_cfs_bandwidth(tg_cfs_bandwidth(tg)); |
| 5361 | |
| 5362 | for_each_possible_cpu(i) { |
| 5363 | cfs_rq = kzalloc_node(sizeof(struct cfs_rq), |
| 5364 | GFP_KERNEL, cpu_to_node(i)); |
| 5365 | if (!cfs_rq) |
| 5366 | goto err; |
| 5367 | |
| 5368 | se = kzalloc_node(sizeof(struct sched_entity), |
| 5369 | GFP_KERNEL, cpu_to_node(i)); |
| 5370 | if (!se) |
| 5371 | goto err_free_rq; |
| 5372 | |
| 5373 | init_cfs_rq(cfs_rq); |
| 5374 | init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]); |
| 5375 | } |
| 5376 | |
| 5377 | return 1; |
| 5378 | |
| 5379 | err_free_rq: |
| 5380 | kfree(cfs_rq); |
| 5381 | err: |
| 5382 | return 0; |
| 5383 | } |
| 5384 | |
| 5385 | void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 5386 | { |
| 5387 | struct rq *rq = cpu_rq(cpu); |
| 5388 | unsigned long flags; |
| 5389 | |
| 5390 | /* |
| 5391 | * Only empty task groups can be destroyed; so we can speculatively |
| 5392 | * check on_list without danger of it being re-added. |
| 5393 | */ |
| 5394 | if (!tg->cfs_rq[cpu]->on_list) |
| 5395 | return; |
| 5396 | |
| 5397 | raw_spin_lock_irqsave(&rq->lock, flags); |
| 5398 | list_del_leaf_cfs_rq(tg->cfs_rq[cpu]); |
| 5399 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
| 5400 | } |
| 5401 | |
| 5402 | void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq, |
| 5403 | struct sched_entity *se, int cpu, |
| 5404 | struct sched_entity *parent) |
| 5405 | { |
| 5406 | struct rq *rq = cpu_rq(cpu); |
| 5407 | |
| 5408 | cfs_rq->tg = tg; |
| 5409 | cfs_rq->rq = rq; |
| 5410 | #ifdef CONFIG_SMP |
| 5411 | /* allow initial update_cfs_load() to truncate */ |
| 5412 | cfs_rq->load_stamp = 1; |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5413 | #endif |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5414 | init_cfs_rq_runtime(cfs_rq); |
| 5415 | |
| 5416 | tg->cfs_rq[cpu] = cfs_rq; |
| 5417 | tg->se[cpu] = se; |
| 5418 | |
| 5419 | /* se could be NULL for root_task_group */ |
| 5420 | if (!se) |
| 5421 | return; |
| 5422 | |
| 5423 | if (!parent) |
| 5424 | se->cfs_rq = &rq->cfs; |
| 5425 | else |
| 5426 | se->cfs_rq = parent->my_q; |
| 5427 | |
| 5428 | se->my_q = cfs_rq; |
| 5429 | update_load_set(&se->load, 0); |
| 5430 | se->parent = parent; |
| 5431 | } |
| 5432 | |
| 5433 | static DEFINE_MUTEX(shares_mutex); |
| 5434 | |
| 5435 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) |
| 5436 | { |
| 5437 | int i; |
| 5438 | unsigned long flags; |
| 5439 | |
| 5440 | /* |
| 5441 | * We can't change the weight of the root cgroup. |
| 5442 | */ |
| 5443 | if (!tg->se[0]) |
| 5444 | return -EINVAL; |
| 5445 | |
| 5446 | shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES)); |
| 5447 | |
| 5448 | mutex_lock(&shares_mutex); |
| 5449 | if (tg->shares == shares) |
| 5450 | goto done; |
| 5451 | |
| 5452 | tg->shares = shares; |
| 5453 | for_each_possible_cpu(i) { |
| 5454 | struct rq *rq = cpu_rq(i); |
| 5455 | struct sched_entity *se; |
| 5456 | |
| 5457 | se = tg->se[i]; |
| 5458 | /* Propagate contribution to hierarchy */ |
| 5459 | raw_spin_lock_irqsave(&rq->lock, flags); |
| 5460 | for_each_sched_entity(se) |
| 5461 | update_cfs_shares(group_cfs_rq(se)); |
| 5462 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
| 5463 | } |
| 5464 | |
| 5465 | done: |
| 5466 | mutex_unlock(&shares_mutex); |
| 5467 | return 0; |
| 5468 | } |
| 5469 | #else /* CONFIG_FAIR_GROUP_SCHED */ |
| 5470 | |
| 5471 | void free_fair_sched_group(struct task_group *tg) { } |
| 5472 | |
| 5473 | int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent) |
| 5474 | { |
| 5475 | return 1; |
| 5476 | } |
| 5477 | |
| 5478 | void unregister_fair_sched_group(struct task_group *tg, int cpu) { } |
| 5479 | |
| 5480 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 5481 | |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5482 | |
H Hartley Sweeten | 6d686f4 | 2010-01-13 20:21:52 -0700 | [diff] [blame] | 5483 | static unsigned int get_rr_interval_fair(struct rq *rq, struct task_struct *task) |
Peter Williams | 0d721ce | 2009-09-21 01:31:53 +0000 | [diff] [blame] | 5484 | { |
| 5485 | struct sched_entity *se = &task->se; |
Peter Williams | 0d721ce | 2009-09-21 01:31:53 +0000 | [diff] [blame] | 5486 | unsigned int rr_interval = 0; |
| 5487 | |
| 5488 | /* |
| 5489 | * Time slice is 0 for SCHED_OTHER tasks that are on an otherwise |
| 5490 | * idle runqueue: |
| 5491 | */ |
Peter Williams | 0d721ce | 2009-09-21 01:31:53 +0000 | [diff] [blame] | 5492 | if (rq->cfs.load.weight) |
| 5493 | rr_interval = NS_TO_JIFFIES(sched_slice(&rq->cfs, se)); |
Peter Williams | 0d721ce | 2009-09-21 01:31:53 +0000 | [diff] [blame] | 5494 | |
| 5495 | return rr_interval; |
| 5496 | } |
| 5497 | |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5498 | /* |
| 5499 | * All the scheduling class methods: |
| 5500 | */ |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5501 | const struct sched_class fair_sched_class = { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 5502 | .next = &idle_sched_class, |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5503 | .enqueue_task = enqueue_task_fair, |
| 5504 | .dequeue_task = dequeue_task_fair, |
| 5505 | .yield_task = yield_task_fair, |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 5506 | .yield_to_task = yield_to_task_fair, |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5507 | |
Ingo Molnar | 2e09bf5 | 2007-10-15 17:00:05 +0200 | [diff] [blame] | 5508 | .check_preempt_curr = check_preempt_wakeup, |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5509 | |
| 5510 | .pick_next_task = pick_next_task_fair, |
| 5511 | .put_prev_task = put_prev_task_fair, |
| 5512 | |
Peter Williams | 681f3e6 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 5513 | #ifdef CONFIG_SMP |
Li Zefan | 4ce72a2 | 2008-10-22 15:25:26 +0800 | [diff] [blame] | 5514 | .select_task_rq = select_task_rq_fair, |
| 5515 | |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 5516 | .rq_online = rq_online_fair, |
| 5517 | .rq_offline = rq_offline_fair, |
Peter Zijlstra | 88ec22d | 2009-12-16 18:04:41 +0100 | [diff] [blame] | 5518 | |
| 5519 | .task_waking = task_waking_fair, |
Peter Williams | 681f3e6 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 5520 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5521 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5522 | .set_curr_task = set_curr_task_fair, |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5523 | .task_tick = task_tick_fair, |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 5524 | .task_fork = task_fork_fair, |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5525 | |
| 5526 | .prio_changed = prio_changed_fair, |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5527 | .switched_from = switched_from_fair, |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5528 | .switched_to = switched_to_fair, |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5529 | |
Peter Williams | 0d721ce | 2009-09-21 01:31:53 +0000 | [diff] [blame] | 5530 | .get_rr_interval = get_rr_interval_fair, |
| 5531 | |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5532 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | b2b5ce0 | 2010-10-15 15:24:15 +0200 | [diff] [blame] | 5533 | .task_move_group = task_move_group_fair, |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 5534 | #endif |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5535 | }; |
| 5536 | |
| 5537 | #ifdef CONFIG_SCHED_DEBUG |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5538 | void print_cfs_stats(struct seq_file *m, int cpu) |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5539 | { |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5540 | struct cfs_rq *cfs_rq; |
| 5541 | |
Peter Zijlstra | 5973e5b | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 5542 | rcu_read_lock(); |
Ingo Molnar | c3b64f1 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5543 | for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq) |
Ingo Molnar | 5cef9ec | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 5544 | print_cfs_rq(m, cpu, cfs_rq); |
Peter Zijlstra | 5973e5b | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 5545 | rcu_read_unlock(); |
Ingo Molnar | bf0f6f2 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5546 | } |
| 5547 | #endif |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5548 | |
| 5549 | __init void init_sched_fair_class(void) |
| 5550 | { |
| 5551 | #ifdef CONFIG_SMP |
| 5552 | open_softirq(SCHED_SOFTIRQ, run_rebalance_domains); |
| 5553 | |
| 5554 | #ifdef CONFIG_NO_HZ |
Diwakar Tundlam | 554ceca | 2012-03-07 14:44:26 -0800 | [diff] [blame] | 5555 | nohz.next_balance = jiffies; |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5556 | zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT); |
Suresh Siddha | 7132596 | 2012-01-19 18:28:57 -0800 | [diff] [blame] | 5557 | cpu_notifier(sched_ilb_notifier, 0); |
Peter Zijlstra | 029632f | 2011-10-25 10:00:11 +0200 | [diff] [blame] | 5558 | #endif |
| 5559 | #endif /* SMP */ |
| 5560 | |
| 5561 | } |