| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * Real-Time Scheduling Class (mapped to the SCHED_FIFO and SCHED_RR | 
|  | 3 | * policies) | 
|  | 4 | */ | 
|  | 5 |  | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 6 | #ifdef CONFIG_SMP | 
| Ingo Molnar | 84de427 | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 7 |  | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 8 | static inline int rt_overloaded(struct rq *rq) | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 9 | { | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 10 | return atomic_read(&rq->rd->rto_count); | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 11 | } | 
| Ingo Molnar | 84de427 | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 12 |  | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 13 | static inline void rt_set_overload(struct rq *rq) | 
|  | 14 | { | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 15 | cpu_set(rq->cpu, rq->rd->rto_mask); | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 16 | /* | 
|  | 17 | * Make sure the mask is visible before we set | 
|  | 18 | * the overload count. That is checked to determine | 
|  | 19 | * if we should look at the mask. It would be a shame | 
|  | 20 | * if we looked at the mask, but the mask was not | 
|  | 21 | * updated yet. | 
|  | 22 | */ | 
|  | 23 | wmb(); | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 24 | atomic_inc(&rq->rd->rto_count); | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 25 | } | 
| Ingo Molnar | 84de427 | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 26 |  | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 27 | static inline void rt_clear_overload(struct rq *rq) | 
|  | 28 | { | 
|  | 29 | /* the order here really doesn't matter */ | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 30 | atomic_dec(&rq->rd->rto_count); | 
|  | 31 | cpu_clear(rq->cpu, rq->rd->rto_mask); | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 32 | } | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 33 |  | 
|  | 34 | static void update_rt_migration(struct rq *rq) | 
|  | 35 | { | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 36 | if (rq->rt.rt_nr_migratory && (rq->rt.rt_nr_running > 1)) { | 
| Gregory Haskins | cdc8eb9 | 2008-01-25 21:08:23 +0100 | [diff] [blame] | 37 | if (!rq->rt.overloaded) { | 
|  | 38 | rt_set_overload(rq); | 
|  | 39 | rq->rt.overloaded = 1; | 
|  | 40 | } | 
|  | 41 | } else if (rq->rt.overloaded) { | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 42 | rt_clear_overload(rq); | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 43 | rq->rt.overloaded = 0; | 
|  | 44 | } | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 45 | } | 
| Steven Rostedt | 4fd2917 | 2008-01-25 21:08:06 +0100 | [diff] [blame] | 46 | #endif /* CONFIG_SMP */ | 
|  | 47 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 48 | static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se) | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 49 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 50 | return container_of(rt_se, struct task_struct, rt); | 
|  | 51 | } | 
|  | 52 |  | 
|  | 53 | static inline int on_rt_rq(struct sched_rt_entity *rt_se) | 
|  | 54 | { | 
|  | 55 | return !list_empty(&rt_se->run_list); | 
|  | 56 | } | 
|  | 57 |  | 
|  | 58 | #ifdef CONFIG_FAIR_GROUP_SCHED | 
|  | 59 |  | 
|  | 60 | static inline unsigned int sched_rt_ratio(struct rt_rq *rt_rq) | 
|  | 61 | { | 
|  | 62 | if (!rt_rq->tg) | 
|  | 63 | return SCHED_RT_FRAC; | 
|  | 64 |  | 
|  | 65 | return rt_rq->tg->rt_ratio; | 
|  | 66 | } | 
|  | 67 |  | 
|  | 68 | #define for_each_leaf_rt_rq(rt_rq, rq) \ | 
|  | 69 | list_for_each_entry(rt_rq, &rq->leaf_rt_rq_list, leaf_rt_rq_list) | 
|  | 70 |  | 
|  | 71 | static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq) | 
|  | 72 | { | 
|  | 73 | return rt_rq->rq; | 
|  | 74 | } | 
|  | 75 |  | 
|  | 76 | static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se) | 
|  | 77 | { | 
|  | 78 | return rt_se->rt_rq; | 
|  | 79 | } | 
|  | 80 |  | 
|  | 81 | #define for_each_sched_rt_entity(rt_se) \ | 
|  | 82 | for (; rt_se; rt_se = rt_se->parent) | 
|  | 83 |  | 
|  | 84 | static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se) | 
|  | 85 | { | 
|  | 86 | return rt_se->my_q; | 
|  | 87 | } | 
|  | 88 |  | 
|  | 89 | static void enqueue_rt_entity(struct sched_rt_entity *rt_se); | 
|  | 90 | static void dequeue_rt_entity(struct sched_rt_entity *rt_se); | 
|  | 91 |  | 
|  | 92 | static void sched_rt_ratio_enqueue(struct rt_rq *rt_rq) | 
|  | 93 | { | 
|  | 94 | struct sched_rt_entity *rt_se = rt_rq->rt_se; | 
|  | 95 |  | 
|  | 96 | if (rt_se && !on_rt_rq(rt_se) && rt_rq->rt_nr_running) { | 
| Peter Zijlstra | 1020387 | 2008-01-25 21:08:32 +0100 | [diff] [blame] | 97 | struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr; | 
|  | 98 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 99 | enqueue_rt_entity(rt_se); | 
| Peter Zijlstra | 1020387 | 2008-01-25 21:08:32 +0100 | [diff] [blame] | 100 | if (rt_rq->highest_prio < curr->prio) | 
|  | 101 | resched_task(curr); | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 102 | } | 
|  | 103 | } | 
|  | 104 |  | 
|  | 105 | static void sched_rt_ratio_dequeue(struct rt_rq *rt_rq) | 
|  | 106 | { | 
|  | 107 | struct sched_rt_entity *rt_se = rt_rq->rt_se; | 
|  | 108 |  | 
|  | 109 | if (rt_se && on_rt_rq(rt_se)) | 
|  | 110 | dequeue_rt_entity(rt_se); | 
|  | 111 | } | 
|  | 112 |  | 
|  | 113 | #else | 
|  | 114 |  | 
|  | 115 | static inline unsigned int sched_rt_ratio(struct rt_rq *rt_rq) | 
|  | 116 | { | 
|  | 117 | return sysctl_sched_rt_ratio; | 
|  | 118 | } | 
|  | 119 |  | 
|  | 120 | #define for_each_leaf_rt_rq(rt_rq, rq) \ | 
|  | 121 | for (rt_rq = &rq->rt; rt_rq; rt_rq = NULL) | 
|  | 122 |  | 
|  | 123 | static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq) | 
|  | 124 | { | 
|  | 125 | return container_of(rt_rq, struct rq, rt); | 
|  | 126 | } | 
|  | 127 |  | 
|  | 128 | static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se) | 
|  | 129 | { | 
|  | 130 | struct task_struct *p = rt_task_of(rt_se); | 
|  | 131 | struct rq *rq = task_rq(p); | 
|  | 132 |  | 
|  | 133 | return &rq->rt; | 
|  | 134 | } | 
|  | 135 |  | 
|  | 136 | #define for_each_sched_rt_entity(rt_se) \ | 
|  | 137 | for (; rt_se; rt_se = NULL) | 
|  | 138 |  | 
|  | 139 | static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se) | 
|  | 140 | { | 
|  | 141 | return NULL; | 
|  | 142 | } | 
|  | 143 |  | 
|  | 144 | static inline void sched_rt_ratio_enqueue(struct rt_rq *rt_rq) | 
|  | 145 | { | 
|  | 146 | } | 
|  | 147 |  | 
|  | 148 | static inline void sched_rt_ratio_dequeue(struct rt_rq *rt_rq) | 
|  | 149 | { | 
|  | 150 | } | 
|  | 151 |  | 
|  | 152 | #endif | 
|  | 153 |  | 
|  | 154 | static inline int rt_se_prio(struct sched_rt_entity *rt_se) | 
|  | 155 | { | 
|  | 156 | #ifdef CONFIG_FAIR_GROUP_SCHED | 
|  | 157 | struct rt_rq *rt_rq = group_rt_rq(rt_se); | 
|  | 158 |  | 
|  | 159 | if (rt_rq) | 
|  | 160 | return rt_rq->highest_prio; | 
|  | 161 | #endif | 
|  | 162 |  | 
|  | 163 | return rt_task_of(rt_se)->prio; | 
|  | 164 | } | 
|  | 165 |  | 
|  | 166 | static int sched_rt_ratio_exceeded(struct rt_rq *rt_rq) | 
|  | 167 | { | 
|  | 168 | unsigned int rt_ratio = sched_rt_ratio(rt_rq); | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 169 | u64 period, ratio; | 
|  | 170 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 171 | if (rt_ratio == SCHED_RT_FRAC) | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 172 | return 0; | 
|  | 173 |  | 
|  | 174 | if (rt_rq->rt_throttled) | 
|  | 175 | return 1; | 
|  | 176 |  | 
|  | 177 | period = (u64)sysctl_sched_rt_period * NSEC_PER_MSEC; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 178 | ratio = (period * rt_ratio) >> SCHED_RT_FRAC_SHIFT; | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 179 |  | 
|  | 180 | if (rt_rq->rt_time > ratio) { | 
| Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 181 | struct rq *rq = rq_of_rt_rq(rt_rq); | 
|  | 182 |  | 
|  | 183 | rq->rt_throttled = 1; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 184 | rt_rq->rt_throttled = 1; | 
| Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 185 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 186 | sched_rt_ratio_dequeue(rt_rq); | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 187 | return 1; | 
|  | 188 | } | 
|  | 189 |  | 
|  | 190 | return 0; | 
|  | 191 | } | 
|  | 192 |  | 
|  | 193 | static void update_sched_rt_period(struct rq *rq) | 
|  | 194 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 195 | struct rt_rq *rt_rq; | 
|  | 196 | u64 period; | 
|  | 197 |  | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 198 | while (rq->clock > rq->rt_period_expire) { | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 199 | period = (u64)sysctl_sched_rt_period * NSEC_PER_MSEC; | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 200 | rq->rt_period_expire += period; | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 201 |  | 
| Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 202 | for_each_leaf_rt_rq(rt_rq, rq) { | 
|  | 203 | unsigned long rt_ratio = sched_rt_ratio(rt_rq); | 
|  | 204 | u64 ratio = (period * rt_ratio) >> SCHED_RT_FRAC_SHIFT; | 
|  | 205 |  | 
|  | 206 | rt_rq->rt_time -= min(rt_rq->rt_time, ratio); | 
|  | 207 | if (rt_rq->rt_throttled) { | 
|  | 208 | rt_rq->rt_throttled = 0; | 
|  | 209 | sched_rt_ratio_enqueue(rt_rq); | 
|  | 210 | } | 
|  | 211 | } | 
|  | 212 |  | 
|  | 213 | rq->rt_throttled = 0; | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 214 | } | 
|  | 215 | } | 
|  | 216 |  | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 217 | /* | 
|  | 218 | * Update the current task's runtime statistics. Skip current tasks that | 
|  | 219 | * are not in our scheduling class. | 
|  | 220 | */ | 
| Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 221 | static void update_curr_rt(struct rq *rq) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 222 | { | 
|  | 223 | struct task_struct *curr = rq->curr; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 224 | struct sched_rt_entity *rt_se = &curr->rt; | 
|  | 225 | struct rt_rq *rt_rq = rt_rq_of_se(rt_se); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 226 | u64 delta_exec; | 
|  | 227 |  | 
|  | 228 | if (!task_has_rt_policy(curr)) | 
|  | 229 | return; | 
|  | 230 |  | 
| Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 231 | delta_exec = rq->clock - curr->se.exec_start; | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 232 | if (unlikely((s64)delta_exec < 0)) | 
|  | 233 | delta_exec = 0; | 
| Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 234 |  | 
|  | 235 | schedstat_set(curr->se.exec_max, max(curr->se.exec_max, delta_exec)); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 236 |  | 
|  | 237 | curr->se.sum_exec_runtime += delta_exec; | 
| Ingo Molnar | d281918 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 238 | curr->se.exec_start = rq->clock; | 
| Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 239 | cpuacct_charge(curr, delta_exec); | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 240 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 241 | rt_rq->rt_time += delta_exec; | 
|  | 242 | /* | 
|  | 243 | * might make it a tad more accurate: | 
|  | 244 | * | 
|  | 245 | * update_sched_rt_period(rq); | 
|  | 246 | */ | 
|  | 247 | if (sched_rt_ratio_exceeded(rt_rq)) | 
| Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 248 | resched_task(curr); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 249 | } | 
|  | 250 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 251 | static inline | 
|  | 252 | void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq) | 
| Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 253 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 254 | WARN_ON(!rt_prio(rt_se_prio(rt_se))); | 
|  | 255 | rt_rq->rt_nr_running++; | 
|  | 256 | #if defined CONFIG_SMP || defined CONFIG_FAIR_GROUP_SCHED | 
|  | 257 | if (rt_se_prio(rt_se) < rt_rq->highest_prio) | 
|  | 258 | rt_rq->highest_prio = rt_se_prio(rt_se); | 
|  | 259 | #endif | 
| Steven Rostedt | 764a9d6 | 2008-01-25 21:08:04 +0100 | [diff] [blame] | 260 | #ifdef CONFIG_SMP | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 261 | if (rt_se->nr_cpus_allowed > 1) { | 
|  | 262 | struct rq *rq = rq_of_rt_rq(rt_rq); | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 263 | rq->rt.rt_nr_migratory++; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 264 | } | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 265 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 266 | update_rt_migration(rq_of_rt_rq(rt_rq)); | 
|  | 267 | #endif | 
| Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 268 | } | 
|  | 269 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 270 | static inline | 
|  | 271 | void dec_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq) | 
| Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 272 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 273 | WARN_ON(!rt_prio(rt_se_prio(rt_se))); | 
|  | 274 | WARN_ON(!rt_rq->rt_nr_running); | 
|  | 275 | rt_rq->rt_nr_running--; | 
|  | 276 | #if defined CONFIG_SMP || defined CONFIG_FAIR_GROUP_SCHED | 
|  | 277 | if (rt_rq->rt_nr_running) { | 
| Steven Rostedt | 764a9d6 | 2008-01-25 21:08:04 +0100 | [diff] [blame] | 278 | struct rt_prio_array *array; | 
|  | 279 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 280 | WARN_ON(rt_se_prio(rt_se) < rt_rq->highest_prio); | 
|  | 281 | if (rt_se_prio(rt_se) == rt_rq->highest_prio) { | 
| Steven Rostedt | 764a9d6 | 2008-01-25 21:08:04 +0100 | [diff] [blame] | 282 | /* recalculate */ | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 283 | array = &rt_rq->active; | 
|  | 284 | rt_rq->highest_prio = | 
| Steven Rostedt | 764a9d6 | 2008-01-25 21:08:04 +0100 | [diff] [blame] | 285 | sched_find_first_bit(array->bitmap); | 
|  | 286 | } /* otherwise leave rq->highest prio alone */ | 
|  | 287 | } else | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 288 | rt_rq->highest_prio = MAX_RT_PRIO; | 
|  | 289 | #endif | 
|  | 290 | #ifdef CONFIG_SMP | 
|  | 291 | if (rt_se->nr_cpus_allowed > 1) { | 
|  | 292 | struct rq *rq = rq_of_rt_rq(rt_rq); | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 293 | rq->rt.rt_nr_migratory--; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 294 | } | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 295 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 296 | update_rt_migration(rq_of_rt_rq(rt_rq)); | 
| Steven Rostedt | 764a9d6 | 2008-01-25 21:08:04 +0100 | [diff] [blame] | 297 | #endif /* CONFIG_SMP */ | 
| Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 298 | } | 
|  | 299 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 300 | static void enqueue_rt_entity(struct sched_rt_entity *rt_se) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 301 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 302 | struct rt_rq *rt_rq = rt_rq_of_se(rt_se); | 
|  | 303 | struct rt_prio_array *array = &rt_rq->active; | 
|  | 304 | struct rt_rq *group_rq = group_rt_rq(rt_se); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 305 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 306 | if (group_rq && group_rq->rt_throttled) | 
|  | 307 | return; | 
| Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 308 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 309 | list_add_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se)); | 
|  | 310 | __set_bit(rt_se_prio(rt_se), array->bitmap); | 
| Peter Zijlstra | 78f2c7d | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 311 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 312 | inc_rt_tasks(rt_se, rt_rq); | 
|  | 313 | } | 
|  | 314 |  | 
|  | 315 | static void dequeue_rt_entity(struct sched_rt_entity *rt_se) | 
|  | 316 | { | 
|  | 317 | struct rt_rq *rt_rq = rt_rq_of_se(rt_se); | 
|  | 318 | struct rt_prio_array *array = &rt_rq->active; | 
|  | 319 |  | 
|  | 320 | list_del_init(&rt_se->run_list); | 
|  | 321 | if (list_empty(array->queue + rt_se_prio(rt_se))) | 
|  | 322 | __clear_bit(rt_se_prio(rt_se), array->bitmap); | 
|  | 323 |  | 
|  | 324 | dec_rt_tasks(rt_se, rt_rq); | 
|  | 325 | } | 
|  | 326 |  | 
|  | 327 | /* | 
|  | 328 | * Because the prio of an upper entry depends on the lower | 
|  | 329 | * entries, we must remove entries top - down. | 
|  | 330 | * | 
|  | 331 | * XXX: O(1/2 h^2) because we can only walk up, not down the chain. | 
|  | 332 | *      doesn't matter much for now, as h=2 for GROUP_SCHED. | 
|  | 333 | */ | 
|  | 334 | static void dequeue_rt_stack(struct task_struct *p) | 
|  | 335 | { | 
|  | 336 | struct sched_rt_entity *rt_se, *top_se; | 
|  | 337 |  | 
|  | 338 | /* | 
|  | 339 | * dequeue all, top - down. | 
|  | 340 | */ | 
|  | 341 | do { | 
|  | 342 | rt_se = &p->rt; | 
|  | 343 | top_se = NULL; | 
|  | 344 | for_each_sched_rt_entity(rt_se) { | 
|  | 345 | if (on_rt_rq(rt_se)) | 
|  | 346 | top_se = rt_se; | 
|  | 347 | } | 
|  | 348 | if (top_se) | 
|  | 349 | dequeue_rt_entity(top_se); | 
|  | 350 | } while (top_se); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 351 | } | 
|  | 352 |  | 
|  | 353 | /* | 
|  | 354 | * Adding/removing a task to/from a priority array: | 
|  | 355 | */ | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 356 | static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup) | 
|  | 357 | { | 
|  | 358 | struct sched_rt_entity *rt_se = &p->rt; | 
|  | 359 |  | 
|  | 360 | if (wakeup) | 
|  | 361 | rt_se->timeout = 0; | 
|  | 362 |  | 
|  | 363 | dequeue_rt_stack(p); | 
|  | 364 |  | 
|  | 365 | /* | 
|  | 366 | * enqueue everybody, bottom - up. | 
|  | 367 | */ | 
|  | 368 | for_each_sched_rt_entity(rt_se) | 
|  | 369 | enqueue_rt_entity(rt_se); | 
|  | 370 |  | 
|  | 371 | inc_cpu_load(rq, p->se.load.weight); | 
|  | 372 | } | 
|  | 373 |  | 
| Ingo Molnar | f02231e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 374 | static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 375 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 376 | struct sched_rt_entity *rt_se = &p->rt; | 
|  | 377 | struct rt_rq *rt_rq; | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 378 |  | 
| Ingo Molnar | f1e14ef | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 379 | update_curr_rt(rq); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 380 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 381 | dequeue_rt_stack(p); | 
| Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 382 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 383 | /* | 
|  | 384 | * re-enqueue all non-empty rt_rq entities. | 
|  | 385 | */ | 
|  | 386 | for_each_sched_rt_entity(rt_se) { | 
|  | 387 | rt_rq = group_rt_rq(rt_se); | 
|  | 388 | if (rt_rq && rt_rq->rt_nr_running) | 
|  | 389 | enqueue_rt_entity(rt_se); | 
|  | 390 | } | 
|  | 391 |  | 
|  | 392 | dec_cpu_load(rq, p->se.load.weight); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 393 | } | 
|  | 394 |  | 
|  | 395 | /* | 
|  | 396 | * Put task to the end of the run list without the overhead of dequeue | 
|  | 397 | * followed by enqueue. | 
|  | 398 | */ | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 399 | static | 
|  | 400 | void requeue_rt_entity(struct rt_rq *rt_rq, struct sched_rt_entity *rt_se) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 401 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 402 | struct rt_prio_array *array = &rt_rq->active; | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 403 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 404 | list_move_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se)); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 405 | } | 
|  | 406 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 407 | static void requeue_task_rt(struct rq *rq, struct task_struct *p) | 
|  | 408 | { | 
|  | 409 | struct sched_rt_entity *rt_se = &p->rt; | 
|  | 410 | struct rt_rq *rt_rq; | 
|  | 411 |  | 
|  | 412 | for_each_sched_rt_entity(rt_se) { | 
|  | 413 | rt_rq = rt_rq_of_se(rt_se); | 
|  | 414 | requeue_rt_entity(rt_rq, rt_se); | 
|  | 415 | } | 
|  | 416 | } | 
|  | 417 |  | 
|  | 418 | static void yield_task_rt(struct rq *rq) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 419 | { | 
| Dmitry Adamushko | 4530d7a | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 420 | requeue_task_rt(rq, rq->curr); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 421 | } | 
|  | 422 |  | 
| Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 423 | #ifdef CONFIG_SMP | 
| Gregory Haskins | 318e089 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 424 | static int find_lowest_rq(struct task_struct *task); | 
|  | 425 |  | 
| Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 426 | static int select_task_rq_rt(struct task_struct *p, int sync) | 
|  | 427 | { | 
| Gregory Haskins | 318e089 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 428 | struct rq *rq = task_rq(p); | 
|  | 429 |  | 
|  | 430 | /* | 
| Steven Rostedt | e1f47d8 | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 431 | * If the current task is an RT task, then | 
|  | 432 | * try to see if we can wake this RT task up on another | 
|  | 433 | * runqueue. Otherwise simply start this RT task | 
|  | 434 | * on its current runqueue. | 
|  | 435 | * | 
|  | 436 | * We want to avoid overloading runqueues. Even if | 
|  | 437 | * the RT task is of higher priority than the current RT task. | 
|  | 438 | * RT tasks behave differently than other tasks. If | 
|  | 439 | * one gets preempted, we try to push it off to another queue. | 
|  | 440 | * So trying to keep a preempting RT task on the same | 
|  | 441 | * cache hot CPU will force the running RT task to | 
|  | 442 | * a cold CPU. So we waste all the cache for the lower | 
|  | 443 | * RT task in hopes of saving some of a RT task | 
|  | 444 | * that is just being woken and probably will have | 
|  | 445 | * cold cache anyway. | 
| Gregory Haskins | 318e089 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 446 | */ | 
| Gregory Haskins | 17b3279 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 447 | if (unlikely(rt_task(rq->curr)) && | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 448 | (p->rt.nr_cpus_allowed > 1)) { | 
| Gregory Haskins | 318e089 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 449 | int cpu = find_lowest_rq(p); | 
|  | 450 |  | 
|  | 451 | return (cpu == -1) ? task_cpu(p) : cpu; | 
|  | 452 | } | 
|  | 453 |  | 
|  | 454 | /* | 
|  | 455 | * Otherwise, just let it ride on the affined RQ and the | 
|  | 456 | * post-schedule router will push the preempted task away | 
|  | 457 | */ | 
| Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 458 | return task_cpu(p); | 
|  | 459 | } | 
|  | 460 | #endif /* CONFIG_SMP */ | 
|  | 461 |  | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 462 | /* | 
|  | 463 | * Preempt the current task with a newly woken task if needed: | 
|  | 464 | */ | 
|  | 465 | static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p) | 
|  | 466 | { | 
|  | 467 | if (p->prio < rq->curr->prio) | 
|  | 468 | resched_task(rq->curr); | 
|  | 469 | } | 
|  | 470 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 471 | static struct sched_rt_entity *pick_next_rt_entity(struct rq *rq, | 
|  | 472 | struct rt_rq *rt_rq) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 473 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 474 | struct rt_prio_array *array = &rt_rq->active; | 
|  | 475 | struct sched_rt_entity *next = NULL; | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 476 | struct list_head *queue; | 
|  | 477 | int idx; | 
|  | 478 |  | 
|  | 479 | idx = sched_find_first_bit(array->bitmap); | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 480 | BUG_ON(idx >= MAX_RT_PRIO); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 481 |  | 
|  | 482 | queue = array->queue + idx; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 483 | next = list_entry(queue->next, struct sched_rt_entity, run_list); | 
| Dmitry Adamushko | 326587b | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 484 |  | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 485 | return next; | 
|  | 486 | } | 
|  | 487 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 488 | static struct task_struct *pick_next_task_rt(struct rq *rq) | 
|  | 489 | { | 
|  | 490 | struct sched_rt_entity *rt_se; | 
|  | 491 | struct task_struct *p; | 
|  | 492 | struct rt_rq *rt_rq; | 
|  | 493 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 494 | rt_rq = &rq->rt; | 
|  | 495 |  | 
|  | 496 | if (unlikely(!rt_rq->rt_nr_running)) | 
|  | 497 | return NULL; | 
|  | 498 |  | 
|  | 499 | if (sched_rt_ratio_exceeded(rt_rq)) | 
|  | 500 | return NULL; | 
|  | 501 |  | 
|  | 502 | do { | 
|  | 503 | rt_se = pick_next_rt_entity(rq, rt_rq); | 
| Dmitry Adamushko | 326587b | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 504 | BUG_ON(!rt_se); | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 505 | rt_rq = group_rt_rq(rt_se); | 
|  | 506 | } while (rt_rq); | 
|  | 507 |  | 
|  | 508 | p = rt_task_of(rt_se); | 
|  | 509 | p->se.exec_start = rq->clock; | 
|  | 510 | return p; | 
|  | 511 | } | 
|  | 512 |  | 
| Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 513 | static void put_prev_task_rt(struct rq *rq, struct task_struct *p) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 514 | { | 
| Ingo Molnar | f1e14ef | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 515 | update_curr_rt(rq); | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 516 | p->se.exec_start = 0; | 
|  | 517 | } | 
|  | 518 |  | 
| Peter Williams | 681f3e6 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 519 | #ifdef CONFIG_SMP | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 520 |  | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 521 | /* Only try algorithms three times */ | 
|  | 522 | #define RT_MAX_TRIES 3 | 
|  | 523 |  | 
|  | 524 | static int double_lock_balance(struct rq *this_rq, struct rq *busiest); | 
|  | 525 | static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep); | 
|  | 526 |  | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 527 | static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu) | 
|  | 528 | { | 
|  | 529 | if (!task_running(rq, p) && | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 530 | (cpu < 0 || cpu_isset(cpu, p->cpus_allowed)) && | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 531 | (p->rt.nr_cpus_allowed > 1)) | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 532 | return 1; | 
|  | 533 | return 0; | 
|  | 534 | } | 
|  | 535 |  | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 536 | /* Return the second highest RT task, NULL otherwise */ | 
| Ingo Molnar | 79064fb | 2008-01-25 21:08:14 +0100 | [diff] [blame] | 537 | static struct task_struct *pick_next_highest_task_rt(struct rq *rq, int cpu) | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 538 | { | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 539 | struct task_struct *next = NULL; | 
|  | 540 | struct sched_rt_entity *rt_se; | 
|  | 541 | struct rt_prio_array *array; | 
|  | 542 | struct rt_rq *rt_rq; | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 543 | int idx; | 
|  | 544 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 545 | for_each_leaf_rt_rq(rt_rq, rq) { | 
|  | 546 | array = &rt_rq->active; | 
|  | 547 | idx = sched_find_first_bit(array->bitmap); | 
|  | 548 | next_idx: | 
|  | 549 | if (idx >= MAX_RT_PRIO) | 
|  | 550 | continue; | 
|  | 551 | if (next && next->prio < idx) | 
|  | 552 | continue; | 
|  | 553 | list_for_each_entry(rt_se, array->queue + idx, run_list) { | 
|  | 554 | struct task_struct *p = rt_task_of(rt_se); | 
|  | 555 | if (pick_rt_task(rq, p, cpu)) { | 
|  | 556 | next = p; | 
|  | 557 | break; | 
|  | 558 | } | 
|  | 559 | } | 
|  | 560 | if (!next) { | 
|  | 561 | idx = find_next_bit(array->bitmap, MAX_RT_PRIO, idx+1); | 
|  | 562 | goto next_idx; | 
|  | 563 | } | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 564 | } | 
|  | 565 |  | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 566 | return next; | 
|  | 567 | } | 
|  | 568 |  | 
|  | 569 | static DEFINE_PER_CPU(cpumask_t, local_cpu_mask); | 
|  | 570 |  | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 571 | static int find_lowest_cpus(struct task_struct *task, cpumask_t *lowest_mask) | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 572 | { | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 573 | int       lowest_prio = -1; | 
| Steven Rostedt | 610bf05 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 574 | int       lowest_cpu  = -1; | 
| Gregory Haskins | 06f90db | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 575 | int       count       = 0; | 
| Steven Rostedt | 610bf05 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 576 | int       cpu; | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 577 |  | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 578 | cpus_and(*lowest_mask, task_rq(task)->rd->online, task->cpus_allowed); | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 579 |  | 
|  | 580 | /* | 
|  | 581 | * Scan each rq for the lowest prio. | 
|  | 582 | */ | 
| Steven Rostedt | 610bf05 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 583 | for_each_cpu_mask(cpu, *lowest_mask) { | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 584 | struct rq *rq = cpu_rq(cpu); | 
|  | 585 |  | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 586 | /* We look for lowest RT prio or non-rt CPU */ | 
|  | 587 | if (rq->rt.highest_prio >= MAX_RT_PRIO) { | 
| Steven Rostedt | 610bf05 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 588 | /* | 
|  | 589 | * if we already found a low RT queue | 
|  | 590 | * and now we found this non-rt queue | 
|  | 591 | * clear the mask and set our bit. | 
|  | 592 | * Otherwise just return the queue as is | 
|  | 593 | * and the count==1 will cause the algorithm | 
|  | 594 | * to use the first bit found. | 
|  | 595 | */ | 
|  | 596 | if (lowest_cpu != -1) { | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 597 | cpus_clear(*lowest_mask); | 
| Steven Rostedt | 610bf05 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 598 | cpu_set(rq->cpu, *lowest_mask); | 
|  | 599 | } | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 600 | return 1; | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 601 | } | 
|  | 602 |  | 
|  | 603 | /* no locking for now */ | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 604 | if ((rq->rt.highest_prio > task->prio) | 
|  | 605 | && (rq->rt.highest_prio >= lowest_prio)) { | 
|  | 606 | if (rq->rt.highest_prio > lowest_prio) { | 
|  | 607 | /* new low - clear old data */ | 
|  | 608 | lowest_prio = rq->rt.highest_prio; | 
| Steven Rostedt | 610bf05 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 609 | lowest_cpu = cpu; | 
|  | 610 | count = 0; | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 611 | } | 
| Gregory Haskins | 06f90db | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 612 | count++; | 
| Steven Rostedt | 610bf05 | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 613 | } else | 
|  | 614 | cpu_clear(cpu, *lowest_mask); | 
|  | 615 | } | 
|  | 616 |  | 
|  | 617 | /* | 
|  | 618 | * Clear out all the set bits that represent | 
|  | 619 | * runqueues that were of higher prio than | 
|  | 620 | * the lowest_prio. | 
|  | 621 | */ | 
|  | 622 | if (lowest_cpu > 0) { | 
|  | 623 | /* | 
|  | 624 | * Perhaps we could add another cpumask op to | 
|  | 625 | * zero out bits. Like cpu_zero_bits(cpumask, nrbits); | 
|  | 626 | * Then that could be optimized to use memset and such. | 
|  | 627 | */ | 
|  | 628 | for_each_cpu_mask(cpu, *lowest_mask) { | 
|  | 629 | if (cpu >= lowest_cpu) | 
|  | 630 | break; | 
|  | 631 | cpu_clear(cpu, *lowest_mask); | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 632 | } | 
|  | 633 | } | 
|  | 634 |  | 
| Gregory Haskins | 06f90db | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 635 | return count; | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 636 | } | 
|  | 637 |  | 
|  | 638 | static inline int pick_optimal_cpu(int this_cpu, cpumask_t *mask) | 
|  | 639 | { | 
|  | 640 | int first; | 
|  | 641 |  | 
|  | 642 | /* "this_cpu" is cheaper to preempt than a remote processor */ | 
|  | 643 | if ((this_cpu != -1) && cpu_isset(this_cpu, *mask)) | 
|  | 644 | return this_cpu; | 
|  | 645 |  | 
|  | 646 | first = first_cpu(*mask); | 
|  | 647 | if (first != NR_CPUS) | 
|  | 648 | return first; | 
|  | 649 |  | 
|  | 650 | return -1; | 
|  | 651 | } | 
|  | 652 |  | 
|  | 653 | static int find_lowest_rq(struct task_struct *task) | 
|  | 654 | { | 
|  | 655 | struct sched_domain *sd; | 
|  | 656 | cpumask_t *lowest_mask = &__get_cpu_var(local_cpu_mask); | 
|  | 657 | int this_cpu = smp_processor_id(); | 
|  | 658 | int cpu      = task_cpu(task); | 
| Gregory Haskins | 06f90db | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 659 | int count    = find_lowest_cpus(task, lowest_mask); | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 660 |  | 
| Gregory Haskins | 06f90db | 2008-01-25 21:08:13 +0100 | [diff] [blame] | 661 | if (!count) | 
|  | 662 | return -1; /* No targets found */ | 
|  | 663 |  | 
|  | 664 | /* | 
|  | 665 | * There is no sense in performing an optimal search if only one | 
|  | 666 | * target is found. | 
|  | 667 | */ | 
|  | 668 | if (count == 1) | 
|  | 669 | return first_cpu(*lowest_mask); | 
| Gregory Haskins | 6e1254d | 2008-01-25 21:08:11 +0100 | [diff] [blame] | 670 |  | 
|  | 671 | /* | 
|  | 672 | * At this point we have built a mask of cpus representing the | 
|  | 673 | * lowest priority tasks in the system.  Now we want to elect | 
|  | 674 | * the best one based on our affinity and topology. | 
|  | 675 | * | 
|  | 676 | * We prioritize the last cpu that the task executed on since | 
|  | 677 | * it is most likely cache-hot in that location. | 
|  | 678 | */ | 
|  | 679 | if (cpu_isset(cpu, *lowest_mask)) | 
|  | 680 | return cpu; | 
|  | 681 |  | 
|  | 682 | /* | 
|  | 683 | * Otherwise, we consult the sched_domains span maps to figure | 
|  | 684 | * out which cpu is logically closest to our hot cache data. | 
|  | 685 | */ | 
|  | 686 | if (this_cpu == cpu) | 
|  | 687 | this_cpu = -1; /* Skip this_cpu opt if the same */ | 
|  | 688 |  | 
|  | 689 | for_each_domain(cpu, sd) { | 
|  | 690 | if (sd->flags & SD_WAKE_AFFINE) { | 
|  | 691 | cpumask_t domain_mask; | 
|  | 692 | int       best_cpu; | 
|  | 693 |  | 
|  | 694 | cpus_and(domain_mask, sd->span, *lowest_mask); | 
|  | 695 |  | 
|  | 696 | best_cpu = pick_optimal_cpu(this_cpu, | 
|  | 697 | &domain_mask); | 
|  | 698 | if (best_cpu != -1) | 
|  | 699 | return best_cpu; | 
|  | 700 | } | 
|  | 701 | } | 
|  | 702 |  | 
|  | 703 | /* | 
|  | 704 | * And finally, if there were no matches within the domains | 
|  | 705 | * just give the caller *something* to work with from the compatible | 
|  | 706 | * locations. | 
|  | 707 | */ | 
|  | 708 | return pick_optimal_cpu(this_cpu, lowest_mask); | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 709 | } | 
|  | 710 |  | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 711 | /* Will lock the rq it finds */ | 
| Ingo Molnar | 4df64c0 | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 712 | static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq) | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 713 | { | 
|  | 714 | struct rq *lowest_rq = NULL; | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 715 | int tries; | 
| Ingo Molnar | 4df64c0 | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 716 | int cpu; | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 717 |  | 
|  | 718 | for (tries = 0; tries < RT_MAX_TRIES; tries++) { | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 719 | cpu = find_lowest_rq(task); | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 720 |  | 
| Gregory Haskins | 2de0b46 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 721 | if ((cpu == -1) || (cpu == rq->cpu)) | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 722 | break; | 
|  | 723 |  | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 724 | lowest_rq = cpu_rq(cpu); | 
|  | 725 |  | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 726 | /* if the prio of this runqueue changed, try again */ | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 727 | if (double_lock_balance(rq, lowest_rq)) { | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 728 | /* | 
|  | 729 | * We had to unlock the run queue. In | 
|  | 730 | * the mean time, task could have | 
|  | 731 | * migrated already or had its affinity changed. | 
|  | 732 | * Also make sure that it wasn't scheduled on its rq. | 
|  | 733 | */ | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 734 | if (unlikely(task_rq(task) != rq || | 
| Ingo Molnar | 4df64c0 | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 735 | !cpu_isset(lowest_rq->cpu, | 
|  | 736 | task->cpus_allowed) || | 
| Gregory Haskins | 07b4032 | 2008-01-25 21:08:10 +0100 | [diff] [blame] | 737 | task_running(rq, task) || | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 738 | !task->se.on_rq)) { | 
| Ingo Molnar | 4df64c0 | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 739 |  | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 740 | spin_unlock(&lowest_rq->lock); | 
|  | 741 | lowest_rq = NULL; | 
|  | 742 | break; | 
|  | 743 | } | 
|  | 744 | } | 
|  | 745 |  | 
|  | 746 | /* If this rq is still suitable use it. */ | 
|  | 747 | if (lowest_rq->rt.highest_prio > task->prio) | 
|  | 748 | break; | 
|  | 749 |  | 
|  | 750 | /* try again */ | 
|  | 751 | spin_unlock(&lowest_rq->lock); | 
|  | 752 | lowest_rq = NULL; | 
|  | 753 | } | 
|  | 754 |  | 
|  | 755 | return lowest_rq; | 
|  | 756 | } | 
|  | 757 |  | 
|  | 758 | /* | 
|  | 759 | * If the current CPU has more than one RT task, see if the non | 
|  | 760 | * running task can migrate over to a CPU that is running a task | 
|  | 761 | * of lesser priority. | 
|  | 762 | */ | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 763 | static int push_rt_task(struct rq *rq) | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 764 | { | 
|  | 765 | struct task_struct *next_task; | 
|  | 766 | struct rq *lowest_rq; | 
|  | 767 | int ret = 0; | 
|  | 768 | int paranoid = RT_MAX_TRIES; | 
|  | 769 |  | 
| Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 770 | if (!rq->rt.overloaded) | 
|  | 771 | return 0; | 
|  | 772 |  | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 773 | next_task = pick_next_highest_task_rt(rq, -1); | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 774 | if (!next_task) | 
|  | 775 | return 0; | 
|  | 776 |  | 
|  | 777 | retry: | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 778 | if (unlikely(next_task == rq->curr)) { | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 779 | WARN_ON(1); | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 780 | return 0; | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 781 | } | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 782 |  | 
|  | 783 | /* | 
|  | 784 | * It's possible that the next_task slipped in of | 
|  | 785 | * higher priority than current. If that's the case | 
|  | 786 | * just reschedule current. | 
|  | 787 | */ | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 788 | if (unlikely(next_task->prio < rq->curr->prio)) { | 
|  | 789 | resched_task(rq->curr); | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 790 | return 0; | 
|  | 791 | } | 
|  | 792 |  | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 793 | /* We might release rq lock */ | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 794 | get_task_struct(next_task); | 
|  | 795 |  | 
|  | 796 | /* find_lock_lowest_rq locks the rq if found */ | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 797 | lowest_rq = find_lock_lowest_rq(next_task, rq); | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 798 | if (!lowest_rq) { | 
|  | 799 | struct task_struct *task; | 
|  | 800 | /* | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 801 | * find lock_lowest_rq releases rq->lock | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 802 | * so it is possible that next_task has changed. | 
|  | 803 | * If it has, then try again. | 
|  | 804 | */ | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 805 | task = pick_next_highest_task_rt(rq, -1); | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 806 | if (unlikely(task != next_task) && task && paranoid--) { | 
|  | 807 | put_task_struct(next_task); | 
|  | 808 | next_task = task; | 
|  | 809 | goto retry; | 
|  | 810 | } | 
|  | 811 | goto out; | 
|  | 812 | } | 
|  | 813 |  | 
| Gregory Haskins | 697f0a4 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 814 | deactivate_task(rq, next_task, 0); | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 815 | set_task_cpu(next_task, lowest_rq->cpu); | 
|  | 816 | activate_task(lowest_rq, next_task, 0); | 
|  | 817 |  | 
|  | 818 | resched_task(lowest_rq->curr); | 
|  | 819 |  | 
|  | 820 | spin_unlock(&lowest_rq->lock); | 
|  | 821 |  | 
|  | 822 | ret = 1; | 
|  | 823 | out: | 
|  | 824 | put_task_struct(next_task); | 
|  | 825 |  | 
|  | 826 | return ret; | 
|  | 827 | } | 
|  | 828 |  | 
|  | 829 | /* | 
|  | 830 | * TODO: Currently we just use the second highest prio task on | 
|  | 831 | *       the queue, and stop when it can't migrate (or there's | 
|  | 832 | *       no more RT tasks).  There may be a case where a lower | 
|  | 833 | *       priority RT task has a different affinity than the | 
|  | 834 | *       higher RT task. In this case the lower RT task could | 
|  | 835 | *       possibly be able to migrate where as the higher priority | 
|  | 836 | *       RT task could not.  We currently ignore this issue. | 
|  | 837 | *       Enhancements are welcome! | 
|  | 838 | */ | 
|  | 839 | static void push_rt_tasks(struct rq *rq) | 
|  | 840 | { | 
|  | 841 | /* push_rt_task will return true if it moved an RT */ | 
|  | 842 | while (push_rt_task(rq)) | 
|  | 843 | ; | 
|  | 844 | } | 
|  | 845 |  | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 846 | static int pull_rt_task(struct rq *this_rq) | 
|  | 847 | { | 
| Ingo Molnar | 80bf317 | 2008-01-25 21:08:17 +0100 | [diff] [blame] | 848 | int this_cpu = this_rq->cpu, ret = 0, cpu; | 
|  | 849 | struct task_struct *p, *next; | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 850 | struct rq *src_rq; | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 851 |  | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 852 | if (likely(!rt_overloaded(this_rq))) | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 853 | return 0; | 
|  | 854 |  | 
|  | 855 | next = pick_next_task_rt(this_rq); | 
|  | 856 |  | 
| Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 857 | for_each_cpu_mask(cpu, this_rq->rd->rto_mask) { | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 858 | if (this_cpu == cpu) | 
|  | 859 | continue; | 
|  | 860 |  | 
|  | 861 | src_rq = cpu_rq(cpu); | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 862 | /* | 
|  | 863 | * We can potentially drop this_rq's lock in | 
|  | 864 | * double_lock_balance, and another CPU could | 
|  | 865 | * steal our next task - hence we must cause | 
|  | 866 | * the caller to recalculate the next task | 
|  | 867 | * in that case: | 
|  | 868 | */ | 
|  | 869 | if (double_lock_balance(this_rq, src_rq)) { | 
|  | 870 | struct task_struct *old_next = next; | 
| Ingo Molnar | 80bf317 | 2008-01-25 21:08:17 +0100 | [diff] [blame] | 871 |  | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 872 | next = pick_next_task_rt(this_rq); | 
|  | 873 | if (next != old_next) | 
|  | 874 | ret = 1; | 
|  | 875 | } | 
|  | 876 |  | 
|  | 877 | /* | 
|  | 878 | * Are there still pullable RT tasks? | 
|  | 879 | */ | 
| Mike Galbraith | 614ee1f | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 880 | if (src_rq->rt.rt_nr_running <= 1) | 
|  | 881 | goto skip; | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 882 |  | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 883 | p = pick_next_highest_task_rt(src_rq, this_cpu); | 
|  | 884 |  | 
|  | 885 | /* | 
|  | 886 | * Do we have an RT task that preempts | 
|  | 887 | * the to-be-scheduled task? | 
|  | 888 | */ | 
|  | 889 | if (p && (!next || (p->prio < next->prio))) { | 
|  | 890 | WARN_ON(p == src_rq->curr); | 
|  | 891 | WARN_ON(!p->se.on_rq); | 
|  | 892 |  | 
|  | 893 | /* | 
|  | 894 | * There's a chance that p is higher in priority | 
|  | 895 | * than what's currently running on its cpu. | 
|  | 896 | * This is just that p is wakeing up and hasn't | 
|  | 897 | * had a chance to schedule. We only pull | 
|  | 898 | * p if it is lower in priority than the | 
|  | 899 | * current task on the run queue or | 
|  | 900 | * this_rq next task is lower in prio than | 
|  | 901 | * the current task on that rq. | 
|  | 902 | */ | 
|  | 903 | if (p->prio < src_rq->curr->prio || | 
|  | 904 | (next && next->prio < src_rq->curr->prio)) | 
| Mike Galbraith | 614ee1f | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 905 | goto skip; | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 906 |  | 
|  | 907 | ret = 1; | 
|  | 908 |  | 
|  | 909 | deactivate_task(src_rq, p, 0); | 
|  | 910 | set_task_cpu(p, this_cpu); | 
|  | 911 | activate_task(this_rq, p, 0); | 
|  | 912 | /* | 
|  | 913 | * We continue with the search, just in | 
|  | 914 | * case there's an even higher prio task | 
|  | 915 | * in another runqueue. (low likelyhood | 
|  | 916 | * but possible) | 
| Ingo Molnar | 80bf317 | 2008-01-25 21:08:17 +0100 | [diff] [blame] | 917 | * | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 918 | * Update next so that we won't pick a task | 
|  | 919 | * on another cpu with a priority lower (or equal) | 
|  | 920 | * than the one we just picked. | 
|  | 921 | */ | 
|  | 922 | next = p; | 
|  | 923 |  | 
|  | 924 | } | 
| Mike Galbraith | 614ee1f | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 925 | skip: | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 926 | spin_unlock(&src_rq->lock); | 
|  | 927 | } | 
|  | 928 |  | 
|  | 929 | return ret; | 
|  | 930 | } | 
|  | 931 |  | 
| Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 932 | static void pre_schedule_rt(struct rq *rq, struct task_struct *prev) | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 933 | { | 
|  | 934 | /* Try to pull RT tasks here if we lower this rq's prio */ | 
| Ingo Molnar | 7f51f29 | 2008-01-25 21:08:17 +0100 | [diff] [blame] | 935 | if (unlikely(rt_task(prev)) && rq->rt.highest_prio > prev->prio) | 
| Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 936 | pull_rt_task(rq); | 
|  | 937 | } | 
|  | 938 |  | 
| Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 939 | static void post_schedule_rt(struct rq *rq) | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 940 | { | 
|  | 941 | /* | 
|  | 942 | * If we have more than one rt_task queued, then | 
|  | 943 | * see if we can push the other rt_tasks off to other CPUS. | 
|  | 944 | * Note we may release the rq lock, and since | 
|  | 945 | * the lock was owned by prev, we need to release it | 
|  | 946 | * first via finish_lock_switch and then reaquire it here. | 
|  | 947 | */ | 
| Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 948 | if (unlikely(rq->rt.overloaded)) { | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 949 | spin_lock_irq(&rq->lock); | 
|  | 950 | push_rt_tasks(rq); | 
|  | 951 | spin_unlock_irq(&rq->lock); | 
|  | 952 | } | 
|  | 953 | } | 
|  | 954 |  | 
| Steven Rostedt | 4642daf | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 955 |  | 
| Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 956 | static void task_wake_up_rt(struct rq *rq, struct task_struct *p) | 
| Steven Rostedt | 4642daf | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 957 | { | 
| Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 958 | if (!task_running(rq, p) && | 
| Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 959 | (p->prio >= rq->rt.highest_prio) && | 
|  | 960 | rq->rt.overloaded) | 
| Steven Rostedt | 4642daf | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 961 | push_rt_tasks(rq); | 
|  | 962 | } | 
|  | 963 |  | 
| Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 964 | static unsigned long | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 965 | load_balance_rt(struct rq *this_rq, int this_cpu, struct rq *busiest, | 
| Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 966 | unsigned long max_load_move, | 
|  | 967 | struct sched_domain *sd, enum cpu_idle_type idle, | 
|  | 968 | int *all_pinned, int *this_best_prio) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 969 | { | 
| Steven Rostedt | c7a1e46 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 970 | /* don't touch RT tasks */ | 
|  | 971 | return 0; | 
| Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 972 | } | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 973 |  | 
| Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 974 | static int | 
|  | 975 | move_one_task_rt(struct rq *this_rq, int this_cpu, struct rq *busiest, | 
|  | 976 | struct sched_domain *sd, enum cpu_idle_type idle) | 
|  | 977 | { | 
| Steven Rostedt | c7a1e46 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 978 | /* don't touch RT tasks */ | 
|  | 979 | return 0; | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 980 | } | 
| Ingo Molnar | deeeccd | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 981 |  | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 982 | static void set_cpus_allowed_rt(struct task_struct *p, cpumask_t *new_mask) | 
|  | 983 | { | 
|  | 984 | int weight = cpus_weight(*new_mask); | 
|  | 985 |  | 
|  | 986 | BUG_ON(!rt_task(p)); | 
|  | 987 |  | 
|  | 988 | /* | 
|  | 989 | * Update the migration status of the RQ if we have an RT task | 
|  | 990 | * which is running AND changing its weight value. | 
|  | 991 | */ | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 992 | if (p->se.on_rq && (weight != p->rt.nr_cpus_allowed)) { | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 993 | struct rq *rq = task_rq(p); | 
|  | 994 |  | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 995 | if ((p->rt.nr_cpus_allowed <= 1) && (weight > 1)) { | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 996 | rq->rt.rt_nr_migratory++; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 997 | } else if ((p->rt.nr_cpus_allowed > 1) && (weight <= 1)) { | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 998 | BUG_ON(!rq->rt.rt_nr_migratory); | 
|  | 999 | rq->rt.rt_nr_migratory--; | 
|  | 1000 | } | 
|  | 1001 |  | 
|  | 1002 | update_rt_migration(rq); | 
|  | 1003 | } | 
|  | 1004 |  | 
|  | 1005 | p->cpus_allowed    = *new_mask; | 
| Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 1006 | p->rt.nr_cpus_allowed = weight; | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 1007 | } | 
| Ingo Molnar | deeeccd | 2008-01-25 21:08:15 +0100 | [diff] [blame] | 1008 |  | 
| Ingo Molnar | bdd7c81 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 1009 | /* Assumes rq->lock is held */ | 
|  | 1010 | static void join_domain_rt(struct rq *rq) | 
|  | 1011 | { | 
|  | 1012 | if (rq->rt.overloaded) | 
|  | 1013 | rt_set_overload(rq); | 
|  | 1014 | } | 
|  | 1015 |  | 
|  | 1016 | /* Assumes rq->lock is held */ | 
|  | 1017 | static void leave_domain_rt(struct rq *rq) | 
|  | 1018 | { | 
|  | 1019 | if (rq->rt.overloaded) | 
|  | 1020 | rt_clear_overload(rq); | 
|  | 1021 | } | 
| Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1022 |  | 
|  | 1023 | /* | 
|  | 1024 | * When switch from the rt queue, we bring ourselves to a position | 
|  | 1025 | * that we might want to pull RT tasks from other runqueues. | 
|  | 1026 | */ | 
|  | 1027 | static void switched_from_rt(struct rq *rq, struct task_struct *p, | 
|  | 1028 | int running) | 
|  | 1029 | { | 
|  | 1030 | /* | 
|  | 1031 | * If there are other RT tasks then we will reschedule | 
|  | 1032 | * and the scheduling of the other RT tasks will handle | 
|  | 1033 | * the balancing. But if we are the last RT task | 
|  | 1034 | * we may need to handle the pulling of RT tasks | 
|  | 1035 | * now. | 
|  | 1036 | */ | 
|  | 1037 | if (!rq->rt.rt_nr_running) | 
|  | 1038 | pull_rt_task(rq); | 
|  | 1039 | } | 
| Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 1040 | #endif /* CONFIG_SMP */ | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1041 |  | 
| Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1042 | /* | 
|  | 1043 | * When switching a task to RT, we may overload the runqueue | 
|  | 1044 | * with RT tasks. In this case we try to push them off to | 
|  | 1045 | * other runqueues. | 
|  | 1046 | */ | 
|  | 1047 | static void switched_to_rt(struct rq *rq, struct task_struct *p, | 
|  | 1048 | int running) | 
|  | 1049 | { | 
|  | 1050 | int check_resched = 1; | 
|  | 1051 |  | 
|  | 1052 | /* | 
|  | 1053 | * If we are already running, then there's nothing | 
|  | 1054 | * that needs to be done. But if we are not running | 
|  | 1055 | * we may need to preempt the current running task. | 
|  | 1056 | * If that current running task is also an RT task | 
|  | 1057 | * then see if we can move to another run queue. | 
|  | 1058 | */ | 
|  | 1059 | if (!running) { | 
|  | 1060 | #ifdef CONFIG_SMP | 
|  | 1061 | if (rq->rt.overloaded && push_rt_task(rq) && | 
|  | 1062 | /* Don't resched if we changed runqueues */ | 
|  | 1063 | rq != task_rq(p)) | 
|  | 1064 | check_resched = 0; | 
|  | 1065 | #endif /* CONFIG_SMP */ | 
|  | 1066 | if (check_resched && p->prio < rq->curr->prio) | 
|  | 1067 | resched_task(rq->curr); | 
|  | 1068 | } | 
|  | 1069 | } | 
|  | 1070 |  | 
|  | 1071 | /* | 
|  | 1072 | * Priority of the task has changed. This may cause | 
|  | 1073 | * us to initiate a push or pull. | 
|  | 1074 | */ | 
|  | 1075 | static void prio_changed_rt(struct rq *rq, struct task_struct *p, | 
|  | 1076 | int oldprio, int running) | 
|  | 1077 | { | 
|  | 1078 | if (running) { | 
|  | 1079 | #ifdef CONFIG_SMP | 
|  | 1080 | /* | 
|  | 1081 | * If our priority decreases while running, we | 
|  | 1082 | * may need to pull tasks to this runqueue. | 
|  | 1083 | */ | 
|  | 1084 | if (oldprio < p->prio) | 
|  | 1085 | pull_rt_task(rq); | 
|  | 1086 | /* | 
|  | 1087 | * If there's a higher priority task waiting to run | 
|  | 1088 | * then reschedule. | 
|  | 1089 | */ | 
|  | 1090 | if (p->prio > rq->rt.highest_prio) | 
|  | 1091 | resched_task(p); | 
|  | 1092 | #else | 
|  | 1093 | /* For UP simply resched on drop of prio */ | 
|  | 1094 | if (oldprio < p->prio) | 
|  | 1095 | resched_task(p); | 
|  | 1096 | #endif /* CONFIG_SMP */ | 
|  | 1097 | } else { | 
|  | 1098 | /* | 
|  | 1099 | * This task is not running, but if it is | 
|  | 1100 | * greater than the current running task | 
|  | 1101 | * then reschedule. | 
|  | 1102 | */ | 
|  | 1103 | if (p->prio < rq->curr->prio) | 
|  | 1104 | resched_task(rq->curr); | 
|  | 1105 | } | 
|  | 1106 | } | 
|  | 1107 |  | 
| Peter Zijlstra | 78f2c7d | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1108 | static void watchdog(struct rq *rq, struct task_struct *p) | 
|  | 1109 | { | 
|  | 1110 | unsigned long soft, hard; | 
|  | 1111 |  | 
|  | 1112 | if (!p->signal) | 
|  | 1113 | return; | 
|  | 1114 |  | 
|  | 1115 | soft = p->signal->rlim[RLIMIT_RTTIME].rlim_cur; | 
|  | 1116 | hard = p->signal->rlim[RLIMIT_RTTIME].rlim_max; | 
|  | 1117 |  | 
|  | 1118 | if (soft != RLIM_INFINITY) { | 
|  | 1119 | unsigned long next; | 
|  | 1120 |  | 
|  | 1121 | p->rt.timeout++; | 
|  | 1122 | next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ); | 
| Peter Zijlstra | 5a52dd5 | 2008-01-25 21:08:32 +0100 | [diff] [blame] | 1123 | if (p->rt.timeout > next) | 
| Peter Zijlstra | 78f2c7d | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1124 | p->it_sched_expires = p->se.sum_exec_runtime; | 
|  | 1125 | } | 
|  | 1126 | } | 
| Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1127 |  | 
| Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1128 | static void task_tick_rt(struct rq *rq, struct task_struct *p, int queued) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1129 | { | 
| Peter Zijlstra | 67e2be0 | 2007-12-20 15:01:17 +0100 | [diff] [blame] | 1130 | update_curr_rt(rq); | 
|  | 1131 |  | 
| Peter Zijlstra | 78f2c7d | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1132 | watchdog(rq, p); | 
|  | 1133 |  | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1134 | /* | 
|  | 1135 | * RR tasks need a special form of timeslice management. | 
|  | 1136 | * FIFO tasks have no timeslices. | 
|  | 1137 | */ | 
|  | 1138 | if (p->policy != SCHED_RR) | 
|  | 1139 | return; | 
|  | 1140 |  | 
| Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1141 | if (--p->rt.time_slice) | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1142 | return; | 
|  | 1143 |  | 
| Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1144 | p->rt.time_slice = DEF_TIMESLICE; | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1145 |  | 
| Dmitry Adamushko | 98fbc79 | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 1146 | /* | 
|  | 1147 | * Requeue to the end of queue if we are not the only element | 
|  | 1148 | * on the queue: | 
|  | 1149 | */ | 
| Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1150 | if (p->rt.run_list.prev != p->rt.run_list.next) { | 
| Dmitry Adamushko | 98fbc79 | 2007-08-24 20:39:10 +0200 | [diff] [blame] | 1151 | requeue_task_rt(rq, p); | 
|  | 1152 | set_tsk_need_resched(p); | 
|  | 1153 | } | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1154 | } | 
|  | 1155 |  | 
| Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 1156 | static void set_curr_task_rt(struct rq *rq) | 
|  | 1157 | { | 
|  | 1158 | struct task_struct *p = rq->curr; | 
|  | 1159 |  | 
|  | 1160 | p->se.exec_start = rq->clock; | 
|  | 1161 | } | 
|  | 1162 |  | 
| Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1163 | const struct sched_class rt_sched_class = { | 
|  | 1164 | .next			= &fair_sched_class, | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1165 | .enqueue_task		= enqueue_task_rt, | 
|  | 1166 | .dequeue_task		= dequeue_task_rt, | 
|  | 1167 | .yield_task		= yield_task_rt, | 
| Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1168 | #ifdef CONFIG_SMP | 
|  | 1169 | .select_task_rq		= select_task_rq_rt, | 
|  | 1170 | #endif /* CONFIG_SMP */ | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1171 |  | 
|  | 1172 | .check_preempt_curr	= check_preempt_curr_rt, | 
|  | 1173 |  | 
|  | 1174 | .pick_next_task		= pick_next_task_rt, | 
|  | 1175 | .put_prev_task		= put_prev_task_rt, | 
|  | 1176 |  | 
| Peter Williams | 681f3e6 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1177 | #ifdef CONFIG_SMP | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1178 | .load_balance		= load_balance_rt, | 
| Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1179 | .move_one_task		= move_one_task_rt, | 
| Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 1180 | .set_cpus_allowed       = set_cpus_allowed_rt, | 
| Ingo Molnar | bdd7c81 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 1181 | .join_domain            = join_domain_rt, | 
|  | 1182 | .leave_domain           = leave_domain_rt, | 
| Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1183 | .pre_schedule		= pre_schedule_rt, | 
|  | 1184 | .post_schedule		= post_schedule_rt, | 
|  | 1185 | .task_wake_up		= task_wake_up_rt, | 
| Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1186 | .switched_from		= switched_from_rt, | 
| Peter Williams | 681f3e6 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1187 | #endif | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1188 |  | 
| Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 1189 | .set_curr_task          = set_curr_task_rt, | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1190 | .task_tick		= task_tick_rt, | 
| Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1191 |  | 
|  | 1192 | .prio_changed		= prio_changed_rt, | 
|  | 1193 | .switched_to		= switched_to_rt, | 
| Ingo Molnar | bb44e5d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1194 | }; |