blob: 3031bac8aa3ea990bc7425e835675c7a5a386ab5 [file] [log] [blame]
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001/*
Peter Zijlstra391e43d2011-11-15 17:14:39 +01002 * kernel/sched/cpupri.c
Gregory Haskins6e0534f2008-05-12 21:21:01 +02003 *
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 Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/gfp.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060031#include <linux/sched.h>
32#include <linux/sched/rt.h>
Peter Zijlstra391e43d2011-11-15 17:14:39 +010033#include "cpupri.h"
Gregory Haskins6e0534f2008-05-12 21:21:01 +020034
35/* Convert between a 140 based task->prio, and our 102 based cpupri */
36static 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 Haskins6e0534f2008-05-12 21:21:01 +020052/**
53 * cpupri_find - find the best (lowest-pri) CPU in the system
54 * @cp: The cpupri context
55 * @p: The task
Rusty Russell13b8bd02009-03-25 15:01:22 +103056 * @lowest_mask: A mask to fill in with selected CPUs (or NULL)
Gregory Haskins6e0534f2008-05-12 21:21:01 +020057 *
58 * Note: This function returns the recommended CPUs as calculated during the
Adam Buchbinder2a61aa42009-12-11 16:35:40 -050059 * current invocation. By the time the call returns, the CPUs may have in
Gregory Haskins6e0534f2008-05-12 21:21:01 +020060 * 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 *
Yacine Belkadie69f6182013-07-12 20:45:47 +020065 * Return: (int)bool - CPUs were found
Gregory Haskins6e0534f2008-05-12 21:21:01 +020066 */
67int cpupri_find(struct cpupri *cp, struct task_struct *p,
Rusty Russell68e74562008-11-25 02:35:13 +103068 struct cpumask *lowest_mask)
Gregory Haskins6e0534f2008-05-12 21:21:01 +020069{
Ying Xue014acbf2012-07-12 15:03:42 +080070 int idx = 0;
71 int task_pri = convert_prio(p->prio);
Gregory Haskins6e0534f2008-05-12 21:21:01 +020072
Steven Rostedt (Red Hat)6227cb02014-04-13 09:34:53 -040073 BUG_ON(task_pri >= CPUPRI_NR_PRIORITIES);
Steven Rostedtc92211d2011-08-02 16:36:12 -040074
75 for (idx = 0; idx < task_pri; idx++) {
Gregory Haskins6e0534f2008-05-12 21:21:01 +020076 struct cpupri_vec *vec = &cp->pri_to_cpu[idx];
Steven Rostedtd4737502011-08-05 08:27:49 -040077 int skip = 0;
Gregory Haskins6e0534f2008-05-12 21:21:01 +020078
Steven Rostedtc92211d2011-08-02 16:36:12 -040079 if (!atomic_read(&(vec)->count))
Steven Rostedtd4737502011-08-05 08:27:49 -040080 skip = 1;
Steven Rostedtc92211d2011-08-02 16:36:12 -040081 /*
82 * When looking at the vector, we need to read the counter,
83 * do a memory barrier, then read the mask.
84 *
85 * Note: This is still all racey, but we can deal with it.
86 * Ideally, we only want to look at masks that are set.
87 *
88 * If a mask is not set, then the only thing wrong is that we
89 * did a little more work than necessary.
90 *
91 * If we read a zero count but the mask is set, because of the
92 * memory barriers, that can only happen when the highest prio
93 * task for a run queue has left the run queue, in which case,
94 * it will be followed by a pull. If the task we are processing
95 * fails to find a proper place to go, that pull request will
96 * pull this task if the run queue is running at a lower
97 * priority.
98 */
99 smp_rmb();
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200100
Steven Rostedtd4737502011-08-05 08:27:49 -0400101 /* Need to do the rmb for every iteration */
102 if (skip)
103 continue;
104
Rusty Russell68e74562008-11-25 02:35:13 +1030105 if (cpumask_any_and(&p->cpus_allowed, vec->mask) >= nr_cpu_ids)
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200106 continue;
107
Gregory Haskins07903af2009-07-30 10:57:28 -0400108 if (lowest_mask) {
Rusty Russell13b8bd02009-03-25 15:01:22 +1030109 cpumask_and(lowest_mask, &p->cpus_allowed, vec->mask);
Gregory Haskins07903af2009-07-30 10:57:28 -0400110
111 /*
112 * We have to ensure that we have at least one bit
113 * still set in the array, since the map could have
114 * been concurrently emptied between the first and
115 * second reads of vec->mask. If we hit this
116 * condition, simply act as though we never hit this
117 * priority level and continue on.
118 */
119 if (cpumask_any(lowest_mask) >= nr_cpu_ids)
120 continue;
121 }
122
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200123 return 1;
124 }
125
126 return 0;
127}
128
129/**
130 * cpupri_set - update the cpu priority setting
131 * @cp: The cpupri context
132 * @cpu: The target cpu
Randy Dunlapfa757282012-01-21 11:03:13 -0800133 * @newpri: The priority (INVALID-RT99) to assign to this CPU
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200134 *
135 * Note: Assumes cpu_rq(cpu)->lock is locked
136 *
137 * Returns: (void)
138 */
139void cpupri_set(struct cpupri *cp, int cpu, int newpri)
140{
Ying Xue014acbf2012-07-12 15:03:42 +0800141 int *currpri = &cp->cpu_to_pri[cpu];
142 int oldpri = *currpri;
143 int do_mb = 0;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200144
145 newpri = convert_prio(newpri);
146
147 BUG_ON(newpri >= CPUPRI_NR_PRIORITIES);
148
149 if (newpri == oldpri)
150 return;
151
152 /*
153 * If the cpu was currently mapped to a different value, we
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400154 * need to map it to the new value then remove the old value.
155 * Note, we must add the new value first, otherwise we risk the
Yong Zhang5710f152011-08-06 08:10:04 +0800156 * cpu being missed by the priority loop in cpupri_find.
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200157 */
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200158 if (likely(newpri != CPUPRI_INVALID)) {
159 struct cpupri_vec *vec = &cp->pri_to_cpu[newpri];
160
Rusty Russell68e74562008-11-25 02:35:13 +1030161 cpumask_set_cpu(cpu, vec->mask);
Steven Rostedtc92211d2011-08-02 16:36:12 -0400162 /*
163 * When adding a new vector, we update the mask first,
164 * do a write memory barrier, and then update the count, to
165 * make sure the vector is visible when count is set.
166 */
Steven Rostedtd4737502011-08-05 08:27:49 -0400167 smp_mb__before_atomic_inc();
Steven Rostedtc92211d2011-08-02 16:36:12 -0400168 atomic_inc(&(vec)->count);
Steven Rostedtd4737502011-08-05 08:27:49 -0400169 do_mb = 1;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200170 }
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400171 if (likely(oldpri != CPUPRI_INVALID)) {
172 struct cpupri_vec *vec = &cp->pri_to_cpu[oldpri];
173
Steven Rostedtc92211d2011-08-02 16:36:12 -0400174 /*
Steven Rostedtd4737502011-08-05 08:27:49 -0400175 * Because the order of modification of the vec->count
176 * is important, we must make sure that the update
177 * of the new prio is seen before we decrement the
178 * old prio. This makes sure that the loop sees
179 * one or the other when we raise the priority of
180 * the run queue. We don't care about when we lower the
181 * priority, as that will trigger an rt pull anyway.
182 *
183 * We only need to do a memory barrier if we updated
184 * the new priority vec.
185 */
186 if (do_mb)
187 smp_mb__after_atomic_inc();
188
189 /*
Steven Rostedtc92211d2011-08-02 16:36:12 -0400190 * When removing from the vector, we decrement the counter first
191 * do a memory barrier and then clear the mask.
192 */
193 atomic_dec(&(vec)->count);
Steven Rostedtd4737502011-08-05 08:27:49 -0400194 smp_mb__after_atomic_inc();
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400195 cpumask_clear_cpu(cpu, vec->mask);
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400196 }
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200197
198 *currpri = newpri;
199}
200
201/**
202 * cpupri_init - initialize the cpupri structure
203 * @cp: The cpupri context
204 *
Yacine Belkadie69f6182013-07-12 20:45:47 +0200205 * Return: -ENOMEM on memory allocation failure.
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200206 */
Pekka Enberg68c38fc2010-07-15 23:18:22 +0300207int cpupri_init(struct cpupri *cp)
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200208{
209 int i;
210
211 memset(cp, 0, sizeof(*cp));
212
213 for (i = 0; i < CPUPRI_NR_PRIORITIES; i++) {
214 struct cpupri_vec *vec = &cp->pri_to_cpu[i];
215
Steven Rostedtc92211d2011-08-02 16:36:12 -0400216 atomic_set(&vec->count, 0);
Pekka Enberg68c38fc2010-07-15 23:18:22 +0300217 if (!zalloc_cpumask_var(&vec->mask, GFP_KERNEL))
Rusty Russell68e74562008-11-25 02:35:13 +1030218 goto cleanup;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200219 }
220
221 for_each_possible_cpu(i)
222 cp->cpu_to_pri[i] = CPUPRI_INVALID;
Rusty Russell68e74562008-11-25 02:35:13 +1030223 return 0;
224
225cleanup:
226 for (i--; i >= 0; i--)
227 free_cpumask_var(cp->pri_to_cpu[i].mask);
228 return -ENOMEM;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200229}
230
Rusty Russell68e74562008-11-25 02:35:13 +1030231/**
232 * cpupri_cleanup - clean up the cpupri structure
233 * @cp: The cpupri context
234 */
235void cpupri_cleanup(struct cpupri *cp)
236{
237 int i;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200238
Rusty Russell68e74562008-11-25 02:35:13 +1030239 for (i = 0; i < CPUPRI_NR_PRIORITIES; i++)
240 free_cpumask_var(cp->pri_to_cpu[i].mask);
241}