| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 1 | /* | 
| Peter Zijlstra | 391e43d | 2011-11-15 17:14:39 +0100 | [diff] [blame] | 2 | *  kernel/sched/cpupri.c | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 3 | * | 
|  | 4 | *  CPU priority management | 
|  | 5 | * | 
|  | 6 | *  Copyright (C) 2007-2008 Novell | 
|  | 7 | * | 
|  | 8 | *  Author: Gregory Haskins <ghaskins@novell.com> | 
|  | 9 | * | 
|  | 10 | *  This code tracks the priority of each CPU so that global migration | 
|  | 11 | *  decisions are easy to calculate.  Each CPU can be in a state as follows: | 
|  | 12 | * | 
|  | 13 | *                 (INVALID), IDLE, NORMAL, RT1, ... RT99 | 
|  | 14 | * | 
|  | 15 | *  going from the lowest priority to the highest.  CPUs in the INVALID state | 
|  | 16 | *  are not eligible for routing.  The system maintains this state with | 
|  | 17 | *  a 2 dimensional bitmap (the first for priority class, the second for cpus | 
|  | 18 | *  in that class).  Therefore a typical application without affinity | 
|  | 19 | *  restrictions can find a suitable CPU with O(1) complexity (e.g. two bit | 
|  | 20 | *  searches).  For tasks with affinity restrictions, the algorithm has a | 
|  | 21 | *  worst case complexity of O(min(102, nr_domcpus)), though the scenario that | 
|  | 22 | *  yields the worst case search is fairly contrived. | 
|  | 23 | * | 
|  | 24 | *  This program is free software; you can redistribute it and/or | 
|  | 25 | *  modify it under the terms of the GNU General Public License | 
|  | 26 | *  as published by the Free Software Foundation; version 2 | 
|  | 27 | *  of the License. | 
|  | 28 | */ | 
|  | 29 |  | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/gfp.h> | 
| Clark Williams | 8bd75c7 | 2013-02-07 09:47:07 -0600 | [diff] [blame] | 31 | #include <linux/sched.h> | 
|  | 32 | #include <linux/sched/rt.h> | 
| Peter Zijlstra | 391e43d | 2011-11-15 17:14:39 +0100 | [diff] [blame] | 33 | #include "cpupri.h" | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 34 |  | 
|  | 35 | /* Convert between a 140 based task->prio, and our 102 based cpupri */ | 
|  | 36 | static int convert_prio(int prio) | 
|  | 37 | { | 
|  | 38 | int cpupri; | 
|  | 39 |  | 
|  | 40 | if (prio == CPUPRI_INVALID) | 
|  | 41 | cpupri = CPUPRI_INVALID; | 
|  | 42 | else if (prio == MAX_PRIO) | 
|  | 43 | cpupri = CPUPRI_IDLE; | 
|  | 44 | else if (prio >= MAX_RT_PRIO) | 
|  | 45 | cpupri = CPUPRI_NORMAL; | 
|  | 46 | else | 
|  | 47 | cpupri = MAX_RT_PRIO - prio + 1; | 
|  | 48 |  | 
|  | 49 | return cpupri; | 
|  | 50 | } | 
|  | 51 |  | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 52 | /** | 
|  | 53 | * cpupri_find - find the best (lowest-pri) CPU in the system | 
|  | 54 | * @cp: The cpupri context | 
|  | 55 | * @p: The task | 
| Rusty Russell | 13b8bd0 | 2009-03-25 15:01:22 +1030 | [diff] [blame] | 56 | * @lowest_mask: A mask to fill in with selected CPUs (or NULL) | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 57 | * | 
|  | 58 | * Note: This function returns the recommended CPUs as calculated during the | 
| Adam Buchbinder | 2a61aa4 | 2009-12-11 16:35:40 -0500 | [diff] [blame] | 59 | * current invocation.  By the time the call returns, the CPUs may have in | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 60 | * fact changed priorities any number of times.  While not ideal, it is not | 
|  | 61 | * an issue of correctness since the normal rebalancer logic will correct | 
|  | 62 | * any discrepancies created by racing against the uncertainty of the current | 
|  | 63 | * priority configuration. | 
|  | 64 | * | 
|  | 65 | * Returns: (int)bool - CPUs were found | 
|  | 66 | */ | 
|  | 67 | int cpupri_find(struct cpupri *cp, struct task_struct *p, | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 68 | struct cpumask *lowest_mask) | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 69 | { | 
| Ying Xue | 014acbf | 2012-07-12 15:03:42 +0800 | [diff] [blame] | 70 | int idx = 0; | 
|  | 71 | int task_pri = convert_prio(p->prio); | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 72 |  | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 73 | if (task_pri >= MAX_RT_PRIO) | 
|  | 74 | return 0; | 
|  | 75 |  | 
|  | 76 | for (idx = 0; idx < task_pri; idx++) { | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 77 | struct cpupri_vec *vec  = &cp->pri_to_cpu[idx]; | 
| Steven Rostedt | d473750 | 2011-08-05 08:27:49 -0400 | [diff] [blame] | 78 | int skip = 0; | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 79 |  | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 80 | if (!atomic_read(&(vec)->count)) | 
| Steven Rostedt | d473750 | 2011-08-05 08:27:49 -0400 | [diff] [blame] | 81 | skip = 1; | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 82 | /* | 
|  | 83 | * When looking at the vector, we need to read the counter, | 
|  | 84 | * do a memory barrier, then read the mask. | 
|  | 85 | * | 
|  | 86 | * Note: This is still all racey, but we can deal with it. | 
|  | 87 | *  Ideally, we only want to look at masks that are set. | 
|  | 88 | * | 
|  | 89 | *  If a mask is not set, then the only thing wrong is that we | 
|  | 90 | *  did a little more work than necessary. | 
|  | 91 | * | 
|  | 92 | *  If we read a zero count but the mask is set, because of the | 
|  | 93 | *  memory barriers, that can only happen when the highest prio | 
|  | 94 | *  task for a run queue has left the run queue, in which case, | 
|  | 95 | *  it will be followed by a pull. If the task we are processing | 
|  | 96 | *  fails to find a proper place to go, that pull request will | 
|  | 97 | *  pull this task if the run queue is running at a lower | 
|  | 98 | *  priority. | 
|  | 99 | */ | 
|  | 100 | smp_rmb(); | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 101 |  | 
| Steven Rostedt | d473750 | 2011-08-05 08:27:49 -0400 | [diff] [blame] | 102 | /* Need to do the rmb for every iteration */ | 
|  | 103 | if (skip) | 
|  | 104 | continue; | 
|  | 105 |  | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 106 | if (cpumask_any_and(&p->cpus_allowed, vec->mask) >= nr_cpu_ids) | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 107 | continue; | 
|  | 108 |  | 
| Gregory Haskins | 07903af | 2009-07-30 10:57:28 -0400 | [diff] [blame] | 109 | if (lowest_mask) { | 
| Rusty Russell | 13b8bd0 | 2009-03-25 15:01:22 +1030 | [diff] [blame] | 110 | cpumask_and(lowest_mask, &p->cpus_allowed, vec->mask); | 
| Gregory Haskins | 07903af | 2009-07-30 10:57:28 -0400 | [diff] [blame] | 111 |  | 
|  | 112 | /* | 
|  | 113 | * We have to ensure that we have at least one bit | 
|  | 114 | * still set in the array, since the map could have | 
|  | 115 | * been concurrently emptied between the first and | 
|  | 116 | * second reads of vec->mask.  If we hit this | 
|  | 117 | * condition, simply act as though we never hit this | 
|  | 118 | * priority level and continue on. | 
|  | 119 | */ | 
|  | 120 | if (cpumask_any(lowest_mask) >= nr_cpu_ids) | 
|  | 121 | continue; | 
|  | 122 | } | 
|  | 123 |  | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 124 | return 1; | 
|  | 125 | } | 
|  | 126 |  | 
|  | 127 | return 0; | 
|  | 128 | } | 
|  | 129 |  | 
|  | 130 | /** | 
|  | 131 | * cpupri_set - update the cpu priority setting | 
|  | 132 | * @cp: The cpupri context | 
|  | 133 | * @cpu: The target cpu | 
| Randy Dunlap | fa75728 | 2012-01-21 11:03:13 -0800 | [diff] [blame] | 134 | * @newpri: The priority (INVALID-RT99) to assign to this CPU | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 135 | * | 
|  | 136 | * Note: Assumes cpu_rq(cpu)->lock is locked | 
|  | 137 | * | 
|  | 138 | * Returns: (void) | 
|  | 139 | */ | 
|  | 140 | void cpupri_set(struct cpupri *cp, int cpu, int newpri) | 
|  | 141 | { | 
| Ying Xue | 014acbf | 2012-07-12 15:03:42 +0800 | [diff] [blame] | 142 | int *currpri = &cp->cpu_to_pri[cpu]; | 
|  | 143 | int oldpri = *currpri; | 
|  | 144 | int do_mb = 0; | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 145 |  | 
|  | 146 | newpri = convert_prio(newpri); | 
|  | 147 |  | 
|  | 148 | BUG_ON(newpri >= CPUPRI_NR_PRIORITIES); | 
|  | 149 |  | 
|  | 150 | if (newpri == oldpri) | 
|  | 151 | return; | 
|  | 152 |  | 
|  | 153 | /* | 
|  | 154 | * If the cpu was currently mapped to a different value, we | 
| Steven Rostedt | c3a2ae3 | 2009-07-29 00:21:23 -0400 | [diff] [blame] | 155 | * need to map it to the new value then remove the old value. | 
|  | 156 | * Note, we must add the new value first, otherwise we risk the | 
| Yong Zhang | 5710f15 | 2011-08-06 08:10:04 +0800 | [diff] [blame] | 157 | * cpu being missed by the priority loop in cpupri_find. | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 158 | */ | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 159 | if (likely(newpri != CPUPRI_INVALID)) { | 
|  | 160 | struct cpupri_vec *vec = &cp->pri_to_cpu[newpri]; | 
|  | 161 |  | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 162 | cpumask_set_cpu(cpu, vec->mask); | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 163 | /* | 
|  | 164 | * When adding a new vector, we update the mask first, | 
|  | 165 | * do a write memory barrier, and then update the count, to | 
|  | 166 | * make sure the vector is visible when count is set. | 
|  | 167 | */ | 
| Steven Rostedt | d473750 | 2011-08-05 08:27:49 -0400 | [diff] [blame] | 168 | smp_mb__before_atomic_inc(); | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 169 | atomic_inc(&(vec)->count); | 
| Steven Rostedt | d473750 | 2011-08-05 08:27:49 -0400 | [diff] [blame] | 170 | do_mb = 1; | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 171 | } | 
| Steven Rostedt | c3a2ae3 | 2009-07-29 00:21:23 -0400 | [diff] [blame] | 172 | if (likely(oldpri != CPUPRI_INVALID)) { | 
|  | 173 | struct cpupri_vec *vec  = &cp->pri_to_cpu[oldpri]; | 
|  | 174 |  | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 175 | /* | 
| Steven Rostedt | d473750 | 2011-08-05 08:27:49 -0400 | [diff] [blame] | 176 | * Because the order of modification of the vec->count | 
|  | 177 | * is important, we must make sure that the update | 
|  | 178 | * of the new prio is seen before we decrement the | 
|  | 179 | * old prio. This makes sure that the loop sees | 
|  | 180 | * one or the other when we raise the priority of | 
|  | 181 | * the run queue. We don't care about when we lower the | 
|  | 182 | * priority, as that will trigger an rt pull anyway. | 
|  | 183 | * | 
|  | 184 | * We only need to do a memory barrier if we updated | 
|  | 185 | * the new priority vec. | 
|  | 186 | */ | 
|  | 187 | if (do_mb) | 
|  | 188 | smp_mb__after_atomic_inc(); | 
|  | 189 |  | 
|  | 190 | /* | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 191 | * When removing from the vector, we decrement the counter first | 
|  | 192 | * do a memory barrier and then clear the mask. | 
|  | 193 | */ | 
|  | 194 | atomic_dec(&(vec)->count); | 
| Steven Rostedt | d473750 | 2011-08-05 08:27:49 -0400 | [diff] [blame] | 195 | smp_mb__after_atomic_inc(); | 
| Steven Rostedt | c3a2ae3 | 2009-07-29 00:21:23 -0400 | [diff] [blame] | 196 | cpumask_clear_cpu(cpu, vec->mask); | 
| Steven Rostedt | c3a2ae3 | 2009-07-29 00:21:23 -0400 | [diff] [blame] | 197 | } | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 198 |  | 
|  | 199 | *currpri = newpri; | 
|  | 200 | } | 
|  | 201 |  | 
|  | 202 | /** | 
|  | 203 | * cpupri_init - initialize the cpupri structure | 
|  | 204 | * @cp: The cpupri context | 
|  | 205 | * | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 206 | * Returns: -ENOMEM if memory fails. | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 207 | */ | 
| Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 208 | int cpupri_init(struct cpupri *cp) | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 209 | { | 
|  | 210 | int i; | 
|  | 211 |  | 
|  | 212 | memset(cp, 0, sizeof(*cp)); | 
|  | 213 |  | 
|  | 214 | for (i = 0; i < CPUPRI_NR_PRIORITIES; i++) { | 
|  | 215 | struct cpupri_vec *vec = &cp->pri_to_cpu[i]; | 
|  | 216 |  | 
| Steven Rostedt | c92211d | 2011-08-02 16:36:12 -0400 | [diff] [blame] | 217 | atomic_set(&vec->count, 0); | 
| Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 218 | if (!zalloc_cpumask_var(&vec->mask, GFP_KERNEL)) | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 219 | goto cleanup; | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 220 | } | 
|  | 221 |  | 
|  | 222 | for_each_possible_cpu(i) | 
|  | 223 | cp->cpu_to_pri[i] = CPUPRI_INVALID; | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 224 | return 0; | 
|  | 225 |  | 
|  | 226 | cleanup: | 
|  | 227 | for (i--; i >= 0; i--) | 
|  | 228 | free_cpumask_var(cp->pri_to_cpu[i].mask); | 
|  | 229 | return -ENOMEM; | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 230 | } | 
|  | 231 |  | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 232 | /** | 
|  | 233 | * cpupri_cleanup - clean up the cpupri structure | 
|  | 234 | * @cp: The cpupri context | 
|  | 235 | */ | 
|  | 236 | void cpupri_cleanup(struct cpupri *cp) | 
|  | 237 | { | 
|  | 238 | int i; | 
| Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 239 |  | 
| Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 240 | for (i = 0; i < CPUPRI_NR_PRIORITIES; i++) | 
|  | 241 | free_cpumask_var(cp->pri_to_cpu[i].mask); | 
|  | 242 | } |