blob: daaadf939ccb1e9349e716e9d97359d0c7258519 [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
Ingo Molnar97fb7a02018-03-03 14:01:12 +010017 * a 2 dimensional bitmap (the first for priority class, the second for CPUs
Gregory Haskins6e0534f2008-05-12 21:21:01 +020018 * 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 */
Ingo Molnar325ea102018-03-03 12:20:47 +010029#include "sched.h"
Gregory Haskins6e0534f2008-05-12 21:21:01 +020030
31/* Convert between a 140 based task->prio, and our 102 based cpupri */
32static int convert_prio(int prio)
33{
34 int cpupri;
35
36 if (prio == CPUPRI_INVALID)
37 cpupri = CPUPRI_INVALID;
38 else if (prio == MAX_PRIO)
39 cpupri = CPUPRI_IDLE;
40 else if (prio >= MAX_RT_PRIO)
41 cpupri = CPUPRI_NORMAL;
42 else
43 cpupri = MAX_RT_PRIO - prio + 1;
44
45 return cpupri;
46}
47
Gregory Haskins6e0534f2008-05-12 21:21:01 +020048/**
49 * cpupri_find - find the best (lowest-pri) CPU in the system
50 * @cp: The cpupri context
51 * @p: The task
Rusty Russell13b8bd02009-03-25 15:01:22 +103052 * @lowest_mask: A mask to fill in with selected CPUs (or NULL)
Gregory Haskins6e0534f2008-05-12 21:21:01 +020053 *
54 * Note: This function returns the recommended CPUs as calculated during the
Adam Buchbinder2a61aa42009-12-11 16:35:40 -050055 * current invocation. By the time the call returns, the CPUs may have in
Gregory Haskins6e0534f2008-05-12 21:21:01 +020056 * fact changed priorities any number of times. While not ideal, it is not
57 * an issue of correctness since the normal rebalancer logic will correct
58 * any discrepancies created by racing against the uncertainty of the current
59 * priority configuration.
60 *
Yacine Belkadie69f6182013-07-12 20:45:47 +020061 * Return: (int)bool - CPUs were found
Gregory Haskins6e0534f2008-05-12 21:21:01 +020062 */
63int cpupri_find(struct cpupri *cp, struct task_struct *p,
Rusty Russell68e74562008-11-25 02:35:13 +103064 struct cpumask *lowest_mask)
Gregory Haskins6e0534f2008-05-12 21:21:01 +020065{
Ying Xue014acbf2012-07-12 15:03:42 +080066 int idx = 0;
67 int task_pri = convert_prio(p->prio);
Gregory Haskins6e0534f2008-05-12 21:21:01 +020068
Steven Rostedt (Red Hat)6227cb02014-04-13 09:34:53 -040069 BUG_ON(task_pri >= CPUPRI_NR_PRIORITIES);
Steven Rostedtc92211d2011-08-02 16:36:12 -040070
71 for (idx = 0; idx < task_pri; idx++) {
Gregory Haskins6e0534f2008-05-12 21:21:01 +020072 struct cpupri_vec *vec = &cp->pri_to_cpu[idx];
Steven Rostedtd4737502011-08-05 08:27:49 -040073 int skip = 0;
Gregory Haskins6e0534f2008-05-12 21:21:01 +020074
Steven Rostedtc92211d2011-08-02 16:36:12 -040075 if (!atomic_read(&(vec)->count))
Steven Rostedtd4737502011-08-05 08:27:49 -040076 skip = 1;
Steven Rostedtc92211d2011-08-02 16:36:12 -040077 /*
78 * When looking at the vector, we need to read the counter,
79 * do a memory barrier, then read the mask.
80 *
81 * Note: This is still all racey, but we can deal with it.
82 * Ideally, we only want to look at masks that are set.
83 *
84 * If a mask is not set, then the only thing wrong is that we
85 * did a little more work than necessary.
86 *
87 * If we read a zero count but the mask is set, because of the
88 * memory barriers, that can only happen when the highest prio
89 * task for a run queue has left the run queue, in which case,
90 * it will be followed by a pull. If the task we are processing
91 * fails to find a proper place to go, that pull request will
92 * pull this task if the run queue is running at a lower
93 * priority.
94 */
95 smp_rmb();
Gregory Haskins6e0534f2008-05-12 21:21:01 +020096
Steven Rostedtd4737502011-08-05 08:27:49 -040097 /* Need to do the rmb for every iteration */
98 if (skip)
99 continue;
100
Ingo Molnar0c98d342017-02-05 15:38:10 +0100101 if (cpumask_any_and(&p->cpus_allowed, vec->mask) >= nr_cpu_ids)
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200102 continue;
103
Gregory Haskins07903af2009-07-30 10:57:28 -0400104 if (lowest_mask) {
Ingo Molnar0c98d342017-02-05 15:38:10 +0100105 cpumask_and(lowest_mask, &p->cpus_allowed, vec->mask);
Gregory Haskins07903af2009-07-30 10:57:28 -0400106
107 /*
108 * We have to ensure that we have at least one bit
109 * still set in the array, since the map could have
110 * been concurrently emptied between the first and
111 * second reads of vec->mask. If we hit this
112 * condition, simply act as though we never hit this
113 * priority level and continue on.
114 */
115 if (cpumask_any(lowest_mask) >= nr_cpu_ids)
116 continue;
117 }
118
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200119 return 1;
120 }
121
122 return 0;
123}
124
125/**
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100126 * cpupri_set - update the CPU priority setting
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200127 * @cp: The cpupri context
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100128 * @cpu: The target CPU
Randy Dunlapfa757282012-01-21 11:03:13 -0800129 * @newpri: The priority (INVALID-RT99) to assign to this CPU
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200130 *
131 * Note: Assumes cpu_rq(cpu)->lock is locked
132 *
133 * Returns: (void)
134 */
135void cpupri_set(struct cpupri *cp, int cpu, int newpri)
136{
Ying Xue014acbf2012-07-12 15:03:42 +0800137 int *currpri = &cp->cpu_to_pri[cpu];
138 int oldpri = *currpri;
139 int do_mb = 0;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200140
141 newpri = convert_prio(newpri);
142
143 BUG_ON(newpri >= CPUPRI_NR_PRIORITIES);
144
145 if (newpri == oldpri)
146 return;
147
148 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +0100149 * If the CPU was currently mapped to a different value, we
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400150 * need to map it to the new value then remove the old value.
151 * Note, we must add the new value first, otherwise we risk the
Yong Zhang5710f152011-08-06 08:10:04 +0800152 * cpu being missed by the priority loop in cpupri_find.
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200153 */
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200154 if (likely(newpri != CPUPRI_INVALID)) {
155 struct cpupri_vec *vec = &cp->pri_to_cpu[newpri];
156
Rusty Russell68e74562008-11-25 02:35:13 +1030157 cpumask_set_cpu(cpu, vec->mask);
Steven Rostedtc92211d2011-08-02 16:36:12 -0400158 /*
159 * When adding a new vector, we update the mask first,
160 * do a write memory barrier, and then update the count, to
161 * make sure the vector is visible when count is set.
162 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100163 smp_mb__before_atomic();
Steven Rostedtc92211d2011-08-02 16:36:12 -0400164 atomic_inc(&(vec)->count);
Steven Rostedtd4737502011-08-05 08:27:49 -0400165 do_mb = 1;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200166 }
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400167 if (likely(oldpri != CPUPRI_INVALID)) {
168 struct cpupri_vec *vec = &cp->pri_to_cpu[oldpri];
169
Steven Rostedtc92211d2011-08-02 16:36:12 -0400170 /*
Steven Rostedtd4737502011-08-05 08:27:49 -0400171 * Because the order of modification of the vec->count
172 * is important, we must make sure that the update
173 * of the new prio is seen before we decrement the
174 * old prio. This makes sure that the loop sees
175 * one or the other when we raise the priority of
176 * the run queue. We don't care about when we lower the
177 * priority, as that will trigger an rt pull anyway.
178 *
179 * We only need to do a memory barrier if we updated
180 * the new priority vec.
181 */
182 if (do_mb)
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100183 smp_mb__after_atomic();
Steven Rostedtd4737502011-08-05 08:27:49 -0400184
185 /*
Steven Rostedtc92211d2011-08-02 16:36:12 -0400186 * When removing from the vector, we decrement the counter first
187 * do a memory barrier and then clear the mask.
188 */
189 atomic_dec(&(vec)->count);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100190 smp_mb__after_atomic();
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400191 cpumask_clear_cpu(cpu, vec->mask);
Steven Rostedtc3a2ae32009-07-29 00:21:23 -0400192 }
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200193
194 *currpri = newpri;
195}
196
197/**
198 * cpupri_init - initialize the cpupri structure
199 * @cp: The cpupri context
200 *
Yacine Belkadie69f6182013-07-12 20:45:47 +0200201 * Return: -ENOMEM on memory allocation failure.
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200202 */
Pekka Enberg68c38fc2010-07-15 23:18:22 +0300203int cpupri_init(struct cpupri *cp)
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200204{
205 int i;
206
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200207 for (i = 0; i < CPUPRI_NR_PRIORITIES; i++) {
208 struct cpupri_vec *vec = &cp->pri_to_cpu[i];
209
Steven Rostedtc92211d2011-08-02 16:36:12 -0400210 atomic_set(&vec->count, 0);
Pekka Enberg68c38fc2010-07-15 23:18:22 +0300211 if (!zalloc_cpumask_var(&vec->mask, GFP_KERNEL))
Rusty Russell68e74562008-11-25 02:35:13 +1030212 goto cleanup;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200213 }
214
Peter Zijlstra4dac0b62014-05-14 16:04:26 +0200215 cp->cpu_to_pri = kcalloc(nr_cpu_ids, sizeof(int), GFP_KERNEL);
216 if (!cp->cpu_to_pri)
217 goto cleanup;
218
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200219 for_each_possible_cpu(i)
220 cp->cpu_to_pri[i] = CPUPRI_INVALID;
Peter Zijlstra4dac0b62014-05-14 16:04:26 +0200221
Rusty Russell68e74562008-11-25 02:35:13 +1030222 return 0;
223
224cleanup:
225 for (i--; i >= 0; i--)
226 free_cpumask_var(cp->pri_to_cpu[i].mask);
227 return -ENOMEM;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200228}
229
Rusty Russell68e74562008-11-25 02:35:13 +1030230/**
231 * cpupri_cleanup - clean up the cpupri structure
232 * @cp: The cpupri context
233 */
234void cpupri_cleanup(struct cpupri *cp)
235{
236 int i;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200237
Peter Zijlstra4dac0b62014-05-14 16:04:26 +0200238 kfree(cp->cpu_to_pri);
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}