blob: b5349fee1213d5d2df92c2e59353eec6588d6cd1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Peter Zijlstra391e43d2011-11-15 17:14:39 +01002 * kernel/sched/core.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Kernel scheduler and related syscalls
5 *
6 * Copyright (C) 1991-2002 Linus Torvalds
7 *
8 * 1996-12-23 Modified by Dave Grothe to fix bugs in semaphores and
9 * make semaphores SMP safe
10 * 1998-11-19 Implemented schedule_timeout() and related stuff
11 * by Andrea Arcangeli
12 * 2002-01-04 New ultra-scalable O(1) scheduler by Ingo Molnar:
13 * hybrid priority-list and round-robin design with
14 * an array-switch method of distributing timeslices
15 * and per-CPU runqueues. Cleanups and useful suggestions
16 * by Davide Libenzi, preemptible kernel bits by Robert Love.
17 * 2003-09-03 Interactivity tuning by Con Kolivas.
18 * 2004-04-02 Scheduler domains code by Nick Piggin
Ingo Molnarc31f2e82007-07-09 18:52:01 +020019 * 2007-04-15 Work begun on replacing all interactivity tuning with a
20 * fair scheduling design by Con Kolivas.
21 * 2007-05-05 Load balancing (smp-nice) and other improvements
22 * by Peter Williams
23 * 2007-05-06 Interactivity improvements to CFS by Mike Galbraith
24 * 2007-07-01 Group scheduling enhancements by Srivatsa Vaddagiri
Ingo Molnarb9131762008-01-25 21:08:19 +010025 * 2007-11-29 RT balancing improvements by Steven Rostedt, Gregory Haskins,
26 * Thomas Gleixner, Mike Kravetz
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
29#include <linux/mm.h>
30#include <linux/module.h>
31#include <linux/nmi.h>
32#include <linux/init.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/mmu_context.h>
36#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080037#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/completion.h>
39#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070040#include <linux/debug_locks.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020041#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/security.h>
43#include <linux/notifier.h>
44#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080045#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080046#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/blkdev.h>
48#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070049#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/smp.h>
51#include <linux/threads.h>
52#include <linux/timer.h>
53#include <linux/rcupdate.h>
54#include <linux/cpu.h>
55#include <linux/cpuset.h>
56#include <linux/percpu.h>
Alexey Dobriyanb5aadf72008-10-06 13:23:43 +040057#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020059#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/syscalls.h>
61#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070062#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080063#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070064#include <linux/delayacct.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020065#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020066#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010067#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070068#include <linux/tick.h>
Peter Zijlstraf00b45c2008-04-19 19:45:00 +020069#include <linux/debugfs.h>
70#include <linux/ctype.h>
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020071#include <linux/ftrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090072#include <linux/slab.h>
Carsten Emdef1c6f1a2011-10-26 23:14:16 +020073#include <linux/init_task.h>
Al Viro40401532012-02-13 03:58:52 +000074#include <linux/binfmts.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010075#include <linux/context_tracking.h>
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -070076#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
David Howells96f951e2012-03-28 18:30:03 +010078#include <asm/switch_to.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070079#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020080#include <asm/irq_regs.h>
Christian Borntraegerdb7e5272012-01-11 08:58:16 +010081#include <asm/mutex.h>
Glauber Costae6e66852011-07-11 15:28:17 -040082#ifdef CONFIG_PARAVIRT
83#include <asm/paravirt.h>
84#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Peter Zijlstra029632f2011-10-25 10:00:11 +020086#include "sched.h"
Tejun Heoea138442013-01-18 14:05:55 -080087#include "../workqueue_internal.h"
Thomas Gleixner29d5e042012-04-20 13:05:45 +000088#include "../smpboot.h"
Gregory Haskins6e0534f2008-05-12 21:21:01 +020089
Steven Rostedta8d154b2009-04-10 09:36:00 -040090#define CREATE_TRACE_POINTS
Steven Rostedtad8d75f2009-04-14 19:39:12 -040091#include <trace/events/sched.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040092
Peter Zijlstrafebdbfe2014-02-06 18:16:07 +010093#ifdef smp_mb__before_atomic
94void __smp_mb__before_atomic(void)
95{
96 smp_mb__before_atomic();
97}
98EXPORT_SYMBOL(__smp_mb__before_atomic);
99#endif
100
101#ifdef smp_mb__after_atomic
102void __smp_mb__after_atomic(void)
103{
104 smp_mb__after_atomic();
105}
106EXPORT_SYMBOL(__smp_mb__after_atomic);
107#endif
108
Peter Zijlstra029632f2011-10-25 10:00:11 +0200109void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period)
Paul Turner58088ad2011-07-21 09:43:31 -0700110{
111 unsigned long delta;
112 ktime_t soft, hard, now;
113
114 for (;;) {
115 if (hrtimer_active(period_timer))
116 break;
117
118 now = hrtimer_cb_get_time(period_timer);
119 hrtimer_forward(period_timer, now, period);
120
121 soft = hrtimer_get_softexpires(period_timer);
122 hard = hrtimer_get_expires(period_timer);
123 delta = ktime_to_ns(ktime_sub(hard, soft));
124 __hrtimer_start_range_ns(period_timer, soft, delta,
125 HRTIMER_MODE_ABS_PINNED, 0);
126 }
127}
128
Peter Zijlstra029632f2011-10-25 10:00:11 +0200129DEFINE_MUTEX(sched_domains_mutex);
130DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200131
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100132static void update_rq_clock_task(struct rq *rq, s64 delta);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700133
Peter Zijlstra029632f2011-10-25 10:00:11 +0200134void update_rq_clock(struct rq *rq)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200135{
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100136 s64 delta;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700137
Mike Galbraith61eadef2011-04-29 08:36:50 +0200138 if (rq->skip_clock_update > 0)
Mike Galbraithf26f9af2010-12-08 11:05:42 +0100139 return;
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700140
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100141 delta = sched_clock_cpu(cpu_of(rq)) - rq->clock;
Mike Galbraith4036ac12014-06-24 07:49:40 +0200142 if (delta < 0)
143 return;
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100144 rq->clock += delta;
145 update_rq_clock_task(rq, delta);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200146}
147
Ingo Molnare436d802007-07-19 21:28:35 +0200148/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200149 * Debugging: various feature bits
150 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200151
152#define SCHED_FEAT(name, enabled) \
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200153 (1UL << __SCHED_FEAT_##name) * enabled |
154
155const_debug unsigned int sysctl_sched_features =
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100156#include "features.h"
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200157 0;
158
159#undef SCHED_FEAT
160
161#ifdef CONFIG_SCHED_DEBUG
162#define SCHED_FEAT(name, enabled) \
163 #name ,
164
Hiroshi Shimamoto12925312012-05-25 15:41:54 +0900165static const char * const sched_feat_names[] = {
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100166#include "features.h"
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200167};
168
169#undef SCHED_FEAT
170
Li Zefan34f3a812008-10-30 15:23:32 +0800171static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200172{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200173 int i;
174
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200175 for (i = 0; i < __SCHED_FEAT_NR; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800176 if (!(sysctl_sched_features & (1UL << i)))
177 seq_puts(m, "NO_");
178 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200179 }
Li Zefan34f3a812008-10-30 15:23:32 +0800180 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200181
Li Zefan34f3a812008-10-30 15:23:32 +0800182 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200183}
184
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200185#ifdef HAVE_JUMP_LABEL
186
Ingo Molnarc5905af2012-02-24 08:31:31 +0100187#define jump_label_key__true STATIC_KEY_INIT_TRUE
188#define jump_label_key__false STATIC_KEY_INIT_FALSE
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200189
190#define SCHED_FEAT(name, enabled) \
191 jump_label_key__##enabled ,
192
Ingo Molnarc5905af2012-02-24 08:31:31 +0100193struct static_key sched_feat_keys[__SCHED_FEAT_NR] = {
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200194#include "features.h"
195};
196
197#undef SCHED_FEAT
198
199static void sched_feat_disable(int i)
200{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100201 if (static_key_enabled(&sched_feat_keys[i]))
202 static_key_slow_dec(&sched_feat_keys[i]);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200203}
204
205static void sched_feat_enable(int i)
206{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100207 if (!static_key_enabled(&sched_feat_keys[i]))
208 static_key_slow_inc(&sched_feat_keys[i]);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200209}
210#else
211static void sched_feat_disable(int i) { };
212static void sched_feat_enable(int i) { };
213#endif /* HAVE_JUMP_LABEL */
214
Mel Gorman1a687c22012-11-22 11:16:36 +0000215static int sched_feat_set(char *cmp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200216{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200217 int i;
Mel Gorman1a687c22012-11-22 11:16:36 +0000218 int neg = 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200219
Hillf Danton524429c2011-01-06 20:58:12 +0800220 if (strncmp(cmp, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200221 neg = 1;
222 cmp += 3;
223 }
224
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200225 for (i = 0; i < __SCHED_FEAT_NR; i++) {
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400226 if (strcmp(cmp, sched_feat_names[i]) == 0) {
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200227 if (neg) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200228 sysctl_sched_features &= ~(1UL << i);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200229 sched_feat_disable(i);
230 } else {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200231 sysctl_sched_features |= (1UL << i);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200232 sched_feat_enable(i);
233 }
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200234 break;
235 }
236 }
237
Mel Gorman1a687c22012-11-22 11:16:36 +0000238 return i;
239}
240
241static ssize_t
242sched_feat_write(struct file *filp, const char __user *ubuf,
243 size_t cnt, loff_t *ppos)
244{
245 char buf[64];
246 char *cmp;
247 int i;
Jason Baron5cd08fb2014-07-02 15:52:44 +0000248 struct inode *inode;
Mel Gorman1a687c22012-11-22 11:16:36 +0000249
250 if (cnt > 63)
251 cnt = 63;
252
253 if (copy_from_user(&buf, ubuf, cnt))
254 return -EFAULT;
255
256 buf[cnt] = 0;
257 cmp = strstrip(buf);
258
Jason Baron5cd08fb2014-07-02 15:52:44 +0000259 /* Ensure the static_key remains in a consistent state */
260 inode = file_inode(filp);
261 mutex_lock(&inode->i_mutex);
Mel Gorman1a687c22012-11-22 11:16:36 +0000262 i = sched_feat_set(cmp);
Jason Baron5cd08fb2014-07-02 15:52:44 +0000263 mutex_unlock(&inode->i_mutex);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200264 if (i == __SCHED_FEAT_NR)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200265 return -EINVAL;
266
Jan Blunck42994722009-11-20 17:40:37 +0100267 *ppos += cnt;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200268
269 return cnt;
270}
271
Li Zefan34f3a812008-10-30 15:23:32 +0800272static int sched_feat_open(struct inode *inode, struct file *filp)
273{
274 return single_open(filp, sched_feat_show, NULL);
275}
276
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700277static const struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800278 .open = sched_feat_open,
279 .write = sched_feat_write,
280 .read = seq_read,
281 .llseek = seq_lseek,
282 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200283};
284
285static __init int sched_init_debug(void)
286{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200287 debugfs_create_file("sched_features", 0644, NULL, NULL,
288 &sched_feat_fops);
289
290 return 0;
291}
292late_initcall(sched_init_debug);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200293#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200294
295/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100296 * Number of tasks to iterate in a single balance run.
297 * Limited because this is done with IRQs disabled.
298 */
299const_debug unsigned int sysctl_sched_nr_migrate = 32;
300
301/*
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200302 * period over which we average the RT time consumption, measured
303 * in ms.
304 *
305 * default: 1s
306 */
307const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
308
309/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100310 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100311 * default: 1s
312 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100313unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100314
Peter Zijlstra029632f2011-10-25 10:00:11 +0200315__read_mostly int scheduler_running;
Ingo Molnar6892b752008-02-13 14:02:36 +0100316
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100317/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100318 * part of the period that we allow rt tasks to run in us.
319 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100320 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100321int sysctl_sched_rt_runtime = 950000;
322
Dario Faggioli332ac172013-11-07 14:43:45 +0100323/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200324 * __task_rq_lock - lock the rq @p resides on.
Ingo Molnarb29739f2006-06-27 02:54:51 -0700325 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700326static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700327 __acquires(rq->lock)
328{
Peter Zijlstra0970d292010-02-15 14:45:54 +0100329 struct rq *rq;
330
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200331 lockdep_assert_held(&p->pi_lock);
332
Andi Kleen3a5c3592007-10-15 17:00:14 +0200333 for (;;) {
Peter Zijlstra0970d292010-02-15 14:45:54 +0100334 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100335 raw_spin_lock(&rq->lock);
Kirill Tkhaicca26e82014-08-20 13:47:42 +0400336 if (likely(rq == task_rq(p) && !task_on_rq_migrating(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200337 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100338 raw_spin_unlock(&rq->lock);
Kirill Tkhaicca26e82014-08-20 13:47:42 +0400339
340 while (unlikely(task_on_rq_migrating(p)))
341 cpu_relax();
Ingo Molnarb29739f2006-06-27 02:54:51 -0700342 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700343}
344
345/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200346 * task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700348static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200349 __acquires(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 __acquires(rq->lock)
351{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700352 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Andi Kleen3a5c3592007-10-15 17:00:14 +0200354 for (;;) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200355 raw_spin_lock_irqsave(&p->pi_lock, *flags);
Andi Kleen3a5c3592007-10-15 17:00:14 +0200356 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100357 raw_spin_lock(&rq->lock);
Kirill Tkhaicca26e82014-08-20 13:47:42 +0400358 if (likely(rq == task_rq(p) && !task_on_rq_migrating(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200359 return rq;
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200360 raw_spin_unlock(&rq->lock);
361 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Kirill Tkhaicca26e82014-08-20 13:47:42 +0400362
363 while (unlikely(task_on_rq_migrating(p)))
364 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Alexey Dobriyana9957442007-10-15 17:00:13 +0200368static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700369 __releases(rq->lock)
370{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100371 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700372}
373
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200374static inline void
375task_rq_unlock(struct rq *rq, struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 __releases(rq->lock)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200377 __releases(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200379 raw_spin_unlock(&rq->lock);
380 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800384 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200386static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 __acquires(rq->lock)
388{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700389 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 local_irq_disable();
392 rq = this_rq();
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100393 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 return rq;
396}
397
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100398#ifdef CONFIG_SCHED_HRTICK
399/*
400 * Use HR-timers to deliver accurate preemption points.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100401 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100402
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100403static void hrtick_clear(struct rq *rq)
404{
405 if (hrtimer_active(&rq->hrtick_timer))
406 hrtimer_cancel(&rq->hrtick_timer);
407}
408
409/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100410 * High-resolution timer tick.
411 * Runs from hardirq context with interrupts disabled.
412 */
413static enum hrtimer_restart hrtick(struct hrtimer *timer)
414{
415 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
416
417 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
418
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100419 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200420 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100421 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100422 raw_spin_unlock(&rq->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100423
424 return HRTIMER_NORESTART;
425}
426
Rabin Vincent95e904c2008-05-11 05:55:33 +0530427#ifdef CONFIG_SMP
Peter Zijlstra971ee282013-06-28 11:18:53 +0200428
429static int __hrtick_restart(struct rq *rq)
430{
431 struct hrtimer *timer = &rq->hrtick_timer;
432 ktime_t time = hrtimer_get_softexpires(timer);
433
434 return __hrtimer_start_range_ns(timer, time, 0, HRTIMER_MODE_ABS_PINNED, 0);
435}
436
Peter Zijlstra31656512008-07-18 18:01:23 +0200437/*
438 * called from hardirq (IPI) context
439 */
440static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200441{
Peter Zijlstra31656512008-07-18 18:01:23 +0200442 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200443
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100444 raw_spin_lock(&rq->lock);
Peter Zijlstra971ee282013-06-28 11:18:53 +0200445 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200446 rq->hrtick_csd_pending = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100447 raw_spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200448}
449
Peter Zijlstra31656512008-07-18 18:01:23 +0200450/*
451 * Called to set the hrtick timer state.
452 *
453 * called with rq->lock held and irqs disabled
454 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200455void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200456{
Peter Zijlstra31656512008-07-18 18:01:23 +0200457 struct hrtimer *timer = &rq->hrtick_timer;
xiaofeng.yan177ef2a2014-08-26 03:15:41 +0000458 ktime_t time;
459 s64 delta;
460
461 /*
462 * Don't schedule slices shorter than 10000ns, that just
463 * doesn't make sense and can cause timer DoS.
464 */
465 delta = max_t(s64, delay, 10000LL);
466 time = ktime_add_ns(timer->base->get_time(), delta);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200467
Arjan van de Vencc584b22008-09-01 15:02:30 -0700468 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +0200469
470 if (rq == this_rq()) {
Peter Zijlstra971ee282013-06-28 11:18:53 +0200471 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200472 } else if (!rq->hrtick_csd_pending) {
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100473 smp_call_function_single_async(cpu_of(rq), &rq->hrtick_csd);
Peter Zijlstra31656512008-07-18 18:01:23 +0200474 rq->hrtick_csd_pending = 1;
475 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200476}
477
478static int
479hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
480{
481 int cpu = (int)(long)hcpu;
482
483 switch (action) {
484 case CPU_UP_CANCELED:
485 case CPU_UP_CANCELED_FROZEN:
486 case CPU_DOWN_PREPARE:
487 case CPU_DOWN_PREPARE_FROZEN:
488 case CPU_DEAD:
489 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +0200490 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200491 return NOTIFY_OK;
492 }
493
494 return NOTIFY_DONE;
495}
496
Rakib Mullickfa748202008-09-22 14:55:45 -0700497static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200498{
499 hotcpu_notifier(hotplug_hrtick, 0);
500}
Peter Zijlstra31656512008-07-18 18:01:23 +0200501#else
502/*
503 * Called to set the hrtick timer state.
504 *
505 * called with rq->lock held and irqs disabled
506 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200507void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstra31656512008-07-18 18:01:23 +0200508{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100509 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530510 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +0200511}
512
Andrew Morton006c75f2008-09-22 14:55:46 -0700513static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +0200514{
515}
Rabin Vincent95e904c2008-05-11 05:55:33 +0530516#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200517
518static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100519{
Peter Zijlstra31656512008-07-18 18:01:23 +0200520#ifdef CONFIG_SMP
521 rq->hrtick_csd_pending = 0;
522
523 rq->hrtick_csd.flags = 0;
524 rq->hrtick_csd.func = __hrtick_start;
525 rq->hrtick_csd.info = rq;
526#endif
527
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100528 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
529 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100530}
Andrew Morton006c75f2008-09-22 14:55:46 -0700531#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100532static inline void hrtick_clear(struct rq *rq)
533{
534}
535
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100536static inline void init_rq_hrtick(struct rq *rq)
537{
538}
539
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200540static inline void init_hrtick(void)
541{
542}
Andrew Morton006c75f2008-09-22 14:55:46 -0700543#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100544
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200545/*
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200546 * cmpxchg based fetch_or, macro so it works for different integer types
547 */
548#define fetch_or(ptr, val) \
549({ typeof(*(ptr)) __old, __val = *(ptr); \
550 for (;;) { \
551 __old = cmpxchg((ptr), __val, __val | (val)); \
552 if (__old == __val) \
553 break; \
554 __val = __old; \
555 } \
556 __old; \
557})
558
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700559#if defined(CONFIG_SMP) && defined(TIF_POLLING_NRFLAG)
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200560/*
561 * Atomically set TIF_NEED_RESCHED and test for TIF_POLLING_NRFLAG,
562 * this avoids any races wrt polling state changes and thereby avoids
563 * spurious IPIs.
564 */
565static bool set_nr_and_not_polling(struct task_struct *p)
566{
567 struct thread_info *ti = task_thread_info(p);
568 return !(fetch_or(&ti->flags, _TIF_NEED_RESCHED) & _TIF_POLLING_NRFLAG);
569}
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700570
571/*
572 * Atomically set TIF_NEED_RESCHED if TIF_POLLING_NRFLAG is set.
573 *
574 * If this returns true, then the idle task promises to call
575 * sched_ttwu_pending() and reschedule soon.
576 */
577static bool set_nr_if_polling(struct task_struct *p)
578{
579 struct thread_info *ti = task_thread_info(p);
580 typeof(ti->flags) old, val = ACCESS_ONCE(ti->flags);
581
582 for (;;) {
583 if (!(val & _TIF_POLLING_NRFLAG))
584 return false;
585 if (val & _TIF_NEED_RESCHED)
586 return true;
587 old = cmpxchg(&ti->flags, val, val | _TIF_NEED_RESCHED);
588 if (old == val)
589 break;
590 val = old;
591 }
592 return true;
593}
594
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200595#else
596static bool set_nr_and_not_polling(struct task_struct *p)
597{
598 set_tsk_need_resched(p);
599 return true;
600}
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700601
602#ifdef CONFIG_SMP
603static bool set_nr_if_polling(struct task_struct *p)
604{
605 return false;
606}
607#endif
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200608#endif
609
610/*
Kirill Tkhai88751252014-06-29 00:03:57 +0400611 * resched_curr - mark rq's current task 'to be rescheduled now'.
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200612 *
613 * On UP this means the setting of the need_resched flag, on SMP it
614 * might also involve a cross-CPU call to trigger the scheduler on
615 * the target CPU.
616 */
Kirill Tkhai88751252014-06-29 00:03:57 +0400617void resched_curr(struct rq *rq)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200618{
Kirill Tkhai88751252014-06-29 00:03:57 +0400619 struct task_struct *curr = rq->curr;
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200620 int cpu;
621
Kirill Tkhai88751252014-06-29 00:03:57 +0400622 lockdep_assert_held(&rq->lock);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200623
Kirill Tkhai88751252014-06-29 00:03:57 +0400624 if (test_tsk_need_resched(curr))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200625 return;
626
Kirill Tkhai88751252014-06-29 00:03:57 +0400627 cpu = cpu_of(rq);
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200628
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200629 if (cpu == smp_processor_id()) {
Kirill Tkhai88751252014-06-29 00:03:57 +0400630 set_tsk_need_resched(curr);
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200631 set_preempt_need_resched();
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200632 return;
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200633 }
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200634
Kirill Tkhai88751252014-06-29 00:03:57 +0400635 if (set_nr_and_not_polling(curr))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200636 smp_send_reschedule(cpu);
Andy Lutomirskidfc68f22014-06-04 10:31:15 -0700637 else
638 trace_sched_wake_idle_without_ipi(cpu);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200639}
640
Peter Zijlstra029632f2011-10-25 10:00:11 +0200641void resched_cpu(int cpu)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200642{
643 struct rq *rq = cpu_rq(cpu);
644 unsigned long flags;
645
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100646 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200647 return;
Kirill Tkhai88751252014-06-29 00:03:57 +0400648 resched_curr(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100649 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200650}
Thomas Gleixner06d83082008-03-22 09:20:24 +0100651
Peter Zijlstrab021fe32013-09-17 09:30:55 +0200652#ifdef CONFIG_SMP
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200653#ifdef CONFIG_NO_HZ_COMMON
Thomas Gleixner06d83082008-03-22 09:20:24 +0100654/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700655 * In the semi idle case, use the nearest busy cpu for migrating timers
656 * from an idle cpu. This is good for power-savings.
657 *
658 * We don't do similar optimization for completely idle system, as
659 * selecting an idle cpu will add more delays to the timers than intended
660 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
661 */
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530662int get_nohz_timer_target(int pinned)
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700663{
664 int cpu = smp_processor_id();
665 int i;
666 struct sched_domain *sd;
667
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530668 if (pinned || !get_sysctl_timer_migration() || !idle_cpu(cpu))
669 return cpu;
670
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200671 rcu_read_lock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700672 for_each_domain(cpu, sd) {
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200673 for_each_cpu(i, sched_domain_span(sd)) {
674 if (!idle_cpu(i)) {
675 cpu = i;
676 goto unlock;
677 }
678 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700679 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200680unlock:
681 rcu_read_unlock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700682 return cpu;
683}
684/*
Thomas Gleixner06d83082008-03-22 09:20:24 +0100685 * When add_timer_on() enqueues a timer into the timer wheel of an
686 * idle CPU then this timer might expire before the next timer event
687 * which is scheduled to wake up that CPU. In case of a completely
688 * idle system the next event might even be infinite time into the
689 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
690 * leaves the inner idle loop so the newly added timer is taken into
691 * account when the CPU goes back to idle and evaluates the timer
692 * wheel for the next timer event.
693 */
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200694static void wake_up_idle_cpu(int cpu)
Thomas Gleixner06d83082008-03-22 09:20:24 +0100695{
696 struct rq *rq = cpu_rq(cpu);
697
698 if (cpu == smp_processor_id())
699 return;
700
Andy Lutomirski67b9ca72014-06-04 10:31:17 -0700701 if (set_nr_and_not_polling(rq->idle))
Thomas Gleixner06d83082008-03-22 09:20:24 +0100702 smp_send_reschedule(cpu);
Andy Lutomirskidfc68f22014-06-04 10:31:15 -0700703 else
704 trace_sched_wake_idle_without_ipi(cpu);
Thomas Gleixner06d83082008-03-22 09:20:24 +0100705}
Mike Galbraith39c0cbe2010-03-11 17:17:13 +0100706
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200707static bool wake_up_full_nohz_cpu(int cpu)
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200708{
Frederic Weisbecker53c5fa12014-06-04 16:20:21 +0200709 /*
710 * We just need the target to call irq_exit() and re-evaluate
711 * the next tick. The nohz full kick at least implies that.
712 * If needed we can still optimize that later with an
713 * empty IRQ.
714 */
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200715 if (tick_nohz_full_cpu(cpu)) {
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200716 if (cpu != smp_processor_id() ||
717 tick_nohz_tick_stopped())
Frederic Weisbecker53c5fa12014-06-04 16:20:21 +0200718 tick_nohz_full_kick_cpu(cpu);
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200719 return true;
720 }
721
722 return false;
723}
724
725void wake_up_nohz_cpu(int cpu)
726{
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200727 if (!wake_up_full_nohz_cpu(cpu))
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200728 wake_up_idle_cpu(cpu);
729}
730
Suresh Siddhaca380622011-10-03 15:09:00 -0700731static inline bool got_nohz_idle_kick(void)
732{
Suresh Siddha1c792db2011-12-01 17:07:32 -0800733 int cpu = smp_processor_id();
Vincent Guittot873b4c62013-06-05 10:13:11 +0200734
735 if (!test_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu)))
736 return false;
737
738 if (idle_cpu(cpu) && !need_resched())
739 return true;
740
741 /*
742 * We can't run Idle Load Balance on this CPU for this time so we
743 * cancel it and clear NOHZ_BALANCE_KICK
744 */
745 clear_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu));
746 return false;
Suresh Siddhaca380622011-10-03 15:09:00 -0700747}
748
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200749#else /* CONFIG_NO_HZ_COMMON */
Suresh Siddhaca380622011-10-03 15:09:00 -0700750
751static inline bool got_nohz_idle_kick(void)
752{
753 return false;
754}
755
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200756#endif /* CONFIG_NO_HZ_COMMON */
Thomas Gleixner06d83082008-03-22 09:20:24 +0100757
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200758#ifdef CONFIG_NO_HZ_FULL
759bool sched_can_stop_tick(void)
760{
Frederic Weisbecker3882ec62014-03-18 22:54:04 +0100761 /*
762 * More than one running task need preemption.
763 * nr_running update is assumed to be visible
764 * after IPI is sent from wakers.
765 */
Viresh Kumar541b8262014-06-24 14:04:12 +0530766 if (this_rq()->nr_running > 1)
767 return false;
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200768
Viresh Kumar541b8262014-06-24 14:04:12 +0530769 return true;
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200770}
771#endif /* CONFIG_NO_HZ_FULL */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200772
Peter Zijlstra029632f2011-10-25 10:00:11 +0200773void sched_avg_update(struct rq *rq)
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200774{
775 s64 period = sched_avg_period();
776
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200777 while ((s64)(rq_clock(rq) - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -0700778 /*
779 * Inline assembly required to prevent the compiler
780 * optimising this loop into a divmod call.
781 * See __iter_div_u64_rem() for another example of this.
782 */
783 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200784 rq->age_stamp += period;
785 rq->rt_avg /= 2;
786 }
787}
788
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200789#endif /* CONFIG_SMP */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200790
Paul Turnera790de92011-07-21 09:43:29 -0700791#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
792 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
Peter Zijlstraeb755802008-08-19 12:33:05 +0200793/*
Paul Turner82774342011-07-21 09:43:35 -0700794 * Iterate task_group tree rooted at *from, calling @down when first entering a
795 * node and @up when leaving it for the final time.
796 *
797 * Caller must hold rcu_lock or sufficient equivalent.
Peter Zijlstraeb755802008-08-19 12:33:05 +0200798 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200799int walk_tg_tree_from(struct task_group *from,
Paul Turner82774342011-07-21 09:43:35 -0700800 tg_visitor down, tg_visitor up, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200801{
802 struct task_group *parent, *child;
803 int ret;
804
Paul Turner82774342011-07-21 09:43:35 -0700805 parent = from;
806
Peter Zijlstraeb755802008-08-19 12:33:05 +0200807down:
808 ret = (*down)(parent, data);
809 if (ret)
Paul Turner82774342011-07-21 09:43:35 -0700810 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200811 list_for_each_entry_rcu(child, &parent->children, siblings) {
812 parent = child;
813 goto down;
814
815up:
816 continue;
817 }
818 ret = (*up)(parent, data);
Paul Turner82774342011-07-21 09:43:35 -0700819 if (ret || parent == from)
820 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200821
822 child = parent;
823 parent = parent->parent;
824 if (parent)
825 goto up;
Paul Turner82774342011-07-21 09:43:35 -0700826out:
Peter Zijlstraeb755802008-08-19 12:33:05 +0200827 return ret;
828}
829
Peter Zijlstra029632f2011-10-25 10:00:11 +0200830int tg_nop(struct task_group *tg, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200831{
832 return 0;
833}
834#endif
835
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200836static void set_load_weight(struct task_struct *p)
837{
Nikhil Raof05998d2011-05-18 10:09:38 -0700838 int prio = p->static_prio - MAX_RT_PRIO;
839 struct load_weight *load = &p->se.load;
840
Ingo Molnardd41f592007-07-09 18:51:59 +0200841 /*
842 * SCHED_IDLE tasks get minimal weight:
843 */
844 if (p->policy == SCHED_IDLE) {
Nikhil Raoc8b28112011-05-18 14:37:48 -0700845 load->weight = scale_load(WEIGHT_IDLEPRIO);
Nikhil Raof05998d2011-05-18 10:09:38 -0700846 load->inv_weight = WMULT_IDLEPRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +0200847 return;
848 }
849
Nikhil Raoc8b28112011-05-18 14:37:48 -0700850 load->weight = scale_load(prio_to_weight[prio]);
Nikhil Raof05998d2011-05-18 10:09:38 -0700851 load->inv_weight = prio_to_wmult[prio];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200852}
853
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100854static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -0600855{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100856 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300857 sched_info_queued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100858 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200859}
860
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100861static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +0200862{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100863 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300864 sched_info_dequeued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100865 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200866}
867
Peter Zijlstra029632f2011-10-25 10:00:11 +0200868void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100869{
870 if (task_contributes_to_load(p))
871 rq->nr_uninterruptible--;
872
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100873 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100874}
875
Peter Zijlstra029632f2011-10-25 10:00:11 +0200876void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100877{
878 if (task_contributes_to_load(p))
879 rq->nr_uninterruptible++;
880
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100881 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100882}
883
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100884static void update_rq_clock_task(struct rq *rq, s64 delta)
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700885{
Glauber Costa095c0aa2011-07-11 15:28:18 -0400886/*
887 * In theory, the compile should just see 0 here, and optimize out the call
888 * to sched_rt_avg_update. But I don't trust it...
889 */
890#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
891 s64 steal = 0, irq_delta = 0;
892#endif
893#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Peter Zijlstra8e92c202010-12-09 14:15:34 +0100894 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100895
896 /*
897 * Since irq_time is only updated on {soft,}irq_exit, we might run into
898 * this case when a previous update_rq_clock() happened inside a
899 * {soft,}irq region.
900 *
901 * When this happens, we stop ->clock_task and only update the
902 * prev_irq_time stamp to account for the part that fit, so that a next
903 * update will consume the rest. This ensures ->clock_task is
904 * monotonic.
905 *
906 * It does however cause some slight miss-attribution of {soft,}irq
907 * time, a more accurate solution would be to update the irq_time using
908 * the current rq->clock timestamp, except that would require using
909 * atomic ops.
910 */
911 if (irq_delta > delta)
912 irq_delta = delta;
913
914 rq->prev_irq_time += irq_delta;
915 delta -= irq_delta;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400916#endif
917#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
Ingo Molnarc5905af2012-02-24 08:31:31 +0100918 if (static_key_false((&paravirt_steal_rq_enabled))) {
Glauber Costa095c0aa2011-07-11 15:28:18 -0400919 steal = paravirt_steal_clock(cpu_of(rq));
920 steal -= rq->prev_steal_time_rq;
921
922 if (unlikely(steal > delta))
923 steal = delta;
924
Glauber Costa095c0aa2011-07-11 15:28:18 -0400925 rq->prev_steal_time_rq += steal;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400926 delta -= steal;
927 }
928#endif
929
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100930 rq->clock_task += delta;
931
Glauber Costa095c0aa2011-07-11 15:28:18 -0400932#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -0400933 if ((irq_delta + steal) && sched_feat(NONTASK_CAPACITY))
Glauber Costa095c0aa2011-07-11 15:28:18 -0400934 sched_rt_avg_update(rq, irq_delta + steal);
935#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700936}
937
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200938void sched_set_stop_task(int cpu, struct task_struct *stop)
939{
940 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
941 struct task_struct *old_stop = cpu_rq(cpu)->stop;
942
943 if (stop) {
944 /*
945 * Make it appear like a SCHED_FIFO task, its something
946 * userspace knows about and won't get confused about.
947 *
948 * Also, it will make PI more or less work without too
949 * much confusion -- but then, stop work should not
950 * rely on PI working anyway.
951 */
952 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
953
954 stop->sched_class = &stop_sched_class;
955 }
956
957 cpu_rq(cpu)->stop = stop;
958
959 if (old_stop) {
960 /*
961 * Reset it back to a normal scheduling class so that
962 * it can die in pieces.
963 */
964 old_stop->sched_class = &rt_sched_class;
965 }
966}
967
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100968/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200969 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200970 */
Ingo Molnar14531182007-07-09 18:51:59 +0200971static inline int __normal_prio(struct task_struct *p)
972{
Ingo Molnardd41f592007-07-09 18:51:59 +0200973 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200974}
975
976/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700977 * Calculate the expected normal priority: i.e. priority
978 * without taking RT-inheritance into account. Might be
979 * boosted by interactivity modifiers. Changes upon fork,
980 * setprio syscalls, and whenever the interactivity
981 * estimator recalculates.
982 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700983static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700984{
985 int prio;
986
Dario Faggioliaab03e02013-11-28 11:14:43 +0100987 if (task_has_dl_policy(p))
988 prio = MAX_DL_PRIO-1;
989 else if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700990 prio = MAX_RT_PRIO-1 - p->rt_priority;
991 else
992 prio = __normal_prio(p);
993 return prio;
994}
995
996/*
997 * Calculate the current priority, i.e. the priority
998 * taken into account by the scheduler. This value might
999 * be boosted by RT tasks, or might be boosted by
1000 * interactivity modifiers. Will be RT if the task got
1001 * RT-boosted. If not then it returns p->normal_prio.
1002 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001003static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001004{
1005 p->normal_prio = normal_prio(p);
1006 /*
1007 * If we are RT tasks or we were boosted to RT priority,
1008 * keep the priority unchanged. Otherwise, update priority
1009 * to the normal priority:
1010 */
1011 if (!rt_prio(p->prio))
1012 return p->normal_prio;
1013 return p->prio;
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016/**
1017 * task_curr - is this task currently executing on a CPU?
1018 * @p: the task in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02001019 *
1020 * Return: 1 if the task is currently executing. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001022inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
1024 return cpu_curr(task_cpu(p)) == p;
1025}
1026
Steven Rostedtcb469842008-01-25 21:08:22 +01001027static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1028 const struct sched_class *prev_class,
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001029 int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01001030{
1031 if (prev_class != p->sched_class) {
1032 if (prev_class->switched_from)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001033 prev_class->switched_from(rq, p);
1034 p->sched_class->switched_to(rq, p);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01001035 } else if (oldprio != p->prio || dl_task(p))
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001036 p->sched_class->prio_changed(rq, p, oldprio);
Steven Rostedtcb469842008-01-25 21:08:22 +01001037}
1038
Peter Zijlstra029632f2011-10-25 10:00:11 +02001039void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001040{
1041 const struct sched_class *class;
1042
1043 if (p->sched_class == rq->curr->sched_class) {
1044 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
1045 } else {
1046 for_each_class(class) {
1047 if (class == rq->curr->sched_class)
1048 break;
1049 if (class == p->sched_class) {
Kirill Tkhai88751252014-06-29 00:03:57 +04001050 resched_curr(rq);
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001051 break;
1052 }
1053 }
1054 }
1055
1056 /*
1057 * A queue event has occurred, and we're going to schedule. In
1058 * this case, we can save a useless back to back clock update.
1059 */
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001060 if (task_on_rq_queued(rq->curr) && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001061 rq->skip_clock_update = 1;
1062}
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02001065void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001066{
Peter Zijlstrae2912002009-12-16 18:04:36 +01001067#ifdef CONFIG_SCHED_DEBUG
1068 /*
1069 * We should never call set_task_cpu() on a blocked task,
1070 * ttwu() will sort out the placement.
1071 */
Peter Zijlstra077614e2009-12-17 13:16:31 +01001072 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
Peter Zijlstra01028742013-08-14 14:55:46 +02001073 !(task_preempt_count(p) & PREEMPT_ACTIVE));
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001074
1075#ifdef CONFIG_LOCKDEP
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001076 /*
1077 * The caller should hold either p->pi_lock or rq->lock, when changing
1078 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
1079 *
1080 * sched_move_task() holds both and thus holding either pins the cgroup,
Peter Zijlstra8323f262012-06-22 13:36:05 +02001081 * see task_group().
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001082 *
1083 * Furthermore, all task_rq users should acquire both locks, see
1084 * task_rq_lock().
1085 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001086 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
1087 lockdep_is_held(&task_rq(p)->lock)));
1088#endif
Peter Zijlstrae2912002009-12-16 18:04:36 +01001089#endif
1090
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08001091 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01001092
Peter Zijlstra0c697742009-12-22 15:43:19 +01001093 if (task_cpu(p) != new_cpu) {
Paul Turner0a74bef2012-10-04 13:18:30 +02001094 if (p->sched_class->migrate_task_rq)
1095 p->sched_class->migrate_task_rq(p, new_cpu);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001096 p->se.nr_migrations++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001097 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001098 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001099
1100 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001101}
1102
Peter Zijlstraac66f542013-10-07 11:29:16 +01001103static void __migrate_swap_task(struct task_struct *p, int cpu)
1104{
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001105 if (task_on_rq_queued(p)) {
Peter Zijlstraac66f542013-10-07 11:29:16 +01001106 struct rq *src_rq, *dst_rq;
1107
1108 src_rq = task_rq(p);
1109 dst_rq = cpu_rq(cpu);
1110
1111 deactivate_task(src_rq, p, 0);
1112 set_task_cpu(p, cpu);
1113 activate_task(dst_rq, p, 0);
1114 check_preempt_curr(dst_rq, p, 0);
1115 } else {
1116 /*
1117 * Task isn't running anymore; make it appear like we migrated
1118 * it before it went to sleep. This means on wakeup we make the
1119 * previous cpu our targer instead of where it really is.
1120 */
1121 p->wake_cpu = cpu;
1122 }
1123}
1124
1125struct migration_swap_arg {
1126 struct task_struct *src_task, *dst_task;
1127 int src_cpu, dst_cpu;
1128};
1129
1130static int migrate_swap_stop(void *data)
1131{
1132 struct migration_swap_arg *arg = data;
1133 struct rq *src_rq, *dst_rq;
1134 int ret = -EAGAIN;
1135
1136 src_rq = cpu_rq(arg->src_cpu);
1137 dst_rq = cpu_rq(arg->dst_cpu);
1138
Peter Zijlstra74602312013-10-10 20:17:22 +02001139 double_raw_lock(&arg->src_task->pi_lock,
1140 &arg->dst_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001141 double_rq_lock(src_rq, dst_rq);
1142 if (task_cpu(arg->dst_task) != arg->dst_cpu)
1143 goto unlock;
1144
1145 if (task_cpu(arg->src_task) != arg->src_cpu)
1146 goto unlock;
1147
1148 if (!cpumask_test_cpu(arg->dst_cpu, tsk_cpus_allowed(arg->src_task)))
1149 goto unlock;
1150
1151 if (!cpumask_test_cpu(arg->src_cpu, tsk_cpus_allowed(arg->dst_task)))
1152 goto unlock;
1153
1154 __migrate_swap_task(arg->src_task, arg->dst_cpu);
1155 __migrate_swap_task(arg->dst_task, arg->src_cpu);
1156
1157 ret = 0;
1158
1159unlock:
1160 double_rq_unlock(src_rq, dst_rq);
Peter Zijlstra74602312013-10-10 20:17:22 +02001161 raw_spin_unlock(&arg->dst_task->pi_lock);
1162 raw_spin_unlock(&arg->src_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001163
1164 return ret;
1165}
1166
1167/*
1168 * Cross migrate two tasks
1169 */
1170int migrate_swap(struct task_struct *cur, struct task_struct *p)
1171{
1172 struct migration_swap_arg arg;
1173 int ret = -EINVAL;
1174
Peter Zijlstraac66f542013-10-07 11:29:16 +01001175 arg = (struct migration_swap_arg){
1176 .src_task = cur,
1177 .src_cpu = task_cpu(cur),
1178 .dst_task = p,
1179 .dst_cpu = task_cpu(p),
1180 };
1181
1182 if (arg.src_cpu == arg.dst_cpu)
1183 goto out;
1184
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001185 /*
1186 * These three tests are all lockless; this is OK since all of them
1187 * will be re-checked with proper locks held further down the line.
1188 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01001189 if (!cpu_active(arg.src_cpu) || !cpu_active(arg.dst_cpu))
1190 goto out;
1191
1192 if (!cpumask_test_cpu(arg.dst_cpu, tsk_cpus_allowed(arg.src_task)))
1193 goto out;
1194
1195 if (!cpumask_test_cpu(arg.src_cpu, tsk_cpus_allowed(arg.dst_task)))
1196 goto out;
1197
Mel Gorman286549d2014-01-21 15:51:03 -08001198 trace_sched_swap_numa(cur, arg.src_cpu, p, arg.dst_cpu);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001199 ret = stop_two_cpus(arg.dst_cpu, arg.src_cpu, migrate_swap_stop, &arg);
1200
1201out:
Peter Zijlstraac66f542013-10-07 11:29:16 +01001202 return ret;
1203}
1204
Tejun Heo969c7922010-05-06 18:49:21 +02001205struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07001206 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001208};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Tejun Heo969c7922010-05-06 18:49:21 +02001210static int migration_cpu_stop(void *data);
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 * wait_task_inactive - wait for a thread to unschedule.
1214 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001215 * If @match_state is nonzero, it's the @p->state value just checked and
1216 * not expected to change. If it changes, i.e. @p might have woken up,
1217 * then return zero. When we succeed in waiting for @p to be off its CPU,
1218 * we return a positive number (its total switch count). If a second call
1219 * a short while later returns the same number, the caller can be sure that
1220 * @p has remained unscheduled the whole time.
1221 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * The caller must ensure that the task *will* unschedule sometime soon,
1223 * else this function might spin for a *long* time. This function can't
1224 * be called with interrupts off, or it may introduce deadlock with
1225 * smp_call_function() if an IPI is sent by the same process we are
1226 * waiting to become inactive.
1227 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001228unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 unsigned long flags;
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001231 int running, queued;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001232 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001233 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Andi Kleen3a5c3592007-10-15 17:00:14 +02001235 for (;;) {
1236 /*
1237 * We do the initial early heuristics without holding
1238 * any task-queue locks at all. We'll only try to get
1239 * the runqueue lock when things look like they will
1240 * work out!
1241 */
1242 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001243
Andi Kleen3a5c3592007-10-15 17:00:14 +02001244 /*
1245 * If the task is actively running on another CPU
1246 * still, just relax and busy-wait without holding
1247 * any locks.
1248 *
1249 * NOTE! Since we don't hold any locks, it's not
1250 * even sure that "rq" stays as the right runqueue!
1251 * But we don't care, since "task_running()" will
1252 * return false if the runqueue has changed and p
1253 * is actually now running somewhere else!
1254 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001255 while (task_running(rq, p)) {
1256 if (match_state && unlikely(p->state != match_state))
1257 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001258 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001259 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001260
Andi Kleen3a5c3592007-10-15 17:00:14 +02001261 /*
1262 * Ok, time to look more closely! We need the rq
1263 * lock now, to be *sure*. If we're wrong, we'll
1264 * just go back and repeat.
1265 */
1266 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02001267 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001268 running = task_running(rq, p);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001269 queued = task_on_rq_queued(p);
Roland McGrath85ba2d82008-07-25 19:45:58 -07001270 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001271 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001272 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001273 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001274
Andi Kleen3a5c3592007-10-15 17:00:14 +02001275 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001276 * If it changed from the expected state, bail out now.
1277 */
1278 if (unlikely(!ncsw))
1279 break;
1280
1281 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001282 * Was it really running after all now that we
1283 * checked with the proper locks actually held?
1284 *
1285 * Oops. Go back and try again..
1286 */
1287 if (unlikely(running)) {
1288 cpu_relax();
1289 continue;
1290 }
1291
1292 /*
1293 * It's not enough that it's not actively running,
1294 * it must be off the runqueue _entirely_, and not
1295 * preempted!
1296 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00001297 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02001298 * running right now), it's preempted, and we should
1299 * yield - it could be a while.
1300 */
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001301 if (unlikely(queued)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00001302 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
1303
1304 set_current_state(TASK_UNINTERRUPTIBLE);
1305 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001306 continue;
1307 }
1308
1309 /*
1310 * Ahh, all good. It wasn't running, and it wasn't
1311 * runnable, which means that it will never become
1312 * running in the future either. We're all done!
1313 */
1314 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07001316
1317 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
1320/***
1321 * kick_process - kick a running thread to enter/exit the kernel
1322 * @p: the to-be-kicked thread
1323 *
1324 * Cause a process which is running on another CPU to enter
1325 * kernel-mode, without any delay. (to get signals handled.)
1326 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001327 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 * because all it wants to ensure is that the remote task enters
1329 * the kernel. If the IPI races and the task has been migrated
1330 * to another CPU then no harm is done and the purpose has been
1331 * achieved as well.
1332 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001333void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 int cpu;
1336
1337 preempt_disable();
1338 cpu = task_cpu(p);
1339 if ((cpu != smp_processor_id()) && task_curr(p))
1340 smp_send_reschedule(cpu);
1341 preempt_enable();
1342}
Rusty Russellb43e3522009-06-12 22:27:00 -06001343EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07001344#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001346#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01001347/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001348 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01001349 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001350static int select_fallback_rq(int cpu, struct task_struct *p)
1351{
Tang Chenaa00d892013-02-22 16:33:33 -08001352 int nid = cpu_to_node(cpu);
1353 const struct cpumask *nodemask = NULL;
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001354 enum { cpuset, possible, fail } state = cpuset;
1355 int dest_cpu;
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001356
Tang Chenaa00d892013-02-22 16:33:33 -08001357 /*
1358 * If the node that the cpu is on has been offlined, cpu_to_node()
1359 * will return -1. There is no cpu on the node, and we should
1360 * select the cpu on the other node.
1361 */
1362 if (nid != -1) {
1363 nodemask = cpumask_of_node(nid);
1364
1365 /* Look for allowed, online CPU in same node. */
1366 for_each_cpu(dest_cpu, nodemask) {
1367 if (!cpu_online(dest_cpu))
1368 continue;
1369 if (!cpu_active(dest_cpu))
1370 continue;
1371 if (cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
1372 return dest_cpu;
1373 }
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001374 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001375
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001376 for (;;) {
1377 /* Any allowed, online CPU? */
Srivatsa S. Bhate3831ed2012-03-30 19:40:28 +05301378 for_each_cpu(dest_cpu, tsk_cpus_allowed(p)) {
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001379 if (!cpu_online(dest_cpu))
1380 continue;
1381 if (!cpu_active(dest_cpu))
1382 continue;
1383 goto out;
1384 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001385
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001386 switch (state) {
1387 case cpuset:
1388 /* No more Mr. Nice Guy. */
1389 cpuset_cpus_allowed_fallback(p);
1390 state = possible;
1391 break;
1392
1393 case possible:
1394 do_set_cpus_allowed(p, cpu_possible_mask);
1395 state = fail;
1396 break;
1397
1398 case fail:
1399 BUG();
1400 break;
1401 }
1402 }
1403
1404out:
1405 if (state != cpuset) {
1406 /*
1407 * Don't tell them about moving exiting tasks or
1408 * kernel threads (both mm NULL), since they never
1409 * leave kernel.
1410 */
1411 if (p->mm && printk_ratelimit()) {
John Stultzaac74dc2014-06-04 16:11:40 -07001412 printk_deferred("process %d (%s) no longer affine to cpu%d\n",
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001413 task_pid_nr(p), p->comm, cpu);
1414 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001415 }
1416
1417 return dest_cpu;
1418}
1419
Peter Zijlstrae2912002009-12-16 18:04:36 +01001420/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001421 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01001422 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001423static inline
Peter Zijlstraac66f542013-10-07 11:29:16 +01001424int select_task_rq(struct task_struct *p, int cpu, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001425{
Peter Zijlstraac66f542013-10-07 11:29:16 +01001426 cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001427
1428 /*
1429 * In order not to call set_task_cpu() on a blocking task we need
1430 * to rely on ttwu() to place the task on a valid ->cpus_allowed
1431 * cpu.
1432 *
1433 * Since this is common to all placement strategies, this lives here.
1434 *
1435 * [ this allows ->select_task() to simply return task_cpu(p) and
1436 * not worry about this generic constraint ]
1437 */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02001438 if (unlikely(!cpumask_test_cpu(cpu, tsk_cpus_allowed(p)) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01001439 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001440 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001441
1442 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001443}
Mike Galbraith09a40af2010-04-15 07:29:59 +02001444
1445static void update_avg(u64 *avg, u64 sample)
1446{
1447 s64 diff = sample - *avg;
1448 *avg += diff >> 3;
1449}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001450#endif
1451
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001452static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001453ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001454{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001455#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001456 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09001457
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001458#ifdef CONFIG_SMP
1459 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09001460
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001461 if (cpu == this_cpu) {
1462 schedstat_inc(rq, ttwu_local);
1463 schedstat_inc(p, se.statistics.nr_wakeups_local);
1464 } else {
1465 struct sched_domain *sd;
1466
1467 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001468 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001469 for_each_domain(this_cpu, sd) {
1470 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
1471 schedstat_inc(sd, ttwu_wake_remote);
1472 break;
1473 }
1474 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001475 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001476 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001477
1478 if (wake_flags & WF_MIGRATED)
1479 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
1480
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001481#endif /* CONFIG_SMP */
1482
1483 schedstat_inc(rq, ttwu_count);
1484 schedstat_inc(p, se.statistics.nr_wakeups);
1485
1486 if (wake_flags & WF_SYNC)
1487 schedstat_inc(p, se.statistics.nr_wakeups_sync);
1488
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001489#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09001490}
1491
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001492static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001493{
Tejun Heo9ed38112009-12-03 15:08:03 +09001494 activate_task(rq, p, en_flags);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001495 p->on_rq = TASK_ON_RQ_QUEUED;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02001496
1497 /* if a worker is waking up, notify workqueue */
1498 if (p->flags & PF_WQ_WORKER)
1499 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09001500}
1501
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001502/*
1503 * Mark the task runnable and perform wakeup-preemption.
1504 */
Peter Zijlstra89363382011-04-05 17:23:42 +02001505static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001506ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001507{
Tejun Heo9ed38112009-12-03 15:08:03 +09001508 check_preempt_curr(rq, p, wake_flags);
Peter Zijlstraa8d7ad52013-03-14 10:48:39 +01001509 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09001510
1511 p->state = TASK_RUNNING;
1512#ifdef CONFIG_SMP
1513 if (p->sched_class->task_woken)
1514 p->sched_class->task_woken(rq, p);
1515
Steven Rostedte69c6342010-12-06 17:10:31 -05001516 if (rq->idle_stamp) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001517 u64 delta = rq_clock(rq) - rq->idle_stamp;
Jason Low9bd721c2013-09-13 11:26:52 -07001518 u64 max = 2*rq->max_idle_balance_cost;
Tejun Heo9ed38112009-12-03 15:08:03 +09001519
Jason Lowabfafa52013-09-13 11:26:51 -07001520 update_avg(&rq->avg_idle, delta);
1521
1522 if (rq->avg_idle > max)
Tejun Heo9ed38112009-12-03 15:08:03 +09001523 rq->avg_idle = max;
Jason Lowabfafa52013-09-13 11:26:51 -07001524
Tejun Heo9ed38112009-12-03 15:08:03 +09001525 rq->idle_stamp = 0;
1526 }
1527#endif
1528}
1529
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001530static void
1531ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
1532{
1533#ifdef CONFIG_SMP
1534 if (p->sched_contributes_to_load)
1535 rq->nr_uninterruptible--;
1536#endif
1537
1538 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
1539 ttwu_do_wakeup(rq, p, wake_flags);
1540}
1541
1542/*
1543 * Called in case the task @p isn't fully descheduled from its runqueue,
1544 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
1545 * since all we need to do is flip p->state to TASK_RUNNING, since
1546 * the task is still ->on_rq.
1547 */
1548static int ttwu_remote(struct task_struct *p, int wake_flags)
1549{
1550 struct rq *rq;
1551 int ret = 0;
1552
1553 rq = __task_rq_lock(p);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001554 if (task_on_rq_queued(p)) {
Frederic Weisbecker1ad4ec02013-04-12 01:51:00 +02001555 /* check_preempt_curr() may use rq clock */
1556 update_rq_clock(rq);
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001557 ttwu_do_wakeup(rq, p, wake_flags);
1558 ret = 1;
1559 }
1560 __task_rq_unlock(rq);
1561
1562 return ret;
1563}
1564
Peter Zijlstra317f3942011-04-05 17:23:58 +02001565#ifdef CONFIG_SMP
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001566void sched_ttwu_pending(void)
Peter Zijlstra317f3942011-04-05 17:23:58 +02001567{
1568 struct rq *rq = this_rq();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001569 struct llist_node *llist = llist_del_all(&rq->wake_list);
1570 struct task_struct *p;
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001571 unsigned long flags;
Peter Zijlstra317f3942011-04-05 17:23:58 +02001572
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001573 if (!llist)
1574 return;
1575
1576 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001577
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001578 while (llist) {
1579 p = llist_entry(llist, struct task_struct, wake_entry);
1580 llist = llist_next(llist);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001581 ttwu_do_activate(rq, p, 0);
1582 }
1583
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001584 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001585}
1586
1587void scheduler_ipi(void)
1588{
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001589 /*
1590 * Fold TIF_NEED_RESCHED into the preempt_count; anybody setting
1591 * TIF_NEED_RESCHED remotely (for the first time) will also send
1592 * this IPI.
1593 */
Peter Zijlstra8cb75e02013-11-20 12:22:37 +01001594 preempt_fold_need_resched();
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001595
Frederic Weisbeckerfd2ac4f2014-03-18 21:12:53 +01001596 if (llist_empty(&this_rq()->wake_list) && !got_nohz_idle_kick())
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001597 return;
1598
1599 /*
1600 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
1601 * traditionally all their work was done from the interrupt return
1602 * path. Now that we actually do some work, we need to make sure
1603 * we do call them.
1604 *
1605 * Some archs already do call them, luckily irq_enter/exit nest
1606 * properly.
1607 *
1608 * Arguably we should visit all archs and update all handlers,
1609 * however a fair share of IPIs are still resched only so this would
1610 * somewhat pessimize the simple resched case.
1611 */
1612 irq_enter();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001613 sched_ttwu_pending();
Suresh Siddhaca380622011-10-03 15:09:00 -07001614
1615 /*
1616 * Check if someone kicked us for doing the nohz idle load balance.
1617 */
Vincent Guittot873b4c62013-06-05 10:13:11 +02001618 if (unlikely(got_nohz_idle_kick())) {
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001619 this_rq()->idle_balance = 1;
Suresh Siddhaca380622011-10-03 15:09:00 -07001620 raise_softirq_irqoff(SCHED_SOFTIRQ);
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001621 }
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001622 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02001623}
1624
1625static void ttwu_queue_remote(struct task_struct *p, int cpu)
1626{
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001627 struct rq *rq = cpu_rq(cpu);
1628
1629 if (llist_add(&p->wake_entry, &cpu_rq(cpu)->wake_list)) {
1630 if (!set_nr_if_polling(rq->idle))
1631 smp_send_reschedule(cpu);
1632 else
1633 trace_sched_wake_idle_without_ipi(cpu);
1634 }
Peter Zijlstra317f3942011-04-05 17:23:58 +02001635}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001636
Chuansheng Liuf6be8af2014-09-04 15:17:53 +08001637void wake_up_if_idle(int cpu)
1638{
1639 struct rq *rq = cpu_rq(cpu);
1640 unsigned long flags;
1641
1642 if (!is_idle_task(rq->curr))
1643 return;
1644
1645 if (set_nr_if_polling(rq->idle)) {
1646 trace_sched_wake_idle_without_ipi(cpu);
1647 } else {
1648 raw_spin_lock_irqsave(&rq->lock, flags);
1649 if (is_idle_task(rq->curr))
1650 smp_send_reschedule(cpu);
1651 /* Else cpu is not in idle, do nothing here */
1652 raw_spin_unlock_irqrestore(&rq->lock, flags);
1653 }
1654}
1655
Peter Zijlstra39be3502012-01-26 12:44:34 +01001656bool cpus_share_cache(int this_cpu, int that_cpu)
Peter Zijlstra518cd622011-12-07 15:07:31 +01001657{
1658 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
1659}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001660#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001661
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001662static void ttwu_queue(struct task_struct *p, int cpu)
1663{
1664 struct rq *rq = cpu_rq(cpu);
1665
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00001666#if defined(CONFIG_SMP)
Peter Zijlstra39be3502012-01-26 12:44:34 +01001667 if (sched_feat(TTWU_QUEUE) && !cpus_share_cache(smp_processor_id(), cpu)) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02001668 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001669 ttwu_queue_remote(p, cpu);
1670 return;
1671 }
1672#endif
1673
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001674 raw_spin_lock(&rq->lock);
1675 ttwu_do_activate(rq, p, 0);
1676 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09001677}
1678
1679/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09001681 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09001683 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 *
1685 * Put it on the run-queue if it's not already there. The "current"
1686 * thread is always on the run-queue (except when the actual
1687 * re-schedule is in progress), and as such you're allowed to do
1688 * the simpler "current->state = TASK_RUNNING" to mark yourself
1689 * runnable without the overhead of this.
1690 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02001691 * Return: %true if @p was woken up, %false if it was already running.
Tejun Heo9ed38112009-12-03 15:08:03 +09001692 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001694static int
1695try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001698 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001699
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02001700 /*
1701 * If we are going to wake up a thread waiting for CONDITION we
1702 * need to ensure that CONDITION=1 done by the caller can not be
1703 * reordered with p->state check below. This pairs with mb() in
1704 * set_current_state() the waiting thread does.
1705 */
1706 smp_mb__before_spinlock();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001707 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001708 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 goto out;
1710
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001711 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001713
Kirill Tkhaicca26e82014-08-20 13:47:42 +04001714 if (p->on_rq && ttwu_remote(p, wake_flags))
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001715 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001718 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001719 * If the owning (remote) cpu is still in the middle of schedule() with
1720 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001721 */
Peter Zijlstraf3e94782012-09-12 11:22:00 +02001722 while (p->on_cpu)
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001723 cpu_relax();
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001724 /*
1725 * Pairs with the smp_wmb() in finish_lock_switch().
1726 */
1727 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02001729 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001730 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001731
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001732 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02001733 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01001734
Peter Zijlstraac66f542013-10-07 11:29:16 +01001735 cpu = select_task_rq(p, p->wake_cpu, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001736 if (task_cpu(p) != cpu) {
1737 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02001738 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001742 ttwu_queue(p, cpu);
1743stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001744 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001746 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 return success;
1749}
1750
David Howells50fa6102009-04-28 15:01:38 +01001751/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02001752 * try_to_wake_up_local - try to wake up a local task with rq lock held
1753 * @p: the thread to be awakened
1754 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02001755 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02001756 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02001757 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02001758 */
1759static void try_to_wake_up_local(struct task_struct *p)
1760{
1761 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001762
Tejun Heo383efcd2013-03-18 12:22:34 -07001763 if (WARN_ON_ONCE(rq != this_rq()) ||
1764 WARN_ON_ONCE(p == current))
1765 return;
1766
Tejun Heo21aa9af2010-06-08 21:40:37 +02001767 lockdep_assert_held(&rq->lock);
1768
Peter Zijlstra2acca552011-04-05 17:23:50 +02001769 if (!raw_spin_trylock(&p->pi_lock)) {
1770 raw_spin_unlock(&rq->lock);
1771 raw_spin_lock(&p->pi_lock);
1772 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001773 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02001774
Tejun Heo21aa9af2010-06-08 21:40:37 +02001775 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02001776 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02001777
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001778 if (!task_on_rq_queued(p))
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001779 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
1780
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001781 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001782 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02001783out:
1784 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001785}
1786
1787/**
David Howells50fa6102009-04-28 15:01:38 +01001788 * wake_up_process - Wake up a specific process
1789 * @p: The process to be woken up.
1790 *
1791 * Attempt to wake up the nominated process and move it to the set of runnable
Yacine Belkadie69f6182013-07-12 20:45:47 +02001792 * processes.
1793 *
1794 * Return: 1 if the process was woken up, 0 if it was already running.
David Howells50fa6102009-04-28 15:01:38 +01001795 *
1796 * It may be assumed that this function implies a write memory barrier before
1797 * changing the task state if and only if any tasks are woken up.
1798 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001799int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
Oleg Nesterov9067ac82013-01-21 20:48:17 +01001801 WARN_ON(task_is_stopped_or_traced(p));
1802 return try_to_wake_up(p, TASK_NORMAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804EXPORT_SYMBOL(wake_up_process);
1805
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001806int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 return try_to_wake_up(p, state, 0);
1809}
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811/*
Juri Lellia5e7be32014-09-19 10:22:39 +01001812 * This function clears the sched_dl_entity static params.
1813 */
1814void __dl_clear_params(struct task_struct *p)
1815{
1816 struct sched_dl_entity *dl_se = &p->dl;
1817
1818 dl_se->dl_runtime = 0;
1819 dl_se->dl_deadline = 0;
1820 dl_se->dl_period = 0;
1821 dl_se->flags = 0;
1822 dl_se->dl_bw = 0;
1823}
1824
1825/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 * Perform scheduler related setup for a newly forked process p.
1827 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001828 *
1829 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 */
Rik van Riel5e1576e2013-10-07 11:29:26 +01001831static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001833 p->on_rq = 0;
1834
1835 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001836 p->se.exec_start = 0;
1837 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001838 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001839 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001840 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001841 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001842
1843#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03001844 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001845#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001846
Dario Faggioliaab03e02013-11-28 11:14:43 +01001847 RB_CLEAR_NODE(&p->dl.rb_node);
1848 hrtimer_init(&p->dl.dl_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
Juri Lellia5e7be32014-09-19 10:22:39 +01001849 __dl_clear_params(p);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001850
Peter Zijlstrafa717062008-01-25 21:08:27 +01001851 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07001852
Avi Kivitye107be32007-07-26 13:40:43 +02001853#ifdef CONFIG_PREEMPT_NOTIFIERS
1854 INIT_HLIST_HEAD(&p->preempt_notifiers);
1855#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001856
1857#ifdef CONFIG_NUMA_BALANCING
1858 if (p->mm && atomic_read(&p->mm->mm_users) == 1) {
Mel Gorman7e8d16b2013-10-07 11:28:54 +01001859 p->mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001860 p->mm->numa_scan_seq = 0;
1861 }
1862
Rik van Riel5e1576e2013-10-07 11:29:26 +01001863 if (clone_flags & CLONE_VM)
1864 p->numa_preferred_nid = current->numa_preferred_nid;
1865 else
1866 p->numa_preferred_nid = -1;
1867
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001868 p->node_stamp = 0ULL;
1869 p->numa_scan_seq = p->mm ? p->mm->numa_scan_seq : 0;
Peter Zijlstra4b96a292012-10-25 14:16:47 +02001870 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001871 p->numa_work.next = &p->numa_work;
Rik van Rielff1df892014-01-27 17:03:41 -05001872 p->numa_faults_memory = NULL;
1873 p->numa_faults_buffer_memory = NULL;
Rik van Riel7e2703e2014-01-27 17:03:45 -05001874 p->last_task_numa_placement = 0;
1875 p->last_sum_exec_runtime = 0;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01001876
1877 INIT_LIST_HEAD(&p->numa_entry);
1878 p->numa_group = NULL;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001879#endif /* CONFIG_NUMA_BALANCING */
Ingo Molnardd41f592007-07-09 18:51:59 +02001880}
1881
Mel Gorman1a687c22012-11-22 11:16:36 +00001882#ifdef CONFIG_NUMA_BALANCING
Mel Gorman3105b862012-11-23 11:23:49 +00001883#ifdef CONFIG_SCHED_DEBUG
Mel Gorman1a687c22012-11-22 11:16:36 +00001884void set_numabalancing_state(bool enabled)
1885{
1886 if (enabled)
1887 sched_feat_set("NUMA");
1888 else
1889 sched_feat_set("NO_NUMA");
1890}
Mel Gorman3105b862012-11-23 11:23:49 +00001891#else
1892__read_mostly bool numabalancing_enabled;
1893
1894void set_numabalancing_state(bool enabled)
1895{
1896 numabalancing_enabled = enabled;
1897}
1898#endif /* CONFIG_SCHED_DEBUG */
Andi Kleen54a43d52014-01-23 15:53:13 -08001899
1900#ifdef CONFIG_PROC_SYSCTL
1901int sysctl_numa_balancing(struct ctl_table *table, int write,
1902 void __user *buffer, size_t *lenp, loff_t *ppos)
1903{
1904 struct ctl_table t;
1905 int err;
1906 int state = numabalancing_enabled;
1907
1908 if (write && !capable(CAP_SYS_ADMIN))
1909 return -EPERM;
1910
1911 t = *table;
1912 t.data = &state;
1913 err = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
1914 if (err < 0)
1915 return err;
1916 if (write)
1917 set_numabalancing_state(state);
1918 return err;
1919}
1920#endif
1921#endif
Mel Gorman1a687c22012-11-22 11:16:36 +00001922
Ingo Molnardd41f592007-07-09 18:51:59 +02001923/*
1924 * fork()/clone()-time setup:
1925 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001926int sched_fork(unsigned long clone_flags, struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02001927{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001928 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001929 int cpu = get_cpu();
1930
Rik van Riel5e1576e2013-10-07 11:29:26 +01001931 __sched_fork(clone_flags, p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001932 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01001933 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001934 * nobody will actually run it, and a signal or other external
1935 * event cannot wake it up and insert it on the runqueue either.
1936 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01001937 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001938
Ingo Molnarb29739f2006-06-27 02:54:51 -07001939 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02001940 * Make sure we do not leak PI boosting priority to the child.
1941 */
1942 p->prio = current->normal_prio;
1943
1944 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001945 * Revert to default priority/policy on fork if requested.
1946 */
1947 if (unlikely(p->sched_reset_on_fork)) {
Dario Faggioliaab03e02013-11-28 11:14:43 +01001948 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001949 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001950 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02001951 p->rt_priority = 0;
1952 } else if (PRIO_TO_NICE(p->static_prio) < 0)
1953 p->static_prio = NICE_TO_PRIO(0);
1954
1955 p->prio = p->normal_prio = __normal_prio(p);
1956 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001957
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001958 /*
1959 * We don't need the reset flag anymore after the fork. It has
1960 * fulfilled its duty:
1961 */
1962 p->sched_reset_on_fork = 0;
1963 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02001964
Dario Faggioliaab03e02013-11-28 11:14:43 +01001965 if (dl_prio(p->prio)) {
1966 put_cpu();
1967 return -EAGAIN;
1968 } else if (rt_prio(p->prio)) {
1969 p->sched_class = &rt_sched_class;
1970 } else {
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001971 p->sched_class = &fair_sched_class;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001972 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001973
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001974 if (p->sched_class->task_fork)
1975 p->sched_class->task_fork(p);
1976
Peter Zijlstra86951592010-06-22 11:44:53 +02001977 /*
1978 * The child is not yet in the pid-hash so no cgroup attach races,
1979 * and the cgroup is pinned to this child due to cgroup_fork()
1980 * is ran before sched_fork().
1981 *
1982 * Silence PROVE_RCU.
1983 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001984 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001985 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001986 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001987
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001988#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001989 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001990 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001992#if defined(CONFIG_SMP)
1993 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07001994#endif
Peter Zijlstra01028742013-08-14 14:55:46 +02001995 init_task_preempt_count(p);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001996#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05001997 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001998 RB_CLEAR_NODE(&p->pushable_dl_tasks);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001999#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05002000
Nick Piggin476d1392005-06-25 14:57:29 -07002001 put_cpu();
Dario Faggioliaab03e02013-11-28 11:14:43 +01002002 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Dario Faggioli332ac172013-11-07 14:43:45 +01002005unsigned long to_ratio(u64 period, u64 runtime)
2006{
2007 if (runtime == RUNTIME_INF)
2008 return 1ULL << 20;
2009
2010 /*
2011 * Doing this here saves a lot of checks in all
2012 * the calling paths, and returning zero seems
2013 * safe for them anyway.
2014 */
2015 if (period == 0)
2016 return 0;
2017
2018 return div64_u64(runtime << 20, period);
2019}
2020
2021#ifdef CONFIG_SMP
2022inline struct dl_bw *dl_bw_of(int i)
2023{
Kirill Tkhai66339c32014-09-22 22:36:24 +04002024 rcu_lockdep_assert(rcu_read_lock_sched_held(),
2025 "sched RCU must be held");
Dario Faggioli332ac172013-11-07 14:43:45 +01002026 return &cpu_rq(i)->rd->dl_bw;
2027}
2028
Peter Zijlstrade212f12013-12-19 11:54:45 +01002029static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01002030{
Peter Zijlstrade212f12013-12-19 11:54:45 +01002031 struct root_domain *rd = cpu_rq(i)->rd;
2032 int cpus = 0;
2033
Kirill Tkhai66339c32014-09-22 22:36:24 +04002034 rcu_lockdep_assert(rcu_read_lock_sched_held(),
2035 "sched RCU must be held");
Peter Zijlstrade212f12013-12-19 11:54:45 +01002036 for_each_cpu_and(i, rd->span, cpu_active_mask)
2037 cpus++;
2038
2039 return cpus;
Dario Faggioli332ac172013-11-07 14:43:45 +01002040}
2041#else
2042inline struct dl_bw *dl_bw_of(int i)
2043{
2044 return &cpu_rq(i)->dl.dl_bw;
2045}
2046
Peter Zijlstrade212f12013-12-19 11:54:45 +01002047static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01002048{
2049 return 1;
2050}
2051#endif
2052
2053static inline
2054void __dl_clear(struct dl_bw *dl_b, u64 tsk_bw)
2055{
2056 dl_b->total_bw -= tsk_bw;
2057}
2058
2059static inline
2060void __dl_add(struct dl_bw *dl_b, u64 tsk_bw)
2061{
2062 dl_b->total_bw += tsk_bw;
2063}
2064
2065static inline
2066bool __dl_overflow(struct dl_bw *dl_b, int cpus, u64 old_bw, u64 new_bw)
2067{
2068 return dl_b->bw != -1 &&
2069 dl_b->bw * cpus < dl_b->total_bw - old_bw + new_bw;
2070}
2071
2072/*
2073 * We must be sure that accepting a new task (or allowing changing the
2074 * parameters of an existing one) is consistent with the bandwidth
2075 * constraints. If yes, this function also accordingly updates the currently
2076 * allocated bandwidth to reflect the new situation.
2077 *
2078 * This function is called while holding p's rq->lock.
2079 */
2080static int dl_overflow(struct task_struct *p, int policy,
2081 const struct sched_attr *attr)
2082{
2083
2084 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
Steven Rostedt4df16382014-02-19 13:53:35 -05002085 u64 period = attr->sched_period ?: attr->sched_deadline;
Dario Faggioli332ac172013-11-07 14:43:45 +01002086 u64 runtime = attr->sched_runtime;
2087 u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
Peter Zijlstrade212f12013-12-19 11:54:45 +01002088 int cpus, err = -1;
Dario Faggioli332ac172013-11-07 14:43:45 +01002089
2090 if (new_bw == p->dl.dl_bw)
2091 return 0;
2092
2093 /*
2094 * Either if a task, enters, leave, or stays -deadline but changes
2095 * its parameters, we may need to update accordingly the total
2096 * allocated bandwidth of the container.
2097 */
2098 raw_spin_lock(&dl_b->lock);
Peter Zijlstrade212f12013-12-19 11:54:45 +01002099 cpus = dl_bw_cpus(task_cpu(p));
Dario Faggioli332ac172013-11-07 14:43:45 +01002100 if (dl_policy(policy) && !task_has_dl_policy(p) &&
2101 !__dl_overflow(dl_b, cpus, 0, new_bw)) {
2102 __dl_add(dl_b, new_bw);
2103 err = 0;
2104 } else if (dl_policy(policy) && task_has_dl_policy(p) &&
2105 !__dl_overflow(dl_b, cpus, p->dl.dl_bw, new_bw)) {
2106 __dl_clear(dl_b, p->dl.dl_bw);
2107 __dl_add(dl_b, new_bw);
2108 err = 0;
2109 } else if (!dl_policy(policy) && task_has_dl_policy(p)) {
2110 __dl_clear(dl_b, p->dl.dl_bw);
2111 err = 0;
2112 }
2113 raw_spin_unlock(&dl_b->lock);
2114
2115 return err;
2116}
2117
2118extern void init_dl_bw(struct dl_bw *dl_b);
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120/*
2121 * wake_up_new_task - wake up a newly created task for the first time.
2122 *
2123 * This function will do some initial scheduler statistics housekeeping
2124 * that must be done for every newly created context, then puts the task
2125 * on the runqueue and wakes it.
2126 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02002127void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002130 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002131
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002132 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002133#ifdef CONFIG_SMP
2134 /*
2135 * Fork balancing, do it here and not earlier because:
2136 * - cpus_allowed can change in the fork path
2137 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002138 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01002139 set_task_cpu(p, select_task_rq(p, task_cpu(p), SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002140#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Alex Shia75cdaa2013-06-20 10:18:47 +08002142 /* Initialize new task's runnable average */
2143 init_task_runnable_average(p);
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002144 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002145 activate_task(rq, p, 0);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04002146 p->on_rq = TASK_ON_RQ_QUEUED;
Peter Zijlstra89363382011-04-05 17:23:42 +02002147 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02002148 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002149#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002150 if (p->sched_class->task_woken)
2151 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002152#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002153 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
2155
Avi Kivitye107be32007-07-26 13:40:43 +02002156#ifdef CONFIG_PREEMPT_NOTIFIERS
2157
2158/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002159 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002160 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002161 */
2162void preempt_notifier_register(struct preempt_notifier *notifier)
2163{
2164 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2165}
2166EXPORT_SYMBOL_GPL(preempt_notifier_register);
2167
2168/**
2169 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002170 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002171 *
2172 * This is safe to call from within a preemption notifier.
2173 */
2174void preempt_notifier_unregister(struct preempt_notifier *notifier)
2175{
2176 hlist_del(&notifier->link);
2177}
2178EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2179
2180static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2181{
2182 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002183
Sasha Levinb67bfe02013-02-27 17:06:00 -08002184 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002185 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2186}
2187
2188static void
2189fire_sched_out_preempt_notifiers(struct task_struct *curr,
2190 struct task_struct *next)
2191{
2192 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002193
Sasha Levinb67bfe02013-02-27 17:06:00 -08002194 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002195 notifier->ops->sched_out(notifier, next);
2196}
2197
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002198#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002199
2200static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2201{
2202}
2203
2204static void
2205fire_sched_out_preempt_notifiers(struct task_struct *curr,
2206 struct task_struct *next)
2207{
2208}
2209
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002210#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002213 * prepare_task_switch - prepare to switch tasks
2214 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002215 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002216 * @next: the task we are going to switch to.
2217 *
2218 * This is called with the rq lock held and interrupts off. It must
2219 * be paired with a subsequent finish_task_switch after the context
2220 * switch.
2221 *
2222 * prepare_task_switch sets up locking and calls architecture specific
2223 * hooks.
2224 */
Avi Kivitye107be32007-07-26 13:40:43 +02002225static inline void
2226prepare_task_switch(struct rq *rq, struct task_struct *prev,
2227 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002228{
Andrew Vagin895dd922012-07-12 14:14:29 +04002229 trace_sched_switch(prev, next);
Michael S. Tsirkin43148952013-09-22 17:20:54 +03002230 sched_info_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002231 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02002232 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002233 prepare_lock_switch(rq, next);
2234 prepare_arch_switch(next);
2235}
2236
2237/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002239 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 * @prev: the thread we just switched away from.
2241 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002242 * finish_task_switch must be called after the context switch, paired
2243 * with a prepare_task_switch call before the context switch.
2244 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2245 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *
2247 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002248 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 * with the lock held can cause deadlocks; see schedule() for
2250 * details.)
2251 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002252static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 __releases(rq->lock)
2254{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002256 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 rq->prev_mm = NULL;
2259
2260 /*
2261 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002262 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002263 * schedule one last time. The schedule call will never return, and
2264 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002265 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 * still held, otherwise prev could be scheduled on another cpu, die
2267 * there before we look at prev->state, and then the reference would
2268 * be dropped twice.
2269 * Manfred Spraul <manfred@colorfullife.com>
2270 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002271 prev_state = prev->state;
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +02002272 vtime_task_switch(prev);
Nick Piggin4866cde2005-06-25 14:57:23 -07002273 finish_arch_switch(prev);
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002274 perf_event_task_sched_in(prev, current);
Nick Piggin4866cde2005-06-25 14:57:23 -07002275 finish_lock_switch(rq, prev);
Catalin Marinas01f23e12011-11-27 21:43:10 +00002276 finish_arch_post_lock_switch();
Steven Rostedte8fa1362008-01-25 21:08:05 +01002277
Avi Kivitye107be32007-07-26 13:40:43 +02002278 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if (mm)
2280 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002281 if (unlikely(prev_state == TASK_DEAD)) {
Dario Faggiolie6c390f2013-11-07 14:43:35 +01002282 if (prev->sched_class->task_dead)
2283 prev->sched_class->task_dead(prev);
2284
bibo maoc6fd91f2006-03-26 01:38:20 -08002285 /*
2286 * Remove function-return probe instances associated with this
2287 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002288 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002289 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002291 }
Frederic Weisbecker99e5ada2013-04-20 17:11:50 +02002292
2293 tick_nohz_task_switch(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295
Gregory Haskins3f029d32009-07-29 11:08:47 -04002296#ifdef CONFIG_SMP
2297
Gregory Haskins3f029d32009-07-29 11:08:47 -04002298/* rq->lock is NOT held, but preemption is disabled */
2299static inline void post_schedule(struct rq *rq)
2300{
2301 if (rq->post_schedule) {
2302 unsigned long flags;
2303
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002304 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002305 if (rq->curr->sched_class->post_schedule)
2306 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002307 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002308
2309 rq->post_schedule = 0;
2310 }
2311}
2312
2313#else
2314
Gregory Haskins3f029d32009-07-29 11:08:47 -04002315static inline void post_schedule(struct rq *rq)
2316{
2317}
2318
2319#endif
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321/**
2322 * schedule_tail - first thing a freshly forked thread must call.
2323 * @prev: the thread we just switched away from.
2324 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002325asmlinkage __visible void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 __releases(rq->lock)
2327{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002328 struct rq *rq = this_rq();
2329
Nick Piggin4866cde2005-06-25 14:57:23 -07002330 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002331
Gregory Haskins3f029d32009-07-29 11:08:47 -04002332 /*
2333 * FIXME: do we need to worry about rq being invalidated by the
2334 * task_switch?
2335 */
2336 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002339 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340}
2341
2342/*
2343 * context_switch - switch to the new MM and the new
2344 * thread's register state.
2345 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002346static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002347context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002348 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
Ingo Molnardd41f592007-07-09 18:51:59 +02002350 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Avi Kivitye107be32007-07-26 13:40:43 +02002352 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002353
Ingo Molnardd41f592007-07-09 18:51:59 +02002354 mm = next->mm;
2355 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002356 /*
2357 * For paravirt, this is coupled with an exit in switch_to to
2358 * combine the page table reload and the switch backend into
2359 * one hypercall.
2360 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002361 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002362
Heiko Carstens31915ab2010-09-16 14:42:25 +02002363 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 next->active_mm = oldmm;
2365 atomic_inc(&oldmm->mm_count);
2366 enter_lazy_tlb(oldmm, next);
2367 } else
2368 switch_mm(oldmm, mm, next);
2369
Heiko Carstens31915ab2010-09-16 14:42:25 +02002370 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 rq->prev_mm = oldmm;
2373 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002374 /*
2375 * Since the runqueue lock will be released by the next
2376 * task (which is an invalid locking op but in the case
2377 * of the scheduler it's an obvious special-case), so we
2378 * do an early lockdep release here:
2379 */
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002380 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002382 context_tracking_task_switch(prev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 /* Here we just switch the register state and the stack. */
2384 switch_to(prev, next, prev);
2385
Ingo Molnardd41f592007-07-09 18:51:59 +02002386 barrier();
2387 /*
2388 * this_rq must be evaluated again because prev may have moved
2389 * CPUs since it called schedule(), thus the 'rq' on its stack
2390 * frame will be invalid.
2391 */
2392 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
2395/*
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002396 * nr_running and nr_context_switches:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 *
2398 * externally visible scheduler statistics: current number of runnable
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002399 * threads, total number of context switches performed since bootup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 */
2401unsigned long nr_running(void)
2402{
2403 unsigned long i, sum = 0;
2404
2405 for_each_online_cpu(i)
2406 sum += cpu_rq(i)->nr_running;
2407
2408 return sum;
2409}
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411unsigned long long nr_context_switches(void)
2412{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002413 int i;
2414 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002416 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 sum += cpu_rq(i)->nr_switches;
2418
2419 return sum;
2420}
2421
2422unsigned long nr_iowait(void)
2423{
2424 unsigned long i, sum = 0;
2425
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002426 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2428
2429 return sum;
2430}
2431
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002432unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07002433{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002434 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07002435 return atomic_read(&this->nr_iowait);
2436}
2437
Mel Gorman372ba8c2014-08-06 14:19:21 +01002438void get_iowait_load(unsigned long *nr_waiters, unsigned long *load)
2439{
2440 struct rq *this = this_rq();
2441 *nr_waiters = atomic_read(&this->nr_iowait);
2442 *load = this->cpu_load[0];
2443}
2444
Ingo Molnardd41f592007-07-09 18:51:59 +02002445#ifdef CONFIG_SMP
2446
Ingo Molnar48f24c42006-07-03 00:25:40 -07002447/*
Peter Zijlstra38022902009-12-16 18:04:37 +01002448 * sched_exec - execve() is a valuable balancing opportunity, because at
2449 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 */
Peter Zijlstra38022902009-12-16 18:04:37 +01002451void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
Peter Zijlstra38022902009-12-16 18:04:37 +01002453 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01002455 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01002456
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002457 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstraac66f542013-10-07 11:29:16 +01002458 dest_cpu = p->sched_class->select_task_rq(p, task_cpu(p), SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002459 if (dest_cpu == smp_processor_id())
2460 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01002461
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002462 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02002463 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07002464
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002465 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
2466 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 return;
2468 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01002469unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002470 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473#endif
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475DEFINE_PER_CPU(struct kernel_stat, kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002476DEFINE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478EXPORT_PER_CPU_SYMBOL(kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002479EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002482 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07002483 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002484 *
2485 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002487static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
2488{
2489 u64 ns = 0;
2490
Mike Galbraith4036ac12014-06-24 07:49:40 +02002491 /*
2492 * Must be ->curr _and_ ->on_rq. If dequeued, we would
2493 * project cycles that may never be accounted to this
2494 * thread, breaking clock_gettime().
2495 */
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04002496 if (task_current(rq, p) && task_on_rq_queued(p)) {
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002497 update_rq_clock(rq);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02002498 ns = rq_clock_task(rq) - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002499 if ((s64)ns < 0)
2500 ns = 0;
2501 }
2502
2503 return ns;
2504}
2505
Frank Mayharbb34d922008-09-12 09:54:39 -07002506unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02002509 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07002510 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002511
Ingo Molnar41b86e92007-07-09 18:51:58 +02002512 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002513 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002514 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02002515
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002516 return ns;
2517}
Frank Mayharf06febc2008-09-12 09:54:39 -07002518
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002519/*
2520 * Return accounted runtime for the task.
2521 * In case the task is currently running, return the runtime plus current's
2522 * pending runtime that have not been accounted yet.
2523 */
2524unsigned long long task_sched_runtime(struct task_struct *p)
2525{
2526 unsigned long flags;
2527 struct rq *rq;
2528 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002529
Peter Zijlstra911b2892013-11-11 18:21:56 +01002530#if defined(CONFIG_64BIT) && defined(CONFIG_SMP)
2531 /*
2532 * 64-bit doesn't need locks to atomically read a 64bit value.
2533 * So we have a optimization chance when the task's delta_exec is 0.
2534 * Reading ->on_cpu is racy, but this is ok.
2535 *
2536 * If we race with it leaving cpu, we'll take a lock. So we're correct.
2537 * If we race with it entering cpu, unaccounted time is 0. This is
2538 * indistinguishable from the read occurring a few cycles earlier.
Mike Galbraith4036ac12014-06-24 07:49:40 +02002539 * If we see ->on_cpu without ->on_rq, the task is leaving, and has
2540 * been accounted, so we're correct here as well.
Peter Zijlstra911b2892013-11-11 18:21:56 +01002541 */
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04002542 if (!p->on_cpu || !task_on_rq_queued(p))
Peter Zijlstra911b2892013-11-11 18:21:56 +01002543 return p->se.sum_exec_runtime;
2544#endif
2545
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002546 rq = task_rq_lock(p, &flags);
2547 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002548 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002549
2550 return ns;
2551}
2552
Balbir Singh49048622008-09-05 18:12:23 +02002553/*
Christoph Lameter7835b982006-12-10 02:20:22 -08002554 * This function gets called by the timer code, with HZ frequency.
2555 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08002556 */
2557void scheduler_tick(void)
2558{
Christoph Lameter7835b982006-12-10 02:20:22 -08002559 int cpu = smp_processor_id();
2560 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002561 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002562
2563 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08002564
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002565 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002566 update_rq_clock(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01002567 curr->sched_class->task_tick(rq, curr, 0);
Alex Shi83dfd522013-06-20 10:18:49 +08002568 update_cpu_load_active(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002569 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02002570
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002571 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002572
Christoph Lametere418e1c2006-12-10 02:20:23 -08002573#ifdef CONFIG_SMP
Suresh Siddha6eb57e02011-10-03 15:09:01 -07002574 rq->idle_balance = idle_cpu(cpu);
Daniel Lezcano7caff662014-01-06 12:34:38 +01002575 trigger_load_balance(rq);
Christoph Lametere418e1c2006-12-10 02:20:23 -08002576#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002577 rq_last_tick_reset(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578}
2579
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002580#ifdef CONFIG_NO_HZ_FULL
2581/**
2582 * scheduler_tick_max_deferment
2583 *
2584 * Keep at least one tick per second when a single
2585 * active task is running because the scheduler doesn't
2586 * yet completely support full dynticks environment.
2587 *
2588 * This makes sure that uptime, CFS vruntime, load
2589 * balancing, etc... continue to move forward, even
2590 * with a very low granularity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02002591 *
2592 * Return: Maximum deferment in nanoseconds.
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002593 */
2594u64 scheduler_tick_max_deferment(void)
2595{
2596 struct rq *rq = this_rq();
2597 unsigned long next, now = ACCESS_ONCE(jiffies);
2598
2599 next = rq->last_sched_tick + HZ;
2600
2601 if (time_before_eq(next, now))
2602 return 0;
2603
Kevin Hilman8fe8ff02014-01-15 14:51:38 +01002604 return jiffies_to_nsecs(next - now);
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002605}
2606#endif
2607
Lai Jiangshan132380a2009-04-02 14:18:25 +08002608notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002609{
2610 if (in_lock_functions(addr)) {
2611 addr = CALLER_ADDR2;
2612 if (in_lock_functions(addr))
2613 addr = CALLER_ADDR3;
2614 }
2615 return addr;
2616}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05002618#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
2619 defined(CONFIG_PREEMPT_TRACER))
2620
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002621void preempt_count_add(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002623#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 /*
2625 * Underflow?
2626 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002627 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
2628 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002629#endif
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002630 __preempt_count_add(val);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002631#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 /*
2633 * Spinlock count overflowing soon?
2634 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002635 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
2636 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002637#endif
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002638 if (preempt_count() == val) {
2639 unsigned long ip = get_parent_ip(CALLER_ADDR1);
2640#ifdef CONFIG_DEBUG_PREEMPT
2641 current->preempt_disable_ip = ip;
2642#endif
2643 trace_preempt_off(CALLER_ADDR0, ip);
2644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002646EXPORT_SYMBOL(preempt_count_add);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002647NOKPROBE_SYMBOL(preempt_count_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002649void preempt_count_sub(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002651#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 /*
2653 * Underflow?
2654 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01002655 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002656 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 /*
2658 * Is the spinlock portion underflowing?
2659 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002660 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
2661 !(preempt_count() & PREEMPT_MASK)))
2662 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002663#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002664
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002665 if (preempt_count() == val)
2666 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002667 __preempt_count_sub(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002669EXPORT_SYMBOL(preempt_count_sub);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002670NOKPROBE_SYMBOL(preempt_count_sub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672#endif
2673
2674/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002675 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002677static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
Dave Jones664dfa62011-12-22 16:39:30 -05002679 if (oops_in_progress)
2680 return;
2681
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01002682 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
2683 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02002684
Ingo Molnardd41f592007-07-09 18:51:59 +02002685 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07002686 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02002687 if (irqs_disabled())
2688 print_irqtrace_events(prev);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002689#ifdef CONFIG_DEBUG_PREEMPT
2690 if (in_atomic_preempt_off()) {
2691 pr_err("Preemption disabled at:");
2692 print_ip_sym(current->preempt_disable_ip);
2693 pr_cont("\n");
2694 }
2695#endif
Stephen Boyd6135fc12012-03-28 17:10:47 -07002696 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +10302697 add_taint(TAINT_WARN, LOCKDEP_STILL_OK);
Ingo Molnardd41f592007-07-09 18:51:59 +02002698}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Ingo Molnardd41f592007-07-09 18:51:59 +02002700/*
2701 * Various schedule()-time debugging checks and statistics:
2702 */
2703static inline void schedule_debug(struct task_struct *prev)
2704{
Aaron Tomlin0d9e2632014-09-12 14:16:19 +01002705#ifdef CONFIG_SCHED_STACK_END_CHECK
2706 BUG_ON(unlikely(task_stack_end_corrupted(prev)));
2707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002709 * Test if we are atomic. Since do_exit() needs to call into
Oleg Nesterov192301e2013-11-13 16:45:38 +01002710 * schedule() atomically, we ignore that path. Otherwise whine
2711 * if we are scheduling when we should not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 */
Oleg Nesterov192301e2013-11-13 16:45:38 +01002713 if (unlikely(in_atomic_preempt_off() && prev->state != TASK_DEAD))
Ingo Molnardd41f592007-07-09 18:51:59 +02002714 __schedule_bug(prev);
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07002715 rcu_sleep_check();
Ingo Molnardd41f592007-07-09 18:51:59 +02002716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2718
Ingo Molnar2d723762007-10-15 17:00:12 +02002719 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02002720}
2721
2722/*
2723 * Pick up the highest-prio task:
2724 */
2725static inline struct task_struct *
Peter Zijlstra606dba22012-02-11 06:05:00 +01002726pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02002727{
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002728 const struct sched_class *class = &fair_sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02002729 struct task_struct *p;
2730
2731 /*
2732 * Optimization: we know that if all tasks are in
2733 * the fair class we can call that function directly:
2734 */
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002735 if (likely(prev->sched_class == class &&
Peter Zijlstra38033c32014-01-23 20:32:21 +01002736 rq->nr_running == rq->cfs.h_nr_running)) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002737 p = fair_sched_class.pick_next_task(rq, prev);
Peter Zijlstra6ccdc842014-04-24 12:00:47 +02002738 if (unlikely(p == RETRY_TASK))
2739 goto again;
2740
2741 /* assumes fair_sched_class->next == idle_sched_class */
2742 if (unlikely(!p))
2743 p = idle_sched_class.pick_next_task(rq, prev);
2744
2745 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02002746 }
2747
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002748again:
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002749 for_each_class(class) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002750 p = class->pick_next_task(rq, prev);
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002751 if (p) {
2752 if (unlikely(p == RETRY_TASK))
2753 goto again;
Ingo Molnardd41f592007-07-09 18:51:59 +02002754 return p;
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002755 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002756 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002757
2758 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02002759}
2760
2761/*
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002762 * __schedule() is the main scheduler function.
Pekka Enbergedde96e2012-08-04 11:49:47 +03002763 *
2764 * The main means of driving the scheduler and thus entering this function are:
2765 *
2766 * 1. Explicit blocking: mutex, semaphore, waitqueue, etc.
2767 *
2768 * 2. TIF_NEED_RESCHED flag is checked on interrupt and userspace return
2769 * paths. For example, see arch/x86/entry_64.S.
2770 *
2771 * To drive preemption between tasks, the scheduler sets the flag in timer
2772 * interrupt handler scheduler_tick().
2773 *
2774 * 3. Wakeups don't really cause entry into schedule(). They add a
2775 * task to the run-queue and that's it.
2776 *
2777 * Now, if the new task added to the run-queue preempts the current
2778 * task, then the wakeup sets TIF_NEED_RESCHED and schedule() gets
2779 * called on the nearest possible occasion:
2780 *
2781 * - If the kernel is preemptible (CONFIG_PREEMPT=y):
2782 *
2783 * - in syscall or exception context, at the next outmost
2784 * preempt_enable(). (this might be as soon as the wake_up()'s
2785 * spin_unlock()!)
2786 *
2787 * - in IRQ context, return from interrupt-handler to
2788 * preemptible context
2789 *
2790 * - If the kernel is not preemptible (CONFIG_PREEMPT is not set)
2791 * then at the next:
2792 *
2793 * - cond_resched() call
2794 * - explicit schedule() call
2795 * - return from syscall or exception to user-space
2796 * - return from interrupt-handler to user-space
Ingo Molnardd41f592007-07-09 18:51:59 +02002797 */
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002798static void __sched __schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02002799{
2800 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08002801 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02002802 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02002803 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002804
Peter Zijlstraff743342009-03-13 12:21:26 +01002805need_resched:
2806 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02002807 cpu = smp_processor_id();
2808 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07002809 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002810 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02002811
Ingo Molnardd41f592007-07-09 18:51:59 +02002812 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Peter Zijlstra31656512008-07-18 18:01:23 +02002814 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02002815 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002816
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02002817 /*
2818 * Make sure that signal_pending_state()->signal_pending() below
2819 * can't be reordered with __set_current_state(TASK_INTERRUPTIBLE)
2820 * done by the caller to avoid the race with signal_wake_up().
2821 */
2822 smp_mb__before_spinlock();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002823 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002825 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02002826 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02002827 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002828 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002829 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02002830 deactivate_task(rq, prev, DEQUEUE_SLEEP);
2831 prev->on_rq = 0;
2832
Tejun Heo21aa9af2010-06-08 21:40:37 +02002833 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02002834 * If a worker went to sleep, notify and ask workqueue
2835 * whether it wants to wake up a task to maintain
2836 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002837 */
2838 if (prev->flags & PF_WQ_WORKER) {
2839 struct task_struct *to_wakeup;
2840
2841 to_wakeup = wq_worker_sleeping(prev, cpu);
2842 if (to_wakeup)
2843 try_to_wake_up_local(to_wakeup);
2844 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02002845 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002846 switch_count = &prev->nvcsw;
2847 }
2848
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04002849 if (task_on_rq_queued(prev) || rq->skip_clock_update < 0)
Peter Zijlstra606dba22012-02-11 06:05:00 +01002850 update_rq_clock(rq);
2851
2852 next = pick_next_task(rq, prev);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002853 clear_tsk_need_resched(prev);
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002854 clear_preempt_need_resched();
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002855 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 rq->nr_switches++;
2859 rq->curr = next;
2860 ++*switch_count;
2861
Ingo Molnardd41f592007-07-09 18:51:59 +02002862 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002863 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002864 * The context switch have flipped the stack from under us
2865 * and restored the local variables which were saved when
2866 * this task called schedule() in the past. prev == current
2867 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002868 */
2869 cpu = smp_processor_id();
2870 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002872 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Gregory Haskins3f029d32009-07-29 11:08:47 -04002874 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002876 sched_preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01002877 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 goto need_resched;
2879}
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002880
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002881static inline void sched_submit_work(struct task_struct *tsk)
2882{
Thomas Gleixner3c7d5182011-07-17 20:46:52 +02002883 if (!tsk->state || tsk_is_pi_blocked(tsk))
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002884 return;
2885 /*
2886 * If we are going to sleep and we have plugged IO queued,
2887 * make sure to submit it to avoid deadlocks.
2888 */
2889 if (blk_needs_flush_plug(tsk))
2890 blk_schedule_flush_plug(tsk);
2891}
2892
Andi Kleen722a9f92014-05-02 00:44:38 +02002893asmlinkage __visible void __sched schedule(void)
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002894{
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002895 struct task_struct *tsk = current;
2896
2897 sched_submit_work(tsk);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002898 __schedule();
2899}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900EXPORT_SYMBOL(schedule);
2901
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002902#ifdef CONFIG_CONTEXT_TRACKING
Andi Kleen722a9f92014-05-02 00:44:38 +02002903asmlinkage __visible void __sched schedule_user(void)
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002904{
2905 /*
2906 * If we come here after a random call to set_need_resched(),
2907 * or we have been woken up remotely but the IPI has not yet arrived,
2908 * we haven't yet exited the RCU idle mode. Do it here manually until
2909 * we find a better solution.
2910 */
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002911 user_exit();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002912 schedule();
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002913 user_enter();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002914}
2915#endif
2916
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002917/**
2918 * schedule_preempt_disabled - called with preemption disabled
2919 *
2920 * Returns with preemption disabled. Note: preempt_count must be 1
2921 */
2922void __sched schedule_preempt_disabled(void)
2923{
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002924 sched_preempt_enable_no_resched();
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002925 schedule();
2926 preempt_disable();
2927}
2928
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929#ifdef CONFIG_PREEMPT
2930/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002931 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002932 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 * occur there and call schedule directly.
2934 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002935asmlinkage __visible void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 /*
2938 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002939 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 */
Frederic Weisbeckerfbb00b52013-06-19 23:56:22 +02002941 if (likely(!preemptible()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return;
2943
Andi Kleen3a5c3592007-10-15 17:00:14 +02002944 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002945 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002946 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002947 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002948
2949 /*
2950 * Check again in case we missed a preemption opportunity
2951 * between schedule and now.
2952 */
2953 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002954 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955}
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002956NOKPROBE_SYMBOL(preempt_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957EXPORT_SYMBOL(preempt_schedule);
Thomas Gleixner32e475d2013-11-21 12:41:44 +01002958#endif /* CONFIG_PREEMPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002961 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 * off of irq context.
2963 * Note, that this is called and return with irqs disabled. This will
2964 * protect us against recursive calling from irq.
2965 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002966asmlinkage __visible void __sched preempt_schedule_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002968 enum ctx_state prev_state;
Ingo Molnar6478d882008-01-25 21:08:33 +01002969
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002970 /* Catch callers which need to be fixed */
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002971 BUG_ON(preempt_count() || !irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002973 prev_state = exception_enter();
2974
Andi Kleen3a5c3592007-10-15 17:00:14 +02002975 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002976 __preempt_count_add(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002977 local_irq_enable();
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002978 __schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02002979 local_irq_disable();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002980 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002981
2982 /*
2983 * Check again in case we missed a preemption opportunity
2984 * between schedule and now.
2985 */
2986 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002987 } while (need_resched());
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002988
2989 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991
Peter Zijlstra63859d42009-09-15 19:14:42 +02002992int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002993 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Peter Zijlstra63859d42009-09-15 19:14:42 +02002995 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997EXPORT_SYMBOL(default_wake_function);
2998
Ingo Molnarb29739f2006-06-27 02:54:51 -07002999#ifdef CONFIG_RT_MUTEXES
3000
3001/*
3002 * rt_mutex_setprio - set the current priority of a task
3003 * @p: task
3004 * @prio: prio value (kernel-internal form)
3005 *
3006 * This function changes the 'effective' priority of a task. It does
3007 * not touch ->normal_prio like __setscheduler().
3008 *
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003009 * Used by the rt_mutex code to implement priority inheritance
3010 * logic. Call site only calls if the priority of the task changed.
Ingo Molnarb29739f2006-06-27 02:54:51 -07003011 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003012void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07003013{
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003014 int oldprio, queued, running, enqueue_flag = 0;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003015 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003016 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003017
Dario Faggioliaab03e02013-11-28 11:14:43 +01003018 BUG_ON(prio > MAX_PRIO);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003019
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003020 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003021
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02003022 /*
3023 * Idle task boosting is a nono in general. There is one
3024 * exception, when PREEMPT_RT and NOHZ is active:
3025 *
3026 * The idle task calls get_next_timer_interrupt() and holds
3027 * the timer wheel base->lock on the CPU and another CPU wants
3028 * to access the timer (probably to cancel it). We can safely
3029 * ignore the boosting request, as the idle CPU runs this code
3030 * with interrupts disabled and will complete the lock
3031 * protected section without being interrupted. So there is no
3032 * real need to boost.
3033 */
3034 if (unlikely(p == rq->idle)) {
3035 WARN_ON(p != rq->curr);
3036 WARN_ON(p->pi_blocked_on);
3037 goto out_unlock;
3038 }
3039
Steven Rostedta8027072010-09-20 15:13:34 -04003040 trace_sched_pi_setprio(p, prio);
Andrew Mortond5f9f942007-05-08 20:27:06 -07003041 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003042 prev_class = p->sched_class;
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003043 queued = task_on_rq_queued(p);
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003044 running = task_current(rq, p);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003045 if (queued)
Ingo Molnar69be72c2007-08-09 11:16:49 +02003046 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003047 if (running)
Kirill Tkhaif3cd1c42014-09-12 17:41:40 +04003048 put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02003049
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003050 /*
3051 * Boosting condition are:
3052 * 1. -rt task is running and holds mutex A
3053 * --> -dl task blocks on mutex A
3054 *
3055 * 2. -dl task is running and holds mutex A
3056 * --> -dl task blocks on mutex A and could preempt the
3057 * running task
3058 */
3059 if (dl_prio(prio)) {
Oleg Nesterov466af292014-06-06 18:52:06 +02003060 struct task_struct *pi_task = rt_mutex_get_top_task(p);
3061 if (!dl_prio(p->normal_prio) ||
3062 (pi_task && dl_entity_preempt(&pi_task->dl, &p->dl))) {
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003063 p->dl.dl_boosted = 1;
3064 p->dl.dl_throttled = 0;
3065 enqueue_flag = ENQUEUE_REPLENISH;
3066 } else
3067 p->dl.dl_boosted = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003068 p->sched_class = &dl_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003069 } else if (rt_prio(prio)) {
3070 if (dl_prio(oldprio))
3071 p->dl.dl_boosted = 0;
3072 if (oldprio < prio)
3073 enqueue_flag = ENQUEUE_HEAD;
Ingo Molnardd41f592007-07-09 18:51:59 +02003074 p->sched_class = &rt_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003075 } else {
3076 if (dl_prio(oldprio))
3077 p->dl.dl_boosted = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003078 p->sched_class = &fair_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003079 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003080
Ingo Molnarb29739f2006-06-27 02:54:51 -07003081 p->prio = prio;
3082
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003083 if (running)
3084 p->sched_class->set_curr_task(rq);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003085 if (queued)
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003086 enqueue_task(rq, p, enqueue_flag);
Steven Rostedtcb469842008-01-25 21:08:22 +01003087
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003088 check_class_changed(rq, p, prev_class, oldprio);
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02003089out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003090 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003091}
Ingo Molnarb29739f2006-06-27 02:54:51 -07003092#endif
Dario Faggiolid50dde52013-11-07 14:43:36 +01003093
Ingo Molnar36c8b582006-07-03 00:25:41 -07003094void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095{
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003096 int old_prio, delta, queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003098 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003100 if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 return;
3102 /*
3103 * We have to be careful, if called from sys_setpriority(),
3104 * the task might be in the middle of scheduling on another CPU.
3105 */
3106 rq = task_rq_lock(p, &flags);
3107 /*
3108 * The RT priorities are set via sched_setscheduler(), but we still
3109 * allow the 'normal' nice value to be set - but as expected
3110 * it wont have any effect on scheduling until the task is
Dario Faggioliaab03e02013-11-28 11:14:43 +01003111 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01003113 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 p->static_prio = NICE_TO_PRIO(nice);
3115 goto out_unlock;
3116 }
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003117 queued = task_on_rq_queued(p);
3118 if (queued)
Ingo Molnar69be72c2007-08-09 11:16:49 +02003119 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003122 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003123 old_prio = p->prio;
3124 p->prio = effective_prio(p);
3125 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003127 if (queued) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01003128 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07003130 * If the task increased its priority or is running and
3131 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003133 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Kirill Tkhai88751252014-06-29 00:03:57 +04003134 resched_curr(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 }
3136out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003137 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139EXPORT_SYMBOL(set_user_nice);
3140
Matt Mackalle43379f2005-05-01 08:59:00 -07003141/*
3142 * can_nice - check if a task can reduce its nice value
3143 * @p: task
3144 * @nice: nice value
3145 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003146int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07003147{
Matt Mackall024f4742005-08-18 11:24:19 -07003148 /* convert nice value [19,-20] to rlimit style value [1,40] */
Dongsheng Yang7aa2c012014-05-08 18:33:49 +09003149 int nice_rlim = nice_to_rlimit(nice);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003150
Jiri Slaby78d7d402010-03-05 13:42:54 -08003151 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07003152 capable(CAP_SYS_NICE));
3153}
3154
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155#ifdef __ARCH_WANT_SYS_NICE
3156
3157/*
3158 * sys_nice - change the priority of the current process.
3159 * @increment: priority increment
3160 *
3161 * sys_setpriority is a more generic, but much slower function that
3162 * does similar things.
3163 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003164SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003166 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
3168 /*
3169 * Setpriority might change our priority at the same moment.
3170 * We don't have to worry. Conceptually one call occurs first
3171 * and we have a single winner.
3172 */
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003173 increment = clamp(increment, -NICE_WIDTH, NICE_WIDTH);
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003174 nice = task_nice(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003176 nice = clamp_val(nice, MIN_NICE, MAX_NICE);
Matt Mackalle43379f2005-05-01 08:59:00 -07003177 if (increment < 0 && !can_nice(current, nice))
3178 return -EPERM;
3179
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 retval = security_task_setnice(current, nice);
3181 if (retval)
3182 return retval;
3183
3184 set_user_nice(current, nice);
3185 return 0;
3186}
3187
3188#endif
3189
3190/**
3191 * task_prio - return the priority value of a given task.
3192 * @p: the task in question.
3193 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003194 * Return: The priority value as seen by users in /proc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 * RT tasks are offset by -200. Normal tasks are centered
3196 * around 0, value goes from -16 to +15.
3197 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003198int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
3200 return p->prio - MAX_RT_PRIO;
3201}
3202
3203/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 * idle_cpu - is a given cpu idle currently?
3205 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003206 *
3207 * Return: 1 if the CPU is currently idle. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 */
3209int idle_cpu(int cpu)
3210{
Thomas Gleixner908a3282011-09-15 15:32:06 +02003211 struct rq *rq = cpu_rq(cpu);
3212
3213 if (rq->curr != rq->idle)
3214 return 0;
3215
3216 if (rq->nr_running)
3217 return 0;
3218
3219#ifdef CONFIG_SMP
3220 if (!llist_empty(&rq->wake_list))
3221 return 0;
3222#endif
3223
3224 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225}
3226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227/**
3228 * idle_task - return the idle task for a given cpu.
3229 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003230 *
3231 * Return: The idle task for the cpu @cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003233struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234{
3235 return cpu_rq(cpu)->idle;
3236}
3237
3238/**
3239 * find_process_by_pid - find a process with a matching PID value.
3240 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003241 *
3242 * The task of @pid, if found. %NULL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003244static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07003246 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247}
3248
Dario Faggioliaab03e02013-11-28 11:14:43 +01003249/*
3250 * This function initializes the sched_dl_entity of a newly becoming
3251 * SCHED_DEADLINE task.
3252 *
3253 * Only the static values are considered here, the actual runtime and the
3254 * absolute deadline will be properly calculated when the task is enqueued
3255 * for the first time with its new policy.
3256 */
3257static void
3258__setparam_dl(struct task_struct *p, const struct sched_attr *attr)
3259{
3260 struct sched_dl_entity *dl_se = &p->dl;
3261
3262 init_dl_task_timer(dl_se);
3263 dl_se->dl_runtime = attr->sched_runtime;
3264 dl_se->dl_deadline = attr->sched_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003265 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003266 dl_se->flags = attr->sched_flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01003267 dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
Dario Faggioliaab03e02013-11-28 11:14:43 +01003268 dl_se->dl_throttled = 0;
3269 dl_se->dl_new = 1;
Juri Lelli5bfd1262014-04-15 13:49:04 +02003270 dl_se->dl_yielded = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003271}
3272
Steven Rostedtc13db6b2014-07-23 11:28:26 -04003273/*
3274 * sched_setparam() passes in -1 for its policy, to let the functions
3275 * it calls know not to change it.
3276 */
3277#define SETPARAM_POLICY -1
3278
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003279static void __setscheduler_params(struct task_struct *p,
3280 const struct sched_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003282 int policy = attr->sched_policy;
3283
Steven Rostedtc13db6b2014-07-23 11:28:26 -04003284 if (policy == SETPARAM_POLICY)
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003285 policy = p->policy;
3286
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 p->policy = policy;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003288
Dario Faggioliaab03e02013-11-28 11:14:43 +01003289 if (dl_policy(policy))
3290 __setparam_dl(p, attr);
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003291 else if (fair_policy(policy))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003292 p->static_prio = NICE_TO_PRIO(attr->sched_nice);
3293
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003294 /*
3295 * __sched_setscheduler() ensures attr->sched_priority == 0 when
3296 * !rt_policy. Always setting this ensures that things like
3297 * getparam()/getattr() don't report silly values for !rt tasks.
3298 */
3299 p->rt_priority = attr->sched_priority;
Steven Rostedt383afd02014-03-11 19:24:20 -04003300 p->normal_prio = normal_prio(p);
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003301 set_load_weight(p);
3302}
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003303
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003304/* Actually do priority change: must hold pi & rq lock. */
3305static void __setscheduler(struct rq *rq, struct task_struct *p,
3306 const struct sched_attr *attr)
3307{
3308 __setscheduler_params(p, attr);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003309
Steven Rostedt383afd02014-03-11 19:24:20 -04003310 /*
3311 * If we get here, there was no pi waiters boosting the
3312 * task. It is safe to use the normal prio.
3313 */
3314 p->prio = normal_prio(p);
3315
Dario Faggioliaab03e02013-11-28 11:14:43 +01003316 if (dl_prio(p->prio))
3317 p->sched_class = &dl_sched_class;
3318 else if (rt_prio(p->prio))
Peter Zijlstraffd44db2009-11-10 20:12:01 +01003319 p->sched_class = &rt_sched_class;
3320 else
3321 p->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322}
Dario Faggioliaab03e02013-11-28 11:14:43 +01003323
3324static void
3325__getparam_dl(struct task_struct *p, struct sched_attr *attr)
3326{
3327 struct sched_dl_entity *dl_se = &p->dl;
3328
3329 attr->sched_priority = p->rt_priority;
3330 attr->sched_runtime = dl_se->dl_runtime;
3331 attr->sched_deadline = dl_se->dl_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003332 attr->sched_period = dl_se->dl_period;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003333 attr->sched_flags = dl_se->flags;
3334}
3335
3336/*
3337 * This function validates the new parameters of a -deadline task.
3338 * We ask for the deadline not being zero, and greater or equal
Harald Gustafsson755378a2013-11-07 14:43:40 +01003339 * than the runtime, as well as the period of being zero or
Dario Faggioli332ac172013-11-07 14:43:45 +01003340 * greater than deadline. Furthermore, we have to be sure that
Juri Lellib08278192014-05-13 14:11:31 +02003341 * user parameters are above the internal resolution of 1us (we
3342 * check sched_runtime only since it is always the smaller one) and
3343 * below 2^63 ns (we have to check both sched_deadline and
3344 * sched_period, as the latter can be zero).
Dario Faggioliaab03e02013-11-28 11:14:43 +01003345 */
3346static bool
3347__checkparam_dl(const struct sched_attr *attr)
3348{
Juri Lellib08278192014-05-13 14:11:31 +02003349 /* deadline != 0 */
3350 if (attr->sched_deadline == 0)
3351 return false;
3352
3353 /*
3354 * Since we truncate DL_SCALE bits, make sure we're at least
3355 * that big.
3356 */
3357 if (attr->sched_runtime < (1ULL << DL_SCALE))
3358 return false;
3359
3360 /*
3361 * Since we use the MSB for wrap-around and sign issues, make
3362 * sure it's not set (mind that period can be equal to zero).
3363 */
3364 if (attr->sched_deadline & (1ULL << 63) ||
3365 attr->sched_period & (1ULL << 63))
3366 return false;
3367
3368 /* runtime <= deadline <= period (if period != 0) */
3369 if ((attr->sched_period != 0 &&
3370 attr->sched_period < attr->sched_deadline) ||
3371 attr->sched_deadline < attr->sched_runtime)
3372 return false;
3373
3374 return true;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003375}
3376
David Howellsc69e8d92008-11-14 10:39:19 +11003377/*
3378 * check the target process has a UID that matches the current process's
3379 */
3380static bool check_same_owner(struct task_struct *p)
3381{
3382 const struct cred *cred = current_cred(), *pcred;
3383 bool match;
3384
3385 rcu_read_lock();
3386 pcred = __task_cred(p);
Eric W. Biederman9c806aa2012-02-02 18:54:02 -08003387 match = (uid_eq(cred->euid, pcred->euid) ||
3388 uid_eq(cred->euid, pcred->uid));
David Howellsc69e8d92008-11-14 10:39:19 +11003389 rcu_read_unlock();
3390 return match;
3391}
3392
Dario Faggiolid50dde52013-11-07 14:43:36 +01003393static int __sched_setscheduler(struct task_struct *p,
3394 const struct sched_attr *attr,
3395 bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396{
Steven Rostedt383afd02014-03-11 19:24:20 -04003397 int newprio = dl_policy(attr->sched_policy) ? MAX_DL_PRIO - 1 :
3398 MAX_RT_PRIO - 1 - attr->sched_priority;
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003399 int retval, oldprio, oldpolicy = -1, queued, running;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003400 int policy = attr->sched_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003402 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003403 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003404 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Steven Rostedt66e53932006-06-27 02:54:44 -07003406 /* may grab non-irq protected spin_locks */
3407 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408recheck:
3409 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02003410 if (policy < 0) {
3411 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003413 } else {
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003414 reset_on_fork = !!(attr->sched_flags & SCHED_FLAG_RESET_ON_FORK);
Lennart Poetteringca94c442009-06-15 17:17:47 +02003415
Dario Faggioliaab03e02013-11-28 11:14:43 +01003416 if (policy != SCHED_DEADLINE &&
3417 policy != SCHED_FIFO && policy != SCHED_RR &&
Lennart Poetteringca94c442009-06-15 17:17:47 +02003418 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
3419 policy != SCHED_IDLE)
3420 return -EINVAL;
3421 }
3422
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003423 if (attr->sched_flags & ~(SCHED_FLAG_RESET_ON_FORK))
3424 return -EINVAL;
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 /*
3427 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02003428 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
3429 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 */
Peter Zijlstra0bb040a2014-01-15 17:15:13 +01003431 if ((p->mm && attr->sched_priority > MAX_USER_RT_PRIO-1) ||
Dario Faggiolid50dde52013-11-07 14:43:36 +01003432 (!p->mm && attr->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 return -EINVAL;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003434 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
3435 (rt_policy(policy) != (attr->sched_priority != 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 return -EINVAL;
3437
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003438 /*
3439 * Allow unprivileged RT tasks to decrease priority:
3440 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10003441 if (user && !capable(CAP_SYS_NICE)) {
Dario Faggiolid50dde52013-11-07 14:43:36 +01003442 if (fair_policy(policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003443 if (attr->sched_nice < task_nice(p) &&
Peter Zijlstraeaad4512014-01-16 17:54:25 +01003444 !can_nice(p, attr->sched_nice))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003445 return -EPERM;
3446 }
3447
Ingo Molnare05606d2007-07-09 18:51:59 +02003448 if (rt_policy(policy)) {
Oleg Nesterova44702e82010-06-11 01:09:44 +02003449 unsigned long rlim_rtprio =
3450 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003451
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003452 /* can't set/change the rt policy */
3453 if (policy != p->policy && !rlim_rtprio)
3454 return -EPERM;
3455
3456 /* can't increase priority */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003457 if (attr->sched_priority > p->rt_priority &&
3458 attr->sched_priority > rlim_rtprio)
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003459 return -EPERM;
3460 }
Darren Hartc02aa732011-02-17 15:37:07 -08003461
Juri Lellid44753b2014-03-03 12:09:21 +01003462 /*
3463 * Can't set/change SCHED_DEADLINE policy at all for now
3464 * (safest behavior); in the future we would like to allow
3465 * unprivileged DL tasks to increase their relative deadline
3466 * or reduce their runtime (both ways reducing utilization)
3467 */
3468 if (dl_policy(policy))
3469 return -EPERM;
3470
Ingo Molnardd41f592007-07-09 18:51:59 +02003471 /*
Darren Hartc02aa732011-02-17 15:37:07 -08003472 * Treat SCHED_IDLE as nice 20. Only allow a switch to
3473 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02003474 */
Darren Hartc02aa732011-02-17 15:37:07 -08003475 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003476 if (!can_nice(p, task_nice(p)))
Darren Hartc02aa732011-02-17 15:37:07 -08003477 return -EPERM;
3478 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003479
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003480 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11003481 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003482 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003483
3484 /* Normal users shall not reset the sched_reset_on_fork flag */
3485 if (p->sched_reset_on_fork && !reset_on_fork)
3486 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003489 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003490 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003491 if (retval)
3492 return retval;
3493 }
3494
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07003496 * make sure no PI-waiters arrive (or leave) while we are
3497 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003498 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003499 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 * runqueue lock must be held.
3501 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003502 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003503
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003504 /*
3505 * Changing the policy of the stop threads its a very bad idea
3506 */
3507 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003508 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003509 return -EINVAL;
3510 }
3511
Dario Faggiolia51e9192011-03-24 14:00:18 +01003512 /*
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003513 * If not changing anything there's no need to proceed further,
3514 * but store a possible modification of reset_on_fork.
Dario Faggiolia51e9192011-03-24 14:00:18 +01003515 */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003516 if (unlikely(policy == p->policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003517 if (fair_policy(policy) && attr->sched_nice != task_nice(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003518 goto change;
3519 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
3520 goto change;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003521 if (dl_policy(policy))
3522 goto change;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003523
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003524 p->sched_reset_on_fork = reset_on_fork;
Namhyung Kim45afb172012-07-07 16:49:02 +09003525 task_rq_unlock(rq, p, &flags);
Dario Faggiolia51e9192011-03-24 14:00:18 +01003526 return 0;
3527 }
Dario Faggiolid50dde52013-11-07 14:43:36 +01003528change:
Dario Faggiolia51e9192011-03-24 14:00:18 +01003529
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003530 if (user) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003531#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003532 /*
3533 * Do not allow realtime tasks into groups that have no runtime
3534 * assigned.
3535 */
3536 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01003537 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
3538 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003539 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003540 return -EPERM;
3541 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003542#endif
Dario Faggioli332ac172013-11-07 14:43:45 +01003543#ifdef CONFIG_SMP
3544 if (dl_bandwidth_enabled() && dl_policy(policy)) {
3545 cpumask_t *span = rq->rd->span;
Dario Faggioli332ac172013-11-07 14:43:45 +01003546
3547 /*
3548 * Don't allow tasks with an affinity mask smaller than
3549 * the entire root_domain to become SCHED_DEADLINE. We
3550 * will also fail if there's no bandwidth available.
3551 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003552 if (!cpumask_subset(span, &p->cpus_allowed) ||
3553 rq->rd->dl_bw.bw == 0) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003554 task_rq_unlock(rq, p, &flags);
3555 return -EPERM;
3556 }
3557 }
3558#endif
3559 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003560
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 /* recheck policy now with rq lock held */
3562 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3563 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003564 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 goto recheck;
3566 }
Dario Faggioli332ac172013-11-07 14:43:45 +01003567
3568 /*
3569 * If setscheduling to SCHED_DEADLINE (or changing the parameters
3570 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
3571 * is available.
3572 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003573 if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003574 task_rq_unlock(rq, p, &flags);
3575 return -EBUSY;
3576 }
3577
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003578 p->sched_reset_on_fork = reset_on_fork;
3579 oldprio = p->prio;
3580
3581 /*
3582 * Special case for priority boosted tasks.
3583 *
3584 * If the new priority is lower or equal (user space view)
3585 * than the current (boosted) priority, we just store the new
3586 * normal parameters and do not touch the scheduler class and
3587 * the runqueue. This will be done when the task deboost
3588 * itself.
3589 */
3590 if (rt_mutex_check_prio(p, newprio)) {
3591 __setscheduler_params(p, attr);
3592 task_rq_unlock(rq, p, &flags);
3593 return 0;
3594 }
3595
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003596 queued = task_on_rq_queued(p);
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003597 running = task_current(rq, p);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003598 if (queued)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003599 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003600 if (running)
Kirill Tkhaif3cd1c42014-09-12 17:41:40 +04003601 put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003602
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003603 prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003604 __setscheduler(rq, p, attr);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003605
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003606 if (running)
3607 p->sched_class->set_curr_task(rq);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04003608 if (queued) {
Thomas Gleixner81a44c52014-02-07 20:58:41 +01003609 /*
3610 * We enqueue to tail when the priority of a task is
3611 * increased (user space view).
3612 */
3613 enqueue_task(rq, p, oldprio <= p->prio ? ENQUEUE_HEAD : 0);
3614 }
Steven Rostedtcb469842008-01-25 21:08:22 +01003615
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003616 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003617 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003618
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07003619 rt_mutex_adjust_pi(p);
3620
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 return 0;
3622}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003623
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003624static int _sched_setscheduler(struct task_struct *p, int policy,
3625 const struct sched_param *param, bool check)
3626{
3627 struct sched_attr attr = {
3628 .sched_policy = policy,
3629 .sched_priority = param->sched_priority,
3630 .sched_nice = PRIO_TO_NICE(p->static_prio),
3631 };
3632
Steven Rostedtc13db6b2014-07-23 11:28:26 -04003633 /* Fixup the legacy SCHED_RESET_ON_FORK hack. */
3634 if ((policy != SETPARAM_POLICY) && (policy & SCHED_RESET_ON_FORK)) {
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003635 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
3636 policy &= ~SCHED_RESET_ON_FORK;
3637 attr.sched_policy = policy;
3638 }
3639
3640 return __sched_setscheduler(p, &attr, check);
3641}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003642/**
3643 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
3644 * @p: the task in question.
3645 * @policy: new policy.
3646 * @param: structure containing the new RT priority.
3647 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003648 * Return: 0 on success. An error code otherwise.
3649 *
Rusty Russell961ccdd2008-06-23 13:55:38 +10003650 * NOTE that the task may be already dead.
3651 */
3652int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003653 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003654{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003655 return _sched_setscheduler(p, policy, param, true);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003656}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657EXPORT_SYMBOL_GPL(sched_setscheduler);
3658
Dario Faggiolid50dde52013-11-07 14:43:36 +01003659int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
3660{
3661 return __sched_setscheduler(p, attr, true);
3662}
3663EXPORT_SYMBOL_GPL(sched_setattr);
3664
Rusty Russell961ccdd2008-06-23 13:55:38 +10003665/**
3666 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
3667 * @p: the task in question.
3668 * @policy: new policy.
3669 * @param: structure containing the new RT priority.
3670 *
3671 * Just like sched_setscheduler, only don't bother checking if the
3672 * current context has permission. For example, this is needed in
3673 * stop_machine(): we create temporary high priority worker threads,
3674 * but our caller might not have that capability.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003675 *
3676 * Return: 0 on success. An error code otherwise.
Rusty Russell961ccdd2008-06-23 13:55:38 +10003677 */
3678int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003679 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003680{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003681 return _sched_setscheduler(p, policy, param, false);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003682}
3683
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003684static int
3685do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 struct sched_param lparam;
3688 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003689 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 if (!param || pid < 0)
3692 return -EINVAL;
3693 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3694 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003695
3696 rcu_read_lock();
3697 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003699 if (p != NULL)
3700 retval = sched_setscheduler(p, policy, &lparam);
3701 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07003702
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 return retval;
3704}
3705
Dario Faggiolid50dde52013-11-07 14:43:36 +01003706/*
3707 * Mimics kernel/events/core.c perf_copy_attr().
3708 */
3709static int sched_copy_attr(struct sched_attr __user *uattr,
3710 struct sched_attr *attr)
3711{
3712 u32 size;
3713 int ret;
3714
3715 if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0))
3716 return -EFAULT;
3717
3718 /*
3719 * zero the full structure, so that a short copy will be nice.
3720 */
3721 memset(attr, 0, sizeof(*attr));
3722
3723 ret = get_user(size, &uattr->size);
3724 if (ret)
3725 return ret;
3726
3727 if (size > PAGE_SIZE) /* silly large */
3728 goto err_size;
3729
3730 if (!size) /* abi compat */
3731 size = SCHED_ATTR_SIZE_VER0;
3732
3733 if (size < SCHED_ATTR_SIZE_VER0)
3734 goto err_size;
3735
3736 /*
3737 * If we're handed a bigger struct than we know of,
3738 * ensure all the unknown bits are 0 - i.e. new
3739 * user-space does not rely on any kernel feature
3740 * extensions we dont know about yet.
3741 */
3742 if (size > sizeof(*attr)) {
3743 unsigned char __user *addr;
3744 unsigned char __user *end;
3745 unsigned char val;
3746
3747 addr = (void __user *)uattr + sizeof(*attr);
3748 end = (void __user *)uattr + size;
3749
3750 for (; addr < end; addr++) {
3751 ret = get_user(val, addr);
3752 if (ret)
3753 return ret;
3754 if (val)
3755 goto err_size;
3756 }
3757 size = sizeof(*attr);
3758 }
3759
3760 ret = copy_from_user(attr, uattr, size);
3761 if (ret)
3762 return -EFAULT;
3763
3764 /*
3765 * XXX: do we want to be lenient like existing syscalls; or do we want
3766 * to be strict and return an error on out-of-bounds values?
3767 */
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003768 attr->sched_nice = clamp(attr->sched_nice, MIN_NICE, MAX_NICE);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003769
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003770 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003771
3772err_size:
3773 put_user(sizeof(*attr), &uattr->size);
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003774 return -E2BIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003775}
3776
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777/**
3778 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3779 * @pid: the pid in question.
3780 * @policy: new policy.
3781 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003782 *
3783 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003785SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
3786 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787{
Jason Baronc21761f2006-01-18 17:43:03 -08003788 /* negative values for policy are not valid */
3789 if (policy < 0)
3790 return -EINVAL;
3791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 return do_sched_setscheduler(pid, policy, param);
3793}
3794
3795/**
3796 * sys_sched_setparam - set/change the RT priority of a thread
3797 * @pid: the pid in question.
3798 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003799 *
3800 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003802SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803{
Steven Rostedtc13db6b2014-07-23 11:28:26 -04003804 return do_sched_setscheduler(pid, SETPARAM_POLICY, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805}
3806
3807/**
Dario Faggiolid50dde52013-11-07 14:43:36 +01003808 * sys_sched_setattr - same as above, but with extended sched_attr
3809 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003810 * @uattr: structure containing the extended parameters.
Masanari Iidadb66d752014-04-18 01:59:15 +09003811 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003812 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003813SYSCALL_DEFINE3(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr,
3814 unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003815{
3816 struct sched_attr attr;
3817 struct task_struct *p;
3818 int retval;
3819
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003820 if (!uattr || pid < 0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003821 return -EINVAL;
3822
Michael Kerrisk143cf232014-05-09 16:54:15 +02003823 retval = sched_copy_attr(uattr, &attr);
3824 if (retval)
3825 return retval;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003826
Richard Weinbergerb14ed2c2014-06-02 22:38:34 +02003827 if ((int)attr.sched_policy < 0)
Peter Zijlstradbdb2272014-05-09 10:49:03 +02003828 return -EINVAL;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003829
3830 rcu_read_lock();
3831 retval = -ESRCH;
3832 p = find_process_by_pid(pid);
3833 if (p != NULL)
3834 retval = sched_setattr(p, &attr);
3835 rcu_read_unlock();
3836
3837 return retval;
3838}
3839
3840/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3842 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003843 *
3844 * Return: On success, the policy of the thread. Otherwise, a negative error
3845 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003847SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003849 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003850 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851
3852 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003853 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
3855 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003856 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 p = find_process_by_pid(pid);
3858 if (p) {
3859 retval = security_task_getscheduler(p);
3860 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02003861 retval = p->policy
3862 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003864 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 return retval;
3866}
3867
3868/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02003869 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 * @pid: the pid in question.
3871 * @param: structure containing the RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003872 *
3873 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
3874 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003876SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877{
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003878 struct sched_param lp = { .sched_priority = 0 };
Ingo Molnar36c8b582006-07-03 00:25:41 -07003879 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003880 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
3882 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003883 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003885 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 p = find_process_by_pid(pid);
3887 retval = -ESRCH;
3888 if (!p)
3889 goto out_unlock;
3890
3891 retval = security_task_getscheduler(p);
3892 if (retval)
3893 goto out_unlock;
3894
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003895 if (task_has_rt_policy(p))
3896 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003897 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899 /*
3900 * This one might sleep, we cannot do it with a spinlock held ...
3901 */
3902 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3903
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 return retval;
3905
3906out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003907 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 return retval;
3909}
3910
Dario Faggiolid50dde52013-11-07 14:43:36 +01003911static int sched_read_attr(struct sched_attr __user *uattr,
3912 struct sched_attr *attr,
3913 unsigned int usize)
3914{
3915 int ret;
3916
3917 if (!access_ok(VERIFY_WRITE, uattr, usize))
3918 return -EFAULT;
3919
3920 /*
3921 * If we're handed a smaller struct than we know of,
3922 * ensure all the unknown bits are 0 - i.e. old
3923 * user-space does not get uncomplete information.
3924 */
3925 if (usize < sizeof(*attr)) {
3926 unsigned char *addr;
3927 unsigned char *end;
3928
3929 addr = (void *)attr + usize;
3930 end = (void *)attr + sizeof(*attr);
3931
3932 for (; addr < end; addr++) {
3933 if (*addr)
Michael Kerrisk22400672014-05-09 16:54:33 +02003934 return -EFBIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003935 }
3936
3937 attr->size = usize;
3938 }
3939
Vegard Nossum4efbc452014-02-16 22:24:17 +01003940 ret = copy_to_user(uattr, attr, attr->size);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003941 if (ret)
3942 return -EFAULT;
3943
Michael Kerrisk22400672014-05-09 16:54:33 +02003944 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003945}
3946
3947/**
Dario Faggioliaab03e02013-11-28 11:14:43 +01003948 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
Dario Faggiolid50dde52013-11-07 14:43:36 +01003949 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003950 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003951 * @size: sizeof(attr) for fwd/bwd comp.
Masanari Iidadb66d752014-04-18 01:59:15 +09003952 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003953 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003954SYSCALL_DEFINE4(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
3955 unsigned int, size, unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003956{
3957 struct sched_attr attr = {
3958 .size = sizeof(struct sched_attr),
3959 };
3960 struct task_struct *p;
3961 int retval;
3962
3963 if (!uattr || pid < 0 || size > PAGE_SIZE ||
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003964 size < SCHED_ATTR_SIZE_VER0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003965 return -EINVAL;
3966
3967 rcu_read_lock();
3968 p = find_process_by_pid(pid);
3969 retval = -ESRCH;
3970 if (!p)
3971 goto out_unlock;
3972
3973 retval = security_task_getscheduler(p);
3974 if (retval)
3975 goto out_unlock;
3976
3977 attr.sched_policy = p->policy;
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003978 if (p->sched_reset_on_fork)
3979 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003980 if (task_has_dl_policy(p))
3981 __getparam_dl(p, &attr);
3982 else if (task_has_rt_policy(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003983 attr.sched_priority = p->rt_priority;
3984 else
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003985 attr.sched_nice = task_nice(p);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003986
3987 rcu_read_unlock();
3988
3989 retval = sched_read_attr(uattr, &attr, size);
3990 return retval;
3991
3992out_unlock:
3993 rcu_read_unlock();
3994 return retval;
3995}
3996
Rusty Russell96f874e22008-11-25 02:35:14 +10303997long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303999 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004000 struct task_struct *p;
4001 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004003 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
4005 p = find_process_by_pid(pid);
4006 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004007 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 return -ESRCH;
4009 }
4010
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004011 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004013 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014
Tejun Heo14a40ff2013-03-19 13:45:20 -07004015 if (p->flags & PF_NO_SETAFFINITY) {
4016 retval = -EINVAL;
4017 goto out_put_task;
4018 }
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304019 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
4020 retval = -ENOMEM;
4021 goto out_put_task;
4022 }
4023 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
4024 retval = -ENOMEM;
4025 goto out_free_cpus_allowed;
4026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 retval = -EPERM;
Eric W. Biederman4c44aaa2012-07-26 05:05:21 -07004028 if (!check_same_owner(p)) {
4029 rcu_read_lock();
4030 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
4031 rcu_read_unlock();
Kirill Tkhai16303ab2014-09-22 22:36:30 +04004032 goto out_free_new_mask;
Eric W. Biederman4c44aaa2012-07-26 05:05:21 -07004033 }
4034 rcu_read_unlock();
4035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09004037 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07004038 if (retval)
Kirill Tkhai16303ab2014-09-22 22:36:30 +04004039 goto out_free_new_mask;
David Quigleye7834f82006-06-23 02:03:59 -07004040
Peter Zijlstrae4099a52013-12-17 10:03:34 +01004041
4042 cpuset_cpus_allowed(p, cpus_allowed);
4043 cpumask_and(new_mask, in_mask, cpus_allowed);
4044
Dario Faggioli332ac172013-11-07 14:43:45 +01004045 /*
4046 * Since bandwidth control happens on root_domain basis,
4047 * if admission test is enabled, we only admit -deadline
4048 * tasks allowed to run on all the CPUs in the task's
4049 * root_domain.
4050 */
4051#ifdef CONFIG_SMP
Kirill Tkhaif1e3a092014-09-22 22:36:36 +04004052 if (task_has_dl_policy(p) && dl_bandwidth_enabled()) {
4053 rcu_read_lock();
4054 if (!cpumask_subset(task_rq(p)->rd->span, new_mask)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01004055 retval = -EBUSY;
Kirill Tkhaif1e3a092014-09-22 22:36:36 +04004056 rcu_read_unlock();
Kirill Tkhai16303ab2014-09-22 22:36:30 +04004057 goto out_free_new_mask;
Dario Faggioli332ac172013-11-07 14:43:45 +01004058 }
Kirill Tkhaif1e3a092014-09-22 22:36:36 +04004059 rcu_read_unlock();
Dario Faggioli332ac172013-11-07 14:43:45 +01004060 }
4061#endif
Peter Zijlstra49246272010-10-17 21:46:10 +02004062again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304063 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Paul Menage8707d8b2007-10-18 23:40:22 -07004065 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304066 cpuset_cpus_allowed(p, cpus_allowed);
4067 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07004068 /*
4069 * We must have raced with a concurrent cpuset
4070 * update. Just reset the cpus_allowed to the
4071 * cpuset's cpus_allowed
4072 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304073 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004074 goto again;
4075 }
4076 }
Kirill Tkhai16303ab2014-09-22 22:36:30 +04004077out_free_new_mask:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304078 free_cpumask_var(new_mask);
4079out_free_cpus_allowed:
4080 free_cpumask_var(cpus_allowed);
4081out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 return retval;
4084}
4085
4086static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10304087 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088{
Rusty Russell96f874e22008-11-25 02:35:14 +10304089 if (len < cpumask_size())
4090 cpumask_clear(new_mask);
4091 else if (len > cpumask_size())
4092 len = cpumask_size();
4093
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4095}
4096
4097/**
4098 * sys_sched_setaffinity - set the cpu affinity of a process
4099 * @pid: pid of the process
4100 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4101 * @user_mask_ptr: user-space pointer to the new cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004102 *
4103 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004105SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
4106 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304108 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 int retval;
4110
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304111 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
4112 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304114 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
4115 if (retval == 0)
4116 retval = sched_setaffinity(pid, new_mask);
4117 free_cpumask_var(new_mask);
4118 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119}
4120
Rusty Russell96f874e22008-11-25 02:35:14 +10304121long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004123 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00004124 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004127 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
4129 retval = -ESRCH;
4130 p = find_process_by_pid(pid);
4131 if (!p)
4132 goto out_unlock;
4133
David Quigleye7834f82006-06-23 02:03:59 -07004134 retval = security_task_getscheduler(p);
4135 if (retval)
4136 goto out_unlock;
4137
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004138 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02004139 cpumask_and(mask, &p->cpus_allowed, cpu_active_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004140 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
4142out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004143 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Ulrich Drepper9531b622007-08-09 11:16:46 +02004145 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146}
4147
4148/**
4149 * sys_sched_getaffinity - get the cpu affinity of a process
4150 * @pid: pid of the process
4151 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4152 * @user_mask_ptr: user-space pointer to hold the current cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004153 *
4154 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004156SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
4157 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
4159 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10304160 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Anton Blanchard84fba5e2010-04-06 17:02:19 +10004162 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004163 return -EINVAL;
4164 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 return -EINVAL;
4166
Rusty Russellf17c8602008-11-25 02:35:11 +10304167 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
4168 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
Rusty Russellf17c8602008-11-25 02:35:11 +10304170 ret = sched_getaffinity(pid, mask);
4171 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09004172 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004173
4174 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10304175 ret = -EFAULT;
4176 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004177 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10304178 }
4179 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
Rusty Russellf17c8602008-11-25 02:35:11 +10304181 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182}
4183
4184/**
4185 * sys_sched_yield - yield the current processor to other threads.
4186 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004187 * This function yields the current CPU to other tasks. If there are no
4188 * other threads running on this CPU then this function will return.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004189 *
4190 * Return: 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004192SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004194 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Ingo Molnar2d723762007-10-15 17:00:12 +02004196 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004197 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
4199 /*
4200 * Since we are going to call schedule() anyway, there's
4201 * no need to preempt or enable interrupts:
4202 */
4203 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004204 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01004205 do_raw_spin_unlock(&rq->lock);
Thomas Gleixnerba74c142011-03-21 13:32:17 +01004206 sched_preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
4208 schedule();
4209
4210 return 0;
4211}
4212
Andrew Mortone7b38402006-06-30 01:56:00 -07004213static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214{
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004215 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02004216 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004217 __preempt_count_sub(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218}
4219
Herbert Xu02b67cc32008-01-25 21:08:28 +01004220int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004222 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 __cond_resched();
4224 return 1;
4225 }
4226 return 0;
4227}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004228EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
4230/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004231 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 * call schedule, and on return reacquire the lock.
4233 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004234 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 * operations here to prevent schedule() from being called twice (once via
4236 * spin_unlock(), once by hand).
4237 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004238int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004240 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004241 int ret = 0;
4242
Peter Zijlstraf607c662009-07-20 19:16:29 +02004243 lockdep_assert_held(lock);
4244
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004245 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004247 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01004248 __cond_resched();
4249 else
4250 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004251 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004254 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004256EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004258int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259{
4260 BUG_ON(!in_softirq());
4261
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004262 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004263 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 __cond_resched();
4265 local_bh_disable();
4266 return 1;
4267 }
4268 return 0;
4269}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004270EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272/**
4273 * yield - yield the current processor to other threads.
4274 *
Peter Zijlstra8e3fabf2012-03-06 18:54:26 +01004275 * Do not ever use this function, there's a 99% chance you're doing it wrong.
4276 *
4277 * The scheduler is at all times free to pick the calling task as the most
4278 * eligible task to run, if removing the yield() call from your code breaks
4279 * it, its already broken.
4280 *
4281 * Typical broken usage is:
4282 *
4283 * while (!event)
4284 * yield();
4285 *
4286 * where one assumes that yield() will let 'the other' process run that will
4287 * make event true. If the current task is a SCHED_FIFO task that will never
4288 * happen. Never use yield() as a progress guarantee!!
4289 *
4290 * If you want to use yield() to wait for something, use wait_event().
4291 * If you want to use yield() to be 'nice' for others, use cond_resched().
4292 * If you still want to use yield(), do not!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 */
4294void __sched yield(void)
4295{
4296 set_current_state(TASK_RUNNING);
4297 sys_sched_yield();
4298}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299EXPORT_SYMBOL(yield);
4300
Mike Galbraithd95f4122011-02-01 09:50:51 -05004301/**
4302 * yield_to - yield the current processor to another thread in
4303 * your thread group, or accelerate that thread toward the
4304 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07004305 * @p: target task
4306 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05004307 *
4308 * It's the caller's job to ensure that the target task struct
4309 * can't go away on us before we can do any checks.
4310 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004311 * Return:
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304312 * true (>0) if we indeed boosted the target task.
4313 * false (0) if we failed to boost the target.
4314 * -ESRCH if there's no task to yield to.
Mike Galbraithd95f4122011-02-01 09:50:51 -05004315 */
Dan Carpenterfa933842014-05-23 13:20:42 +03004316int __sched yield_to(struct task_struct *p, bool preempt)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004317{
4318 struct task_struct *curr = current;
4319 struct rq *rq, *p_rq;
4320 unsigned long flags;
Dan Carpenterc3c18642013-02-05 14:37:51 +03004321 int yielded = 0;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004322
4323 local_irq_save(flags);
4324 rq = this_rq();
4325
4326again:
4327 p_rq = task_rq(p);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304328 /*
4329 * If we're the only runnable task on the rq and target rq also
4330 * has only one task, there's absolutely no point in yielding.
4331 */
4332 if (rq->nr_running == 1 && p_rq->nr_running == 1) {
4333 yielded = -ESRCH;
4334 goto out_irq;
4335 }
4336
Mike Galbraithd95f4122011-02-01 09:50:51 -05004337 double_rq_lock(rq, p_rq);
Shigeru Yoshida39e24d8f2013-11-23 18:38:01 +09004338 if (task_rq(p) != p_rq) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004339 double_rq_unlock(rq, p_rq);
4340 goto again;
4341 }
4342
4343 if (!curr->sched_class->yield_to_task)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304344 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004345
4346 if (curr->sched_class != p->sched_class)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304347 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004348
4349 if (task_running(p_rq, p) || p->state)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304350 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004351
4352 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004353 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004354 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004355 /*
4356 * Make p's CPU reschedule; pick_next_entity takes care of
4357 * fairness.
4358 */
4359 if (preempt && rq != p_rq)
Kirill Tkhai88751252014-06-29 00:03:57 +04004360 resched_curr(p_rq);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004361 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05004362
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304363out_unlock:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004364 double_rq_unlock(rq, p_rq);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304365out_irq:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004366 local_irq_restore(flags);
4367
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304368 if (yielded > 0)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004369 schedule();
4370
4371 return yielded;
4372}
4373EXPORT_SYMBOL_GPL(yield_to);
4374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004376 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 */
4379void __sched io_schedule(void)
4380{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004381 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004383 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004385 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004386 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004388 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004390 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392EXPORT_SYMBOL(io_schedule);
4393
4394long __sched io_schedule_timeout(long timeout)
4395{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004396 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 long ret;
4398
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004399 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004401 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004402 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004404 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004406 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 return ret;
4408}
4409
4410/**
4411 * sys_sched_get_priority_max - return maximum RT priority.
4412 * @policy: scheduling class.
4413 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004414 * Return: On success, this syscall returns the maximum
4415 * rt_priority that can be used by a given scheduling class.
4416 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004418SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419{
4420 int ret = -EINVAL;
4421
4422 switch (policy) {
4423 case SCHED_FIFO:
4424 case SCHED_RR:
4425 ret = MAX_USER_RT_PRIO-1;
4426 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004427 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004429 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004430 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 ret = 0;
4432 break;
4433 }
4434 return ret;
4435}
4436
4437/**
4438 * sys_sched_get_priority_min - return minimum RT priority.
4439 * @policy: scheduling class.
4440 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004441 * Return: On success, this syscall returns the minimum
4442 * rt_priority that can be used by a given scheduling class.
4443 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004445SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446{
4447 int ret = -EINVAL;
4448
4449 switch (policy) {
4450 case SCHED_FIFO:
4451 case SCHED_RR:
4452 ret = 1;
4453 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004454 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004456 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004457 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 ret = 0;
4459 }
4460 return ret;
4461}
4462
4463/**
4464 * sys_sched_rr_get_interval - return the default timeslice of a process.
4465 * @pid: pid of the process.
4466 * @interval: userspace pointer to the timeslice value.
4467 *
4468 * this syscall writes the default timeslice value of a given process
4469 * into the user-space timespec buffer. A value of '0' means infinity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004470 *
4471 * Return: On success, 0 and the timeslice is in @interval. Otherwise,
4472 * an error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01004474SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01004475 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004477 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004478 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004479 unsigned long flags;
4480 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004481 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
4484 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004485 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
4487 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004488 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 p = find_process_by_pid(pid);
4490 if (!p)
4491 goto out_unlock;
4492
4493 retval = security_task_getscheduler(p);
4494 if (retval)
4495 goto out_unlock;
4496
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004497 rq = task_rq_lock(p, &flags);
Peter Zijlstraa57beec2014-01-27 11:54:13 +01004498 time_slice = 0;
4499 if (p->sched_class->get_rr_interval)
4500 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004501 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004502
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004503 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004504 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004509 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 return retval;
4511}
4512
Steven Rostedt7c731e02008-05-12 21:20:41 +02004513static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004514
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004515void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 unsigned long free = 0;
Paul E. McKenney4e797522012-11-07 13:35:32 -08004518 int ppid;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004519 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08004522 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004523 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004524#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004526 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004528 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529#else
4530 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004531 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004533 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534#endif
4535#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05004536 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537#endif
Paul E. McKenney4e797522012-11-07 13:35:32 -08004538 rcu_read_lock();
4539 ppid = task_pid_nr(rcu_dereference(p->real_parent));
4540 rcu_read_unlock();
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004541 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
Paul E. McKenney4e797522012-11-07 13:35:32 -08004542 task_pid_nr(p), ppid,
David Rientjesaa47b7e2009-05-04 01:38:05 -07004543 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Tejun Heo3d1cb202013-04-30 15:27:22 -07004545 print_worker_info(KERN_INFO, p);
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01004546 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547}
4548
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004549void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004551 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Ingo Molnar4bd77322007-07-11 21:21:47 +02004553#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004554 printk(KERN_INFO
4555 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004557 printk(KERN_INFO
4558 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004560 rcu_read_lock();
Oleg Nesterov5d07f422014-08-13 21:19:53 +02004561 for_each_process_thread(g, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 /*
4563 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004564 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 */
4566 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004567 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004568 sched_show_task(p);
Oleg Nesterov5d07f422014-08-13 21:19:53 +02004569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004571 touch_all_softlockup_watchdogs();
4572
Ingo Molnardd41f592007-07-09 18:51:59 +02004573#ifdef CONFIG_SCHED_DEBUG
4574 sysrq_sched_debug_show();
4575#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004576 rcu_read_unlock();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004577 /*
4578 * Only show locks if all tasks are dumped:
4579 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02004580 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004581 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582}
4583
Paul Gortmaker0db06282013-06-19 14:53:51 -04004584void init_idle_bootup_task(struct task_struct *idle)
Ingo Molnar1df21052007-07-09 18:51:58 +02004585{
Ingo Molnardd41f592007-07-09 18:51:59 +02004586 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004587}
4588
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004589/**
4590 * init_idle - set up an idle thread for a given CPU
4591 * @idle: task in question
4592 * @cpu: cpu the idle task belongs to
4593 *
4594 * NOTE: this function does not set the idle thread's NEED_RESCHED
4595 * flag, to make booting more robust.
4596 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004597void init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004599 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 unsigned long flags;
4601
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004602 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01004603
Rik van Riel5e1576e2013-10-07 11:29:26 +01004604 __sched_fork(0, idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01004605 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02004606 idle->se.exec_start = sched_clock();
4607
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004608 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004609 /*
4610 * We're having a chicken and egg problem, even though we are
4611 * holding rq->lock, the cpu isn't yet set to this cpu so the
4612 * lockdep check in task_group() will fail.
4613 *
4614 * Similar case to sched_fork(). / Alternatively we could
4615 * use task_rq_lock() here and obtain the other rq->lock.
4616 *
4617 * Silence PROVE_RCU
4618 */
4619 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02004620 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004621 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 rq->curr = rq->idle = idle;
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04004624 idle->on_rq = TASK_ON_RQ_QUEUED;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02004625#if defined(CONFIG_SMP)
4626 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07004627#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004628 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629
4630 /* Set the preempt count _outside_ the spinlocks! */
Peter Zijlstra01028742013-08-14 14:55:46 +02004631 init_idle_preempt_count(idle, cpu);
Jonathan Corbet625f2a32011-04-22 11:19:10 -06004632
Ingo Molnardd41f592007-07-09 18:51:59 +02004633 /*
4634 * The idle tasks have their own, simple scheduling class:
4635 */
4636 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05004637 ftrace_graph_init_idle_task(idle, cpu);
Frederic Weisbecker45eacc62013-05-15 22:16:32 +02004638 vtime_init_idle(idle, cpu);
Carsten Emdef1c6f1a2011-10-26 23:14:16 +02004639#if defined(CONFIG_SMP)
4640 sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
4641#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642}
4643
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644#ifdef CONFIG_SMP
Kirill Tkhaia15b12ac2014-09-12 15:03:34 +04004645/*
4646 * move_queued_task - move a queued task to new rq.
4647 *
4648 * Returns (locked) new rq. Old rq's lock is released.
4649 */
4650static struct rq *move_queued_task(struct task_struct *p, int new_cpu)
4651{
4652 struct rq *rq = task_rq(p);
4653
4654 lockdep_assert_held(&rq->lock);
4655
4656 dequeue_task(rq, p, 0);
4657 p->on_rq = TASK_ON_RQ_MIGRATING;
4658 set_task_cpu(p, new_cpu);
4659 raw_spin_unlock(&rq->lock);
4660
4661 rq = cpu_rq(new_cpu);
4662
4663 raw_spin_lock(&rq->lock);
4664 BUG_ON(task_cpu(p) != new_cpu);
4665 p->on_rq = TASK_ON_RQ_QUEUED;
4666 enqueue_task(rq, p, 0);
4667 check_preempt_curr(rq, p, 0);
4668
4669 return rq;
4670}
4671
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004672void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
4673{
4674 if (p->sched_class && p->sched_class->set_cpus_allowed)
4675 p->sched_class->set_cpus_allowed(p, new_mask);
Peter Zijlstra49396022011-06-25 15:45:46 +02004676
4677 cpumask_copy(&p->cpus_allowed, new_mask);
Peter Zijlstra29baa742012-04-23 12:11:21 +02004678 p->nr_cpus_allowed = cpumask_weight(new_mask);
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004679}
4680
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681/*
4682 * This is how migration works:
4683 *
Tejun Heo969c7922010-05-06 18:49:21 +02004684 * 1) we invoke migration_cpu_stop() on the target CPU using
4685 * stop_one_cpu().
4686 * 2) stopper starts to run (implicitly forcing the migrated thread
4687 * off the CPU)
4688 * 3) it checks whether the migrated task is still in the wrong runqueue.
4689 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02004691 * 5) stopper completes and stop_one_cpu() returns and the migration
4692 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 */
4694
4695/*
4696 * Change a given task's CPU affinity. Migrate the thread to a
4697 * proper CPU and schedule it away if the CPU it's executing on
4698 * is removed from the allowed bitmask.
4699 *
4700 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004701 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 * call is not atomic; no spinlocks may be held.
4703 */
Rusty Russell96f874e22008-11-25 02:35:14 +10304704int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705{
4706 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004707 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02004708 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004709 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710
4711 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004712
Yong Zhangdb44fc02011-05-09 22:07:05 +08004713 if (cpumask_equal(&p->cpus_allowed, new_mask))
4714 goto out;
4715
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004716 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 ret = -EINVAL;
4718 goto out;
4719 }
4720
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004721 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01004722
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10304724 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 goto out;
4726
Tejun Heo969c7922010-05-06 18:49:21 +02004727 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Kirill Tkhaia15b12ac2014-09-12 15:03:34 +04004728 if (task_running(rq, p) || p->state == TASK_WAKING) {
Tejun Heo969c7922010-05-06 18:49:21 +02004729 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004731 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02004732 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 tlb_migrate_finish(p->mm);
4734 return 0;
Kirill Tkhaia15b12ac2014-09-12 15:03:34 +04004735 } else if (task_on_rq_queued(p))
4736 rq = move_queued_task(p, dest_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004738 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004739
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 return ret;
4741}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07004742EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
4744/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004745 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 * this because either it can't run here any more (set_cpus_allowed()
4747 * away from this CPU, or CPU going down), or because we're
4748 * attempting to rebalance this task on exec (sched_exec).
4749 *
4750 * So we race with normal scheduler movements, but that's OK, as long
4751 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004752 *
4753 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004755static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756{
Kirill Tkhaia1e01822014-08-20 13:47:50 +04004757 struct rq *rq;
Peter Zijlstrae2912002009-12-16 18:04:36 +01004758 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
Max Krasnyanskye761b772008-07-15 04:43:49 -07004760 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004761 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762
Kirill Tkhaia1e01822014-08-20 13:47:50 +04004763 rq = cpu_rq(src_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004765 raw_spin_lock(&p->pi_lock);
Kirill Tkhaia1e01822014-08-20 13:47:50 +04004766 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 /* Already moved. */
4768 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004769 goto done;
Kirill Tkhaia1e01822014-08-20 13:47:50 +04004770
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 /* Affinity changed (again). */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02004772 if (!cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004773 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774
Peter Zijlstrae2912002009-12-16 18:04:36 +01004775 /*
4776 * If we're not on a rq, the next wake-up will ensure we're
4777 * placed properly.
4778 */
Kirill Tkhaia15b12ac2014-09-12 15:03:34 +04004779 if (task_on_rq_queued(p))
4780 rq = move_queued_task(p, dest_cpu);
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004781done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07004782 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004783fail:
Kirill Tkhaia1e01822014-08-20 13:47:50 +04004784 raw_spin_unlock(&rq->lock);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004785 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004786 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787}
4788
Mel Gormane6628d52013-10-07 11:29:02 +01004789#ifdef CONFIG_NUMA_BALANCING
4790/* Migrate current task p to target_cpu */
4791int migrate_task_to(struct task_struct *p, int target_cpu)
4792{
4793 struct migration_arg arg = { p, target_cpu };
4794 int curr_cpu = task_cpu(p);
4795
4796 if (curr_cpu == target_cpu)
4797 return 0;
4798
4799 if (!cpumask_test_cpu(target_cpu, tsk_cpus_allowed(p)))
4800 return -EINVAL;
4801
4802 /* TODO: This is not properly updating schedstats */
4803
Mel Gorman286549d2014-01-21 15:51:03 -08004804 trace_sched_move_numa(p, curr_cpu, target_cpu);
Mel Gormane6628d52013-10-07 11:29:02 +01004805 return stop_one_cpu(curr_cpu, migration_cpu_stop, &arg);
4806}
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004807
4808/*
4809 * Requeue a task on a given node and accurately track the number of NUMA
4810 * tasks on the runqueues
4811 */
4812void sched_setnuma(struct task_struct *p, int nid)
4813{
4814 struct rq *rq;
4815 unsigned long flags;
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04004816 bool queued, running;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004817
4818 rq = task_rq_lock(p, &flags);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04004819 queued = task_on_rq_queued(p);
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004820 running = task_current(rq, p);
4821
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04004822 if (queued)
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004823 dequeue_task(rq, p, 0);
4824 if (running)
Kirill Tkhaif3cd1c42014-09-12 17:41:40 +04004825 put_prev_task(rq, p);
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004826
4827 p->numa_preferred_nid = nid;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004828
4829 if (running)
4830 p->sched_class->set_curr_task(rq);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04004831 if (queued)
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004832 enqueue_task(rq, p, 0);
4833 task_rq_unlock(rq, p, &flags);
4834}
Mel Gormane6628d52013-10-07 11:29:02 +01004835#endif
4836
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837/*
Tejun Heo969c7922010-05-06 18:49:21 +02004838 * migration_cpu_stop - this will be executed by a highprio stopper thread
4839 * and performs thread migration by bumping thread off CPU then
4840 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 */
Tejun Heo969c7922010-05-06 18:49:21 +02004842static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843{
Tejun Heo969c7922010-05-06 18:49:21 +02004844 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
Tejun Heo969c7922010-05-06 18:49:21 +02004846 /*
4847 * The original target cpu might have gone down and we might
4848 * be on another cpu but it doesn't matter.
4849 */
4850 local_irq_disable();
Lai Jiangshan5cd038f2014-06-04 16:25:15 +08004851 /*
4852 * We need to explicitly wake pending tasks before running
4853 * __migrate_task() such that we will not miss enforcing cpus_allowed
4854 * during wakeups, see set_cpus_allowed_ptr()'s TASK_WAKING test.
4855 */
4856 sched_ttwu_pending();
Tejun Heo969c7922010-05-06 18:49:21 +02004857 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
4858 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 return 0;
4860}
4861
4862#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
Ingo Molnar48f24c42006-07-03 00:25:40 -07004864/*
4865 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 * offline.
4867 */
4868void idle_task_exit(void)
4869{
4870 struct mm_struct *mm = current->active_mm;
4871
4872 BUG_ON(cpu_online(smp_processor_id()));
4873
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004874 if (mm != &init_mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 switch_mm(mm, &init_mm, current);
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004876 finish_arch_post_lock_switch();
4877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 mmdrop(mm);
4879}
4880
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004881/*
Peter Zijlstra5d180232012-08-20 11:26:57 +02004882 * Since this CPU is going 'away' for a while, fold any nr_active delta
4883 * we might have. Assumes we're called after migrate_tasks() so that the
4884 * nr_active count is stable.
4885 *
4886 * Also see the comment "Global load-average calculations".
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004887 */
Peter Zijlstra5d180232012-08-20 11:26:57 +02004888static void calc_load_migrate(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889{
Peter Zijlstra5d180232012-08-20 11:26:57 +02004890 long delta = calc_load_fold_active(rq);
4891 if (delta)
4892 atomic_long_add(delta, &calc_load_tasks);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02004893}
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004894
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004895static void put_prev_task_fake(struct rq *rq, struct task_struct *prev)
4896{
4897}
4898
4899static const struct sched_class fake_sched_class = {
4900 .put_prev_task = put_prev_task_fake,
4901};
4902
4903static struct task_struct fake_task = {
4904 /*
4905 * Avoid pull_{rt,dl}_task()
4906 */
4907 .prio = MAX_PRIO + 1,
4908 .sched_class = &fake_sched_class,
4909};
4910
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004911/*
4912 * Migrate all tasks from the rq, sleeping tasks will be migrated by
4913 * try_to_wake_up()->select_task_rq().
4914 *
4915 * Called with rq->lock held even though we'er in stop_machine() and
4916 * there's no concurrency possible, we hold the required locks anyway
4917 * because of lock validation efforts.
4918 */
4919static void migrate_tasks(unsigned int dead_cpu)
4920{
4921 struct rq *rq = cpu_rq(dead_cpu);
4922 struct task_struct *next, *stop = rq->stop;
4923 int dest_cpu;
4924
4925 /*
4926 * Fudge the rq selection such that the below task selection loop
4927 * doesn't get stuck on the currently eligible stop task.
4928 *
4929 * We're currently inside stop_machine() and the rq is either stuck
4930 * in the stop_machine_cpu_stop() loop, or we're executing this code,
4931 * either way we should never end up calling schedule() until we're
4932 * done here.
4933 */
4934 rq->stop = NULL;
4935
Frederic Weisbecker77bd3972013-04-12 01:50:58 +02004936 /*
4937 * put_prev_task() and pick_next_task() sched
4938 * class method both need to have an up-to-date
4939 * value of rq->clock[_task]
4940 */
4941 update_rq_clock(rq);
4942
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004943 for ( ; ; ) {
4944 /*
4945 * There's this thread running, bail when that's the only
4946 * remaining thread.
4947 */
4948 if (rq->nr_running == 1)
4949 break;
4950
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004951 next = pick_next_task(rq, &fake_task);
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004952 BUG_ON(!next);
4953 next->sched_class->put_prev_task(rq, next);
4954
4955 /* Find suitable destination for @next, with force if needed. */
4956 dest_cpu = select_fallback_rq(dead_cpu, next);
4957 raw_spin_unlock(&rq->lock);
4958
4959 __migrate_task(next, dead_cpu, dest_cpu);
4960
4961 raw_spin_lock(&rq->lock);
4962 }
4963
4964 rq->stop = stop;
4965}
4966
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967#endif /* CONFIG_HOTPLUG_CPU */
4968
Nick Piggine692ab52007-07-26 13:40:43 +02004969#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
4970
4971static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004972 {
4973 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004974 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004975 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004976 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004977};
4978
4979static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004980 {
4981 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004982 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004983 .child = sd_ctl_dir,
4984 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004985 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004986};
4987
4988static struct ctl_table *sd_alloc_ctl_entry(int n)
4989{
4990 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02004991 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02004992
Nick Piggine692ab52007-07-26 13:40:43 +02004993 return entry;
4994}
4995
Milton Miller6382bc92007-10-15 17:00:19 +02004996static void sd_free_ctl_entry(struct ctl_table **tablep)
4997{
Milton Millercd7900762007-10-17 16:55:11 +02004998 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02004999
Milton Millercd7900762007-10-17 16:55:11 +02005000 /*
5001 * In the intermediate directories, both the child directory and
5002 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005003 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005004 * static strings and all have proc handlers.
5005 */
5006 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005007 if (entry->child)
5008 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005009 if (entry->proc_handler == NULL)
5010 kfree(entry->procname);
5011 }
Milton Miller6382bc92007-10-15 17:00:19 +02005012
5013 kfree(*tablep);
5014 *tablep = NULL;
5015}
5016
Namhyung Kim201c3732012-08-16 17:03:24 +09005017static int min_load_idx = 0;
libinfd9b86d2013-04-08 14:39:12 +08005018static int max_load_idx = CPU_LOAD_IDX_MAX-1;
Namhyung Kim201c3732012-08-16 17:03:24 +09005019
Nick Piggine692ab52007-07-26 13:40:43 +02005020static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005021set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005022 const char *procname, void *data, int maxlen,
Namhyung Kim201c3732012-08-16 17:03:24 +09005023 umode_t mode, proc_handler *proc_handler,
5024 bool load_idx)
Nick Piggine692ab52007-07-26 13:40:43 +02005025{
Nick Piggine692ab52007-07-26 13:40:43 +02005026 entry->procname = procname;
5027 entry->data = data;
5028 entry->maxlen = maxlen;
5029 entry->mode = mode;
5030 entry->proc_handler = proc_handler;
Namhyung Kim201c3732012-08-16 17:03:24 +09005031
5032 if (load_idx) {
5033 entry->extra1 = &min_load_idx;
5034 entry->extra2 = &max_load_idx;
5035 }
Nick Piggine692ab52007-07-26 13:40:43 +02005036}
5037
5038static struct ctl_table *
5039sd_alloc_ctl_domain_table(struct sched_domain *sd)
5040{
Alex Shi37e6bae2014-01-23 18:39:54 +08005041 struct ctl_table *table = sd_alloc_ctl_entry(14);
Nick Piggine692ab52007-07-26 13:40:43 +02005042
Milton Millerad1cdc12007-10-15 17:00:19 +02005043 if (table == NULL)
5044 return NULL;
5045
Alexey Dobriyane0361852007-08-09 11:16:46 +02005046 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09005047 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005048 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09005049 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005050 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09005051 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005052 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09005053 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005054 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09005055 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005056 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09005057 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005058 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09005059 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005060 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Namhyung Kim201c3732012-08-16 17:03:24 +09005061 sizeof(int), 0644, proc_dointvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005062 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Namhyung Kim201c3732012-08-16 17:03:24 +09005063 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005064 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005065 &sd->cache_nice_tries,
Namhyung Kim201c3732012-08-16 17:03:24 +09005066 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005067 set_table_entry(&table[10], "flags", &sd->flags,
Namhyung Kim201c3732012-08-16 17:03:24 +09005068 sizeof(int), 0644, proc_dointvec_minmax, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08005069 set_table_entry(&table[11], "max_newidle_lb_cost",
5070 &sd->max_newidle_lb_cost,
5071 sizeof(long), 0644, proc_doulongvec_minmax, false);
5072 set_table_entry(&table[12], "name", sd->name,
Namhyung Kim201c3732012-08-16 17:03:24 +09005073 CORENAME_MAX_SIZE, 0444, proc_dostring, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08005074 /* &table[13] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005075
5076 return table;
5077}
5078
Joe Perchesbe7002e2013-06-12 11:55:36 -07005079static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005080{
5081 struct ctl_table *entry, *table;
5082 struct sched_domain *sd;
5083 int domain_num = 0, i;
5084 char buf[32];
5085
5086 for_each_domain(cpu, sd)
5087 domain_num++;
5088 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005089 if (table == NULL)
5090 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005091
5092 i = 0;
5093 for_each_domain(cpu, sd) {
5094 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005095 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005096 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005097 entry->child = sd_alloc_ctl_domain_table(sd);
5098 entry++;
5099 i++;
5100 }
5101 return table;
5102}
5103
5104static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005105static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005106{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005107 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02005108 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5109 char buf[32];
5110
Milton Miller73785472007-10-24 18:23:48 +02005111 WARN_ON(sd_ctl_dir[0].child);
5112 sd_ctl_dir[0].child = entry;
5113
Milton Millerad1cdc12007-10-15 17:00:19 +02005114 if (entry == NULL)
5115 return;
5116
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005117 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005118 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005119 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005120 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005121 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005122 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005123 }
Milton Miller73785472007-10-24 18:23:48 +02005124
5125 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005126 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5127}
Milton Miller6382bc92007-10-15 17:00:19 +02005128
Milton Miller73785472007-10-24 18:23:48 +02005129/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005130static void unregister_sched_domain_sysctl(void)
5131{
Milton Miller73785472007-10-24 18:23:48 +02005132 if (sd_sysctl_header)
5133 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005134 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005135 if (sd_ctl_dir[0].child)
5136 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005137}
Nick Piggine692ab52007-07-26 13:40:43 +02005138#else
Milton Miller6382bc92007-10-15 17:00:19 +02005139static void register_sched_domain_sysctl(void)
5140{
5141}
5142static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005143{
5144}
5145#endif
5146
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005147static void set_rq_online(struct rq *rq)
5148{
5149 if (!rq->online) {
5150 const struct sched_class *class;
5151
Rusty Russellc6c49272008-11-25 02:35:05 +10305152 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005153 rq->online = 1;
5154
5155 for_each_class(class) {
5156 if (class->rq_online)
5157 class->rq_online(rq);
5158 }
5159 }
5160}
5161
5162static void set_rq_offline(struct rq *rq)
5163{
5164 if (rq->online) {
5165 const struct sched_class *class;
5166
5167 for_each_class(class) {
5168 if (class->rq_offline)
5169 class->rq_offline(rq);
5170 }
5171
Rusty Russellc6c49272008-11-25 02:35:05 +10305172 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005173 rq->online = 0;
5174 }
5175}
5176
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177/*
5178 * migration_call - callback that gets triggered when a CPU is added.
5179 * Here we can start up the necessary migration thread for the new CPU.
5180 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005181static int
Ingo Molnar48f24c42006-07-03 00:25:40 -07005182migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005184 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02005186 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005188 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005189
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02005191 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005193
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005195 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005196 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005197 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305198 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005199
5200 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005201 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005202 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005204
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04005206 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02005207 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01005208 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005209 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005210 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305211 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005212 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005213 }
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005214 migrate_tasks(cpu);
5215 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005216 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra5d180232012-08-20 11:26:57 +02005217 break;
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005218
Peter Zijlstra5d180232012-08-20 11:26:57 +02005219 case CPU_DEAD:
Peter Zijlstraf319da02012-08-20 11:26:57 +02005220 calc_load_migrate(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222#endif
5223 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02005224
5225 update_max_interval();
5226
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 return NOTIFY_OK;
5228}
5229
Paul Mackerrasf38b0822009-06-02 21:05:16 +10005230/*
5231 * Register at high priority so that task migration (migrate_all_tasks)
5232 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005233 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005235static struct notifier_block migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02005237 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238};
5239
Corey Minyarda803f022014-05-08 13:47:39 -05005240static void __cpuinit set_cpu_rq_start_time(void)
5241{
5242 int cpu = smp_processor_id();
5243 struct rq *rq = cpu_rq(cpu);
5244 rq->age_stamp = sched_clock_cpu(cpu);
5245}
5246
Paul Gortmaker0db06282013-06-19 14:53:51 -04005247static int sched_cpu_active(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005248 unsigned long action, void *hcpu)
5249{
5250 switch (action & ~CPU_TASKS_FROZEN) {
Corey Minyarda803f022014-05-08 13:47:39 -05005251 case CPU_STARTING:
5252 set_cpu_rq_start_time();
5253 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005254 case CPU_DOWN_FAILED:
5255 set_cpu_active((long)hcpu, true);
5256 return NOTIFY_OK;
5257 default:
5258 return NOTIFY_DONE;
5259 }
5260}
5261
Paul Gortmaker0db06282013-06-19 14:53:51 -04005262static int sched_cpu_inactive(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005263 unsigned long action, void *hcpu)
5264{
Peter Zijlstrade212f12013-12-19 11:54:45 +01005265 unsigned long flags;
5266 long cpu = (long)hcpu;
5267
Tejun Heo3a101d02010-06-08 21:40:36 +02005268 switch (action & ~CPU_TASKS_FROZEN) {
5269 case CPU_DOWN_PREPARE:
Peter Zijlstrade212f12013-12-19 11:54:45 +01005270 set_cpu_active(cpu, false);
5271
5272 /* explicitly allow suspend */
5273 if (!(action & CPU_TASKS_FROZEN)) {
5274 struct dl_bw *dl_b = dl_bw_of(cpu);
5275 bool overflow;
5276 int cpus;
5277
5278 raw_spin_lock_irqsave(&dl_b->lock, flags);
5279 cpus = dl_bw_cpus(cpu);
5280 overflow = __dl_overflow(dl_b, cpus, 0, 0);
5281 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
5282
5283 if (overflow)
5284 return notifier_from_errno(-EBUSY);
5285 }
Tejun Heo3a101d02010-06-08 21:40:36 +02005286 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005287 }
Peter Zijlstrade212f12013-12-19 11:54:45 +01005288
5289 return NOTIFY_DONE;
Tejun Heo3a101d02010-06-08 21:40:36 +02005290}
5291
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005292static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293{
5294 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005295 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005296
Tejun Heo3a101d02010-06-08 21:40:36 +02005297 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005298 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5299 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5301 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005302
Tejun Heo3a101d02010-06-08 21:40:36 +02005303 /* Register cpu active notifiers */
5304 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
5305 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
5306
Thomas Gleixnera004cd42009-07-21 09:54:05 +02005307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005309early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310#endif
5311
5312#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005313
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005314static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
5315
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005316#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005317
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005318static __read_mostly int sched_debug_enabled;
Mike Travisf6630112009-11-17 18:22:15 -06005319
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005320static int __init sched_debug_setup(char *str)
Mike Travisf6630112009-11-17 18:22:15 -06005321{
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005322 sched_debug_enabled = 1;
Mike Travisf6630112009-11-17 18:22:15 -06005323
5324 return 0;
5325}
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005326early_param("sched_debug", sched_debug_setup);
5327
5328static inline bool sched_debug(void)
5329{
5330 return sched_debug_enabled;
5331}
Mike Travisf6630112009-11-17 18:22:15 -06005332
Mike Travis7c16ec52008-04-04 18:11:11 -07005333static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10305334 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005335{
5336 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07005337 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005338
Rusty Russell968ea6d2008-12-13 21:55:51 +10305339 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10305340 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005341
5342 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5343
5344 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005345 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005346 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005347 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5348 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005349 return -1;
5350 }
5351
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005352 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005353
Rusty Russell758b2cd2008-11-25 02:35:04 +10305354 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005355 printk(KERN_ERR "ERROR: domain->span does not contain "
5356 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005357 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10305358 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005359 printk(KERN_ERR "ERROR: domain->groups does not contain"
5360 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005361 }
5362
5363 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5364 do {
5365 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005366 printk("\n");
5367 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005368 break;
5369 }
5370
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005371 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005372 * Even though we initialize ->capacity to something semi-sane,
5373 * we leave capacity_orig unset. This allows us to detect if
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005374 * domain iteration is still funny without causing /0 traps.
5375 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005376 if (!group->sgc->capacity_orig) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005377 printk(KERN_CONT "\n");
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005378 printk(KERN_ERR "ERROR: domain->cpu_capacity not set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005379 break;
5380 }
5381
Rusty Russell758b2cd2008-11-25 02:35:04 +10305382 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005383 printk(KERN_CONT "\n");
5384 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005385 break;
5386 }
5387
Peter Zijlstracb83b622012-04-17 15:49:36 +02005388 if (!(sd->flags & SD_OVERLAP) &&
5389 cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005390 printk(KERN_CONT "\n");
5391 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005392 break;
5393 }
5394
Rusty Russell758b2cd2008-11-25 02:35:04 +10305395 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005396
Rusty Russell968ea6d2008-12-13 21:55:51 +10305397 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305398
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005399 printk(KERN_CONT " %s", str);
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005400 if (group->sgc->capacity != SCHED_CAPACITY_SCALE) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005401 printk(KERN_CONT " (cpu_capacity = %d)",
5402 group->sgc->capacity);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305403 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005404
5405 group = group->next;
5406 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005407 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005408
Rusty Russell758b2cd2008-11-25 02:35:04 +10305409 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005410 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005411
Rusty Russell758b2cd2008-11-25 02:35:04 +10305412 if (sd->parent &&
5413 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005414 printk(KERN_ERR "ERROR: parent span is not a superset "
5415 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005416 return 0;
5417}
5418
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419static void sched_domain_debug(struct sched_domain *sd, int cpu)
5420{
5421 int level = 0;
5422
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005423 if (!sched_debug_enabled)
Mike Travisf6630112009-11-17 18:22:15 -06005424 return;
5425
Nick Piggin41c7ce92005-06-25 14:57:24 -07005426 if (!sd) {
5427 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5428 return;
5429 }
5430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5432
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005433 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005434 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 level++;
5437 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005438 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005439 break;
5440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005442#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005443# define sched_domain_debug(sd, cpu) do { } while (0)
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005444static inline bool sched_debug(void)
5445{
5446 return false;
5447}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005448#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005450static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005451{
Rusty Russell758b2cd2008-11-25 02:35:04 +10305452 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005453 return 1;
5454
5455 /* Following flags need at least 2 groups */
5456 if (sd->flags & (SD_LOAD_BALANCE |
5457 SD_BALANCE_NEWIDLE |
5458 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005459 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005460 SD_SHARE_CPUCAPACITY |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005461 SD_SHARE_PKG_RESOURCES |
5462 SD_SHARE_POWERDOMAIN)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005463 if (sd->groups != sd->groups->next)
5464 return 0;
5465 }
5466
5467 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005468 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005469 return 0;
5470
5471 return 1;
5472}
5473
Ingo Molnar48f24c42006-07-03 00:25:40 -07005474static int
5475sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005476{
5477 unsigned long cflags = sd->flags, pflags = parent->flags;
5478
5479 if (sd_degenerate(parent))
5480 return 1;
5481
Rusty Russell758b2cd2008-11-25 02:35:04 +10305482 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005483 return 0;
5484
Suresh Siddha245af2c2005-06-25 14:57:25 -07005485 /* Flags needing groups don't count if only 1 group in parent */
5486 if (parent->groups == parent->groups->next) {
5487 pflags &= ~(SD_LOAD_BALANCE |
5488 SD_BALANCE_NEWIDLE |
5489 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005490 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005491 SD_SHARE_CPUCAPACITY |
Peter Zijlstra10866e622013-08-19 16:57:04 +02005492 SD_SHARE_PKG_RESOURCES |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005493 SD_PREFER_SIBLING |
5494 SD_SHARE_POWERDOMAIN);
Ken Chen54364992008-12-07 18:47:37 -08005495 if (nr_node_ids == 1)
5496 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005497 }
5498 if (~cflags & pflags)
5499 return 0;
5500
5501 return 1;
5502}
5503
Peter Zijlstradce840a2011-04-07 14:09:50 +02005504static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10305505{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005506 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01005507
Rusty Russell68e74562008-11-25 02:35:13 +10305508 cpupri_cleanup(&rd->cpupri);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005509 cpudl_cleanup(&rd->cpudl);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005510 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305511 free_cpumask_var(rd->rto_mask);
5512 free_cpumask_var(rd->online);
5513 free_cpumask_var(rd->span);
5514 kfree(rd);
5515}
5516
Gregory Haskins57d885f2008-01-25 21:08:18 +01005517static void rq_attach_root(struct rq *rq, struct root_domain *rd)
5518{
Ingo Molnara0490fa2009-02-12 11:35:40 +01005519 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005520 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005521
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005522 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005523
5524 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01005525 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005526
Rusty Russellc6c49272008-11-25 02:35:05 +10305527 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005528 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005529
Rusty Russellc6c49272008-11-25 02:35:05 +10305530 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01005531
Ingo Molnara0490fa2009-02-12 11:35:40 +01005532 /*
Shigeru Yoshida05159732013-11-17 12:12:36 +09005533 * If we dont want to free the old_rd yet then
Ingo Molnara0490fa2009-02-12 11:35:40 +01005534 * set old_rd to NULL to skip the freeing later
5535 * in this function:
5536 */
5537 if (!atomic_dec_and_test(&old_rd->refcount))
5538 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005539 }
5540
5541 atomic_inc(&rd->refcount);
5542 rq->rd = rd;
5543
Rusty Russellc6c49272008-11-25 02:35:05 +10305544 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04005545 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005546 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005547
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005548 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01005549
5550 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02005551 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005552}
5553
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005554static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005555{
5556 memset(rd, 0, sizeof(*rd));
5557
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005558 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08005559 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005560 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305561 goto free_span;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005562 if (!alloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305563 goto free_online;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005564 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
5565 goto free_dlo_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02005566
Dario Faggioli332ac172013-11-07 14:43:45 +01005567 init_dl_bw(&rd->dl_bw);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005568 if (cpudl_init(&rd->cpudl) != 0)
5569 goto free_dlo_mask;
Dario Faggioli332ac172013-11-07 14:43:45 +01005570
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005571 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10305572 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10305573 return 0;
5574
Rusty Russell68e74562008-11-25 02:35:13 +10305575free_rto_mask:
5576 free_cpumask_var(rd->rto_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005577free_dlo_mask:
5578 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305579free_online:
5580 free_cpumask_var(rd->online);
5581free_span:
5582 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08005583out:
Rusty Russellc6c49272008-11-25 02:35:05 +10305584 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005585}
5586
Peter Zijlstra029632f2011-10-25 10:00:11 +02005587/*
5588 * By default the system creates a single root-domain with all cpus as
5589 * members (mimicking the global state we have today).
5590 */
5591struct root_domain def_root_domain;
5592
Gregory Haskins57d885f2008-01-25 21:08:18 +01005593static void init_defrootdomain(void)
5594{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005595 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10305596
Gregory Haskins57d885f2008-01-25 21:08:18 +01005597 atomic_set(&def_root_domain.refcount, 1);
5598}
5599
Gregory Haskinsdc938522008-01-25 21:08:26 +01005600static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005601{
5602 struct root_domain *rd;
5603
5604 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
5605 if (!rd)
5606 return NULL;
5607
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005608 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305609 kfree(rd);
5610 return NULL;
5611 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01005612
5613 return rd;
5614}
5615
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005616static void free_sched_groups(struct sched_group *sg, int free_sgc)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005617{
5618 struct sched_group *tmp, *first;
5619
5620 if (!sg)
5621 return;
5622
5623 first = sg;
5624 do {
5625 tmp = sg->next;
5626
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005627 if (free_sgc && atomic_dec_and_test(&sg->sgc->ref))
5628 kfree(sg->sgc);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005629
5630 kfree(sg);
5631 sg = tmp;
5632 } while (sg != first);
5633}
5634
Peter Zijlstradce840a2011-04-07 14:09:50 +02005635static void free_sched_domain(struct rcu_head *rcu)
5636{
5637 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005638
5639 /*
5640 * If its an overlapping domain it has private groups, iterate and
5641 * nuke them all.
5642 */
5643 if (sd->flags & SD_OVERLAP) {
5644 free_sched_groups(sd->groups, 1);
5645 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005646 kfree(sd->groups->sgc);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005647 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005648 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005649 kfree(sd);
5650}
5651
5652static void destroy_sched_domain(struct sched_domain *sd, int cpu)
5653{
5654 call_rcu(&sd->rcu, free_sched_domain);
5655}
5656
5657static void destroy_sched_domains(struct sched_domain *sd, int cpu)
5658{
5659 for (; sd; sd = sd->parent)
5660 destroy_sched_domain(sd, cpu);
5661}
5662
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663/*
Peter Zijlstra518cd622011-12-07 15:07:31 +01005664 * Keep a special pointer to the highest sched_domain that has
5665 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
5666 * allows us to avoid some pointer chasing select_idle_sibling().
5667 *
5668 * Also keep a unique ID per domain (we use the first cpu number in
5669 * the cpumask of the domain), this allows us to quickly tell if
Peter Zijlstra39be3502012-01-26 12:44:34 +01005670 * two cpus are in the same cache domain, see cpus_share_cache().
Peter Zijlstra518cd622011-12-07 15:07:31 +01005671 */
5672DEFINE_PER_CPU(struct sched_domain *, sd_llc);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005673DEFINE_PER_CPU(int, sd_llc_size);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005674DEFINE_PER_CPU(int, sd_llc_id);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005675DEFINE_PER_CPU(struct sched_domain *, sd_numa);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305676DEFINE_PER_CPU(struct sched_domain *, sd_busy);
5677DEFINE_PER_CPU(struct sched_domain *, sd_asym);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005678
5679static void update_top_cache_domain(int cpu)
5680{
5681 struct sched_domain *sd;
Mel Gorman5d4cf992013-12-17 09:21:25 +00005682 struct sched_domain *busy_sd = NULL;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005683 int id = cpu;
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005684 int size = 1;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005685
5686 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005687 if (sd) {
Peter Zijlstra518cd622011-12-07 15:07:31 +01005688 id = cpumask_first(sched_domain_span(sd));
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005689 size = cpumask_weight(sched_domain_span(sd));
Mel Gorman5d4cf992013-12-17 09:21:25 +00005690 busy_sd = sd->parent; /* sd_busy */
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005691 }
Mel Gorman5d4cf992013-12-17 09:21:25 +00005692 rcu_assign_pointer(per_cpu(sd_busy, cpu), busy_sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005693
5694 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005695 per_cpu(sd_llc_size, cpu) = size;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005696 per_cpu(sd_llc_id, cpu) = id;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005697
5698 sd = lowest_flag_domain(cpu, SD_NUMA);
5699 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305700
5701 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
5702 rcu_assign_pointer(per_cpu(sd_asym, cpu), sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005703}
5704
5705/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01005706 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707 * hold the hotplug lock.
5708 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01005709static void
5710cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005712 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005713 struct sched_domain *tmp;
5714
5715 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08005716 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005717 struct sched_domain *parent = tmp->parent;
5718 if (!parent)
5719 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08005720
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005721 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005722 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005723 if (parent->parent)
5724 parent->parent->child = tmp;
Peter Zijlstra10866e622013-08-19 16:57:04 +02005725 /*
5726 * Transfer SD_PREFER_SIBLING down in case of a
5727 * degenerate parent; the spans match for this
5728 * so the property transfers.
5729 */
5730 if (parent->flags & SD_PREFER_SIBLING)
5731 tmp->flags |= SD_PREFER_SIBLING;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005732 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08005733 } else
5734 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005735 }
5736
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005737 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005738 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005739 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005740 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005741 if (sd)
5742 sd->child = NULL;
5743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005745 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746
Gregory Haskins57d885f2008-01-25 21:08:18 +01005747 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005748 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07005749 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005750 destroy_sched_domains(tmp, cpu);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005751
5752 update_top_cache_domain(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753}
5754
5755/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10305756static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
5758/* Setup the mask of cpus configured for isolated domains */
5759static int __init isolated_cpu_setup(char *str)
5760{
Rusty Russellbdddd292009-12-02 14:09:16 +10305761 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10305762 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 return 1;
5764}
5765
Ingo Molnar8927f492007-10-15 17:00:13 +02005766__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005768struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005769 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005770 struct root_domain *rd;
5771};
5772
Andreas Herrmann2109b992009-08-18 12:53:00 +02005773enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005774 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005775 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02005776 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02005777 sa_none,
5778};
5779
Peter Zijlstrac1174872012-05-31 14:47:33 +02005780/*
5781 * Build an iteration mask that can exclude certain CPUs from the upwards
5782 * domain traversal.
5783 *
5784 * Asymmetric node setups can result in situations where the domain tree is of
5785 * unequal depth, make sure to skip domains that already cover the entire
5786 * range.
5787 *
5788 * In that case build_sched_domains() will have terminated the iteration early
5789 * and our sibling sd spans will be empty. Domains should always include the
5790 * cpu they're built on, so check that.
5791 *
5792 */
5793static void build_group_mask(struct sched_domain *sd, struct sched_group *sg)
5794{
5795 const struct cpumask *span = sched_domain_span(sd);
5796 struct sd_data *sdd = sd->private;
5797 struct sched_domain *sibling;
5798 int i;
5799
5800 for_each_cpu(i, span) {
5801 sibling = *per_cpu_ptr(sdd->sd, i);
5802 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
5803 continue;
5804
5805 cpumask_set_cpu(i, sched_group_mask(sg));
5806 }
5807}
5808
5809/*
5810 * Return the canonical balance cpu for this group, this is the first cpu
5811 * of this group that's also in the iteration mask.
5812 */
5813int group_balance_cpu(struct sched_group *sg)
5814{
5815 return cpumask_first_and(sched_group_cpus(sg), sched_group_mask(sg));
5816}
5817
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005818static int
5819build_overlap_sched_groups(struct sched_domain *sd, int cpu)
5820{
5821 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
5822 const struct cpumask *span = sched_domain_span(sd);
5823 struct cpumask *covered = sched_domains_tmpmask;
5824 struct sd_data *sdd = sd->private;
Zhihui Zhangaaecac42014-08-01 21:18:03 -04005825 struct sched_domain *sibling;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005826 int i;
5827
5828 cpumask_clear(covered);
5829
5830 for_each_cpu(i, span) {
5831 struct cpumask *sg_span;
5832
5833 if (cpumask_test_cpu(i, covered))
5834 continue;
5835
Zhihui Zhangaaecac42014-08-01 21:18:03 -04005836 sibling = *per_cpu_ptr(sdd->sd, i);
Peter Zijlstrac1174872012-05-31 14:47:33 +02005837
5838 /* See the comment near build_group_mask(). */
Zhihui Zhangaaecac42014-08-01 21:18:03 -04005839 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
Peter Zijlstrac1174872012-05-31 14:47:33 +02005840 continue;
5841
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005842 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
Suresh Siddha4d78a222011-11-18 15:03:29 -08005843 GFP_KERNEL, cpu_to_node(cpu));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005844
5845 if (!sg)
5846 goto fail;
5847
5848 sg_span = sched_group_cpus(sg);
Zhihui Zhangaaecac42014-08-01 21:18:03 -04005849 if (sibling->child)
5850 cpumask_copy(sg_span, sched_domain_span(sibling->child));
5851 else
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005852 cpumask_set_cpu(i, sg_span);
5853
5854 cpumask_or(covered, covered, sg_span);
5855
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005856 sg->sgc = *per_cpu_ptr(sdd->sgc, i);
5857 if (atomic_inc_return(&sg->sgc->ref) == 1)
Peter Zijlstrac1174872012-05-31 14:47:33 +02005858 build_group_mask(sd, sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005859
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005860 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005861 * Initialize sgc->capacity such that even if we mess up the
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005862 * domains and no possible iteration will get us here, we won't
5863 * die on a /0 trap.
5864 */
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005865 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005866 sg->sgc->capacity_orig = sg->sgc->capacity;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005867
5868 /*
5869 * Make sure the first group of this domain contains the
5870 * canonical balance cpu. Otherwise the sched_domain iteration
5871 * breaks. See update_sg_lb_stats().
5872 */
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005873 if ((!groups && cpumask_test_cpu(cpu, sg_span)) ||
Peter Zijlstrac1174872012-05-31 14:47:33 +02005874 group_balance_cpu(sg) == cpu)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005875 groups = sg;
5876
5877 if (!first)
5878 first = sg;
5879 if (last)
5880 last->next = sg;
5881 last = sg;
5882 last->next = first;
5883 }
5884 sd->groups = groups;
5885
5886 return 0;
5887
5888fail:
5889 free_sched_groups(first, 0);
5890
5891 return -ENOMEM;
5892}
5893
Peter Zijlstradce840a2011-04-07 14:09:50 +02005894static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005896 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
5897 struct sched_domain *child = sd->child;
5898
5899 if (child)
5900 cpu = cpumask_first(sched_domain_span(child));
5901
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005902 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005903 *sg = *per_cpu_ptr(sdd->sg, cpu);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005904 (*sg)->sgc = *per_cpu_ptr(sdd->sgc, cpu);
5905 atomic_set(&(*sg)->sgc->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005906 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005907
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908 return cpu;
5909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910
Ingo Molnar48f24c42006-07-03 00:25:40 -07005911/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02005912 * build_sched_groups will build a circular linked list of the groups
5913 * covered by the given span, and will set each group's ->cpumask correctly,
Nicolas Pitreced549f2014-05-26 18:19:38 -04005914 * and ->cpu_capacity to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005915 *
5916 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07005917 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005918static int
5919build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005920{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005921 struct sched_group *first = NULL, *last = NULL;
5922 struct sd_data *sdd = sd->private;
5923 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005924 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005925 int i;
5926
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005927 get_group(cpu, sdd, &sd->groups);
5928 atomic_inc(&sd->groups->ref);
5929
Viresh Kumar09366292013-06-11 16:32:43 +05305930 if (cpu != cpumask_first(span))
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005931 return 0;
5932
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005933 lockdep_assert_held(&sched_domains_mutex);
5934 covered = sched_domains_tmpmask;
5935
Peter Zijlstradce840a2011-04-07 14:09:50 +02005936 cpumask_clear(covered);
5937
5938 for_each_cpu(i, span) {
5939 struct sched_group *sg;
Viresh Kumarcd08e922013-06-11 16:32:44 +05305940 int group, j;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005941
5942 if (cpumask_test_cpu(i, covered))
5943 continue;
5944
Viresh Kumarcd08e922013-06-11 16:32:44 +05305945 group = get_group(i, sdd, &sg);
Peter Zijlstrac1174872012-05-31 14:47:33 +02005946 cpumask_setall(sched_group_mask(sg));
Peter Zijlstradce840a2011-04-07 14:09:50 +02005947
5948 for_each_cpu(j, span) {
5949 if (get_group(j, sdd, NULL) != group)
5950 continue;
5951
5952 cpumask_set_cpu(j, covered);
5953 cpumask_set_cpu(j, sched_group_cpus(sg));
5954 }
5955
5956 if (!first)
5957 first = sg;
5958 if (last)
5959 last->next = sg;
5960 last = sg;
5961 }
5962 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005963
5964 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005965}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005966
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967/*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005968 * Initialize sched groups cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005969 *
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005970 * cpu_capacity indicates the capacity of sched group, which is used while
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005971 * distributing the load between different sched groups in a sched domain.
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005972 * Typically cpu_capacity for all the groups in a sched domain will be same
5973 * unless there are asymmetries in the topology. If there are asymmetries,
5974 * group having more cpu_capacity will pickup more load compared to the
5975 * group having less cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005976 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005977static void init_sched_groups_capacity(int cpu, struct sched_domain *sd)
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005978{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005979 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005980
Viresh Kumar94c95ba2013-06-11 16:32:45 +05305981 WARN_ON(!sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005982
5983 do {
5984 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
5985 sg = sg->next;
5986 } while (sg != sd->groups);
5987
Peter Zijlstrac1174872012-05-31 14:47:33 +02005988 if (cpu != group_balance_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005989 return;
5990
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005991 update_group_capacity(sd, cpu);
5992 atomic_set(&sg->sgc->nr_busy_cpus, sg->group_weight);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005993}
5994
5995/*
Mike Travis7c16ec52008-04-04 18:11:11 -07005996 * Initializers for schedule domains
5997 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
5998 */
5999
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006000static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02006001int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006002
6003static int __init setup_relax_domain_level(char *str)
6004{
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05006005 if (kstrtoint(str, 0, &default_relax_domain_level))
6006 pr_warn("Unable to set relax_domain_level\n");
Li Zefan30e0e172008-05-13 10:27:17 +08006007
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006008 return 1;
6009}
6010__setup("relax_domain_level=", setup_relax_domain_level);
6011
6012static void set_domain_attribute(struct sched_domain *sd,
6013 struct sched_domain_attr *attr)
6014{
6015 int request;
6016
6017 if (!attr || attr->relax_domain_level < 0) {
6018 if (default_relax_domain_level < 0)
6019 return;
6020 else
6021 request = default_relax_domain_level;
6022 } else
6023 request = attr->relax_domain_level;
6024 if (request < sd->level) {
6025 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006026 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006027 } else {
6028 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006029 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006030 }
6031}
6032
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006033static void __sdt_free(const struct cpumask *cpu_map);
6034static int __sdt_alloc(const struct cpumask *cpu_map);
6035
Andreas Herrmann2109b992009-08-18 12:53:00 +02006036static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
6037 const struct cpumask *cpu_map)
6038{
6039 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02006040 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02006041 if (!atomic_read(&d->rd->refcount))
6042 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006043 case sa_sd:
6044 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006045 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006046 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02006047 case sa_none:
6048 break;
6049 }
6050}
6051
6052static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
6053 const struct cpumask *cpu_map)
6054{
Peter Zijlstradce840a2011-04-07 14:09:50 +02006055 memset(d, 0, sizeof(*d));
6056
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006057 if (__sdt_alloc(cpu_map))
6058 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006059 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006060 if (!d->sd)
6061 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02006062 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02006063 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006064 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02006065 return sa_rootdomain;
6066}
6067
Peter Zijlstradce840a2011-04-07 14:09:50 +02006068/*
6069 * NULL the sd_data elements we've used to build the sched_domain and
6070 * sched_group structure so that the subsequent __free_domain_allocs()
6071 * will not free the data we're using.
6072 */
6073static void claim_allocations(int cpu, struct sched_domain *sd)
6074{
6075 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006076
6077 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
6078 *per_cpu_ptr(sdd->sd, cpu) = NULL;
6079
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006080 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02006081 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006082
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006083 if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref))
6084 *per_cpu_ptr(sdd->sgc, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006085}
6086
Peter Zijlstracb83b622012-04-17 15:49:36 +02006087#ifdef CONFIG_NUMA
Peter Zijlstracb83b622012-04-17 15:49:36 +02006088static int sched_domains_numa_levels;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006089static int *sched_domains_numa_distance;
6090static struct cpumask ***sched_domains_numa_masks;
6091static int sched_domains_curr_level;
Vincent Guittot143e1e22014-04-11 11:44:37 +02006092#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02006093
Vincent Guittot143e1e22014-04-11 11:44:37 +02006094/*
6095 * SD_flags allowed in topology descriptions.
6096 *
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006097 * SD_SHARE_CPUCAPACITY - describes SMT topologies
Vincent Guittot143e1e22014-04-11 11:44:37 +02006098 * SD_SHARE_PKG_RESOURCES - describes shared caches
6099 * SD_NUMA - describes NUMA topologies
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006100 * SD_SHARE_POWERDOMAIN - describes shared power domain
Vincent Guittot143e1e22014-04-11 11:44:37 +02006101 *
6102 * Odd one out:
6103 * SD_ASYM_PACKING - describes SMT quirks
6104 */
6105#define TOPOLOGY_SD_FLAGS \
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006106 (SD_SHARE_CPUCAPACITY | \
Vincent Guittot143e1e22014-04-11 11:44:37 +02006107 SD_SHARE_PKG_RESOURCES | \
6108 SD_NUMA | \
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006109 SD_ASYM_PACKING | \
6110 SD_SHARE_POWERDOMAIN)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006111
6112static struct sched_domain *
Vincent Guittot143e1e22014-04-11 11:44:37 +02006113sd_init(struct sched_domain_topology_level *tl, int cpu)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006114{
6115 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu);
Vincent Guittot143e1e22014-04-11 11:44:37 +02006116 int sd_weight, sd_flags = 0;
6117
6118#ifdef CONFIG_NUMA
6119 /*
6120 * Ugly hack to pass state to sd_numa_mask()...
6121 */
6122 sched_domains_curr_level = tl->numa_level;
6123#endif
6124
6125 sd_weight = cpumask_weight(tl->mask(cpu));
6126
6127 if (tl->sd_flags)
6128 sd_flags = (*tl->sd_flags)();
6129 if (WARN_ONCE(sd_flags & ~TOPOLOGY_SD_FLAGS,
6130 "wrong sd_flags in topology description\n"))
6131 sd_flags &= ~TOPOLOGY_SD_FLAGS;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006132
6133 *sd = (struct sched_domain){
6134 .min_interval = sd_weight,
6135 .max_interval = 2*sd_weight,
6136 .busy_factor = 32,
Peter Zijlstra870a0bb2012-05-11 00:26:27 +02006137 .imbalance_pct = 125,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006138
6139 .cache_nice_tries = 0,
6140 .busy_idx = 0,
6141 .idle_idx = 0,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006142 .newidle_idx = 0,
6143 .wake_idx = 0,
6144 .forkexec_idx = 0,
6145
6146 .flags = 1*SD_LOAD_BALANCE
6147 | 1*SD_BALANCE_NEWIDLE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006148 | 1*SD_BALANCE_EXEC
6149 | 1*SD_BALANCE_FORK
Peter Zijlstracb83b622012-04-17 15:49:36 +02006150 | 0*SD_BALANCE_WAKE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006151 | 1*SD_WAKE_AFFINE
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006152 | 0*SD_SHARE_CPUCAPACITY
Peter Zijlstracb83b622012-04-17 15:49:36 +02006153 | 0*SD_SHARE_PKG_RESOURCES
Vincent Guittot143e1e22014-04-11 11:44:37 +02006154 | 0*SD_SERIALIZE
Peter Zijlstracb83b622012-04-17 15:49:36 +02006155 | 0*SD_PREFER_SIBLING
Vincent Guittot143e1e22014-04-11 11:44:37 +02006156 | 0*SD_NUMA
6157 | sd_flags
Peter Zijlstracb83b622012-04-17 15:49:36 +02006158 ,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006159
Peter Zijlstracb83b622012-04-17 15:49:36 +02006160 .last_balance = jiffies,
6161 .balance_interval = sd_weight,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006162 .smt_gain = 0,
Jason Low2b4cfe62014-04-23 18:30:34 -07006163 .max_newidle_lb_cost = 0,
6164 .next_decay_max_lb_cost = jiffies,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006165#ifdef CONFIG_SCHED_DEBUG
6166 .name = tl->name,
6167#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02006168 };
Peter Zijlstracb83b622012-04-17 15:49:36 +02006169
6170 /*
Vincent Guittot143e1e22014-04-11 11:44:37 +02006171 * Convert topological properties into behaviour.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006172 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006173
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006174 if (sd->flags & SD_SHARE_CPUCAPACITY) {
Vincent Guittot143e1e22014-04-11 11:44:37 +02006175 sd->imbalance_pct = 110;
6176 sd->smt_gain = 1178; /* ~15% */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006177
6178 } else if (sd->flags & SD_SHARE_PKG_RESOURCES) {
6179 sd->imbalance_pct = 117;
6180 sd->cache_nice_tries = 1;
6181 sd->busy_idx = 2;
6182
6183#ifdef CONFIG_NUMA
6184 } else if (sd->flags & SD_NUMA) {
6185 sd->cache_nice_tries = 2;
6186 sd->busy_idx = 3;
6187 sd->idle_idx = 2;
6188
6189 sd->flags |= SD_SERIALIZE;
6190 if (sched_domains_numa_distance[tl->numa_level] > RECLAIM_DISTANCE) {
6191 sd->flags &= ~(SD_BALANCE_EXEC |
6192 SD_BALANCE_FORK |
6193 SD_WAKE_AFFINE);
6194 }
6195
6196#endif
6197 } else {
6198 sd->flags |= SD_PREFER_SIBLING;
6199 sd->cache_nice_tries = 1;
6200 sd->busy_idx = 2;
6201 sd->idle_idx = 1;
6202 }
6203
6204 sd->private = &tl->data;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006205
6206 return sd;
6207}
6208
Vincent Guittot143e1e22014-04-11 11:44:37 +02006209/*
6210 * Topology list, bottom-up.
6211 */
6212static struct sched_domain_topology_level default_topology[] = {
6213#ifdef CONFIG_SCHED_SMT
6214 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
6215#endif
6216#ifdef CONFIG_SCHED_MC
6217 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
6218#endif
Vincent Guittot143e1e22014-04-11 11:44:37 +02006219 { cpu_cpu_mask, SD_INIT_NAME(DIE) },
6220 { NULL, },
6221};
6222
6223struct sched_domain_topology_level *sched_domain_topology = default_topology;
6224
6225#define for_each_sd_topology(tl) \
6226 for (tl = sched_domain_topology; tl->mask; tl++)
6227
6228void set_sched_topology(struct sched_domain_topology_level *tl)
6229{
6230 sched_domain_topology = tl;
6231}
6232
6233#ifdef CONFIG_NUMA
6234
Peter Zijlstracb83b622012-04-17 15:49:36 +02006235static const struct cpumask *sd_numa_mask(int cpu)
6236{
6237 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
6238}
6239
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006240static void sched_numa_warn(const char *str)
6241{
6242 static int done = false;
6243 int i,j;
6244
6245 if (done)
6246 return;
6247
6248 done = true;
6249
6250 printk(KERN_WARNING "ERROR: %s\n\n", str);
6251
6252 for (i = 0; i < nr_node_ids; i++) {
6253 printk(KERN_WARNING " ");
6254 for (j = 0; j < nr_node_ids; j++)
6255 printk(KERN_CONT "%02d ", node_distance(i,j));
6256 printk(KERN_CONT "\n");
6257 }
6258 printk(KERN_WARNING "\n");
6259}
6260
6261static bool find_numa_distance(int distance)
6262{
6263 int i;
6264
6265 if (distance == node_distance(0, 0))
6266 return true;
6267
6268 for (i = 0; i < sched_domains_numa_levels; i++) {
6269 if (sched_domains_numa_distance[i] == distance)
6270 return true;
6271 }
6272
6273 return false;
6274}
6275
Peter Zijlstracb83b622012-04-17 15:49:36 +02006276static void sched_init_numa(void)
6277{
6278 int next_distance, curr_distance = node_distance(0, 0);
6279 struct sched_domain_topology_level *tl;
6280 int level = 0;
6281 int i, j, k;
6282
Peter Zijlstracb83b622012-04-17 15:49:36 +02006283 sched_domains_numa_distance = kzalloc(sizeof(int) * nr_node_ids, GFP_KERNEL);
6284 if (!sched_domains_numa_distance)
6285 return;
6286
6287 /*
6288 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
6289 * unique distances in the node_distance() table.
6290 *
6291 * Assumes node_distance(0,j) includes all distances in
6292 * node_distance(i,j) in order to avoid cubic time.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006293 */
6294 next_distance = curr_distance;
6295 for (i = 0; i < nr_node_ids; i++) {
6296 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006297 for (k = 0; k < nr_node_ids; k++) {
6298 int distance = node_distance(i, k);
6299
6300 if (distance > curr_distance &&
6301 (distance < next_distance ||
6302 next_distance == curr_distance))
6303 next_distance = distance;
6304
6305 /*
6306 * While not a strong assumption it would be nice to know
6307 * about cases where if node A is connected to B, B is not
6308 * equally connected to A.
6309 */
6310 if (sched_debug() && node_distance(k, i) != distance)
6311 sched_numa_warn("Node-distance not symmetric");
6312
6313 if (sched_debug() && i && !find_numa_distance(distance))
6314 sched_numa_warn("Node-0 not representative");
6315 }
6316 if (next_distance != curr_distance) {
6317 sched_domains_numa_distance[level++] = next_distance;
6318 sched_domains_numa_levels = level;
6319 curr_distance = next_distance;
6320 } else break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006321 }
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006322
6323 /*
6324 * In case of sched_debug() we verify the above assumption.
6325 */
6326 if (!sched_debug())
6327 break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006328 }
6329 /*
6330 * 'level' contains the number of unique distances, excluding the
6331 * identity distance node_distance(i,i).
6332 *
Viresh Kumar28b4a522013-04-05 16:26:46 +05306333 * The sched_domains_numa_distance[] array includes the actual distance
Peter Zijlstracb83b622012-04-17 15:49:36 +02006334 * numbers.
6335 */
6336
Tang Chen5f7865f2012-09-25 21:12:30 +08006337 /*
6338 * Here, we should temporarily reset sched_domains_numa_levels to 0.
6339 * If it fails to allocate memory for array sched_domains_numa_masks[][],
6340 * the array will contain less then 'level' members. This could be
6341 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
6342 * in other functions.
6343 *
6344 * We reset it to 'level' at the end of this function.
6345 */
6346 sched_domains_numa_levels = 0;
6347
Peter Zijlstracb83b622012-04-17 15:49:36 +02006348 sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL);
6349 if (!sched_domains_numa_masks)
6350 return;
6351
6352 /*
6353 * Now for each level, construct a mask per node which contains all
6354 * cpus of nodes that are that many hops away from us.
6355 */
6356 for (i = 0; i < level; i++) {
6357 sched_domains_numa_masks[i] =
6358 kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
6359 if (!sched_domains_numa_masks[i])
6360 return;
6361
6362 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstra2ea45802012-05-25 09:26:43 +02006363 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
Peter Zijlstracb83b622012-04-17 15:49:36 +02006364 if (!mask)
6365 return;
6366
6367 sched_domains_numa_masks[i][j] = mask;
6368
6369 for (k = 0; k < nr_node_ids; k++) {
Peter Zijlstradd7d8632012-05-11 00:56:20 +02006370 if (node_distance(j, k) > sched_domains_numa_distance[i])
Peter Zijlstracb83b622012-04-17 15:49:36 +02006371 continue;
6372
6373 cpumask_or(mask, mask, cpumask_of_node(k));
6374 }
6375 }
6376 }
6377
Vincent Guittot143e1e22014-04-11 11:44:37 +02006378 /* Compute default topology size */
6379 for (i = 0; sched_domain_topology[i].mask; i++);
6380
Vincent Guittotc515db82014-05-13 11:11:01 +02006381 tl = kzalloc((i + level + 1) *
Peter Zijlstracb83b622012-04-17 15:49:36 +02006382 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
6383 if (!tl)
6384 return;
6385
6386 /*
6387 * Copy the default topology bits..
6388 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006389 for (i = 0; sched_domain_topology[i].mask; i++)
6390 tl[i] = sched_domain_topology[i];
Peter Zijlstracb83b622012-04-17 15:49:36 +02006391
6392 /*
6393 * .. and append 'j' levels of NUMA goodness.
6394 */
6395 for (j = 0; j < level; i++, j++) {
6396 tl[i] = (struct sched_domain_topology_level){
Peter Zijlstracb83b622012-04-17 15:49:36 +02006397 .mask = sd_numa_mask,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006398 .sd_flags = cpu_numa_flags,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006399 .flags = SDTL_OVERLAP,
6400 .numa_level = j,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006401 SD_INIT_NAME(NUMA)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006402 };
6403 }
6404
6405 sched_domain_topology = tl;
Tang Chen5f7865f2012-09-25 21:12:30 +08006406
6407 sched_domains_numa_levels = level;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006408}
Tang Chen301a5cb2012-09-25 21:12:31 +08006409
6410static void sched_domains_numa_masks_set(int cpu)
6411{
6412 int i, j;
6413 int node = cpu_to_node(cpu);
6414
6415 for (i = 0; i < sched_domains_numa_levels; i++) {
6416 for (j = 0; j < nr_node_ids; j++) {
6417 if (node_distance(j, node) <= sched_domains_numa_distance[i])
6418 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
6419 }
6420 }
6421}
6422
6423static void sched_domains_numa_masks_clear(int cpu)
6424{
6425 int i, j;
6426 for (i = 0; i < sched_domains_numa_levels; i++) {
6427 for (j = 0; j < nr_node_ids; j++)
6428 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
6429 }
6430}
6431
6432/*
6433 * Update sched_domains_numa_masks[level][node] array when new cpus
6434 * are onlined.
6435 */
6436static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6437 unsigned long action,
6438 void *hcpu)
6439{
6440 int cpu = (long)hcpu;
6441
6442 switch (action & ~CPU_TASKS_FROZEN) {
6443 case CPU_ONLINE:
6444 sched_domains_numa_masks_set(cpu);
6445 break;
6446
6447 case CPU_DEAD:
6448 sched_domains_numa_masks_clear(cpu);
6449 break;
6450
6451 default:
6452 return NOTIFY_DONE;
6453 }
6454
6455 return NOTIFY_OK;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006456}
6457#else
6458static inline void sched_init_numa(void)
6459{
6460}
Tang Chen301a5cb2012-09-25 21:12:31 +08006461
6462static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6463 unsigned long action,
6464 void *hcpu)
6465{
6466 return 0;
6467}
Peter Zijlstracb83b622012-04-17 15:49:36 +02006468#endif /* CONFIG_NUMA */
6469
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006470static int __sdt_alloc(const struct cpumask *cpu_map)
6471{
6472 struct sched_domain_topology_level *tl;
6473 int j;
6474
Viresh Kumar27723a62013-06-10 16:27:20 +05306475 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006476 struct sd_data *sdd = &tl->data;
6477
6478 sdd->sd = alloc_percpu(struct sched_domain *);
6479 if (!sdd->sd)
6480 return -ENOMEM;
6481
6482 sdd->sg = alloc_percpu(struct sched_group *);
6483 if (!sdd->sg)
6484 return -ENOMEM;
6485
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006486 sdd->sgc = alloc_percpu(struct sched_group_capacity *);
6487 if (!sdd->sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006488 return -ENOMEM;
6489
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006490 for_each_cpu(j, cpu_map) {
6491 struct sched_domain *sd;
6492 struct sched_group *sg;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006493 struct sched_group_capacity *sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006494
6495 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
6496 GFP_KERNEL, cpu_to_node(j));
6497 if (!sd)
6498 return -ENOMEM;
6499
6500 *per_cpu_ptr(sdd->sd, j) = sd;
6501
6502 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
6503 GFP_KERNEL, cpu_to_node(j));
6504 if (!sg)
6505 return -ENOMEM;
6506
Igor Mammedov30b4e9e2012-05-09 12:38:28 +02006507 sg->next = sg;
6508
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006509 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006510
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006511 sgc = kzalloc_node(sizeof(struct sched_group_capacity) + cpumask_size(),
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006512 GFP_KERNEL, cpu_to_node(j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006513 if (!sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006514 return -ENOMEM;
6515
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006516 *per_cpu_ptr(sdd->sgc, j) = sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006517 }
6518 }
6519
6520 return 0;
6521}
6522
6523static void __sdt_free(const struct cpumask *cpu_map)
6524{
6525 struct sched_domain_topology_level *tl;
6526 int j;
6527
Viresh Kumar27723a62013-06-10 16:27:20 +05306528 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006529 struct sd_data *sdd = &tl->data;
6530
6531 for_each_cpu(j, cpu_map) {
he, bofb2cf2c2012-04-25 19:59:21 +08006532 struct sched_domain *sd;
6533
6534 if (sdd->sd) {
6535 sd = *per_cpu_ptr(sdd->sd, j);
6536 if (sd && (sd->flags & SD_OVERLAP))
6537 free_sched_groups(sd->groups, 0);
6538 kfree(*per_cpu_ptr(sdd->sd, j));
6539 }
6540
6541 if (sdd->sg)
6542 kfree(*per_cpu_ptr(sdd->sg, j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006543 if (sdd->sgc)
6544 kfree(*per_cpu_ptr(sdd->sgc, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006545 }
6546 free_percpu(sdd->sd);
he, bofb2cf2c2012-04-25 19:59:21 +08006547 sdd->sd = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006548 free_percpu(sdd->sg);
he, bofb2cf2c2012-04-25 19:59:21 +08006549 sdd->sg = NULL;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006550 free_percpu(sdd->sgc);
6551 sdd->sgc = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006552 }
6553}
6554
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006555struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306556 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
6557 struct sched_domain *child, int cpu)
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006558{
Vincent Guittot143e1e22014-04-11 11:44:37 +02006559 struct sched_domain *sd = sd_init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006560 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02006561 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006562
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006563 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02006564 if (child) {
6565 sd->level = child->level + 1;
6566 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02006567 child->parent = sd;
Viresh Kumarc75e0122013-06-10 16:27:19 +05306568 sd->child = child;
Peter Zijlstra6ae72df2014-07-22 11:47:40 +02006569
6570 if (!cpumask_subset(sched_domain_span(child),
6571 sched_domain_span(sd))) {
6572 pr_err("BUG: arch topology borken\n");
6573#ifdef CONFIG_SCHED_DEBUG
6574 pr_err(" the %s domain not a subset of the %s domain\n",
6575 child->name, sd->name);
6576#endif
6577 /* Fixup, ensure @sd has at least @child cpus. */
6578 cpumask_or(sched_domain_span(sd),
6579 sched_domain_span(sd),
6580 sched_domain_span(child));
6581 }
6582
Peter Zijlstra60495e72011-04-07 14:10:04 +02006583 }
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05006584 set_domain_attribute(sd, attr);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006585
6586 return sd;
6587}
6588
Mike Travis7c16ec52008-04-04 18:11:11 -07006589/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006590 * Build sched domains for a given set of cpus and attach the sched domains
6591 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006593static int build_sched_domains(const struct cpumask *cpu_map,
6594 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595{
Viresh Kumar1c632162013-06-10 16:27:18 +05306596 enum s_alloc alloc_state;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006597 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006598 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02006599 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10306600
Andreas Herrmann2109b992009-08-18 12:53:00 +02006601 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
6602 if (alloc_state != sa_rootdomain)
6603 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07006604
Peter Zijlstradce840a2011-04-07 14:09:50 +02006605 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10306606 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02006607 struct sched_domain_topology_level *tl;
6608
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02006609 sd = NULL;
Viresh Kumar27723a62013-06-10 16:27:20 +05306610 for_each_sd_topology(tl) {
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306611 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
Viresh Kumar22da9562013-06-04 15:41:15 +05306612 if (tl == sched_domain_topology)
6613 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006614 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
6615 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02006616 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
6617 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006618 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006619 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006620
Peter Zijlstradce840a2011-04-07 14:09:50 +02006621 /* Build the groups for the domains */
6622 for_each_cpu(i, cpu_map) {
6623 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6624 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006625 if (sd->flags & SD_OVERLAP) {
6626 if (build_overlap_sched_groups(sd, i))
6627 goto error;
6628 } else {
6629 if (build_sched_groups(sd, i))
6630 goto error;
6631 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02006632 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02006633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
Nicolas Pitreced549f2014-05-26 18:19:38 -04006635 /* Calculate CPU capacity for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02006636 for (i = nr_cpumask_bits-1; i >= 0; i--) {
6637 if (!cpumask_test_cpu(i, cpu_map))
6638 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639
Peter Zijlstradce840a2011-04-07 14:09:50 +02006640 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6641 claim_allocations(i, sd);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006642 init_sched_groups_capacity(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006643 }
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006644 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006645
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006647 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306648 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006649 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006650 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006652 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006653
Peter Zijlstra822ff792011-04-07 14:09:51 +02006654 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006655error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02006656 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02006657 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658}
Paul Jackson029190c2007-10-18 23:40:20 -07006659
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306660static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07006661static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02006662static struct sched_domain_attr *dattr_cur;
6663 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07006664
6665/*
6666 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10306667 * cpumask) fails, then fallback to a single sched domain,
6668 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07006669 */
Rusty Russell42128232008-11-25 02:35:12 +10306670static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07006671
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006672/*
6673 * arch_update_cpu_topology lets virtualized architectures update the
6674 * cpu core maps. It is supposed to return 1 if the topology changed
6675 * or 0 if it stayed the same.
6676 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -07006677int __weak arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01006678{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006679 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01006680}
6681
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306682cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
6683{
6684 int i;
6685 cpumask_var_t *doms;
6686
6687 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
6688 if (!doms)
6689 return NULL;
6690 for (i = 0; i < ndoms; i++) {
6691 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
6692 free_sched_domains(doms, i);
6693 return NULL;
6694 }
6695 }
6696 return doms;
6697}
6698
6699void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
6700{
6701 unsigned int i;
6702 for (i = 0; i < ndoms; i++)
6703 free_cpumask_var(doms[i]);
6704 kfree(doms);
6705}
6706
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006707/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006708 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006709 * For now this just excludes isolated cpus, but could be used to
6710 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006711 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006712static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006713{
Milton Miller73785472007-10-24 18:23:48 +02006714 int err;
6715
Heiko Carstens22e52b02008-03-12 18:31:59 +01006716 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006717 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306718 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07006719 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306720 doms_cur = &fallback_doms;
6721 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006722 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02006723 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006724
6725 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006726}
6727
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006728/*
6729 * Detach sched domains from a group of cpus specified in cpu_map
6730 * These cpus will now be attached to the NULL domain
6731 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306732static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006733{
6734 int i;
6735
Peter Zijlstradce840a2011-04-07 14:09:50 +02006736 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306737 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006738 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006739 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006740}
6741
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006742/* handle null as "default" */
6743static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
6744 struct sched_domain_attr *new, int idx_new)
6745{
6746 struct sched_domain_attr tmp;
6747
6748 /* fast path */
6749 if (!new && !cur)
6750 return 1;
6751
6752 tmp = SD_ATTR_INIT;
6753 return !memcmp(cur ? (cur + idx_cur) : &tmp,
6754 new ? (new + idx_new) : &tmp,
6755 sizeof(struct sched_domain_attr));
6756}
6757
Paul Jackson029190c2007-10-18 23:40:20 -07006758/*
6759 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006760 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006761 * doms_new[] to the current sched domain partitioning, doms_cur[].
6762 * It destroys each deleted domain and builds each new domain.
6763 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306764 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006765 * The masks don't intersect (don't overlap.) We should setup one
6766 * sched domain for each mask. CPUs not in any of the cpumasks will
6767 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006768 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6769 * it as it is.
6770 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306771 * The passed in 'doms_new' should be allocated using
6772 * alloc_sched_domains. This routine takes ownership of it and will
6773 * free_sched_domains it when done with it. If the caller failed the
6774 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
6775 * and partition_sched_domains() will fallback to the single partition
6776 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07006777 *
Rusty Russell96f874e22008-11-25 02:35:14 +10306778 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08006779 * ndoms_new == 0 is a special case for destroying existing domains,
6780 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006781 *
Paul Jackson029190c2007-10-18 23:40:20 -07006782 * Call with hotplug lock held
6783 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306784void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006785 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07006786{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006787 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006788 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07006789
Heiko Carstens712555e2008-04-28 11:33:07 +02006790 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006791
Milton Miller73785472007-10-24 18:23:48 +02006792 /* always unregister in case we don't destroy any domains */
6793 unregister_sched_domain_sysctl();
6794
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006795 /* Let architecture update cpu core mappings. */
6796 new_topology = arch_update_cpu_topology();
6797
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006798 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07006799
6800 /* Destroy deleted domains */
6801 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006802 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306803 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006804 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006805 goto match1;
6806 }
6807 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306808 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07006809match1:
6810 ;
6811 }
6812
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006813 n = ndoms_cur;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006814 if (doms_new == NULL) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006815 n = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306816 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006817 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08006818 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006819 }
6820
Paul Jackson029190c2007-10-18 23:40:20 -07006821 /* Build new domains */
6822 for (i = 0; i < ndoms_new; i++) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006823 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306824 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006825 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006826 goto match2;
6827 }
6828 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006829 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07006830match2:
6831 ;
6832 }
6833
6834 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306835 if (doms_cur != &fallback_doms)
6836 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006837 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07006838 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006839 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07006840 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006841
6842 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006843
Heiko Carstens712555e2008-04-28 11:33:07 +02006844 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07006845}
6846
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306847static int num_cpus_frozen; /* used to mark begin/end of suspend/resume */
6848
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849/*
Tejun Heo3a101d02010-06-08 21:40:36 +02006850 * Update cpusets according to cpu_active mask. If cpusets are
6851 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
6852 * around partition_sched_domains().
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306853 *
6854 * If we come here as part of a suspend/resume, don't touch cpusets because we
6855 * want to restore it back to its original state upon resume anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02006857static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
6858 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306860 switch (action) {
6861 case CPU_ONLINE_FROZEN:
6862 case CPU_DOWN_FAILED_FROZEN:
6863
6864 /*
6865 * num_cpus_frozen tracks how many CPUs are involved in suspend
6866 * resume sequence. As long as this is not the last online
6867 * operation in the resume sequence, just build a single sched
6868 * domain, ignoring cpusets.
6869 */
6870 num_cpus_frozen--;
6871 if (likely(num_cpus_frozen)) {
6872 partition_sched_domains(1, NULL, NULL);
6873 break;
6874 }
6875
6876 /*
6877 * This is the last CPU online operation. So fall through and
6878 * restore the original sched domains by considering the
6879 * cpuset configurations.
6880 */
6881
Max Krasnyanskye761b772008-07-15 04:43:49 -07006882 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006883 case CPU_DOWN_FAILED:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306884 cpuset_update_active_cpus(true);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306885 break;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006886 default:
6887 return NOTIFY_DONE;
6888 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306889 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006890}
Tejun Heo3a101d02010-06-08 21:40:36 +02006891
Tejun Heo0b2e9182010-06-21 23:53:31 +02006892static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
6893 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02006894{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306895 switch (action) {
Tejun Heo3a101d02010-06-08 21:40:36 +02006896 case CPU_DOWN_PREPARE:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306897 cpuset_update_active_cpus(false);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306898 break;
6899 case CPU_DOWN_PREPARE_FROZEN:
6900 num_cpus_frozen++;
6901 partition_sched_domains(1, NULL, NULL);
6902 break;
Tejun Heo3a101d02010-06-08 21:40:36 +02006903 default:
6904 return NOTIFY_DONE;
6905 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306906 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02006907}
Max Krasnyanskye761b772008-07-15 04:43:49 -07006908
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909void __init sched_init_smp(void)
6910{
Rusty Russelldcc30a32008-11-25 02:35:12 +10306911 cpumask_var_t non_isolated_cpus;
6912
6913 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08006914 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006915
Peter Zijlstracb83b622012-04-17 15:49:36 +02006916 sched_init_numa();
6917
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02006918 /*
6919 * There's no userspace yet to cause hotplug operations; hence all the
6920 * cpu masks are stable and all blatant races in the below code cannot
6921 * happen.
6922 */
Heiko Carstens712555e2008-04-28 11:33:07 +02006923 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006924 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10306925 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
6926 if (cpumask_empty(non_isolated_cpus))
6927 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02006928 mutex_unlock(&sched_domains_mutex);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006929
Tang Chen301a5cb2012-09-25 21:12:31 +08006930 hotcpu_notifier(sched_domains_numa_masks_update, CPU_PRI_SCHED_ACTIVE);
Tejun Heo3a101d02010-06-08 21:40:36 +02006931 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
6932 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006933
Peter Zijlstrab328ca12008-04-29 10:02:46 +02006934 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07006935
6936 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306937 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07006938 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006939 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10306940 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10306941
Rusty Russell0e3900e2008-11-25 02:35:13 +10306942 init_sched_rt_class();
Juri Lelli1baca4c2013-11-07 14:43:38 +01006943 init_sched_dl_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944}
6945#else
6946void __init sched_init_smp(void)
6947{
Ingo Molnar19978ca2007-11-09 22:39:38 +01006948 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949}
6950#endif /* CONFIG_SMP */
6951
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05306952const_debug unsigned int sysctl_timer_migration = 1;
6953
Linus Torvalds1da177e2005-04-16 15:20:36 -07006954int in_sched_functions(unsigned long addr)
6955{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956 return in_lock_functions(addr) ||
6957 (addr >= (unsigned long)__sched_text_start
6958 && addr < (unsigned long)__sched_text_end);
6959}
6960
Peter Zijlstra029632f2011-10-25 10:00:11 +02006961#ifdef CONFIG_CGROUP_SCHED
Li Zefan27b4b932013-03-05 16:07:52 +08006962/*
6963 * Default task group.
6964 * Every task in system belongs to this group at bootup.
6965 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02006966struct task_group root_task_group;
Mike Galbraith35cf4e52012-08-07 05:00:13 +02006967LIST_HEAD(task_groups);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006968#endif
6969
Joonsoo Kime6252c32013-04-23 17:27:41 +09006970DECLARE_PER_CPU(cpumask_var_t, load_balance_mask);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006971
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972void __init sched_init(void)
6973{
Ingo Molnardd41f592007-07-09 18:51:59 +02006974 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07006975 unsigned long alloc_size = 0, ptr;
6976
6977#ifdef CONFIG_FAIR_GROUP_SCHED
6978 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6979#endif
6980#ifdef CONFIG_RT_GROUP_SCHED
6981 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6982#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306983#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10306984 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306985#endif
Mike Travis434d53b2008-04-04 18:11:04 -07006986 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03006987 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07006988
6989#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006990 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006991 ptr += nr_cpu_ids * sizeof(void **);
6992
Yong Zhang07e06b02011-01-07 15:17:36 +08006993 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006994 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006995
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006996#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07006997#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006998 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006999 ptr += nr_cpu_ids * sizeof(void **);
7000
Yong Zhang07e06b02011-01-07 15:17:36 +08007001 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007002 ptr += nr_cpu_ids * sizeof(void **);
7003
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007004#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10307005#ifdef CONFIG_CPUMASK_OFFSTACK
7006 for_each_possible_cpu(i) {
Joonsoo Kime6252c32013-04-23 17:27:41 +09007007 per_cpu(load_balance_mask, i) = (void *)ptr;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10307008 ptr += cpumask_size();
7009 }
7010#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07007011 }
Ingo Molnardd41f592007-07-09 18:51:59 +02007012
Dario Faggioli332ac172013-11-07 14:43:45 +01007013 init_rt_bandwidth(&def_rt_bandwidth,
7014 global_rt_period(), global_rt_runtime());
7015 init_dl_bandwidth(&def_dl_bandwidth,
Peter Zijlstra17248132013-12-17 12:44:49 +01007016 global_rt_period(), global_rt_runtime());
Dario Faggioli332ac172013-11-07 14:43:45 +01007017
Gregory Haskins57d885f2008-01-25 21:08:18 +01007018#ifdef CONFIG_SMP
7019 init_defrootdomain();
7020#endif
7021
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007022#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08007023 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007024 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007025#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007026
Dhaval Giani7c941432010-01-20 13:26:18 +01007027#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08007028 list_add(&root_task_group.list, &task_groups);
7029 INIT_LIST_HEAD(&root_task_group.children);
Glauber Costaf4d6f6c2011-11-01 19:19:07 -02007030 INIT_LIST_HEAD(&root_task_group.siblings);
Mike Galbraith5091faa2010-11-30 14:18:03 +01007031 autogroup_init(&init_task);
Glauber Costa54c707e2011-11-28 14:45:19 -02007032
Dhaval Giani7c941432010-01-20 13:26:18 +01007033#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007034
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007035 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007036 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037
7038 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01007039 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07007040 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007041 rq->calc_load_active = 0;
7042 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02007043 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007044 init_rt_rq(&rq->rt, rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01007045 init_dl_rq(&rq->dl, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007046#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02007047 root_task_group.shares = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007048 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007049 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08007050 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02007051 *
7052 * In case of task-groups formed thr' the cgroup filesystem, it
7053 * gets 100% of the cpu resources in the system. This overall
7054 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08007055 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02007056 * based on each entity's (task or task-group's) weight
7057 * (se->load.weight).
7058 *
Yong Zhang07e06b02011-01-07 15:17:36 +08007059 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02007060 * 1024) and two child groups A0 and A1 (of weight 1024 each),
7061 * then A0's share of the cpu resource is:
7062 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02007063 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02007064 *
Yong Zhang07e06b02011-01-07 15:17:36 +08007065 * We achieve this by letting root_task_group's tasks sit
7066 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02007067 */
Paul Turnerab84d312011-07-21 09:43:28 -07007068 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08007069 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007070#endif /* CONFIG_FAIR_GROUP_SCHED */
7071
7072 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007073#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08007074 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076
Ingo Molnardd41f592007-07-09 18:51:59 +02007077 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7078 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07007079
7080 rq->last_load_update_tick = jiffies;
7081
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007083 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007084 rq->rd = NULL;
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04007085 rq->cpu_capacity = SCHED_CAPACITY_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04007086 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007088 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007090 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04007091 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01007092 rq->idle_stamp = 0;
7093 rq->avg_idle = 2*sysctl_sched_migration_cost;
Jason Low9bd721c2013-09-13 11:26:52 -07007094 rq->max_idle_balance_cost = sysctl_sched_migration_cost;
Peter Zijlstra367456c2012-02-20 21:49:09 +01007095
7096 INIT_LIST_HEAD(&rq->cfs_tasks);
7097
Gregory Haskinsdc938522008-01-25 21:08:26 +01007098 rq_attach_root(rq, &def_root_domain);
Frederic Weisbecker3451d022011-08-10 23:21:01 +02007099#ifdef CONFIG_NO_HZ_COMMON
Suresh Siddha1c792db2011-12-01 17:07:32 -08007100 rq->nohz_flags = 0;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07007101#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02007102#ifdef CONFIG_NO_HZ_FULL
7103 rq->last_sched_tick = 0;
7104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007106 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007108 }
7109
Peter Williams2dd73a42006-06-27 02:54:34 -07007110 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007111
Avi Kivitye107be32007-07-26 13:40:43 +02007112#ifdef CONFIG_PREEMPT_NOTIFIERS
7113 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7114#endif
7115
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116 /*
7117 * The boot idle thread does lazy MMU switching as well:
7118 */
7119 atomic_inc(&init_mm.mm_count);
7120 enter_lazy_tlb(&init_mm, current);
7121
7122 /*
7123 * Make us the idle thread. Technically, schedule() should not be
7124 * called from this thread, however somewhere below it might be,
7125 * but because we are the idle thread, we just pick up running again
7126 * when this runqueue becomes "idle".
7127 */
7128 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007129
7130 calc_load_update = jiffies + LOAD_FREQ;
7131
Ingo Molnardd41f592007-07-09 18:51:59 +02007132 /*
7133 * During early bootup we pretend to be a normal task:
7134 */
7135 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007136
Rusty Russellbf4d83f2008-11-25 09:57:51 +10307137#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02007138 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russellbdddd292009-12-02 14:09:16 +10307139 /* May be allocated at isolcpus cmdline parse time */
7140 if (cpu_isolated_map == NULL)
7141 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Thomas Gleixner29d5e042012-04-20 13:05:45 +00007142 idle_thread_set_boot_cpu();
Corey Minyarda803f022014-05-08 13:47:39 -05007143 set_cpu_rq_start_time();
Peter Zijlstra029632f2011-10-25 10:00:11 +02007144#endif
7145 init_sched_fair_class();
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10307146
Ingo Molnar6892b752008-02-13 14:02:36 +01007147 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148}
7149
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02007150#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007151static inline int preempt_count_equals(int preempt_offset)
7152{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01007153 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007154
Arnd Bergmann4ba82162011-01-25 22:52:22 +01007155 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007156}
7157
Simon Kagstromd8948372009-12-23 11:08:18 +01007158void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160 static unsigned long prev_jiffy; /* ratelimiting */
7161
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07007162 rcu_sleep_check(); /* WARN_ON_ONCE() by default, no rate limit reqd. */
Thomas Gleixnerdb273be2014-02-07 20:58:38 +01007163 if ((preempt_count_equals(preempt_offset) && !irqs_disabled() &&
7164 !is_idle_task(current)) ||
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007165 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02007166 return;
7167 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7168 return;
7169 prev_jiffy = jiffies;
7170
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01007171 printk(KERN_ERR
7172 "BUG: sleeping function called from invalid context at %s:%d\n",
7173 file, line);
7174 printk(KERN_ERR
7175 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
7176 in_atomic(), irqs_disabled(),
7177 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02007178
7179 debug_show_held_locks(current);
7180 if (irqs_disabled())
7181 print_irqtrace_events(current);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01007182#ifdef CONFIG_DEBUG_PREEMPT
7183 if (!preempt_count_equals(preempt_offset)) {
7184 pr_err("Preemption disabled at:");
7185 print_ip_sym(current->preempt_disable_ip);
7186 pr_cont("\n");
7187 }
7188#endif
Ingo Molnaraef745f2008-08-28 11:34:43 +02007189 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007190}
7191EXPORT_SYMBOL(__might_sleep);
7192#endif
7193
7194#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007195static void normalize_task(struct rq *rq, struct task_struct *p)
7196{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007197 const struct sched_class *prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01007198 struct sched_attr attr = {
7199 .sched_policy = SCHED_NORMAL,
7200 };
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007201 int old_prio = p->prio;
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007202 int queued;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02007203
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007204 queued = task_on_rq_queued(p);
7205 if (queued)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007206 dequeue_task(rq, p, 0);
Dario Faggiolid50dde52013-11-07 14:43:36 +01007207 __setscheduler(rq, p, &attr);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007208 if (queued) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007209 enqueue_task(rq, p, 0);
Kirill Tkhai88751252014-06-29 00:03:57 +04007210 resched_curr(rq);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007211 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007212
7213 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007214}
7215
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216void normalize_rt_tasks(void)
7217{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007218 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007219 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007220 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221
Oleg Nesterov3472eaa2014-09-21 21:33:38 +02007222 read_lock(&tasklist_lock);
Oleg Nesterov5d07f422014-08-13 21:19:53 +02007223 for_each_process_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007224 /*
7225 * Only normalize user tasks:
7226 */
Oleg Nesterov3472eaa2014-09-21 21:33:38 +02007227 if (p->flags & PF_KTHREAD)
Ingo Molnar178be792007-10-15 17:00:18 +02007228 continue;
7229
Ingo Molnardd41f592007-07-09 18:51:59 +02007230 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007231#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03007232 p->se.statistics.wait_start = 0;
7233 p->se.statistics.sleep_start = 0;
7234 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007235#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007236
Dario Faggioliaab03e02013-11-28 11:14:43 +01007237 if (!dl_task(p) && !rt_task(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007238 /*
7239 * Renice negative nice level userspace
7240 * tasks back to 0:
7241 */
Oleg Nesterov3472eaa2014-09-21 21:33:38 +02007242 if (task_nice(p) < 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02007243 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246
Oleg Nesterov3472eaa2014-09-21 21:33:38 +02007247 rq = task_rq_lock(p, &flags);
Ingo Molnar178be792007-10-15 17:00:18 +02007248 normalize_task(rq, p);
Oleg Nesterov3472eaa2014-09-21 21:33:38 +02007249 task_rq_unlock(rq, p, &flags);
Oleg Nesterov5d07f422014-08-13 21:19:53 +02007250 }
Oleg Nesterov3472eaa2014-09-21 21:33:38 +02007251 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252}
7253
7254#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007255
Jason Wessel67fc4e02010-05-20 21:04:21 -05007256#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007257/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05007258 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007259 *
7260 * They can only be called when the whole system has been
7261 * stopped - every CPU needs to be quiescent, and no scheduling
7262 * activity can take place. Using them for anything else would
7263 * be a serious bug, and as a result, they aren't even visible
7264 * under any other configuration.
7265 */
7266
7267/**
7268 * curr_task - return the current task for a given cpu.
7269 * @cpu: the processor in question.
7270 *
7271 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
Yacine Belkadie69f6182013-07-12 20:45:47 +02007272 *
7273 * Return: The current task for @cpu.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007274 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007275struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007276{
7277 return cpu_curr(cpu);
7278}
7279
Jason Wessel67fc4e02010-05-20 21:04:21 -05007280#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
7281
7282#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07007283/**
7284 * set_curr_task - set the current task for a given cpu.
7285 * @cpu: the processor in question.
7286 * @p: the task pointer to set.
7287 *
7288 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007289 * are serviced on a separate stack. It allows the architecture to switch the
7290 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007291 * must be called with all CPU's synchronized, and interrupts disabled, the
7292 * and caller must save the original value of the current task (see
7293 * curr_task() above) and restore that value before reenabling interrupts and
7294 * re-starting the system.
7295 *
7296 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7297 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007298void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007299{
7300 cpu_curr(cpu) = p;
7301}
7302
7303#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007304
Dhaval Giani7c941432010-01-20 13:26:18 +01007305#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02007306/* task_group_lock serializes the addition/removal of task groups */
7307static DEFINE_SPINLOCK(task_group_lock);
7308
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007309static void free_sched_group(struct task_group *tg)
7310{
7311 free_fair_sched_group(tg);
7312 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01007313 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007314 kfree(tg);
7315}
7316
7317/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007318struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007319{
7320 struct task_group *tg;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007321
7322 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7323 if (!tg)
7324 return ERR_PTR(-ENOMEM);
7325
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007326 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007327 goto err;
7328
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007329 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007330 goto err;
7331
Li Zefanace783b2013-01-24 14:30:48 +08007332 return tg;
7333
7334err:
7335 free_sched_group(tg);
7336 return ERR_PTR(-ENOMEM);
7337}
7338
7339void sched_online_group(struct task_group *tg, struct task_group *parent)
7340{
7341 unsigned long flags;
7342
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007343 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007344 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007345
7346 WARN_ON(!parent); /* root should already exist */
7347
7348 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007349 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08007350 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007351 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007352}
7353
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007354/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007355static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007356{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007357 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007358 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007359}
7360
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007361/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007362void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007363{
Li Zefanace783b2013-01-24 14:30:48 +08007364 /* wait for possible concurrent references to cfs_rqs complete */
7365 call_rcu(&tg->rcu, free_sched_group_rcu);
7366}
7367
7368void sched_offline_group(struct task_group *tg)
7369{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007370 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007371 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007372
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007373 /* end participation in shares distribution */
7374 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007375 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007376
7377 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007378 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007379 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007380 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007381}
7382
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007383/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007384 * The caller of this function should have put the task in its new group
7385 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7386 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007387 */
7388void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007389{
Peter Zijlstra8323f262012-06-22 13:36:05 +02007390 struct task_group *tg;
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007391 int queued, running;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007392 unsigned long flags;
7393 struct rq *rq;
7394
7395 rq = task_rq_lock(tsk, &flags);
7396
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007397 running = task_current(rq, tsk);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007398 queued = task_on_rq_queued(tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007399
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007400 if (queued)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007401 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007402 if (unlikely(running))
Kirill Tkhaif3cd1c42014-09-12 17:41:40 +04007403 put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007404
Tejun Heo073219e2014-02-08 10:36:58 -05007405 tg = container_of(task_css_check(tsk, cpu_cgrp_id,
Peter Zijlstra8323f262012-06-22 13:36:05 +02007406 lockdep_is_held(&tsk->sighand->siglock)),
7407 struct task_group, css);
7408 tg = autogroup_task_group(tsk, tg);
7409 tsk->sched_task_group = tg;
7410
Peter Zijlstra810b3812008-02-29 15:21:01 -05007411#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007412 if (tsk->sched_class->task_move_group)
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007413 tsk->sched_class->task_move_group(tsk, queued);
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007414 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05007415#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007416 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05007417
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007418 if (unlikely(running))
7419 tsk->sched_class->set_curr_task(rq);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04007420 if (queued)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01007421 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007422
Peter Zijlstra0122ec52011-04-05 17:23:51 +02007423 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007424}
Dhaval Giani7c941432010-01-20 13:26:18 +01007425#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007426
Paul Turnera790de92011-07-21 09:43:29 -07007427#ifdef CONFIG_RT_GROUP_SCHED
7428/*
7429 * Ensure that the real time constraints are schedulable.
7430 */
7431static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007432
Dhaval Giani521f1a242008-02-28 15:21:56 +05307433/* Must be called with tasklist_lock held */
7434static inline int tg_has_rt_tasks(struct task_group *tg)
7435{
7436 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007437
Oleg Nesterov5d07f422014-08-13 21:19:53 +02007438 for_each_process_thread(g, p) {
Oleg Nesterov8651c652014-09-21 21:33:36 +02007439 if (rt_task(p) && task_group(p) == tg)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307440 return 1;
Oleg Nesterov5d07f422014-08-13 21:19:53 +02007441 }
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007442
Dhaval Giani521f1a242008-02-28 15:21:56 +05307443 return 0;
7444}
7445
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007446struct rt_schedulable_data {
7447 struct task_group *tg;
7448 u64 rt_period;
7449 u64 rt_runtime;
7450};
7451
Paul Turnera790de92011-07-21 09:43:29 -07007452static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007453{
7454 struct rt_schedulable_data *d = data;
7455 struct task_group *child;
7456 unsigned long total, sum = 0;
7457 u64 period, runtime;
7458
7459 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7460 runtime = tg->rt_bandwidth.rt_runtime;
7461
7462 if (tg == d->tg) {
7463 period = d->rt_period;
7464 runtime = d->rt_runtime;
7465 }
7466
Peter Zijlstra4653f802008-09-23 15:33:44 +02007467 /*
7468 * Cannot have more runtime than the period.
7469 */
7470 if (runtime > period && runtime != RUNTIME_INF)
7471 return -EINVAL;
7472
7473 /*
7474 * Ensure we don't starve existing RT tasks.
7475 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007476 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
7477 return -EBUSY;
7478
7479 total = to_ratio(period, runtime);
7480
Peter Zijlstra4653f802008-09-23 15:33:44 +02007481 /*
7482 * Nobody can have more than the global setting allows.
7483 */
7484 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
7485 return -EINVAL;
7486
7487 /*
7488 * The sum of our children's runtime should not exceed our own.
7489 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007490 list_for_each_entry_rcu(child, &tg->children, siblings) {
7491 period = ktime_to_ns(child->rt_bandwidth.rt_period);
7492 runtime = child->rt_bandwidth.rt_runtime;
7493
7494 if (child == d->tg) {
7495 period = d->rt_period;
7496 runtime = d->rt_runtime;
7497 }
7498
7499 sum += to_ratio(period, runtime);
7500 }
7501
7502 if (sum > total)
7503 return -EINVAL;
7504
7505 return 0;
7506}
7507
7508static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
7509{
Paul Turner82774342011-07-21 09:43:35 -07007510 int ret;
7511
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007512 struct rt_schedulable_data data = {
7513 .tg = tg,
7514 .rt_period = period,
7515 .rt_runtime = runtime,
7516 };
7517
Paul Turner82774342011-07-21 09:43:35 -07007518 rcu_read_lock();
7519 ret = walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
7520 rcu_read_unlock();
7521
7522 return ret;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007523}
7524
Paul Turnerab84d312011-07-21 09:43:28 -07007525static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007526 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007527{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007528 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007529
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007530 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307531 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007532 err = __rt_schedulable(tg, rt_period, rt_runtime);
7533 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307534 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007535
Thomas Gleixner0986b112009-11-17 15:32:06 +01007536 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007537 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
7538 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007539
7540 for_each_possible_cpu(i) {
7541 struct rt_rq *rt_rq = tg->rt_rq[i];
7542
Thomas Gleixner0986b112009-11-17 15:32:06 +01007543 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007544 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01007545 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007546 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007547 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02007548unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307549 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007550 mutex_unlock(&rt_constraints_mutex);
7551
7552 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007553}
7554
Li Zefan25cc7da2013-03-05 16:07:33 +08007555static int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007556{
7557 u64 rt_runtime, rt_period;
7558
7559 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7560 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7561 if (rt_runtime_us < 0)
7562 rt_runtime = RUNTIME_INF;
7563
Paul Turnerab84d312011-07-21 09:43:28 -07007564 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007565}
7566
Li Zefan25cc7da2013-03-05 16:07:33 +08007567static long sched_group_rt_runtime(struct task_group *tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007568{
7569 u64 rt_runtime_us;
7570
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007571 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007572 return -1;
7573
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007574 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007575 do_div(rt_runtime_us, NSEC_PER_USEC);
7576 return rt_runtime_us;
7577}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007578
Li Zefan25cc7da2013-03-05 16:07:33 +08007579static int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007580{
7581 u64 rt_runtime, rt_period;
7582
7583 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
7584 rt_runtime = tg->rt_bandwidth.rt_runtime;
7585
Raistlin619b0482008-06-26 18:54:09 +02007586 if (rt_period == 0)
7587 return -EINVAL;
7588
Paul Turnerab84d312011-07-21 09:43:28 -07007589 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007590}
7591
Li Zefan25cc7da2013-03-05 16:07:33 +08007592static long sched_group_rt_period(struct task_group *tg)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007593{
7594 u64 rt_period_us;
7595
7596 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
7597 do_div(rt_period_us, NSEC_PER_USEC);
7598 return rt_period_us;
7599}
Dario Faggioli332ac172013-11-07 14:43:45 +01007600#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007601
Dario Faggioli332ac172013-11-07 14:43:45 +01007602#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007603static int sched_rt_global_constraints(void)
7604{
7605 int ret = 0;
7606
7607 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007608 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02007609 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007610 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007611 mutex_unlock(&rt_constraints_mutex);
7612
7613 return ret;
7614}
Dhaval Giani54e99122009-02-27 15:13:54 +05307615
Li Zefan25cc7da2013-03-05 16:07:33 +08007616static int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
Dhaval Giani54e99122009-02-27 15:13:54 +05307617{
7618 /* Don't accept realtime tasks when there is no way for them to run */
7619 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
7620 return 0;
7621
7622 return 1;
7623}
7624
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007625#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007626static int sched_rt_global_constraints(void)
7627{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007628 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007629 int i, ret = 0;
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07007630
Thomas Gleixner0986b112009-11-17 15:32:06 +01007631 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007632 for_each_possible_cpu(i) {
7633 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
7634
Thomas Gleixner0986b112009-11-17 15:32:06 +01007635 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007636 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01007637 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007638 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007639 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007640
Dario Faggioli332ac172013-11-07 14:43:45 +01007641 return ret;
7642}
7643#endif /* CONFIG_RT_GROUP_SCHED */
7644
Dario Faggioli332ac172013-11-07 14:43:45 +01007645static int sched_dl_global_constraints(void)
7646{
Peter Zijlstra17248132013-12-17 12:44:49 +01007647 u64 runtime = global_rt_runtime();
7648 u64 period = global_rt_period();
Dario Faggioli332ac172013-11-07 14:43:45 +01007649 u64 new_bw = to_ratio(period, runtime);
Peter Zijlstra17248132013-12-17 12:44:49 +01007650 int cpu, ret = 0;
Juri Lelli49516342014-02-11 09:24:27 +01007651 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007652
Kirill Tkhai66339c32014-09-22 22:36:24 +04007653 rcu_read_lock();
7654
Dario Faggioli332ac172013-11-07 14:43:45 +01007655 /*
7656 * Here we want to check the bandwidth not being set to some
7657 * value smaller than the currently allocated bandwidth in
7658 * any of the root_domains.
7659 *
7660 * FIXME: Cycling on all the CPUs is overdoing, but simpler than
7661 * cycling on root_domains... Discussion on different/better
7662 * solutions is welcome!
7663 */
Peter Zijlstra17248132013-12-17 12:44:49 +01007664 for_each_possible_cpu(cpu) {
7665 struct dl_bw *dl_b = dl_bw_of(cpu);
Dario Faggioli332ac172013-11-07 14:43:45 +01007666
Juri Lelli49516342014-02-11 09:24:27 +01007667 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007668 if (new_bw < dl_b->total_bw)
7669 ret = -EBUSY;
Juri Lelli49516342014-02-11 09:24:27 +01007670 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007671
7672 if (ret)
7673 break;
Dario Faggioli332ac172013-11-07 14:43:45 +01007674 }
7675
Kirill Tkhai66339c32014-09-22 22:36:24 +04007676 rcu_read_unlock();
7677
Peter Zijlstra17248132013-12-17 12:44:49 +01007678 return ret;
7679}
7680
7681static void sched_dl_do_global(void)
7682{
7683 u64 new_bw = -1;
7684 int cpu;
Juri Lelli49516342014-02-11 09:24:27 +01007685 unsigned long flags;
Peter Zijlstra17248132013-12-17 12:44:49 +01007686
7687 def_dl_bandwidth.dl_period = global_rt_period();
7688 def_dl_bandwidth.dl_runtime = global_rt_runtime();
7689
7690 if (global_rt_runtime() != RUNTIME_INF)
7691 new_bw = to_ratio(global_rt_period(), global_rt_runtime());
7692
Kirill Tkhai66339c32014-09-22 22:36:24 +04007693 rcu_read_lock();
Peter Zijlstra17248132013-12-17 12:44:49 +01007694 /*
7695 * FIXME: As above...
7696 */
7697 for_each_possible_cpu(cpu) {
7698 struct dl_bw *dl_b = dl_bw_of(cpu);
7699
Juri Lelli49516342014-02-11 09:24:27 +01007700 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007701 dl_b->bw = new_bw;
Juri Lelli49516342014-02-11 09:24:27 +01007702 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007703 }
Kirill Tkhai66339c32014-09-22 22:36:24 +04007704 rcu_read_unlock();
Peter Zijlstra17248132013-12-17 12:44:49 +01007705}
7706
7707static int sched_rt_global_validate(void)
7708{
7709 if (sysctl_sched_rt_period <= 0)
7710 return -EINVAL;
7711
Juri Lellie9e7cb32014-02-11 09:24:26 +01007712 if ((sysctl_sched_rt_runtime != RUNTIME_INF) &&
7713 (sysctl_sched_rt_runtime > sysctl_sched_rt_period))
Peter Zijlstra17248132013-12-17 12:44:49 +01007714 return -EINVAL;
7715
Dario Faggioli332ac172013-11-07 14:43:45 +01007716 return 0;
7717}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007718
Peter Zijlstra17248132013-12-17 12:44:49 +01007719static void sched_rt_do_global(void)
7720{
7721 def_rt_bandwidth.rt_runtime = global_rt_runtime();
7722 def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period());
7723}
7724
7725int sched_rt_handler(struct ctl_table *table, int write,
7726 void __user *buffer, size_t *lenp,
7727 loff_t *ppos)
7728{
7729 int old_period, old_runtime;
7730 static DEFINE_MUTEX(mutex);
7731 int ret;
7732
7733 mutex_lock(&mutex);
7734 old_period = sysctl_sched_rt_period;
7735 old_runtime = sysctl_sched_rt_runtime;
7736
7737 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7738
7739 if (!ret && write) {
7740 ret = sched_rt_global_validate();
7741 if (ret)
7742 goto undo;
7743
7744 ret = sched_rt_global_constraints();
7745 if (ret)
7746 goto undo;
7747
7748 ret = sched_dl_global_constraints();
7749 if (ret)
7750 goto undo;
7751
7752 sched_rt_do_global();
7753 sched_dl_do_global();
7754 }
7755 if (0) {
7756undo:
7757 sysctl_sched_rt_period = old_period;
7758 sysctl_sched_rt_runtime = old_runtime;
7759 }
7760 mutex_unlock(&mutex);
7761
7762 return ret;
7763}
7764
Clark Williamsce0dbbb2013-02-07 09:47:04 -06007765int sched_rr_handler(struct ctl_table *table, int write,
7766 void __user *buffer, size_t *lenp,
7767 loff_t *ppos)
7768{
7769 int ret;
7770 static DEFINE_MUTEX(mutex);
7771
7772 mutex_lock(&mutex);
7773 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7774 /* make sure that internally we keep jiffies */
7775 /* also, writing zero resets timeslice to default */
7776 if (!ret && write) {
7777 sched_rr_timeslice = sched_rr_timeslice <= 0 ?
7778 RR_TIMESLICE : msecs_to_jiffies(sched_rr_timeslice);
7779 }
7780 mutex_unlock(&mutex);
7781 return ret;
7782}
7783
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007784#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007785
Tejun Heoa7c6d552013-08-08 20:11:23 -04007786static inline struct task_group *css_tg(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007787{
Tejun Heoa7c6d552013-08-08 20:11:23 -04007788 return css ? container_of(css, struct task_group, css) : NULL;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007789}
7790
Tejun Heoeb954192013-08-08 20:11:23 -04007791static struct cgroup_subsys_state *
7792cpu_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007793{
Tejun Heoeb954192013-08-08 20:11:23 -04007794 struct task_group *parent = css_tg(parent_css);
7795 struct task_group *tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007796
Tejun Heoeb954192013-08-08 20:11:23 -04007797 if (!parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007798 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08007799 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007800 }
7801
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007802 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007803 if (IS_ERR(tg))
7804 return ERR_PTR(-ENOMEM);
7805
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007806 return &tg->css;
7807}
7808
Tejun Heoeb954192013-08-08 20:11:23 -04007809static int cpu_cgroup_css_online(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007810{
Tejun Heoeb954192013-08-08 20:11:23 -04007811 struct task_group *tg = css_tg(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04007812 struct task_group *parent = css_tg(css->parent);
Li Zefanace783b2013-01-24 14:30:48 +08007813
Tejun Heo63876982013-08-08 20:11:23 -04007814 if (parent)
7815 sched_online_group(tg, parent);
Li Zefanace783b2013-01-24 14:30:48 +08007816 return 0;
7817}
7818
Tejun Heoeb954192013-08-08 20:11:23 -04007819static void cpu_cgroup_css_free(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007820{
Tejun Heoeb954192013-08-08 20:11:23 -04007821 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007822
7823 sched_destroy_group(tg);
7824}
7825
Tejun Heoeb954192013-08-08 20:11:23 -04007826static void cpu_cgroup_css_offline(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007827{
Tejun Heoeb954192013-08-08 20:11:23 -04007828 struct task_group *tg = css_tg(css);
Li Zefanace783b2013-01-24 14:30:48 +08007829
7830 sched_offline_group(tg);
7831}
7832
Tejun Heoeb954192013-08-08 20:11:23 -04007833static int cpu_cgroup_can_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007834 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007835{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007836 struct task_struct *task;
7837
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007838 cgroup_taskset_for_each(task, tset) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007839#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heoeb954192013-08-08 20:11:23 -04007840 if (!sched_rt_can_attach(css_tg(css), task))
Tejun Heobb9d97b2011-12-12 18:12:21 -08007841 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007842#else
Tejun Heobb9d97b2011-12-12 18:12:21 -08007843 /* We don't support RT-tasks being in separate groups */
7844 if (task->sched_class != &fair_sched_class)
7845 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007846#endif
Tejun Heobb9d97b2011-12-12 18:12:21 -08007847 }
Ben Blumbe367d02009-09-23 15:56:31 -07007848 return 0;
7849}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007850
Tejun Heoeb954192013-08-08 20:11:23 -04007851static void cpu_cgroup_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007852 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007853{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007854 struct task_struct *task;
7855
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007856 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08007857 sched_move_task(task);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007858}
7859
Tejun Heoeb954192013-08-08 20:11:23 -04007860static void cpu_cgroup_exit(struct cgroup_subsys_state *css,
7861 struct cgroup_subsys_state *old_css,
7862 struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007863{
7864 /*
7865 * cgroup_exit() is called in the copy_process() failure path.
7866 * Ignore this case since the task hasn't ran yet, this avoids
7867 * trying to poke a half freed task state from generic code.
7868 */
7869 if (!(task->flags & PF_EXITING))
7870 return;
7871
7872 sched_move_task(task);
7873}
7874
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007875#ifdef CONFIG_FAIR_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007876static int cpu_shares_write_u64(struct cgroup_subsys_state *css,
7877 struct cftype *cftype, u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007878{
Tejun Heo182446d2013-08-08 20:11:24 -04007879 return sched_group_set_shares(css_tg(css), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007880}
7881
Tejun Heo182446d2013-08-08 20:11:24 -04007882static u64 cpu_shares_read_u64(struct cgroup_subsys_state *css,
7883 struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007884{
Tejun Heo182446d2013-08-08 20:11:24 -04007885 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007886
Nikhil Raoc8b28112011-05-18 14:37:48 -07007887 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007888}
Paul Turnerab84d312011-07-21 09:43:28 -07007889
7890#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07007891static DEFINE_MUTEX(cfs_constraints_mutex);
7892
Paul Turnerab84d312011-07-21 09:43:28 -07007893const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
7894const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
7895
Paul Turnera790de92011-07-21 09:43:29 -07007896static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
7897
Paul Turnerab84d312011-07-21 09:43:28 -07007898static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
7899{
Paul Turner56f570e2011-11-07 20:26:33 -08007900 int i, ret = 0, runtime_enabled, runtime_was_enabled;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007901 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnerab84d312011-07-21 09:43:28 -07007902
7903 if (tg == &root_task_group)
7904 return -EINVAL;
7905
7906 /*
7907 * Ensure we have at some amount of bandwidth every period. This is
7908 * to prevent reaching a state of large arrears when throttled via
7909 * entity_tick() resulting in prolonged exit starvation.
7910 */
7911 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
7912 return -EINVAL;
7913
7914 /*
7915 * Likewise, bound things on the otherside by preventing insane quota
7916 * periods. This also allows us to normalize in computing quota
7917 * feasibility.
7918 */
7919 if (period > max_cfs_quota_period)
7920 return -EINVAL;
7921
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04007922 /*
7923 * Prevent race between setting of cfs_rq->runtime_enabled and
7924 * unthrottle_offline_cfs_rqs().
7925 */
7926 get_online_cpus();
Paul Turnera790de92011-07-21 09:43:29 -07007927 mutex_lock(&cfs_constraints_mutex);
7928 ret = __cfs_schedulable(tg, period, quota);
7929 if (ret)
7930 goto out_unlock;
7931
Paul Turner58088ad2011-07-21 09:43:31 -07007932 runtime_enabled = quota != RUNTIME_INF;
Paul Turner56f570e2011-11-07 20:26:33 -08007933 runtime_was_enabled = cfs_b->quota != RUNTIME_INF;
Ben Segall1ee14e62013-10-16 11:16:12 -07007934 /*
7935 * If we need to toggle cfs_bandwidth_used, off->on must occur
7936 * before making related changes, and on->off must occur afterwards
7937 */
7938 if (runtime_enabled && !runtime_was_enabled)
7939 cfs_bandwidth_usage_inc();
Paul Turnerab84d312011-07-21 09:43:28 -07007940 raw_spin_lock_irq(&cfs_b->lock);
7941 cfs_b->period = ns_to_ktime(period);
7942 cfs_b->quota = quota;
Paul Turner58088ad2011-07-21 09:43:31 -07007943
Paul Turnera9cf55b2011-07-21 09:43:32 -07007944 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07007945 /* restart the period timer (if active) to handle new period expiry */
7946 if (runtime_enabled && cfs_b->timer_active) {
7947 /* force a reprogram */
Roman Gushchin09dc4ab2014-05-19 15:10:09 +04007948 __start_cfs_bandwidth(cfs_b, true);
Paul Turner58088ad2011-07-21 09:43:31 -07007949 }
Paul Turnerab84d312011-07-21 09:43:28 -07007950 raw_spin_unlock_irq(&cfs_b->lock);
7951
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04007952 for_each_online_cpu(i) {
Paul Turnerab84d312011-07-21 09:43:28 -07007953 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
Peter Zijlstra029632f2011-10-25 10:00:11 +02007954 struct rq *rq = cfs_rq->rq;
Paul Turnerab84d312011-07-21 09:43:28 -07007955
7956 raw_spin_lock_irq(&rq->lock);
Paul Turner58088ad2011-07-21 09:43:31 -07007957 cfs_rq->runtime_enabled = runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07007958 cfs_rq->runtime_remaining = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07007959
Peter Zijlstra029632f2011-10-25 10:00:11 +02007960 if (cfs_rq->throttled)
Paul Turner671fd9d2011-07-21 09:43:34 -07007961 unthrottle_cfs_rq(cfs_rq);
Paul Turnerab84d312011-07-21 09:43:28 -07007962 raw_spin_unlock_irq(&rq->lock);
7963 }
Ben Segall1ee14e62013-10-16 11:16:12 -07007964 if (runtime_was_enabled && !runtime_enabled)
7965 cfs_bandwidth_usage_dec();
Paul Turnera790de92011-07-21 09:43:29 -07007966out_unlock:
7967 mutex_unlock(&cfs_constraints_mutex);
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04007968 put_online_cpus();
Paul Turnerab84d312011-07-21 09:43:28 -07007969
Paul Turnera790de92011-07-21 09:43:29 -07007970 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07007971}
7972
7973int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
7974{
7975 u64 quota, period;
7976
Peter Zijlstra029632f2011-10-25 10:00:11 +02007977 period = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007978 if (cfs_quota_us < 0)
7979 quota = RUNTIME_INF;
7980 else
7981 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
7982
7983 return tg_set_cfs_bandwidth(tg, period, quota);
7984}
7985
7986long tg_get_cfs_quota(struct task_group *tg)
7987{
7988 u64 quota_us;
7989
Peter Zijlstra029632f2011-10-25 10:00:11 +02007990 if (tg->cfs_bandwidth.quota == RUNTIME_INF)
Paul Turnerab84d312011-07-21 09:43:28 -07007991 return -1;
7992
Peter Zijlstra029632f2011-10-25 10:00:11 +02007993 quota_us = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007994 do_div(quota_us, NSEC_PER_USEC);
7995
7996 return quota_us;
7997}
7998
7999int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
8000{
8001 u64 quota, period;
8002
8003 period = (u64)cfs_period_us * NSEC_PER_USEC;
Peter Zijlstra029632f2011-10-25 10:00:11 +02008004 quota = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07008005
Paul Turnerab84d312011-07-21 09:43:28 -07008006 return tg_set_cfs_bandwidth(tg, period, quota);
8007}
8008
8009long tg_get_cfs_period(struct task_group *tg)
8010{
8011 u64 cfs_period_us;
8012
Peter Zijlstra029632f2011-10-25 10:00:11 +02008013 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07008014 do_div(cfs_period_us, NSEC_PER_USEC);
8015
8016 return cfs_period_us;
8017}
8018
Tejun Heo182446d2013-08-08 20:11:24 -04008019static s64 cpu_cfs_quota_read_s64(struct cgroup_subsys_state *css,
8020 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07008021{
Tejun Heo182446d2013-08-08 20:11:24 -04008022 return tg_get_cfs_quota(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07008023}
8024
Tejun Heo182446d2013-08-08 20:11:24 -04008025static int cpu_cfs_quota_write_s64(struct cgroup_subsys_state *css,
8026 struct cftype *cftype, s64 cfs_quota_us)
Paul Turnerab84d312011-07-21 09:43:28 -07008027{
Tejun Heo182446d2013-08-08 20:11:24 -04008028 return tg_set_cfs_quota(css_tg(css), cfs_quota_us);
Paul Turnerab84d312011-07-21 09:43:28 -07008029}
8030
Tejun Heo182446d2013-08-08 20:11:24 -04008031static u64 cpu_cfs_period_read_u64(struct cgroup_subsys_state *css,
8032 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07008033{
Tejun Heo182446d2013-08-08 20:11:24 -04008034 return tg_get_cfs_period(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07008035}
8036
Tejun Heo182446d2013-08-08 20:11:24 -04008037static int cpu_cfs_period_write_u64(struct cgroup_subsys_state *css,
8038 struct cftype *cftype, u64 cfs_period_us)
Paul Turnerab84d312011-07-21 09:43:28 -07008039{
Tejun Heo182446d2013-08-08 20:11:24 -04008040 return tg_set_cfs_period(css_tg(css), cfs_period_us);
Paul Turnerab84d312011-07-21 09:43:28 -07008041}
8042
Paul Turnera790de92011-07-21 09:43:29 -07008043struct cfs_schedulable_data {
8044 struct task_group *tg;
8045 u64 period, quota;
8046};
8047
8048/*
8049 * normalize group quota/period to be quota/max_period
8050 * note: units are usecs
8051 */
8052static u64 normalize_cfs_quota(struct task_group *tg,
8053 struct cfs_schedulable_data *d)
8054{
8055 u64 quota, period;
8056
8057 if (tg == d->tg) {
8058 period = d->period;
8059 quota = d->quota;
8060 } else {
8061 period = tg_get_cfs_period(tg);
8062 quota = tg_get_cfs_quota(tg);
8063 }
8064
8065 /* note: these should typically be equivalent */
8066 if (quota == RUNTIME_INF || quota == -1)
8067 return RUNTIME_INF;
8068
8069 return to_ratio(period, quota);
8070}
8071
8072static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
8073{
8074 struct cfs_schedulable_data *d = data;
Peter Zijlstra029632f2011-10-25 10:00:11 +02008075 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07008076 s64 quota = 0, parent_quota = -1;
8077
8078 if (!tg->parent) {
8079 quota = RUNTIME_INF;
8080 } else {
Peter Zijlstra029632f2011-10-25 10:00:11 +02008081 struct cfs_bandwidth *parent_b = &tg->parent->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07008082
8083 quota = normalize_cfs_quota(tg, d);
Zhihui Zhang9c58c792014-09-20 21:24:36 -04008084 parent_quota = parent_b->hierarchical_quota;
Paul Turnera790de92011-07-21 09:43:29 -07008085
8086 /*
8087 * ensure max(child_quota) <= parent_quota, inherit when no
8088 * limit is set
8089 */
8090 if (quota == RUNTIME_INF)
8091 quota = parent_quota;
8092 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
8093 return -EINVAL;
8094 }
Zhihui Zhang9c58c792014-09-20 21:24:36 -04008095 cfs_b->hierarchical_quota = quota;
Paul Turnera790de92011-07-21 09:43:29 -07008096
8097 return 0;
8098}
8099
8100static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
8101{
Paul Turner82774342011-07-21 09:43:35 -07008102 int ret;
Paul Turnera790de92011-07-21 09:43:29 -07008103 struct cfs_schedulable_data data = {
8104 .tg = tg,
8105 .period = period,
8106 .quota = quota,
8107 };
8108
8109 if (quota != RUNTIME_INF) {
8110 do_div(data.period, NSEC_PER_USEC);
8111 do_div(data.quota, NSEC_PER_USEC);
8112 }
8113
Paul Turner82774342011-07-21 09:43:35 -07008114 rcu_read_lock();
8115 ret = walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
8116 rcu_read_unlock();
8117
8118 return ret;
Paul Turnera790de92011-07-21 09:43:29 -07008119}
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008120
Tejun Heo2da8ca82013-12-05 12:28:04 -05008121static int cpu_stats_show(struct seq_file *sf, void *v)
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008122{
Tejun Heo2da8ca82013-12-05 12:28:04 -05008123 struct task_group *tg = css_tg(seq_css(sf));
Peter Zijlstra029632f2011-10-25 10:00:11 +02008124 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008125
Tejun Heo44ffc752013-12-05 12:28:01 -05008126 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods);
8127 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled);
8128 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008129
8130 return 0;
8131}
Paul Turnerab84d312011-07-21 09:43:28 -07008132#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008133#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008134
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008135#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04008136static int cpu_rt_runtime_write(struct cgroup_subsys_state *css,
8137 struct cftype *cft, s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008138{
Tejun Heo182446d2013-08-08 20:11:24 -04008139 return sched_group_set_rt_runtime(css_tg(css), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008140}
8141
Tejun Heo182446d2013-08-08 20:11:24 -04008142static s64 cpu_rt_runtime_read(struct cgroup_subsys_state *css,
8143 struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008144{
Tejun Heo182446d2013-08-08 20:11:24 -04008145 return sched_group_rt_runtime(css_tg(css));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008146}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008147
Tejun Heo182446d2013-08-08 20:11:24 -04008148static int cpu_rt_period_write_uint(struct cgroup_subsys_state *css,
8149 struct cftype *cftype, u64 rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008150{
Tejun Heo182446d2013-08-08 20:11:24 -04008151 return sched_group_set_rt_period(css_tg(css), rt_period_us);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008152}
8153
Tejun Heo182446d2013-08-08 20:11:24 -04008154static u64 cpu_rt_period_read_uint(struct cgroup_subsys_state *css,
8155 struct cftype *cft)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008156{
Tejun Heo182446d2013-08-08 20:11:24 -04008157 return sched_group_rt_period(css_tg(css));
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008158}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008159#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008160
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008161static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008162#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008163 {
8164 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07008165 .read_u64 = cpu_shares_read_u64,
8166 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008167 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008168#endif
Paul Turnerab84d312011-07-21 09:43:28 -07008169#ifdef CONFIG_CFS_BANDWIDTH
8170 {
8171 .name = "cfs_quota_us",
8172 .read_s64 = cpu_cfs_quota_read_s64,
8173 .write_s64 = cpu_cfs_quota_write_s64,
8174 },
8175 {
8176 .name = "cfs_period_us",
8177 .read_u64 = cpu_cfs_period_read_u64,
8178 .write_u64 = cpu_cfs_period_write_u64,
8179 },
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008180 {
8181 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05008182 .seq_show = cpu_stats_show,
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008183 },
Paul Turnerab84d312011-07-21 09:43:28 -07008184#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008185#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008186 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008187 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07008188 .read_s64 = cpu_rt_runtime_read,
8189 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008190 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008191 {
8192 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07008193 .read_u64 = cpu_rt_period_read_uint,
8194 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008195 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008196#endif
Tejun Heo4baf6e32012-04-01 12:09:55 -07008197 { } /* terminate */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008198};
8199
Tejun Heo073219e2014-02-08 10:36:58 -05008200struct cgroup_subsys cpu_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08008201 .css_alloc = cpu_cgroup_css_alloc,
8202 .css_free = cpu_cgroup_css_free,
Li Zefanace783b2013-01-24 14:30:48 +08008203 .css_online = cpu_cgroup_css_online,
8204 .css_offline = cpu_cgroup_css_offline,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008205 .can_attach = cpu_cgroup_can_attach,
8206 .attach = cpu_cgroup_attach,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01008207 .exit = cpu_cgroup_exit,
Tejun Heo55779642014-07-15 11:05:09 -04008208 .legacy_cftypes = cpu_files,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008209 .early_init = 1,
8210};
8211
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008212#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008213
Paul E. McKenneyb637a322012-09-19 16:58:38 -07008214void dump_cpu_task(int cpu)
8215{
8216 pr_info("Task dump for CPU %d:\n", cpu);
8217 sched_show_task(cpu_curr(cpu));
8218}