blob: 2a36a74c16aefd42e715a5ea0b80b7cf6241e553 [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);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100336 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200337 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100338 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700339 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700340}
341
342/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200343 * task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700345static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200346 __acquires(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 __acquires(rq->lock)
348{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700349 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Andi Kleen3a5c3592007-10-15 17:00:14 +0200351 for (;;) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200352 raw_spin_lock_irqsave(&p->pi_lock, *flags);
Andi Kleen3a5c3592007-10-15 17:00:14 +0200353 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100354 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100355 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200356 return rq;
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200357 raw_spin_unlock(&rq->lock);
358 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
Alexey Dobriyana9957442007-10-15 17:00:13 +0200362static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700363 __releases(rq->lock)
364{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100365 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700366}
367
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200368static inline void
369task_rq_unlock(struct rq *rq, struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 __releases(rq->lock)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200371 __releases(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200373 raw_spin_unlock(&rq->lock);
374 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800378 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200380static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 __acquires(rq->lock)
382{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700383 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 local_irq_disable();
386 rq = this_rq();
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100387 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 return rq;
390}
391
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100392#ifdef CONFIG_SCHED_HRTICK
393/*
394 * Use HR-timers to deliver accurate preemption points.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100395 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100396
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100397static void hrtick_clear(struct rq *rq)
398{
399 if (hrtimer_active(&rq->hrtick_timer))
400 hrtimer_cancel(&rq->hrtick_timer);
401}
402
403/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100404 * High-resolution timer tick.
405 * Runs from hardirq context with interrupts disabled.
406 */
407static enum hrtimer_restart hrtick(struct hrtimer *timer)
408{
409 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
410
411 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
412
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100413 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200414 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100415 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100416 raw_spin_unlock(&rq->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100417
418 return HRTIMER_NORESTART;
419}
420
Rabin Vincent95e904c2008-05-11 05:55:33 +0530421#ifdef CONFIG_SMP
Peter Zijlstra971ee282013-06-28 11:18:53 +0200422
423static int __hrtick_restart(struct rq *rq)
424{
425 struct hrtimer *timer = &rq->hrtick_timer;
426 ktime_t time = hrtimer_get_softexpires(timer);
427
428 return __hrtimer_start_range_ns(timer, time, 0, HRTIMER_MODE_ABS_PINNED, 0);
429}
430
Peter Zijlstra31656512008-07-18 18:01:23 +0200431/*
432 * called from hardirq (IPI) context
433 */
434static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200435{
Peter Zijlstra31656512008-07-18 18:01:23 +0200436 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200437
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100438 raw_spin_lock(&rq->lock);
Peter Zijlstra971ee282013-06-28 11:18:53 +0200439 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200440 rq->hrtick_csd_pending = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100441 raw_spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200442}
443
Peter Zijlstra31656512008-07-18 18:01:23 +0200444/*
445 * Called to set the hrtick timer state.
446 *
447 * called with rq->lock held and irqs disabled
448 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200449void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200450{
Peter Zijlstra31656512008-07-18 18:01:23 +0200451 struct hrtimer *timer = &rq->hrtick_timer;
452 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200453
Arjan van de Vencc584b22008-09-01 15:02:30 -0700454 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +0200455
456 if (rq == this_rq()) {
Peter Zijlstra971ee282013-06-28 11:18:53 +0200457 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200458 } else if (!rq->hrtick_csd_pending) {
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100459 smp_call_function_single_async(cpu_of(rq), &rq->hrtick_csd);
Peter Zijlstra31656512008-07-18 18:01:23 +0200460 rq->hrtick_csd_pending = 1;
461 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200462}
463
464static int
465hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
466{
467 int cpu = (int)(long)hcpu;
468
469 switch (action) {
470 case CPU_UP_CANCELED:
471 case CPU_UP_CANCELED_FROZEN:
472 case CPU_DOWN_PREPARE:
473 case CPU_DOWN_PREPARE_FROZEN:
474 case CPU_DEAD:
475 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +0200476 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200477 return NOTIFY_OK;
478 }
479
480 return NOTIFY_DONE;
481}
482
Rakib Mullickfa748202008-09-22 14:55:45 -0700483static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200484{
485 hotcpu_notifier(hotplug_hrtick, 0);
486}
Peter Zijlstra31656512008-07-18 18:01:23 +0200487#else
488/*
489 * Called to set the hrtick timer state.
490 *
491 * called with rq->lock held and irqs disabled
492 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200493void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstra31656512008-07-18 18:01:23 +0200494{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100495 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530496 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +0200497}
498
Andrew Morton006c75f2008-09-22 14:55:46 -0700499static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +0200500{
501}
Rabin Vincent95e904c2008-05-11 05:55:33 +0530502#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200503
504static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100505{
Peter Zijlstra31656512008-07-18 18:01:23 +0200506#ifdef CONFIG_SMP
507 rq->hrtick_csd_pending = 0;
508
509 rq->hrtick_csd.flags = 0;
510 rq->hrtick_csd.func = __hrtick_start;
511 rq->hrtick_csd.info = rq;
512#endif
513
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100514 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
515 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100516}
Andrew Morton006c75f2008-09-22 14:55:46 -0700517#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100518static inline void hrtick_clear(struct rq *rq)
519{
520}
521
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100522static inline void init_rq_hrtick(struct rq *rq)
523{
524}
525
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200526static inline void init_hrtick(void)
527{
528}
Andrew Morton006c75f2008-09-22 14:55:46 -0700529#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100530
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200531/*
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200532 * cmpxchg based fetch_or, macro so it works for different integer types
533 */
534#define fetch_or(ptr, val) \
535({ typeof(*(ptr)) __old, __val = *(ptr); \
536 for (;;) { \
537 __old = cmpxchg((ptr), __val, __val | (val)); \
538 if (__old == __val) \
539 break; \
540 __val = __old; \
541 } \
542 __old; \
543})
544
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700545#if defined(CONFIG_SMP) && defined(TIF_POLLING_NRFLAG)
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200546/*
547 * Atomically set TIF_NEED_RESCHED and test for TIF_POLLING_NRFLAG,
548 * this avoids any races wrt polling state changes and thereby avoids
549 * spurious IPIs.
550 */
551static bool set_nr_and_not_polling(struct task_struct *p)
552{
553 struct thread_info *ti = task_thread_info(p);
554 return !(fetch_or(&ti->flags, _TIF_NEED_RESCHED) & _TIF_POLLING_NRFLAG);
555}
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700556
557/*
558 * Atomically set TIF_NEED_RESCHED if TIF_POLLING_NRFLAG is set.
559 *
560 * If this returns true, then the idle task promises to call
561 * sched_ttwu_pending() and reschedule soon.
562 */
563static bool set_nr_if_polling(struct task_struct *p)
564{
565 struct thread_info *ti = task_thread_info(p);
566 typeof(ti->flags) old, val = ACCESS_ONCE(ti->flags);
567
568 for (;;) {
569 if (!(val & _TIF_POLLING_NRFLAG))
570 return false;
571 if (val & _TIF_NEED_RESCHED)
572 return true;
573 old = cmpxchg(&ti->flags, val, val | _TIF_NEED_RESCHED);
574 if (old == val)
575 break;
576 val = old;
577 }
578 return true;
579}
580
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200581#else
582static bool set_nr_and_not_polling(struct task_struct *p)
583{
584 set_tsk_need_resched(p);
585 return true;
586}
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700587
588#ifdef CONFIG_SMP
589static bool set_nr_if_polling(struct task_struct *p)
590{
591 return false;
592}
593#endif
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200594#endif
595
596/*
Kirill Tkhai88751252014-06-29 00:03:57 +0400597 * resched_curr - mark rq's current task 'to be rescheduled now'.
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200598 *
599 * On UP this means the setting of the need_resched flag, on SMP it
600 * might also involve a cross-CPU call to trigger the scheduler on
601 * the target CPU.
602 */
Kirill Tkhai88751252014-06-29 00:03:57 +0400603void resched_curr(struct rq *rq)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200604{
Kirill Tkhai88751252014-06-29 00:03:57 +0400605 struct task_struct *curr = rq->curr;
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200606 int cpu;
607
Kirill Tkhai88751252014-06-29 00:03:57 +0400608 lockdep_assert_held(&rq->lock);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200609
Kirill Tkhai88751252014-06-29 00:03:57 +0400610 if (test_tsk_need_resched(curr))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200611 return;
612
Kirill Tkhai88751252014-06-29 00:03:57 +0400613 cpu = cpu_of(rq);
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200614
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200615 if (cpu == smp_processor_id()) {
Kirill Tkhai88751252014-06-29 00:03:57 +0400616 set_tsk_need_resched(curr);
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200617 set_preempt_need_resched();
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200618 return;
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200619 }
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200620
Kirill Tkhai88751252014-06-29 00:03:57 +0400621 if (set_nr_and_not_polling(curr))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200622 smp_send_reschedule(cpu);
Andy Lutomirskidfc68f22014-06-04 10:31:15 -0700623 else
624 trace_sched_wake_idle_without_ipi(cpu);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200625}
626
Peter Zijlstra029632f2011-10-25 10:00:11 +0200627void resched_cpu(int cpu)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200628{
629 struct rq *rq = cpu_rq(cpu);
630 unsigned long flags;
631
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100632 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200633 return;
Kirill Tkhai88751252014-06-29 00:03:57 +0400634 resched_curr(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100635 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200636}
Thomas Gleixner06d83082008-03-22 09:20:24 +0100637
Peter Zijlstrab021fe32013-09-17 09:30:55 +0200638#ifdef CONFIG_SMP
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200639#ifdef CONFIG_NO_HZ_COMMON
Thomas Gleixner06d83082008-03-22 09:20:24 +0100640/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700641 * In the semi idle case, use the nearest busy cpu for migrating timers
642 * from an idle cpu. This is good for power-savings.
643 *
644 * We don't do similar optimization for completely idle system, as
645 * selecting an idle cpu will add more delays to the timers than intended
646 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
647 */
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530648int get_nohz_timer_target(int pinned)
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700649{
650 int cpu = smp_processor_id();
651 int i;
652 struct sched_domain *sd;
653
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530654 if (pinned || !get_sysctl_timer_migration() || !idle_cpu(cpu))
655 return cpu;
656
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200657 rcu_read_lock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700658 for_each_domain(cpu, sd) {
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200659 for_each_cpu(i, sched_domain_span(sd)) {
660 if (!idle_cpu(i)) {
661 cpu = i;
662 goto unlock;
663 }
664 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700665 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200666unlock:
667 rcu_read_unlock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700668 return cpu;
669}
670/*
Thomas Gleixner06d83082008-03-22 09:20:24 +0100671 * When add_timer_on() enqueues a timer into the timer wheel of an
672 * idle CPU then this timer might expire before the next timer event
673 * which is scheduled to wake up that CPU. In case of a completely
674 * idle system the next event might even be infinite time into the
675 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
676 * leaves the inner idle loop so the newly added timer is taken into
677 * account when the CPU goes back to idle and evaluates the timer
678 * wheel for the next timer event.
679 */
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200680static void wake_up_idle_cpu(int cpu)
Thomas Gleixner06d83082008-03-22 09:20:24 +0100681{
682 struct rq *rq = cpu_rq(cpu);
683
684 if (cpu == smp_processor_id())
685 return;
686
Andy Lutomirski67b9ca72014-06-04 10:31:17 -0700687 if (set_nr_and_not_polling(rq->idle))
Thomas Gleixner06d83082008-03-22 09:20:24 +0100688 smp_send_reschedule(cpu);
Andy Lutomirskidfc68f22014-06-04 10:31:15 -0700689 else
690 trace_sched_wake_idle_without_ipi(cpu);
Thomas Gleixner06d83082008-03-22 09:20:24 +0100691}
Mike Galbraith39c0cbe2010-03-11 17:17:13 +0100692
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200693static bool wake_up_full_nohz_cpu(int cpu)
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200694{
Frederic Weisbecker53c5fa12014-06-04 16:20:21 +0200695 /*
696 * We just need the target to call irq_exit() and re-evaluate
697 * the next tick. The nohz full kick at least implies that.
698 * If needed we can still optimize that later with an
699 * empty IRQ.
700 */
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200701 if (tick_nohz_full_cpu(cpu)) {
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200702 if (cpu != smp_processor_id() ||
703 tick_nohz_tick_stopped())
Frederic Weisbecker53c5fa12014-06-04 16:20:21 +0200704 tick_nohz_full_kick_cpu(cpu);
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200705 return true;
706 }
707
708 return false;
709}
710
711void wake_up_nohz_cpu(int cpu)
712{
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200713 if (!wake_up_full_nohz_cpu(cpu))
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200714 wake_up_idle_cpu(cpu);
715}
716
Suresh Siddhaca380622011-10-03 15:09:00 -0700717static inline bool got_nohz_idle_kick(void)
718{
Suresh Siddha1c792db2011-12-01 17:07:32 -0800719 int cpu = smp_processor_id();
Vincent Guittot873b4c62013-06-05 10:13:11 +0200720
721 if (!test_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu)))
722 return false;
723
724 if (idle_cpu(cpu) && !need_resched())
725 return true;
726
727 /*
728 * We can't run Idle Load Balance on this CPU for this time so we
729 * cancel it and clear NOHZ_BALANCE_KICK
730 */
731 clear_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu));
732 return false;
Suresh Siddhaca380622011-10-03 15:09:00 -0700733}
734
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200735#else /* CONFIG_NO_HZ_COMMON */
Suresh Siddhaca380622011-10-03 15:09:00 -0700736
737static inline bool got_nohz_idle_kick(void)
738{
739 return false;
740}
741
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200742#endif /* CONFIG_NO_HZ_COMMON */
Thomas Gleixner06d83082008-03-22 09:20:24 +0100743
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200744#ifdef CONFIG_NO_HZ_FULL
745bool sched_can_stop_tick(void)
746{
Frederic Weisbecker3882ec62014-03-18 22:54:04 +0100747 /*
748 * More than one running task need preemption.
749 * nr_running update is assumed to be visible
750 * after IPI is sent from wakers.
751 */
Viresh Kumar541b8262014-06-24 14:04:12 +0530752 if (this_rq()->nr_running > 1)
753 return false;
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200754
Viresh Kumar541b8262014-06-24 14:04:12 +0530755 return true;
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200756}
757#endif /* CONFIG_NO_HZ_FULL */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200758
Peter Zijlstra029632f2011-10-25 10:00:11 +0200759void sched_avg_update(struct rq *rq)
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200760{
761 s64 period = sched_avg_period();
762
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200763 while ((s64)(rq_clock(rq) - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -0700764 /*
765 * Inline assembly required to prevent the compiler
766 * optimising this loop into a divmod call.
767 * See __iter_div_u64_rem() for another example of this.
768 */
769 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200770 rq->age_stamp += period;
771 rq->rt_avg /= 2;
772 }
773}
774
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200775#endif /* CONFIG_SMP */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200776
Paul Turnera790de92011-07-21 09:43:29 -0700777#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
778 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
Peter Zijlstraeb755802008-08-19 12:33:05 +0200779/*
Paul Turner82774342011-07-21 09:43:35 -0700780 * Iterate task_group tree rooted at *from, calling @down when first entering a
781 * node and @up when leaving it for the final time.
782 *
783 * Caller must hold rcu_lock or sufficient equivalent.
Peter Zijlstraeb755802008-08-19 12:33:05 +0200784 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200785int walk_tg_tree_from(struct task_group *from,
Paul Turner82774342011-07-21 09:43:35 -0700786 tg_visitor down, tg_visitor up, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200787{
788 struct task_group *parent, *child;
789 int ret;
790
Paul Turner82774342011-07-21 09:43:35 -0700791 parent = from;
792
Peter Zijlstraeb755802008-08-19 12:33:05 +0200793down:
794 ret = (*down)(parent, data);
795 if (ret)
Paul Turner82774342011-07-21 09:43:35 -0700796 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200797 list_for_each_entry_rcu(child, &parent->children, siblings) {
798 parent = child;
799 goto down;
800
801up:
802 continue;
803 }
804 ret = (*up)(parent, data);
Paul Turner82774342011-07-21 09:43:35 -0700805 if (ret || parent == from)
806 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200807
808 child = parent;
809 parent = parent->parent;
810 if (parent)
811 goto up;
Paul Turner82774342011-07-21 09:43:35 -0700812out:
Peter Zijlstraeb755802008-08-19 12:33:05 +0200813 return ret;
814}
815
Peter Zijlstra029632f2011-10-25 10:00:11 +0200816int tg_nop(struct task_group *tg, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200817{
818 return 0;
819}
820#endif
821
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200822static void set_load_weight(struct task_struct *p)
823{
Nikhil Raof05998d2011-05-18 10:09:38 -0700824 int prio = p->static_prio - MAX_RT_PRIO;
825 struct load_weight *load = &p->se.load;
826
Ingo Molnardd41f592007-07-09 18:51:59 +0200827 /*
828 * SCHED_IDLE tasks get minimal weight:
829 */
830 if (p->policy == SCHED_IDLE) {
Nikhil Raoc8b28112011-05-18 14:37:48 -0700831 load->weight = scale_load(WEIGHT_IDLEPRIO);
Nikhil Raof05998d2011-05-18 10:09:38 -0700832 load->inv_weight = WMULT_IDLEPRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +0200833 return;
834 }
835
Nikhil Raoc8b28112011-05-18 14:37:48 -0700836 load->weight = scale_load(prio_to_weight[prio]);
Nikhil Raof05998d2011-05-18 10:09:38 -0700837 load->inv_weight = prio_to_wmult[prio];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200838}
839
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100840static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -0600841{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100842 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300843 sched_info_queued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100844 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200845}
846
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100847static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +0200848{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100849 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300850 sched_info_dequeued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100851 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200852}
853
Peter Zijlstra029632f2011-10-25 10:00:11 +0200854void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100855{
856 if (task_contributes_to_load(p))
857 rq->nr_uninterruptible--;
858
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100859 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100860}
861
Peter Zijlstra029632f2011-10-25 10:00:11 +0200862void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100863{
864 if (task_contributes_to_load(p))
865 rq->nr_uninterruptible++;
866
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100867 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100868}
869
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100870static void update_rq_clock_task(struct rq *rq, s64 delta)
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700871{
Glauber Costa095c0aa2011-07-11 15:28:18 -0400872/*
873 * In theory, the compile should just see 0 here, and optimize out the call
874 * to sched_rt_avg_update. But I don't trust it...
875 */
876#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
877 s64 steal = 0, irq_delta = 0;
878#endif
879#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Peter Zijlstra8e92c202010-12-09 14:15:34 +0100880 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100881
882 /*
883 * Since irq_time is only updated on {soft,}irq_exit, we might run into
884 * this case when a previous update_rq_clock() happened inside a
885 * {soft,}irq region.
886 *
887 * When this happens, we stop ->clock_task and only update the
888 * prev_irq_time stamp to account for the part that fit, so that a next
889 * update will consume the rest. This ensures ->clock_task is
890 * monotonic.
891 *
892 * It does however cause some slight miss-attribution of {soft,}irq
893 * time, a more accurate solution would be to update the irq_time using
894 * the current rq->clock timestamp, except that would require using
895 * atomic ops.
896 */
897 if (irq_delta > delta)
898 irq_delta = delta;
899
900 rq->prev_irq_time += irq_delta;
901 delta -= irq_delta;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400902#endif
903#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
Ingo Molnarc5905af2012-02-24 08:31:31 +0100904 if (static_key_false((&paravirt_steal_rq_enabled))) {
Glauber Costa095c0aa2011-07-11 15:28:18 -0400905 steal = paravirt_steal_clock(cpu_of(rq));
906 steal -= rq->prev_steal_time_rq;
907
908 if (unlikely(steal > delta))
909 steal = delta;
910
Glauber Costa095c0aa2011-07-11 15:28:18 -0400911 rq->prev_steal_time_rq += steal;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400912 delta -= steal;
913 }
914#endif
915
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100916 rq->clock_task += delta;
917
Glauber Costa095c0aa2011-07-11 15:28:18 -0400918#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -0400919 if ((irq_delta + steal) && sched_feat(NONTASK_CAPACITY))
Glauber Costa095c0aa2011-07-11 15:28:18 -0400920 sched_rt_avg_update(rq, irq_delta + steal);
921#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700922}
923
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200924void sched_set_stop_task(int cpu, struct task_struct *stop)
925{
926 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
927 struct task_struct *old_stop = cpu_rq(cpu)->stop;
928
929 if (stop) {
930 /*
931 * Make it appear like a SCHED_FIFO task, its something
932 * userspace knows about and won't get confused about.
933 *
934 * Also, it will make PI more or less work without too
935 * much confusion -- but then, stop work should not
936 * rely on PI working anyway.
937 */
938 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
939
940 stop->sched_class = &stop_sched_class;
941 }
942
943 cpu_rq(cpu)->stop = stop;
944
945 if (old_stop) {
946 /*
947 * Reset it back to a normal scheduling class so that
948 * it can die in pieces.
949 */
950 old_stop->sched_class = &rt_sched_class;
951 }
952}
953
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100954/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200955 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200956 */
Ingo Molnar14531182007-07-09 18:51:59 +0200957static inline int __normal_prio(struct task_struct *p)
958{
Ingo Molnardd41f592007-07-09 18:51:59 +0200959 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200960}
961
962/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700963 * Calculate the expected normal priority: i.e. priority
964 * without taking RT-inheritance into account. Might be
965 * boosted by interactivity modifiers. Changes upon fork,
966 * setprio syscalls, and whenever the interactivity
967 * estimator recalculates.
968 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700969static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700970{
971 int prio;
972
Dario Faggioliaab03e02013-11-28 11:14:43 +0100973 if (task_has_dl_policy(p))
974 prio = MAX_DL_PRIO-1;
975 else if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700976 prio = MAX_RT_PRIO-1 - p->rt_priority;
977 else
978 prio = __normal_prio(p);
979 return prio;
980}
981
982/*
983 * Calculate the current priority, i.e. the priority
984 * taken into account by the scheduler. This value might
985 * be boosted by RT tasks, or might be boosted by
986 * interactivity modifiers. Will be RT if the task got
987 * RT-boosted. If not then it returns p->normal_prio.
988 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700989static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700990{
991 p->normal_prio = normal_prio(p);
992 /*
993 * If we are RT tasks or we were boosted to RT priority,
994 * keep the priority unchanged. Otherwise, update priority
995 * to the normal priority:
996 */
997 if (!rt_prio(p->prio))
998 return p->normal_prio;
999 return p->prio;
1000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/**
1003 * task_curr - is this task currently executing on a CPU?
1004 * @p: the task in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02001005 *
1006 * Return: 1 if the task is currently executing. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001008inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 return cpu_curr(task_cpu(p)) == p;
1011}
1012
Steven Rostedtcb469842008-01-25 21:08:22 +01001013static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1014 const struct sched_class *prev_class,
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001015 int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01001016{
1017 if (prev_class != p->sched_class) {
1018 if (prev_class->switched_from)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001019 prev_class->switched_from(rq, p);
1020 p->sched_class->switched_to(rq, p);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01001021 } else if (oldprio != p->prio || dl_task(p))
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001022 p->sched_class->prio_changed(rq, p, oldprio);
Steven Rostedtcb469842008-01-25 21:08:22 +01001023}
1024
Peter Zijlstra029632f2011-10-25 10:00:11 +02001025void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001026{
1027 const struct sched_class *class;
1028
1029 if (p->sched_class == rq->curr->sched_class) {
1030 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
1031 } else {
1032 for_each_class(class) {
1033 if (class == rq->curr->sched_class)
1034 break;
1035 if (class == p->sched_class) {
Kirill Tkhai88751252014-06-29 00:03:57 +04001036 resched_curr(rq);
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001037 break;
1038 }
1039 }
1040 }
1041
1042 /*
1043 * A queue event has occurred, and we're going to schedule. In
1044 * this case, we can save a useless back to back clock update.
1045 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001046 if (rq->curr->on_rq && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001047 rq->skip_clock_update = 1;
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02001051void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001052{
Peter Zijlstrae2912002009-12-16 18:04:36 +01001053#ifdef CONFIG_SCHED_DEBUG
1054 /*
1055 * We should never call set_task_cpu() on a blocked task,
1056 * ttwu() will sort out the placement.
1057 */
Peter Zijlstra077614e2009-12-17 13:16:31 +01001058 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
Peter Zijlstra01028742013-08-14 14:55:46 +02001059 !(task_preempt_count(p) & PREEMPT_ACTIVE));
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001060
1061#ifdef CONFIG_LOCKDEP
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001062 /*
1063 * The caller should hold either p->pi_lock or rq->lock, when changing
1064 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
1065 *
1066 * sched_move_task() holds both and thus holding either pins the cgroup,
Peter Zijlstra8323f262012-06-22 13:36:05 +02001067 * see task_group().
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001068 *
1069 * Furthermore, all task_rq users should acquire both locks, see
1070 * task_rq_lock().
1071 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001072 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
1073 lockdep_is_held(&task_rq(p)->lock)));
1074#endif
Peter Zijlstrae2912002009-12-16 18:04:36 +01001075#endif
1076
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08001077 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01001078
Peter Zijlstra0c697742009-12-22 15:43:19 +01001079 if (task_cpu(p) != new_cpu) {
Paul Turner0a74bef2012-10-04 13:18:30 +02001080 if (p->sched_class->migrate_task_rq)
1081 p->sched_class->migrate_task_rq(p, new_cpu);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001082 p->se.nr_migrations++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001083 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001084 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001085
1086 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001087}
1088
Peter Zijlstraac66f542013-10-07 11:29:16 +01001089static void __migrate_swap_task(struct task_struct *p, int cpu)
1090{
1091 if (p->on_rq) {
1092 struct rq *src_rq, *dst_rq;
1093
1094 src_rq = task_rq(p);
1095 dst_rq = cpu_rq(cpu);
1096
1097 deactivate_task(src_rq, p, 0);
1098 set_task_cpu(p, cpu);
1099 activate_task(dst_rq, p, 0);
1100 check_preempt_curr(dst_rq, p, 0);
1101 } else {
1102 /*
1103 * Task isn't running anymore; make it appear like we migrated
1104 * it before it went to sleep. This means on wakeup we make the
1105 * previous cpu our targer instead of where it really is.
1106 */
1107 p->wake_cpu = cpu;
1108 }
1109}
1110
1111struct migration_swap_arg {
1112 struct task_struct *src_task, *dst_task;
1113 int src_cpu, dst_cpu;
1114};
1115
1116static int migrate_swap_stop(void *data)
1117{
1118 struct migration_swap_arg *arg = data;
1119 struct rq *src_rq, *dst_rq;
1120 int ret = -EAGAIN;
1121
1122 src_rq = cpu_rq(arg->src_cpu);
1123 dst_rq = cpu_rq(arg->dst_cpu);
1124
Peter Zijlstra74602312013-10-10 20:17:22 +02001125 double_raw_lock(&arg->src_task->pi_lock,
1126 &arg->dst_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001127 double_rq_lock(src_rq, dst_rq);
1128 if (task_cpu(arg->dst_task) != arg->dst_cpu)
1129 goto unlock;
1130
1131 if (task_cpu(arg->src_task) != arg->src_cpu)
1132 goto unlock;
1133
1134 if (!cpumask_test_cpu(arg->dst_cpu, tsk_cpus_allowed(arg->src_task)))
1135 goto unlock;
1136
1137 if (!cpumask_test_cpu(arg->src_cpu, tsk_cpus_allowed(arg->dst_task)))
1138 goto unlock;
1139
1140 __migrate_swap_task(arg->src_task, arg->dst_cpu);
1141 __migrate_swap_task(arg->dst_task, arg->src_cpu);
1142
1143 ret = 0;
1144
1145unlock:
1146 double_rq_unlock(src_rq, dst_rq);
Peter Zijlstra74602312013-10-10 20:17:22 +02001147 raw_spin_unlock(&arg->dst_task->pi_lock);
1148 raw_spin_unlock(&arg->src_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001149
1150 return ret;
1151}
1152
1153/*
1154 * Cross migrate two tasks
1155 */
1156int migrate_swap(struct task_struct *cur, struct task_struct *p)
1157{
1158 struct migration_swap_arg arg;
1159 int ret = -EINVAL;
1160
Peter Zijlstraac66f542013-10-07 11:29:16 +01001161 arg = (struct migration_swap_arg){
1162 .src_task = cur,
1163 .src_cpu = task_cpu(cur),
1164 .dst_task = p,
1165 .dst_cpu = task_cpu(p),
1166 };
1167
1168 if (arg.src_cpu == arg.dst_cpu)
1169 goto out;
1170
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001171 /*
1172 * These three tests are all lockless; this is OK since all of them
1173 * will be re-checked with proper locks held further down the line.
1174 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01001175 if (!cpu_active(arg.src_cpu) || !cpu_active(arg.dst_cpu))
1176 goto out;
1177
1178 if (!cpumask_test_cpu(arg.dst_cpu, tsk_cpus_allowed(arg.src_task)))
1179 goto out;
1180
1181 if (!cpumask_test_cpu(arg.src_cpu, tsk_cpus_allowed(arg.dst_task)))
1182 goto out;
1183
Mel Gorman286549d2014-01-21 15:51:03 -08001184 trace_sched_swap_numa(cur, arg.src_cpu, p, arg.dst_cpu);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001185 ret = stop_two_cpus(arg.dst_cpu, arg.src_cpu, migrate_swap_stop, &arg);
1186
1187out:
Peter Zijlstraac66f542013-10-07 11:29:16 +01001188 return ret;
1189}
1190
Tejun Heo969c7922010-05-06 18:49:21 +02001191struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07001192 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001194};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Tejun Heo969c7922010-05-06 18:49:21 +02001196static int migration_cpu_stop(void *data);
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 * wait_task_inactive - wait for a thread to unschedule.
1200 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001201 * If @match_state is nonzero, it's the @p->state value just checked and
1202 * not expected to change. If it changes, i.e. @p might have woken up,
1203 * then return zero. When we succeed in waiting for @p to be off its CPU,
1204 * we return a positive number (its total switch count). If a second call
1205 * a short while later returns the same number, the caller can be sure that
1206 * @p has remained unscheduled the whole time.
1207 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 * The caller must ensure that the task *will* unschedule sometime soon,
1209 * else this function might spin for a *long* time. This function can't
1210 * be called with interrupts off, or it may introduce deadlock with
1211 * smp_call_function() if an IPI is sent by the same process we are
1212 * waiting to become inactive.
1213 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001214unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
1216 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001217 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001218 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001219 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Andi Kleen3a5c3592007-10-15 17:00:14 +02001221 for (;;) {
1222 /*
1223 * We do the initial early heuristics without holding
1224 * any task-queue locks at all. We'll only try to get
1225 * the runqueue lock when things look like they will
1226 * work out!
1227 */
1228 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001229
Andi Kleen3a5c3592007-10-15 17:00:14 +02001230 /*
1231 * If the task is actively running on another CPU
1232 * still, just relax and busy-wait without holding
1233 * any locks.
1234 *
1235 * NOTE! Since we don't hold any locks, it's not
1236 * even sure that "rq" stays as the right runqueue!
1237 * But we don't care, since "task_running()" will
1238 * return false if the runqueue has changed and p
1239 * is actually now running somewhere else!
1240 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001241 while (task_running(rq, p)) {
1242 if (match_state && unlikely(p->state != match_state))
1243 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001244 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001245 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001246
Andi Kleen3a5c3592007-10-15 17:00:14 +02001247 /*
1248 * Ok, time to look more closely! We need the rq
1249 * lock now, to be *sure*. If we're wrong, we'll
1250 * just go back and repeat.
1251 */
1252 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02001253 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001254 running = task_running(rq, p);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001255 on_rq = p->on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001256 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001257 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001258 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001259 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001260
Andi Kleen3a5c3592007-10-15 17:00:14 +02001261 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001262 * If it changed from the expected state, bail out now.
1263 */
1264 if (unlikely(!ncsw))
1265 break;
1266
1267 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001268 * Was it really running after all now that we
1269 * checked with the proper locks actually held?
1270 *
1271 * Oops. Go back and try again..
1272 */
1273 if (unlikely(running)) {
1274 cpu_relax();
1275 continue;
1276 }
1277
1278 /*
1279 * It's not enough that it's not actively running,
1280 * it must be off the runqueue _entirely_, and not
1281 * preempted!
1282 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00001283 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02001284 * running right now), it's preempted, and we should
1285 * yield - it could be a while.
1286 */
1287 if (unlikely(on_rq)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00001288 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
1289
1290 set_current_state(TASK_UNINTERRUPTIBLE);
1291 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001292 continue;
1293 }
1294
1295 /*
1296 * Ahh, all good. It wasn't running, and it wasn't
1297 * runnable, which means that it will never become
1298 * running in the future either. We're all done!
1299 */
1300 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07001302
1303 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
1306/***
1307 * kick_process - kick a running thread to enter/exit the kernel
1308 * @p: the to-be-kicked thread
1309 *
1310 * Cause a process which is running on another CPU to enter
1311 * kernel-mode, without any delay. (to get signals handled.)
1312 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001313 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 * because all it wants to ensure is that the remote task enters
1315 * the kernel. If the IPI races and the task has been migrated
1316 * to another CPU then no harm is done and the purpose has been
1317 * achieved as well.
1318 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001319void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 int cpu;
1322
1323 preempt_disable();
1324 cpu = task_cpu(p);
1325 if ((cpu != smp_processor_id()) && task_curr(p))
1326 smp_send_reschedule(cpu);
1327 preempt_enable();
1328}
Rusty Russellb43e3522009-06-12 22:27:00 -06001329EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07001330#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001332#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01001333/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001334 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01001335 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001336static int select_fallback_rq(int cpu, struct task_struct *p)
1337{
Tang Chenaa00d892013-02-22 16:33:33 -08001338 int nid = cpu_to_node(cpu);
1339 const struct cpumask *nodemask = NULL;
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001340 enum { cpuset, possible, fail } state = cpuset;
1341 int dest_cpu;
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001342
Tang Chenaa00d892013-02-22 16:33:33 -08001343 /*
1344 * If the node that the cpu is on has been offlined, cpu_to_node()
1345 * will return -1. There is no cpu on the node, and we should
1346 * select the cpu on the other node.
1347 */
1348 if (nid != -1) {
1349 nodemask = cpumask_of_node(nid);
1350
1351 /* Look for allowed, online CPU in same node. */
1352 for_each_cpu(dest_cpu, nodemask) {
1353 if (!cpu_online(dest_cpu))
1354 continue;
1355 if (!cpu_active(dest_cpu))
1356 continue;
1357 if (cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
1358 return dest_cpu;
1359 }
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001360 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001361
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001362 for (;;) {
1363 /* Any allowed, online CPU? */
Srivatsa S. Bhate3831ed2012-03-30 19:40:28 +05301364 for_each_cpu(dest_cpu, tsk_cpus_allowed(p)) {
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001365 if (!cpu_online(dest_cpu))
1366 continue;
1367 if (!cpu_active(dest_cpu))
1368 continue;
1369 goto out;
1370 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001371
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001372 switch (state) {
1373 case cpuset:
1374 /* No more Mr. Nice Guy. */
1375 cpuset_cpus_allowed_fallback(p);
1376 state = possible;
1377 break;
1378
1379 case possible:
1380 do_set_cpus_allowed(p, cpu_possible_mask);
1381 state = fail;
1382 break;
1383
1384 case fail:
1385 BUG();
1386 break;
1387 }
1388 }
1389
1390out:
1391 if (state != cpuset) {
1392 /*
1393 * Don't tell them about moving exiting tasks or
1394 * kernel threads (both mm NULL), since they never
1395 * leave kernel.
1396 */
1397 if (p->mm && printk_ratelimit()) {
John Stultzaac74dc2014-06-04 16:11:40 -07001398 printk_deferred("process %d (%s) no longer affine to cpu%d\n",
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001399 task_pid_nr(p), p->comm, cpu);
1400 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001401 }
1402
1403 return dest_cpu;
1404}
1405
Peter Zijlstrae2912002009-12-16 18:04:36 +01001406/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001407 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01001408 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001409static inline
Peter Zijlstraac66f542013-10-07 11:29:16 +01001410int select_task_rq(struct task_struct *p, int cpu, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001411{
Peter Zijlstraac66f542013-10-07 11:29:16 +01001412 cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001413
1414 /*
1415 * In order not to call set_task_cpu() on a blocking task we need
1416 * to rely on ttwu() to place the task on a valid ->cpus_allowed
1417 * cpu.
1418 *
1419 * Since this is common to all placement strategies, this lives here.
1420 *
1421 * [ this allows ->select_task() to simply return task_cpu(p) and
1422 * not worry about this generic constraint ]
1423 */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02001424 if (unlikely(!cpumask_test_cpu(cpu, tsk_cpus_allowed(p)) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01001425 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001426 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001427
1428 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001429}
Mike Galbraith09a40af2010-04-15 07:29:59 +02001430
1431static void update_avg(u64 *avg, u64 sample)
1432{
1433 s64 diff = sample - *avg;
1434 *avg += diff >> 3;
1435}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001436#endif
1437
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001438static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001439ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001440{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001441#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001442 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09001443
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001444#ifdef CONFIG_SMP
1445 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09001446
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001447 if (cpu == this_cpu) {
1448 schedstat_inc(rq, ttwu_local);
1449 schedstat_inc(p, se.statistics.nr_wakeups_local);
1450 } else {
1451 struct sched_domain *sd;
1452
1453 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001454 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001455 for_each_domain(this_cpu, sd) {
1456 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
1457 schedstat_inc(sd, ttwu_wake_remote);
1458 break;
1459 }
1460 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001461 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001462 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001463
1464 if (wake_flags & WF_MIGRATED)
1465 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
1466
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001467#endif /* CONFIG_SMP */
1468
1469 schedstat_inc(rq, ttwu_count);
1470 schedstat_inc(p, se.statistics.nr_wakeups);
1471
1472 if (wake_flags & WF_SYNC)
1473 schedstat_inc(p, se.statistics.nr_wakeups_sync);
1474
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001475#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09001476}
1477
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001478static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001479{
Tejun Heo9ed38112009-12-03 15:08:03 +09001480 activate_task(rq, p, en_flags);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001481 p->on_rq = 1;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02001482
1483 /* if a worker is waking up, notify workqueue */
1484 if (p->flags & PF_WQ_WORKER)
1485 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09001486}
1487
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001488/*
1489 * Mark the task runnable and perform wakeup-preemption.
1490 */
Peter Zijlstra89363382011-04-05 17:23:42 +02001491static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001492ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001493{
Tejun Heo9ed38112009-12-03 15:08:03 +09001494 check_preempt_curr(rq, p, wake_flags);
Peter Zijlstraa8d7ad52013-03-14 10:48:39 +01001495 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09001496
1497 p->state = TASK_RUNNING;
1498#ifdef CONFIG_SMP
1499 if (p->sched_class->task_woken)
1500 p->sched_class->task_woken(rq, p);
1501
Steven Rostedte69c6342010-12-06 17:10:31 -05001502 if (rq->idle_stamp) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001503 u64 delta = rq_clock(rq) - rq->idle_stamp;
Jason Low9bd721c2013-09-13 11:26:52 -07001504 u64 max = 2*rq->max_idle_balance_cost;
Tejun Heo9ed38112009-12-03 15:08:03 +09001505
Jason Lowabfafa52013-09-13 11:26:51 -07001506 update_avg(&rq->avg_idle, delta);
1507
1508 if (rq->avg_idle > max)
Tejun Heo9ed38112009-12-03 15:08:03 +09001509 rq->avg_idle = max;
Jason Lowabfafa52013-09-13 11:26:51 -07001510
Tejun Heo9ed38112009-12-03 15:08:03 +09001511 rq->idle_stamp = 0;
1512 }
1513#endif
1514}
1515
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001516static void
1517ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
1518{
1519#ifdef CONFIG_SMP
1520 if (p->sched_contributes_to_load)
1521 rq->nr_uninterruptible--;
1522#endif
1523
1524 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
1525 ttwu_do_wakeup(rq, p, wake_flags);
1526}
1527
1528/*
1529 * Called in case the task @p isn't fully descheduled from its runqueue,
1530 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
1531 * since all we need to do is flip p->state to TASK_RUNNING, since
1532 * the task is still ->on_rq.
1533 */
1534static int ttwu_remote(struct task_struct *p, int wake_flags)
1535{
1536 struct rq *rq;
1537 int ret = 0;
1538
1539 rq = __task_rq_lock(p);
1540 if (p->on_rq) {
Frederic Weisbecker1ad4ec02013-04-12 01:51:00 +02001541 /* check_preempt_curr() may use rq clock */
1542 update_rq_clock(rq);
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001543 ttwu_do_wakeup(rq, p, wake_flags);
1544 ret = 1;
1545 }
1546 __task_rq_unlock(rq);
1547
1548 return ret;
1549}
1550
Peter Zijlstra317f3942011-04-05 17:23:58 +02001551#ifdef CONFIG_SMP
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001552void sched_ttwu_pending(void)
Peter Zijlstra317f3942011-04-05 17:23:58 +02001553{
1554 struct rq *rq = this_rq();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001555 struct llist_node *llist = llist_del_all(&rq->wake_list);
1556 struct task_struct *p;
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001557 unsigned long flags;
Peter Zijlstra317f3942011-04-05 17:23:58 +02001558
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001559 if (!llist)
1560 return;
1561
1562 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001563
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001564 while (llist) {
1565 p = llist_entry(llist, struct task_struct, wake_entry);
1566 llist = llist_next(llist);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001567 ttwu_do_activate(rq, p, 0);
1568 }
1569
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001570 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001571}
1572
1573void scheduler_ipi(void)
1574{
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001575 /*
1576 * Fold TIF_NEED_RESCHED into the preempt_count; anybody setting
1577 * TIF_NEED_RESCHED remotely (for the first time) will also send
1578 * this IPI.
1579 */
Peter Zijlstra8cb75e02013-11-20 12:22:37 +01001580 preempt_fold_need_resched();
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001581
Frederic Weisbeckerfd2ac4f2014-03-18 21:12:53 +01001582 if (llist_empty(&this_rq()->wake_list) && !got_nohz_idle_kick())
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001583 return;
1584
1585 /*
1586 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
1587 * traditionally all their work was done from the interrupt return
1588 * path. Now that we actually do some work, we need to make sure
1589 * we do call them.
1590 *
1591 * Some archs already do call them, luckily irq_enter/exit nest
1592 * properly.
1593 *
1594 * Arguably we should visit all archs and update all handlers,
1595 * however a fair share of IPIs are still resched only so this would
1596 * somewhat pessimize the simple resched case.
1597 */
1598 irq_enter();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001599 sched_ttwu_pending();
Suresh Siddhaca380622011-10-03 15:09:00 -07001600
1601 /*
1602 * Check if someone kicked us for doing the nohz idle load balance.
1603 */
Vincent Guittot873b4c62013-06-05 10:13:11 +02001604 if (unlikely(got_nohz_idle_kick())) {
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001605 this_rq()->idle_balance = 1;
Suresh Siddhaca380622011-10-03 15:09:00 -07001606 raise_softirq_irqoff(SCHED_SOFTIRQ);
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001607 }
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001608 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02001609}
1610
1611static void ttwu_queue_remote(struct task_struct *p, int cpu)
1612{
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001613 struct rq *rq = cpu_rq(cpu);
1614
1615 if (llist_add(&p->wake_entry, &cpu_rq(cpu)->wake_list)) {
1616 if (!set_nr_if_polling(rq->idle))
1617 smp_send_reschedule(cpu);
1618 else
1619 trace_sched_wake_idle_without_ipi(cpu);
1620 }
Peter Zijlstra317f3942011-04-05 17:23:58 +02001621}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001622
Peter Zijlstra39be3502012-01-26 12:44:34 +01001623bool cpus_share_cache(int this_cpu, int that_cpu)
Peter Zijlstra518cd622011-12-07 15:07:31 +01001624{
1625 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
1626}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001627#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001628
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001629static void ttwu_queue(struct task_struct *p, int cpu)
1630{
1631 struct rq *rq = cpu_rq(cpu);
1632
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00001633#if defined(CONFIG_SMP)
Peter Zijlstra39be3502012-01-26 12:44:34 +01001634 if (sched_feat(TTWU_QUEUE) && !cpus_share_cache(smp_processor_id(), cpu)) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02001635 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001636 ttwu_queue_remote(p, cpu);
1637 return;
1638 }
1639#endif
1640
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001641 raw_spin_lock(&rq->lock);
1642 ttwu_do_activate(rq, p, 0);
1643 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09001644}
1645
1646/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09001648 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09001650 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 *
1652 * Put it on the run-queue if it's not already there. The "current"
1653 * thread is always on the run-queue (except when the actual
1654 * re-schedule is in progress), and as such you're allowed to do
1655 * the simpler "current->state = TASK_RUNNING" to mark yourself
1656 * runnable without the overhead of this.
1657 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02001658 * Return: %true if @p was woken up, %false if it was already running.
Tejun Heo9ed38112009-12-03 15:08:03 +09001659 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001661static int
1662try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001665 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001666
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02001667 /*
1668 * If we are going to wake up a thread waiting for CONDITION we
1669 * need to ensure that CONDITION=1 done by the caller can not be
1670 * reordered with p->state check below. This pairs with mb() in
1671 * set_current_state() the waiting thread does.
1672 */
1673 smp_mb__before_spinlock();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001674 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001675 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 goto out;
1677
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001678 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001680
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001681 if (p->on_rq && ttwu_remote(p, wake_flags))
1682 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001685 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001686 * If the owning (remote) cpu is still in the middle of schedule() with
1687 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001688 */
Peter Zijlstraf3e94782012-09-12 11:22:00 +02001689 while (p->on_cpu)
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001690 cpu_relax();
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001691 /*
1692 * Pairs with the smp_wmb() in finish_lock_switch().
1693 */
1694 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02001696 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001697 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001698
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001699 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02001700 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01001701
Peter Zijlstraac66f542013-10-07 11:29:16 +01001702 cpu = select_task_rq(p, p->wake_cpu, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001703 if (task_cpu(p) != cpu) {
1704 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02001705 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001709 ttwu_queue(p, cpu);
1710stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001711 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001713 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 return success;
1716}
1717
David Howells50fa6102009-04-28 15:01:38 +01001718/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02001719 * try_to_wake_up_local - try to wake up a local task with rq lock held
1720 * @p: the thread to be awakened
1721 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02001722 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02001723 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02001724 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02001725 */
1726static void try_to_wake_up_local(struct task_struct *p)
1727{
1728 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001729
Tejun Heo383efcd2013-03-18 12:22:34 -07001730 if (WARN_ON_ONCE(rq != this_rq()) ||
1731 WARN_ON_ONCE(p == current))
1732 return;
1733
Tejun Heo21aa9af2010-06-08 21:40:37 +02001734 lockdep_assert_held(&rq->lock);
1735
Peter Zijlstra2acca552011-04-05 17:23:50 +02001736 if (!raw_spin_trylock(&p->pi_lock)) {
1737 raw_spin_unlock(&rq->lock);
1738 raw_spin_lock(&p->pi_lock);
1739 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001740 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02001741
Tejun Heo21aa9af2010-06-08 21:40:37 +02001742 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02001743 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02001744
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001745 if (!p->on_rq)
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001746 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
1747
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001748 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001749 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02001750out:
1751 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001752}
1753
1754/**
David Howells50fa6102009-04-28 15:01:38 +01001755 * wake_up_process - Wake up a specific process
1756 * @p: The process to be woken up.
1757 *
1758 * Attempt to wake up the nominated process and move it to the set of runnable
Yacine Belkadie69f6182013-07-12 20:45:47 +02001759 * processes.
1760 *
1761 * Return: 1 if the process was woken up, 0 if it was already running.
David Howells50fa6102009-04-28 15:01:38 +01001762 *
1763 * It may be assumed that this function implies a write memory barrier before
1764 * changing the task state if and only if any tasks are woken up.
1765 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001766int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
Oleg Nesterov9067ac82013-01-21 20:48:17 +01001768 WARN_ON(task_is_stopped_or_traced(p));
1769 return try_to_wake_up(p, TASK_NORMAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771EXPORT_SYMBOL(wake_up_process);
1772
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001773int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 return try_to_wake_up(p, state, 0);
1776}
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778/*
1779 * Perform scheduler related setup for a newly forked process p.
1780 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001781 *
1782 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 */
Rik van Riel5e1576e2013-10-07 11:29:26 +01001784static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001786 p->on_rq = 0;
1787
1788 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001789 p->se.exec_start = 0;
1790 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001791 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001792 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001793 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001794 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001795
1796#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03001797 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001798#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001799
Dario Faggioliaab03e02013-11-28 11:14:43 +01001800 RB_CLEAR_NODE(&p->dl.rb_node);
1801 hrtimer_init(&p->dl.dl_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1802 p->dl.dl_runtime = p->dl.runtime = 0;
1803 p->dl.dl_deadline = p->dl.deadline = 0;
Harald Gustafsson755378a2013-11-07 14:43:40 +01001804 p->dl.dl_period = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001805 p->dl.flags = 0;
1806
Peter Zijlstrafa717062008-01-25 21:08:27 +01001807 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07001808
Avi Kivitye107be32007-07-26 13:40:43 +02001809#ifdef CONFIG_PREEMPT_NOTIFIERS
1810 INIT_HLIST_HEAD(&p->preempt_notifiers);
1811#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001812
1813#ifdef CONFIG_NUMA_BALANCING
1814 if (p->mm && atomic_read(&p->mm->mm_users) == 1) {
Mel Gorman7e8d16b2013-10-07 11:28:54 +01001815 p->mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001816 p->mm->numa_scan_seq = 0;
1817 }
1818
Rik van Riel5e1576e2013-10-07 11:29:26 +01001819 if (clone_flags & CLONE_VM)
1820 p->numa_preferred_nid = current->numa_preferred_nid;
1821 else
1822 p->numa_preferred_nid = -1;
1823
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001824 p->node_stamp = 0ULL;
1825 p->numa_scan_seq = p->mm ? p->mm->numa_scan_seq : 0;
Peter Zijlstra4b96a292012-10-25 14:16:47 +02001826 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001827 p->numa_work.next = &p->numa_work;
Rik van Rielff1df892014-01-27 17:03:41 -05001828 p->numa_faults_memory = NULL;
1829 p->numa_faults_buffer_memory = NULL;
Rik van Riel7e2703e2014-01-27 17:03:45 -05001830 p->last_task_numa_placement = 0;
1831 p->last_sum_exec_runtime = 0;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01001832
1833 INIT_LIST_HEAD(&p->numa_entry);
1834 p->numa_group = NULL;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001835#endif /* CONFIG_NUMA_BALANCING */
Ingo Molnardd41f592007-07-09 18:51:59 +02001836}
1837
Mel Gorman1a687c22012-11-22 11:16:36 +00001838#ifdef CONFIG_NUMA_BALANCING
Mel Gorman3105b862012-11-23 11:23:49 +00001839#ifdef CONFIG_SCHED_DEBUG
Mel Gorman1a687c22012-11-22 11:16:36 +00001840void set_numabalancing_state(bool enabled)
1841{
1842 if (enabled)
1843 sched_feat_set("NUMA");
1844 else
1845 sched_feat_set("NO_NUMA");
1846}
Mel Gorman3105b862012-11-23 11:23:49 +00001847#else
1848__read_mostly bool numabalancing_enabled;
1849
1850void set_numabalancing_state(bool enabled)
1851{
1852 numabalancing_enabled = enabled;
1853}
1854#endif /* CONFIG_SCHED_DEBUG */
Andi Kleen54a43d52014-01-23 15:53:13 -08001855
1856#ifdef CONFIG_PROC_SYSCTL
1857int sysctl_numa_balancing(struct ctl_table *table, int write,
1858 void __user *buffer, size_t *lenp, loff_t *ppos)
1859{
1860 struct ctl_table t;
1861 int err;
1862 int state = numabalancing_enabled;
1863
1864 if (write && !capable(CAP_SYS_ADMIN))
1865 return -EPERM;
1866
1867 t = *table;
1868 t.data = &state;
1869 err = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
1870 if (err < 0)
1871 return err;
1872 if (write)
1873 set_numabalancing_state(state);
1874 return err;
1875}
1876#endif
1877#endif
Mel Gorman1a687c22012-11-22 11:16:36 +00001878
Ingo Molnardd41f592007-07-09 18:51:59 +02001879/*
1880 * fork()/clone()-time setup:
1881 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001882int sched_fork(unsigned long clone_flags, struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02001883{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001884 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001885 int cpu = get_cpu();
1886
Rik van Riel5e1576e2013-10-07 11:29:26 +01001887 __sched_fork(clone_flags, p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001888 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01001889 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001890 * nobody will actually run it, and a signal or other external
1891 * event cannot wake it up and insert it on the runqueue either.
1892 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01001893 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001894
Ingo Molnarb29739f2006-06-27 02:54:51 -07001895 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02001896 * Make sure we do not leak PI boosting priority to the child.
1897 */
1898 p->prio = current->normal_prio;
1899
1900 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001901 * Revert to default priority/policy on fork if requested.
1902 */
1903 if (unlikely(p->sched_reset_on_fork)) {
Dario Faggioliaab03e02013-11-28 11:14:43 +01001904 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001905 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001906 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02001907 p->rt_priority = 0;
1908 } else if (PRIO_TO_NICE(p->static_prio) < 0)
1909 p->static_prio = NICE_TO_PRIO(0);
1910
1911 p->prio = p->normal_prio = __normal_prio(p);
1912 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001913
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001914 /*
1915 * We don't need the reset flag anymore after the fork. It has
1916 * fulfilled its duty:
1917 */
1918 p->sched_reset_on_fork = 0;
1919 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02001920
Dario Faggioliaab03e02013-11-28 11:14:43 +01001921 if (dl_prio(p->prio)) {
1922 put_cpu();
1923 return -EAGAIN;
1924 } else if (rt_prio(p->prio)) {
1925 p->sched_class = &rt_sched_class;
1926 } else {
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001927 p->sched_class = &fair_sched_class;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001928 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001929
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001930 if (p->sched_class->task_fork)
1931 p->sched_class->task_fork(p);
1932
Peter Zijlstra86951592010-06-22 11:44:53 +02001933 /*
1934 * The child is not yet in the pid-hash so no cgroup attach races,
1935 * and the cgroup is pinned to this child due to cgroup_fork()
1936 * is ran before sched_fork().
1937 *
1938 * Silence PROVE_RCU.
1939 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001940 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001941 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001942 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001943
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001944#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001945 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001946 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001948#if defined(CONFIG_SMP)
1949 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07001950#endif
Peter Zijlstra01028742013-08-14 14:55:46 +02001951 init_task_preempt_count(p);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001952#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05001953 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001954 RB_CLEAR_NODE(&p->pushable_dl_tasks);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001955#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05001956
Nick Piggin476d1392005-06-25 14:57:29 -07001957 put_cpu();
Dario Faggioliaab03e02013-11-28 11:14:43 +01001958 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
Dario Faggioli332ac172013-11-07 14:43:45 +01001961unsigned long to_ratio(u64 period, u64 runtime)
1962{
1963 if (runtime == RUNTIME_INF)
1964 return 1ULL << 20;
1965
1966 /*
1967 * Doing this here saves a lot of checks in all
1968 * the calling paths, and returning zero seems
1969 * safe for them anyway.
1970 */
1971 if (period == 0)
1972 return 0;
1973
1974 return div64_u64(runtime << 20, period);
1975}
1976
1977#ifdef CONFIG_SMP
1978inline struct dl_bw *dl_bw_of(int i)
1979{
1980 return &cpu_rq(i)->rd->dl_bw;
1981}
1982
Peter Zijlstrade212f12013-12-19 11:54:45 +01001983static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001984{
Peter Zijlstrade212f12013-12-19 11:54:45 +01001985 struct root_domain *rd = cpu_rq(i)->rd;
1986 int cpus = 0;
1987
1988 for_each_cpu_and(i, rd->span, cpu_active_mask)
1989 cpus++;
1990
1991 return cpus;
Dario Faggioli332ac172013-11-07 14:43:45 +01001992}
1993#else
1994inline struct dl_bw *dl_bw_of(int i)
1995{
1996 return &cpu_rq(i)->dl.dl_bw;
1997}
1998
Peter Zijlstrade212f12013-12-19 11:54:45 +01001999static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01002000{
2001 return 1;
2002}
2003#endif
2004
2005static inline
2006void __dl_clear(struct dl_bw *dl_b, u64 tsk_bw)
2007{
2008 dl_b->total_bw -= tsk_bw;
2009}
2010
2011static inline
2012void __dl_add(struct dl_bw *dl_b, u64 tsk_bw)
2013{
2014 dl_b->total_bw += tsk_bw;
2015}
2016
2017static inline
2018bool __dl_overflow(struct dl_bw *dl_b, int cpus, u64 old_bw, u64 new_bw)
2019{
2020 return dl_b->bw != -1 &&
2021 dl_b->bw * cpus < dl_b->total_bw - old_bw + new_bw;
2022}
2023
2024/*
2025 * We must be sure that accepting a new task (or allowing changing the
2026 * parameters of an existing one) is consistent with the bandwidth
2027 * constraints. If yes, this function also accordingly updates the currently
2028 * allocated bandwidth to reflect the new situation.
2029 *
2030 * This function is called while holding p's rq->lock.
2031 */
2032static int dl_overflow(struct task_struct *p, int policy,
2033 const struct sched_attr *attr)
2034{
2035
2036 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
Steven Rostedt4df16382014-02-19 13:53:35 -05002037 u64 period = attr->sched_period ?: attr->sched_deadline;
Dario Faggioli332ac172013-11-07 14:43:45 +01002038 u64 runtime = attr->sched_runtime;
2039 u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
Peter Zijlstrade212f12013-12-19 11:54:45 +01002040 int cpus, err = -1;
Dario Faggioli332ac172013-11-07 14:43:45 +01002041
2042 if (new_bw == p->dl.dl_bw)
2043 return 0;
2044
2045 /*
2046 * Either if a task, enters, leave, or stays -deadline but changes
2047 * its parameters, we may need to update accordingly the total
2048 * allocated bandwidth of the container.
2049 */
2050 raw_spin_lock(&dl_b->lock);
Peter Zijlstrade212f12013-12-19 11:54:45 +01002051 cpus = dl_bw_cpus(task_cpu(p));
Dario Faggioli332ac172013-11-07 14:43:45 +01002052 if (dl_policy(policy) && !task_has_dl_policy(p) &&
2053 !__dl_overflow(dl_b, cpus, 0, new_bw)) {
2054 __dl_add(dl_b, new_bw);
2055 err = 0;
2056 } else if (dl_policy(policy) && task_has_dl_policy(p) &&
2057 !__dl_overflow(dl_b, cpus, p->dl.dl_bw, new_bw)) {
2058 __dl_clear(dl_b, p->dl.dl_bw);
2059 __dl_add(dl_b, new_bw);
2060 err = 0;
2061 } else if (!dl_policy(policy) && task_has_dl_policy(p)) {
2062 __dl_clear(dl_b, p->dl.dl_bw);
2063 err = 0;
2064 }
2065 raw_spin_unlock(&dl_b->lock);
2066
2067 return err;
2068}
2069
2070extern void init_dl_bw(struct dl_bw *dl_b);
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072/*
2073 * wake_up_new_task - wake up a newly created task for the first time.
2074 *
2075 * This function will do some initial scheduler statistics housekeeping
2076 * that must be done for every newly created context, then puts the task
2077 * on the runqueue and wakes it.
2078 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02002079void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
2081 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002082 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002083
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002084 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002085#ifdef CONFIG_SMP
2086 /*
2087 * Fork balancing, do it here and not earlier because:
2088 * - cpus_allowed can change in the fork path
2089 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002090 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01002091 set_task_cpu(p, select_task_rq(p, task_cpu(p), SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002092#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Alex Shia75cdaa2013-06-20 10:18:47 +08002094 /* Initialize new task's runnable average */
2095 init_task_runnable_average(p);
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002096 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002097 activate_task(rq, p, 0);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002098 p->on_rq = 1;
Peter Zijlstra89363382011-04-05 17:23:42 +02002099 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02002100 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002101#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002102 if (p->sched_class->task_woken)
2103 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002104#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002105 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
Avi Kivitye107be32007-07-26 13:40:43 +02002108#ifdef CONFIG_PREEMPT_NOTIFIERS
2109
2110/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002111 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002112 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002113 */
2114void preempt_notifier_register(struct preempt_notifier *notifier)
2115{
2116 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2117}
2118EXPORT_SYMBOL_GPL(preempt_notifier_register);
2119
2120/**
2121 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002122 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002123 *
2124 * This is safe to call from within a preemption notifier.
2125 */
2126void preempt_notifier_unregister(struct preempt_notifier *notifier)
2127{
2128 hlist_del(&notifier->link);
2129}
2130EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2131
2132static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2133{
2134 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002135
Sasha Levinb67bfe02013-02-27 17:06:00 -08002136 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002137 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2138}
2139
2140static void
2141fire_sched_out_preempt_notifiers(struct task_struct *curr,
2142 struct task_struct *next)
2143{
2144 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002145
Sasha Levinb67bfe02013-02-27 17:06:00 -08002146 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002147 notifier->ops->sched_out(notifier, next);
2148}
2149
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002150#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002151
2152static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2153{
2154}
2155
2156static void
2157fire_sched_out_preempt_notifiers(struct task_struct *curr,
2158 struct task_struct *next)
2159{
2160}
2161
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002162#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002165 * prepare_task_switch - prepare to switch tasks
2166 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002167 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002168 * @next: the task we are going to switch to.
2169 *
2170 * This is called with the rq lock held and interrupts off. It must
2171 * be paired with a subsequent finish_task_switch after the context
2172 * switch.
2173 *
2174 * prepare_task_switch sets up locking and calls architecture specific
2175 * hooks.
2176 */
Avi Kivitye107be32007-07-26 13:40:43 +02002177static inline void
2178prepare_task_switch(struct rq *rq, struct task_struct *prev,
2179 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002180{
Andrew Vagin895dd922012-07-12 14:14:29 +04002181 trace_sched_switch(prev, next);
Michael S. Tsirkin43148952013-09-22 17:20:54 +03002182 sched_info_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002183 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02002184 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002185 prepare_lock_switch(rq, next);
2186 prepare_arch_switch(next);
2187}
2188
2189/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002191 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 * @prev: the thread we just switched away from.
2193 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002194 * finish_task_switch must be called after the context switch, paired
2195 * with a prepare_task_switch call before the context switch.
2196 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2197 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 *
2199 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002200 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 * with the lock held can cause deadlocks; see schedule() for
2202 * details.)
2203 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002204static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 __releases(rq->lock)
2206{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002208 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 rq->prev_mm = NULL;
2211
2212 /*
2213 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002214 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002215 * schedule one last time. The schedule call will never return, and
2216 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002217 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 * still held, otherwise prev could be scheduled on another cpu, die
2219 * there before we look at prev->state, and then the reference would
2220 * be dropped twice.
2221 * Manfred Spraul <manfred@colorfullife.com>
2222 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002223 prev_state = prev->state;
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +02002224 vtime_task_switch(prev);
Nick Piggin4866cde2005-06-25 14:57:23 -07002225 finish_arch_switch(prev);
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002226 perf_event_task_sched_in(prev, current);
Nick Piggin4866cde2005-06-25 14:57:23 -07002227 finish_lock_switch(rq, prev);
Catalin Marinas01f23e12011-11-27 21:43:10 +00002228 finish_arch_post_lock_switch();
Steven Rostedte8fa1362008-01-25 21:08:05 +01002229
Avi Kivitye107be32007-07-26 13:40:43 +02002230 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 if (mm)
2232 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002233 if (unlikely(prev_state == TASK_DEAD)) {
Dario Faggiolie6c390f2013-11-07 14:43:35 +01002234 if (prev->sched_class->task_dead)
2235 prev->sched_class->task_dead(prev);
2236
bibo maoc6fd91f2006-03-26 01:38:20 -08002237 /*
2238 * Remove function-return probe instances associated with this
2239 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002240 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002241 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002243 }
Frederic Weisbecker99e5ada2013-04-20 17:11:50 +02002244
2245 tick_nohz_task_switch(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
Gregory Haskins3f029d32009-07-29 11:08:47 -04002248#ifdef CONFIG_SMP
2249
Gregory Haskins3f029d32009-07-29 11:08:47 -04002250/* rq->lock is NOT held, but preemption is disabled */
2251static inline void post_schedule(struct rq *rq)
2252{
2253 if (rq->post_schedule) {
2254 unsigned long flags;
2255
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002256 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002257 if (rq->curr->sched_class->post_schedule)
2258 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002259 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002260
2261 rq->post_schedule = 0;
2262 }
2263}
2264
2265#else
2266
Gregory Haskins3f029d32009-07-29 11:08:47 -04002267static inline void post_schedule(struct rq *rq)
2268{
2269}
2270
2271#endif
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273/**
2274 * schedule_tail - first thing a freshly forked thread must call.
2275 * @prev: the thread we just switched away from.
2276 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002277asmlinkage __visible void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 __releases(rq->lock)
2279{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002280 struct rq *rq = this_rq();
2281
Nick Piggin4866cde2005-06-25 14:57:23 -07002282 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002283
Gregory Haskins3f029d32009-07-29 11:08:47 -04002284 /*
2285 * FIXME: do we need to worry about rq being invalidated by the
2286 * task_switch?
2287 */
2288 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002289
Nick Piggin4866cde2005-06-25 14:57:23 -07002290#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2291 /* In this case, finish_task_switch does not reenable preemption */
2292 preempt_enable();
2293#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002295 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296}
2297
2298/*
2299 * context_switch - switch to the new MM and the new
2300 * thread's register state.
2301 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002302static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002303context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002304 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305{
Ingo Molnardd41f592007-07-09 18:51:59 +02002306 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Avi Kivitye107be32007-07-26 13:40:43 +02002308 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002309
Ingo Molnardd41f592007-07-09 18:51:59 +02002310 mm = next->mm;
2311 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002312 /*
2313 * For paravirt, this is coupled with an exit in switch_to to
2314 * combine the page table reload and the switch backend into
2315 * one hypercall.
2316 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002317 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002318
Heiko Carstens31915ab2010-09-16 14:42:25 +02002319 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 next->active_mm = oldmm;
2321 atomic_inc(&oldmm->mm_count);
2322 enter_lazy_tlb(oldmm, next);
2323 } else
2324 switch_mm(oldmm, mm, next);
2325
Heiko Carstens31915ab2010-09-16 14:42:25 +02002326 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 rq->prev_mm = oldmm;
2329 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002330 /*
2331 * Since the runqueue lock will be released by the next
2332 * task (which is an invalid locking op but in the case
2333 * of the scheduler it's an obvious special-case), so we
2334 * do an early lockdep release here:
2335 */
2336#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002337 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002338#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002340 context_tracking_task_switch(prev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 /* Here we just switch the register state and the stack. */
2342 switch_to(prev, next, prev);
2343
Ingo Molnardd41f592007-07-09 18:51:59 +02002344 barrier();
2345 /*
2346 * this_rq must be evaluated again because prev may have moved
2347 * CPUs since it called schedule(), thus the 'rq' on its stack
2348 * frame will be invalid.
2349 */
2350 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
2353/*
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002354 * nr_running and nr_context_switches:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 *
2356 * externally visible scheduler statistics: current number of runnable
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002357 * threads, total number of context switches performed since bootup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 */
2359unsigned long nr_running(void)
2360{
2361 unsigned long i, sum = 0;
2362
2363 for_each_online_cpu(i)
2364 sum += cpu_rq(i)->nr_running;
2365
2366 return sum;
2367}
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369unsigned long long nr_context_switches(void)
2370{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002371 int i;
2372 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002374 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 sum += cpu_rq(i)->nr_switches;
2376
2377 return sum;
2378}
2379
2380unsigned long nr_iowait(void)
2381{
2382 unsigned long i, sum = 0;
2383
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002384 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2386
2387 return sum;
2388}
2389
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002390unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07002391{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002392 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07002393 return atomic_read(&this->nr_iowait);
2394}
2395
Ingo Molnardd41f592007-07-09 18:51:59 +02002396#ifdef CONFIG_SMP
2397
Ingo Molnar48f24c42006-07-03 00:25:40 -07002398/*
Peter Zijlstra38022902009-12-16 18:04:37 +01002399 * sched_exec - execve() is a valuable balancing opportunity, because at
2400 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 */
Peter Zijlstra38022902009-12-16 18:04:37 +01002402void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
Peter Zijlstra38022902009-12-16 18:04:37 +01002404 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01002406 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01002407
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002408 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstraac66f542013-10-07 11:29:16 +01002409 dest_cpu = p->sched_class->select_task_rq(p, task_cpu(p), SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002410 if (dest_cpu == smp_processor_id())
2411 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01002412
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002413 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02002414 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07002415
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002416 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
2417 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return;
2419 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01002420unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002421 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424#endif
2425
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426DEFINE_PER_CPU(struct kernel_stat, kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002427DEFINE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429EXPORT_PER_CPU_SYMBOL(kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002430EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002433 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07002434 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002435 *
2436 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002438static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
2439{
2440 u64 ns = 0;
2441
Mike Galbraith4036ac12014-06-24 07:49:40 +02002442 /*
2443 * Must be ->curr _and_ ->on_rq. If dequeued, we would
2444 * project cycles that may never be accounted to this
2445 * thread, breaking clock_gettime().
2446 */
2447 if (task_current(rq, p) && p->on_rq) {
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002448 update_rq_clock(rq);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02002449 ns = rq_clock_task(rq) - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002450 if ((s64)ns < 0)
2451 ns = 0;
2452 }
2453
2454 return ns;
2455}
2456
Frank Mayharbb34d922008-09-12 09:54:39 -07002457unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02002460 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07002461 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002462
Ingo Molnar41b86e92007-07-09 18:51:58 +02002463 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002464 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002465 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02002466
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002467 return ns;
2468}
Frank Mayharf06febc2008-09-12 09:54:39 -07002469
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002470/*
2471 * Return accounted runtime for the task.
2472 * In case the task is currently running, return the runtime plus current's
2473 * pending runtime that have not been accounted yet.
2474 */
2475unsigned long long task_sched_runtime(struct task_struct *p)
2476{
2477 unsigned long flags;
2478 struct rq *rq;
2479 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002480
Peter Zijlstra911b2892013-11-11 18:21:56 +01002481#if defined(CONFIG_64BIT) && defined(CONFIG_SMP)
2482 /*
2483 * 64-bit doesn't need locks to atomically read a 64bit value.
2484 * So we have a optimization chance when the task's delta_exec is 0.
2485 * Reading ->on_cpu is racy, but this is ok.
2486 *
2487 * If we race with it leaving cpu, we'll take a lock. So we're correct.
2488 * If we race with it entering cpu, unaccounted time is 0. This is
2489 * indistinguishable from the read occurring a few cycles earlier.
Mike Galbraith4036ac12014-06-24 07:49:40 +02002490 * If we see ->on_cpu without ->on_rq, the task is leaving, and has
2491 * been accounted, so we're correct here as well.
Peter Zijlstra911b2892013-11-11 18:21:56 +01002492 */
Mike Galbraith4036ac12014-06-24 07:49:40 +02002493 if (!p->on_cpu || !p->on_rq)
Peter Zijlstra911b2892013-11-11 18:21:56 +01002494 return p->se.sum_exec_runtime;
2495#endif
2496
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002497 rq = task_rq_lock(p, &flags);
2498 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002499 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002500
2501 return ns;
2502}
2503
Balbir Singh49048622008-09-05 18:12:23 +02002504/*
Christoph Lameter7835b982006-12-10 02:20:22 -08002505 * This function gets called by the timer code, with HZ frequency.
2506 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08002507 */
2508void scheduler_tick(void)
2509{
Christoph Lameter7835b982006-12-10 02:20:22 -08002510 int cpu = smp_processor_id();
2511 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002512 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002513
2514 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08002515
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002516 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002517 update_rq_clock(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01002518 curr->sched_class->task_tick(rq, curr, 0);
Alex Shi83dfd522013-06-20 10:18:49 +08002519 update_cpu_load_active(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002520 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02002521
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002522 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002523
Christoph Lametere418e1c2006-12-10 02:20:23 -08002524#ifdef CONFIG_SMP
Suresh Siddha6eb57e02011-10-03 15:09:01 -07002525 rq->idle_balance = idle_cpu(cpu);
Daniel Lezcano7caff662014-01-06 12:34:38 +01002526 trigger_load_balance(rq);
Christoph Lametere418e1c2006-12-10 02:20:23 -08002527#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002528 rq_last_tick_reset(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529}
2530
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002531#ifdef CONFIG_NO_HZ_FULL
2532/**
2533 * scheduler_tick_max_deferment
2534 *
2535 * Keep at least one tick per second when a single
2536 * active task is running because the scheduler doesn't
2537 * yet completely support full dynticks environment.
2538 *
2539 * This makes sure that uptime, CFS vruntime, load
2540 * balancing, etc... continue to move forward, even
2541 * with a very low granularity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02002542 *
2543 * Return: Maximum deferment in nanoseconds.
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002544 */
2545u64 scheduler_tick_max_deferment(void)
2546{
2547 struct rq *rq = this_rq();
2548 unsigned long next, now = ACCESS_ONCE(jiffies);
2549
2550 next = rq->last_sched_tick + HZ;
2551
2552 if (time_before_eq(next, now))
2553 return 0;
2554
Kevin Hilman8fe8ff02014-01-15 14:51:38 +01002555 return jiffies_to_nsecs(next - now);
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002556}
2557#endif
2558
Lai Jiangshan132380a2009-04-02 14:18:25 +08002559notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002560{
2561 if (in_lock_functions(addr)) {
2562 addr = CALLER_ADDR2;
2563 if (in_lock_functions(addr))
2564 addr = CALLER_ADDR3;
2565 }
2566 return addr;
2567}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05002569#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
2570 defined(CONFIG_PREEMPT_TRACER))
2571
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002572void preempt_count_add(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002574#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 /*
2576 * Underflow?
2577 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002578 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
2579 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002580#endif
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002581 __preempt_count_add(val);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002582#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 /*
2584 * Spinlock count overflowing soon?
2585 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002586 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
2587 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002588#endif
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002589 if (preempt_count() == val) {
2590 unsigned long ip = get_parent_ip(CALLER_ADDR1);
2591#ifdef CONFIG_DEBUG_PREEMPT
2592 current->preempt_disable_ip = ip;
2593#endif
2594 trace_preempt_off(CALLER_ADDR0, ip);
2595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002597EXPORT_SYMBOL(preempt_count_add);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002598NOKPROBE_SYMBOL(preempt_count_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002600void preempt_count_sub(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002602#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 /*
2604 * Underflow?
2605 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01002606 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002607 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 /*
2609 * Is the spinlock portion underflowing?
2610 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002611 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
2612 !(preempt_count() & PREEMPT_MASK)))
2613 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002614#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002615
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002616 if (preempt_count() == val)
2617 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002618 __preempt_count_sub(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002620EXPORT_SYMBOL(preempt_count_sub);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002621NOKPROBE_SYMBOL(preempt_count_sub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623#endif
2624
2625/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002626 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002628static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
Dave Jones664dfa62011-12-22 16:39:30 -05002630 if (oops_in_progress)
2631 return;
2632
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01002633 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
2634 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02002635
Ingo Molnardd41f592007-07-09 18:51:59 +02002636 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07002637 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02002638 if (irqs_disabled())
2639 print_irqtrace_events(prev);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002640#ifdef CONFIG_DEBUG_PREEMPT
2641 if (in_atomic_preempt_off()) {
2642 pr_err("Preemption disabled at:");
2643 print_ip_sym(current->preempt_disable_ip);
2644 pr_cont("\n");
2645 }
2646#endif
Stephen Boyd6135fc12012-03-28 17:10:47 -07002647 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +10302648 add_taint(TAINT_WARN, LOCKDEP_STILL_OK);
Ingo Molnardd41f592007-07-09 18:51:59 +02002649}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Ingo Molnardd41f592007-07-09 18:51:59 +02002651/*
2652 * Various schedule()-time debugging checks and statistics:
2653 */
2654static inline void schedule_debug(struct task_struct *prev)
2655{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002657 * Test if we are atomic. Since do_exit() needs to call into
Oleg Nesterov192301e2013-11-13 16:45:38 +01002658 * schedule() atomically, we ignore that path. Otherwise whine
2659 * if we are scheduling when we should not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 */
Oleg Nesterov192301e2013-11-13 16:45:38 +01002661 if (unlikely(in_atomic_preempt_off() && prev->state != TASK_DEAD))
Ingo Molnardd41f592007-07-09 18:51:59 +02002662 __schedule_bug(prev);
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07002663 rcu_sleep_check();
Ingo Molnardd41f592007-07-09 18:51:59 +02002664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2666
Ingo Molnar2d723762007-10-15 17:00:12 +02002667 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02002668}
2669
2670/*
2671 * Pick up the highest-prio task:
2672 */
2673static inline struct task_struct *
Peter Zijlstra606dba22012-02-11 06:05:00 +01002674pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02002675{
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002676 const struct sched_class *class = &fair_sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02002677 struct task_struct *p;
2678
2679 /*
2680 * Optimization: we know that if all tasks are in
2681 * the fair class we can call that function directly:
2682 */
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002683 if (likely(prev->sched_class == class &&
Peter Zijlstra38033c32014-01-23 20:32:21 +01002684 rq->nr_running == rq->cfs.h_nr_running)) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002685 p = fair_sched_class.pick_next_task(rq, prev);
Peter Zijlstra6ccdc842014-04-24 12:00:47 +02002686 if (unlikely(p == RETRY_TASK))
2687 goto again;
2688
2689 /* assumes fair_sched_class->next == idle_sched_class */
2690 if (unlikely(!p))
2691 p = idle_sched_class.pick_next_task(rq, prev);
2692
2693 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02002694 }
2695
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002696again:
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002697 for_each_class(class) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002698 p = class->pick_next_task(rq, prev);
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002699 if (p) {
2700 if (unlikely(p == RETRY_TASK))
2701 goto again;
Ingo Molnardd41f592007-07-09 18:51:59 +02002702 return p;
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002703 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002704 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002705
2706 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02002707}
2708
2709/*
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002710 * __schedule() is the main scheduler function.
Pekka Enbergedde96e2012-08-04 11:49:47 +03002711 *
2712 * The main means of driving the scheduler and thus entering this function are:
2713 *
2714 * 1. Explicit blocking: mutex, semaphore, waitqueue, etc.
2715 *
2716 * 2. TIF_NEED_RESCHED flag is checked on interrupt and userspace return
2717 * paths. For example, see arch/x86/entry_64.S.
2718 *
2719 * To drive preemption between tasks, the scheduler sets the flag in timer
2720 * interrupt handler scheduler_tick().
2721 *
2722 * 3. Wakeups don't really cause entry into schedule(). They add a
2723 * task to the run-queue and that's it.
2724 *
2725 * Now, if the new task added to the run-queue preempts the current
2726 * task, then the wakeup sets TIF_NEED_RESCHED and schedule() gets
2727 * called on the nearest possible occasion:
2728 *
2729 * - If the kernel is preemptible (CONFIG_PREEMPT=y):
2730 *
2731 * - in syscall or exception context, at the next outmost
2732 * preempt_enable(). (this might be as soon as the wake_up()'s
2733 * spin_unlock()!)
2734 *
2735 * - in IRQ context, return from interrupt-handler to
2736 * preemptible context
2737 *
2738 * - If the kernel is not preemptible (CONFIG_PREEMPT is not set)
2739 * then at the next:
2740 *
2741 * - cond_resched() call
2742 * - explicit schedule() call
2743 * - return from syscall or exception to user-space
2744 * - return from interrupt-handler to user-space
Ingo Molnardd41f592007-07-09 18:51:59 +02002745 */
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002746static void __sched __schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02002747{
2748 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08002749 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02002750 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02002751 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002752
Peter Zijlstraff743342009-03-13 12:21:26 +01002753need_resched:
2754 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02002755 cpu = smp_processor_id();
2756 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07002757 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002758 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02002759
Ingo Molnardd41f592007-07-09 18:51:59 +02002760 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Peter Zijlstra31656512008-07-18 18:01:23 +02002762 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02002763 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002764
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02002765 /*
2766 * Make sure that signal_pending_state()->signal_pending() below
2767 * can't be reordered with __set_current_state(TASK_INTERRUPTIBLE)
2768 * done by the caller to avoid the race with signal_wake_up().
2769 */
2770 smp_mb__before_spinlock();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002771 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002773 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02002774 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02002775 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002776 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002777 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02002778 deactivate_task(rq, prev, DEQUEUE_SLEEP);
2779 prev->on_rq = 0;
2780
Tejun Heo21aa9af2010-06-08 21:40:37 +02002781 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02002782 * If a worker went to sleep, notify and ask workqueue
2783 * whether it wants to wake up a task to maintain
2784 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002785 */
2786 if (prev->flags & PF_WQ_WORKER) {
2787 struct task_struct *to_wakeup;
2788
2789 to_wakeup = wq_worker_sleeping(prev, cpu);
2790 if (to_wakeup)
2791 try_to_wake_up_local(to_wakeup);
2792 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02002793 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002794 switch_count = &prev->nvcsw;
2795 }
2796
Peter Zijlstra606dba22012-02-11 06:05:00 +01002797 if (prev->on_rq || rq->skip_clock_update < 0)
2798 update_rq_clock(rq);
2799
2800 next = pick_next_task(rq, prev);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002801 clear_tsk_need_resched(prev);
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002802 clear_preempt_need_resched();
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002803 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 rq->nr_switches++;
2807 rq->curr = next;
2808 ++*switch_count;
2809
Ingo Molnardd41f592007-07-09 18:51:59 +02002810 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002811 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002812 * The context switch have flipped the stack from under us
2813 * and restored the local variables which were saved when
2814 * this task called schedule() in the past. prev == current
2815 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002816 */
2817 cpu = smp_processor_id();
2818 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002820 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
Gregory Haskins3f029d32009-07-29 11:08:47 -04002822 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002824 sched_preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01002825 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 goto need_resched;
2827}
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002828
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002829static inline void sched_submit_work(struct task_struct *tsk)
2830{
Thomas Gleixner3c7d5182011-07-17 20:46:52 +02002831 if (!tsk->state || tsk_is_pi_blocked(tsk))
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002832 return;
2833 /*
2834 * If we are going to sleep and we have plugged IO queued,
2835 * make sure to submit it to avoid deadlocks.
2836 */
2837 if (blk_needs_flush_plug(tsk))
2838 blk_schedule_flush_plug(tsk);
2839}
2840
Andi Kleen722a9f92014-05-02 00:44:38 +02002841asmlinkage __visible void __sched schedule(void)
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002842{
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002843 struct task_struct *tsk = current;
2844
2845 sched_submit_work(tsk);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002846 __schedule();
2847}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848EXPORT_SYMBOL(schedule);
2849
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002850#ifdef CONFIG_CONTEXT_TRACKING
Andi Kleen722a9f92014-05-02 00:44:38 +02002851asmlinkage __visible void __sched schedule_user(void)
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002852{
2853 /*
2854 * If we come here after a random call to set_need_resched(),
2855 * or we have been woken up remotely but the IPI has not yet arrived,
2856 * we haven't yet exited the RCU idle mode. Do it here manually until
2857 * we find a better solution.
2858 */
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002859 user_exit();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002860 schedule();
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002861 user_enter();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002862}
2863#endif
2864
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002865/**
2866 * schedule_preempt_disabled - called with preemption disabled
2867 *
2868 * Returns with preemption disabled. Note: preempt_count must be 1
2869 */
2870void __sched schedule_preempt_disabled(void)
2871{
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002872 sched_preempt_enable_no_resched();
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002873 schedule();
2874 preempt_disable();
2875}
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877#ifdef CONFIG_PREEMPT
2878/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002879 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002880 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 * occur there and call schedule directly.
2882 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002883asmlinkage __visible void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 /*
2886 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002887 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 */
Frederic Weisbeckerfbb00b52013-06-19 23:56:22 +02002889 if (likely(!preemptible()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 return;
2891
Andi Kleen3a5c3592007-10-15 17:00:14 +02002892 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002893 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002894 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002895 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002896
2897 /*
2898 * Check again in case we missed a preemption opportunity
2899 * between schedule and now.
2900 */
2901 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002902 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903}
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002904NOKPROBE_SYMBOL(preempt_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905EXPORT_SYMBOL(preempt_schedule);
Thomas Gleixner32e475d2013-11-21 12:41:44 +01002906#endif /* CONFIG_PREEMPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002909 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 * off of irq context.
2911 * Note, that this is called and return with irqs disabled. This will
2912 * protect us against recursive calling from irq.
2913 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002914asmlinkage __visible void __sched preempt_schedule_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915{
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002916 enum ctx_state prev_state;
Ingo Molnar6478d882008-01-25 21:08:33 +01002917
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002918 /* Catch callers which need to be fixed */
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002919 BUG_ON(preempt_count() || !irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002921 prev_state = exception_enter();
2922
Andi Kleen3a5c3592007-10-15 17:00:14 +02002923 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002924 __preempt_count_add(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002925 local_irq_enable();
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002926 __schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02002927 local_irq_disable();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002928 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002929
2930 /*
2931 * Check again in case we missed a preemption opportunity
2932 * between schedule and now.
2933 */
2934 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002935 } while (need_resched());
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002936
2937 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938}
2939
Peter Zijlstra63859d42009-09-15 19:14:42 +02002940int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002941 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942{
Peter Zijlstra63859d42009-09-15 19:14:42 +02002943 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945EXPORT_SYMBOL(default_wake_function);
2946
Ingo Molnarb29739f2006-06-27 02:54:51 -07002947#ifdef CONFIG_RT_MUTEXES
2948
2949/*
2950 * rt_mutex_setprio - set the current priority of a task
2951 * @p: task
2952 * @prio: prio value (kernel-internal form)
2953 *
2954 * This function changes the 'effective' priority of a task. It does
2955 * not touch ->normal_prio like __setscheduler().
2956 *
Thomas Gleixnerc365c292014-02-07 20:58:42 +01002957 * Used by the rt_mutex code to implement priority inheritance
2958 * logic. Call site only calls if the priority of the task changed.
Ingo Molnarb29739f2006-06-27 02:54:51 -07002959 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002960void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002961{
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002962 int oldprio, on_rq, running, enqueue_flag = 0;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002963 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002964 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002965
Dario Faggioliaab03e02013-11-28 11:14:43 +01002966 BUG_ON(prio > MAX_PRIO);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002967
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002968 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002969
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02002970 /*
2971 * Idle task boosting is a nono in general. There is one
2972 * exception, when PREEMPT_RT and NOHZ is active:
2973 *
2974 * The idle task calls get_next_timer_interrupt() and holds
2975 * the timer wheel base->lock on the CPU and another CPU wants
2976 * to access the timer (probably to cancel it). We can safely
2977 * ignore the boosting request, as the idle CPU runs this code
2978 * with interrupts disabled and will complete the lock
2979 * protected section without being interrupted. So there is no
2980 * real need to boost.
2981 */
2982 if (unlikely(p == rq->idle)) {
2983 WARN_ON(p != rq->curr);
2984 WARN_ON(p->pi_blocked_on);
2985 goto out_unlock;
2986 }
2987
Steven Rostedta8027072010-09-20 15:13:34 -04002988 trace_sched_pi_setprio(p, prio);
Andrew Mortond5f9f942007-05-08 20:27:06 -07002989 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002990 prev_class = p->sched_class;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002991 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01002992 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002993 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02002994 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002995 if (running)
2996 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02002997
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002998 /*
2999 * Boosting condition are:
3000 * 1. -rt task is running and holds mutex A
3001 * --> -dl task blocks on mutex A
3002 *
3003 * 2. -dl task is running and holds mutex A
3004 * --> -dl task blocks on mutex A and could preempt the
3005 * running task
3006 */
3007 if (dl_prio(prio)) {
Oleg Nesterov466af292014-06-06 18:52:06 +02003008 struct task_struct *pi_task = rt_mutex_get_top_task(p);
3009 if (!dl_prio(p->normal_prio) ||
3010 (pi_task && dl_entity_preempt(&pi_task->dl, &p->dl))) {
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003011 p->dl.dl_boosted = 1;
3012 p->dl.dl_throttled = 0;
3013 enqueue_flag = ENQUEUE_REPLENISH;
3014 } else
3015 p->dl.dl_boosted = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003016 p->sched_class = &dl_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003017 } else if (rt_prio(prio)) {
3018 if (dl_prio(oldprio))
3019 p->dl.dl_boosted = 0;
3020 if (oldprio < prio)
3021 enqueue_flag = ENQUEUE_HEAD;
Ingo Molnardd41f592007-07-09 18:51:59 +02003022 p->sched_class = &rt_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003023 } else {
3024 if (dl_prio(oldprio))
3025 p->dl.dl_boosted = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003026 p->sched_class = &fair_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003027 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003028
Ingo Molnarb29739f2006-06-27 02:54:51 -07003029 p->prio = prio;
3030
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003031 if (running)
3032 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003033 if (on_rq)
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003034 enqueue_task(rq, p, enqueue_flag);
Steven Rostedtcb469842008-01-25 21:08:22 +01003035
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003036 check_class_changed(rq, p, prev_class, oldprio);
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02003037out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003038 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003039}
Ingo Molnarb29739f2006-06-27 02:54:51 -07003040#endif
Dario Faggiolid50dde52013-11-07 14:43:36 +01003041
Ingo Molnar36c8b582006-07-03 00:25:41 -07003042void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043{
Ingo Molnardd41f592007-07-09 18:51:59 +02003044 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003046 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003048 if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 return;
3050 /*
3051 * We have to be careful, if called from sys_setpriority(),
3052 * the task might be in the middle of scheduling on another CPU.
3053 */
3054 rq = task_rq_lock(p, &flags);
3055 /*
3056 * The RT priorities are set via sched_setscheduler(), but we still
3057 * allow the 'normal' nice value to be set - but as expected
3058 * it wont have any effect on scheduling until the task is
Dario Faggioliaab03e02013-11-28 11:14:43 +01003059 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01003061 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 p->static_prio = NICE_TO_PRIO(nice);
3063 goto out_unlock;
3064 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003065 on_rq = p->on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003066 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02003067 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003070 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003071 old_prio = p->prio;
3072 p->prio = effective_prio(p);
3073 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Ingo Molnardd41f592007-07-09 18:51:59 +02003075 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01003076 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07003078 * If the task increased its priority or is running and
3079 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003081 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Kirill Tkhai88751252014-06-29 00:03:57 +04003082 resched_curr(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 }
3084out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003085 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087EXPORT_SYMBOL(set_user_nice);
3088
Matt Mackalle43379f2005-05-01 08:59:00 -07003089/*
3090 * can_nice - check if a task can reduce its nice value
3091 * @p: task
3092 * @nice: nice value
3093 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003094int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07003095{
Matt Mackall024f4742005-08-18 11:24:19 -07003096 /* convert nice value [19,-20] to rlimit style value [1,40] */
Dongsheng Yang7aa2c012014-05-08 18:33:49 +09003097 int nice_rlim = nice_to_rlimit(nice);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003098
Jiri Slaby78d7d402010-03-05 13:42:54 -08003099 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07003100 capable(CAP_SYS_NICE));
3101}
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103#ifdef __ARCH_WANT_SYS_NICE
3104
3105/*
3106 * sys_nice - change the priority of the current process.
3107 * @increment: priority increment
3108 *
3109 * sys_setpriority is a more generic, but much slower function that
3110 * does similar things.
3111 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003112SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003114 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
3116 /*
3117 * Setpriority might change our priority at the same moment.
3118 * We don't have to worry. Conceptually one call occurs first
3119 * and we have a single winner.
3120 */
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003121 increment = clamp(increment, -NICE_WIDTH, NICE_WIDTH);
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003122 nice = task_nice(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003124 nice = clamp_val(nice, MIN_NICE, MAX_NICE);
Matt Mackalle43379f2005-05-01 08:59:00 -07003125 if (increment < 0 && !can_nice(current, nice))
3126 return -EPERM;
3127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 retval = security_task_setnice(current, nice);
3129 if (retval)
3130 return retval;
3131
3132 set_user_nice(current, nice);
3133 return 0;
3134}
3135
3136#endif
3137
3138/**
3139 * task_prio - return the priority value of a given task.
3140 * @p: the task in question.
3141 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003142 * Return: The priority value as seen by users in /proc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 * RT tasks are offset by -200. Normal tasks are centered
3144 * around 0, value goes from -16 to +15.
3145 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003146int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147{
3148 return p->prio - MAX_RT_PRIO;
3149}
3150
3151/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 * idle_cpu - is a given cpu idle currently?
3153 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003154 *
3155 * Return: 1 if the CPU is currently idle. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 */
3157int idle_cpu(int cpu)
3158{
Thomas Gleixner908a3282011-09-15 15:32:06 +02003159 struct rq *rq = cpu_rq(cpu);
3160
3161 if (rq->curr != rq->idle)
3162 return 0;
3163
3164 if (rq->nr_running)
3165 return 0;
3166
3167#ifdef CONFIG_SMP
3168 if (!llist_empty(&rq->wake_list))
3169 return 0;
3170#endif
3171
3172 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173}
3174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175/**
3176 * idle_task - return the idle task for a given cpu.
3177 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003178 *
3179 * Return: The idle task for the cpu @cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003181struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182{
3183 return cpu_rq(cpu)->idle;
3184}
3185
3186/**
3187 * find_process_by_pid - find a process with a matching PID value.
3188 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003189 *
3190 * The task of @pid, if found. %NULL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003192static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07003194 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195}
3196
Dario Faggioliaab03e02013-11-28 11:14:43 +01003197/*
3198 * This function initializes the sched_dl_entity of a newly becoming
3199 * SCHED_DEADLINE task.
3200 *
3201 * Only the static values are considered here, the actual runtime and the
3202 * absolute deadline will be properly calculated when the task is enqueued
3203 * for the first time with its new policy.
3204 */
3205static void
3206__setparam_dl(struct task_struct *p, const struct sched_attr *attr)
3207{
3208 struct sched_dl_entity *dl_se = &p->dl;
3209
3210 init_dl_task_timer(dl_se);
3211 dl_se->dl_runtime = attr->sched_runtime;
3212 dl_se->dl_deadline = attr->sched_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003213 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003214 dl_se->flags = attr->sched_flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01003215 dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
Dario Faggioliaab03e02013-11-28 11:14:43 +01003216 dl_se->dl_throttled = 0;
3217 dl_se->dl_new = 1;
Juri Lelli5bfd1262014-04-15 13:49:04 +02003218 dl_se->dl_yielded = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003219}
3220
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003221static void __setscheduler_params(struct task_struct *p,
3222 const struct sched_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003224 int policy = attr->sched_policy;
3225
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003226 if (policy == -1) /* setparam */
3227 policy = p->policy;
3228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 p->policy = policy;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003230
Dario Faggioliaab03e02013-11-28 11:14:43 +01003231 if (dl_policy(policy))
3232 __setparam_dl(p, attr);
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003233 else if (fair_policy(policy))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003234 p->static_prio = NICE_TO_PRIO(attr->sched_nice);
3235
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003236 /*
3237 * __sched_setscheduler() ensures attr->sched_priority == 0 when
3238 * !rt_policy. Always setting this ensures that things like
3239 * getparam()/getattr() don't report silly values for !rt tasks.
3240 */
3241 p->rt_priority = attr->sched_priority;
Steven Rostedt383afd02014-03-11 19:24:20 -04003242 p->normal_prio = normal_prio(p);
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003243 set_load_weight(p);
3244}
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003245
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003246/* Actually do priority change: must hold pi & rq lock. */
3247static void __setscheduler(struct rq *rq, struct task_struct *p,
3248 const struct sched_attr *attr)
3249{
3250 __setscheduler_params(p, attr);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003251
Steven Rostedt383afd02014-03-11 19:24:20 -04003252 /*
3253 * If we get here, there was no pi waiters boosting the
3254 * task. It is safe to use the normal prio.
3255 */
3256 p->prio = normal_prio(p);
3257
Dario Faggioliaab03e02013-11-28 11:14:43 +01003258 if (dl_prio(p->prio))
3259 p->sched_class = &dl_sched_class;
3260 else if (rt_prio(p->prio))
Peter Zijlstraffd44db2009-11-10 20:12:01 +01003261 p->sched_class = &rt_sched_class;
3262 else
3263 p->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264}
Dario Faggioliaab03e02013-11-28 11:14:43 +01003265
3266static void
3267__getparam_dl(struct task_struct *p, struct sched_attr *attr)
3268{
3269 struct sched_dl_entity *dl_se = &p->dl;
3270
3271 attr->sched_priority = p->rt_priority;
3272 attr->sched_runtime = dl_se->dl_runtime;
3273 attr->sched_deadline = dl_se->dl_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003274 attr->sched_period = dl_se->dl_period;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003275 attr->sched_flags = dl_se->flags;
3276}
3277
3278/*
3279 * This function validates the new parameters of a -deadline task.
3280 * We ask for the deadline not being zero, and greater or equal
Harald Gustafsson755378a2013-11-07 14:43:40 +01003281 * than the runtime, as well as the period of being zero or
Dario Faggioli332ac172013-11-07 14:43:45 +01003282 * greater than deadline. Furthermore, we have to be sure that
Juri Lellib08278192014-05-13 14:11:31 +02003283 * user parameters are above the internal resolution of 1us (we
3284 * check sched_runtime only since it is always the smaller one) and
3285 * below 2^63 ns (we have to check both sched_deadline and
3286 * sched_period, as the latter can be zero).
Dario Faggioliaab03e02013-11-28 11:14:43 +01003287 */
3288static bool
3289__checkparam_dl(const struct sched_attr *attr)
3290{
Juri Lellib08278192014-05-13 14:11:31 +02003291 /* deadline != 0 */
3292 if (attr->sched_deadline == 0)
3293 return false;
3294
3295 /*
3296 * Since we truncate DL_SCALE bits, make sure we're at least
3297 * that big.
3298 */
3299 if (attr->sched_runtime < (1ULL << DL_SCALE))
3300 return false;
3301
3302 /*
3303 * Since we use the MSB for wrap-around and sign issues, make
3304 * sure it's not set (mind that period can be equal to zero).
3305 */
3306 if (attr->sched_deadline & (1ULL << 63) ||
3307 attr->sched_period & (1ULL << 63))
3308 return false;
3309
3310 /* runtime <= deadline <= period (if period != 0) */
3311 if ((attr->sched_period != 0 &&
3312 attr->sched_period < attr->sched_deadline) ||
3313 attr->sched_deadline < attr->sched_runtime)
3314 return false;
3315
3316 return true;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003317}
3318
David Howellsc69e8d92008-11-14 10:39:19 +11003319/*
3320 * check the target process has a UID that matches the current process's
3321 */
3322static bool check_same_owner(struct task_struct *p)
3323{
3324 const struct cred *cred = current_cred(), *pcred;
3325 bool match;
3326
3327 rcu_read_lock();
3328 pcred = __task_cred(p);
Eric W. Biederman9c806aa2012-02-02 18:54:02 -08003329 match = (uid_eq(cred->euid, pcred->euid) ||
3330 uid_eq(cred->euid, pcred->uid));
David Howellsc69e8d92008-11-14 10:39:19 +11003331 rcu_read_unlock();
3332 return match;
3333}
3334
Dario Faggiolid50dde52013-11-07 14:43:36 +01003335static int __sched_setscheduler(struct task_struct *p,
3336 const struct sched_attr *attr,
3337 bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
Steven Rostedt383afd02014-03-11 19:24:20 -04003339 int newprio = dl_policy(attr->sched_policy) ? MAX_DL_PRIO - 1 :
3340 MAX_RT_PRIO - 1 - attr->sched_priority;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003341 int retval, oldprio, oldpolicy = -1, on_rq, running;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003342 int policy = attr->sched_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003344 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003345 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003346 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Steven Rostedt66e53932006-06-27 02:54:44 -07003348 /* may grab non-irq protected spin_locks */
3349 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350recheck:
3351 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02003352 if (policy < 0) {
3353 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003355 } else {
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003356 reset_on_fork = !!(attr->sched_flags & SCHED_FLAG_RESET_ON_FORK);
Lennart Poetteringca94c442009-06-15 17:17:47 +02003357
Dario Faggioliaab03e02013-11-28 11:14:43 +01003358 if (policy != SCHED_DEADLINE &&
3359 policy != SCHED_FIFO && policy != SCHED_RR &&
Lennart Poetteringca94c442009-06-15 17:17:47 +02003360 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
3361 policy != SCHED_IDLE)
3362 return -EINVAL;
3363 }
3364
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003365 if (attr->sched_flags & ~(SCHED_FLAG_RESET_ON_FORK))
3366 return -EINVAL;
3367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 /*
3369 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02003370 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
3371 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 */
Peter Zijlstra0bb040a2014-01-15 17:15:13 +01003373 if ((p->mm && attr->sched_priority > MAX_USER_RT_PRIO-1) ||
Dario Faggiolid50dde52013-11-07 14:43:36 +01003374 (!p->mm && attr->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 return -EINVAL;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003376 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
3377 (rt_policy(policy) != (attr->sched_priority != 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return -EINVAL;
3379
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003380 /*
3381 * Allow unprivileged RT tasks to decrease priority:
3382 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10003383 if (user && !capable(CAP_SYS_NICE)) {
Dario Faggiolid50dde52013-11-07 14:43:36 +01003384 if (fair_policy(policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003385 if (attr->sched_nice < task_nice(p) &&
Peter Zijlstraeaad4512014-01-16 17:54:25 +01003386 !can_nice(p, attr->sched_nice))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003387 return -EPERM;
3388 }
3389
Ingo Molnare05606d2007-07-09 18:51:59 +02003390 if (rt_policy(policy)) {
Oleg Nesterova44702e82010-06-11 01:09:44 +02003391 unsigned long rlim_rtprio =
3392 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003393
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003394 /* can't set/change the rt policy */
3395 if (policy != p->policy && !rlim_rtprio)
3396 return -EPERM;
3397
3398 /* can't increase priority */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003399 if (attr->sched_priority > p->rt_priority &&
3400 attr->sched_priority > rlim_rtprio)
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003401 return -EPERM;
3402 }
Darren Hartc02aa732011-02-17 15:37:07 -08003403
Juri Lellid44753b2014-03-03 12:09:21 +01003404 /*
3405 * Can't set/change SCHED_DEADLINE policy at all for now
3406 * (safest behavior); in the future we would like to allow
3407 * unprivileged DL tasks to increase their relative deadline
3408 * or reduce their runtime (both ways reducing utilization)
3409 */
3410 if (dl_policy(policy))
3411 return -EPERM;
3412
Ingo Molnardd41f592007-07-09 18:51:59 +02003413 /*
Darren Hartc02aa732011-02-17 15:37:07 -08003414 * Treat SCHED_IDLE as nice 20. Only allow a switch to
3415 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02003416 */
Darren Hartc02aa732011-02-17 15:37:07 -08003417 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003418 if (!can_nice(p, task_nice(p)))
Darren Hartc02aa732011-02-17 15:37:07 -08003419 return -EPERM;
3420 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003421
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003422 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11003423 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003424 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003425
3426 /* Normal users shall not reset the sched_reset_on_fork flag */
3427 if (p->sched_reset_on_fork && !reset_on_fork)
3428 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003431 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003432 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003433 if (retval)
3434 return retval;
3435 }
3436
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07003438 * make sure no PI-waiters arrive (or leave) while we are
3439 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003440 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003441 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 * runqueue lock must be held.
3443 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003444 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003445
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003446 /*
3447 * Changing the policy of the stop threads its a very bad idea
3448 */
3449 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003450 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003451 return -EINVAL;
3452 }
3453
Dario Faggiolia51e9192011-03-24 14:00:18 +01003454 /*
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003455 * If not changing anything there's no need to proceed further,
3456 * but store a possible modification of reset_on_fork.
Dario Faggiolia51e9192011-03-24 14:00:18 +01003457 */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003458 if (unlikely(policy == p->policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003459 if (fair_policy(policy) && attr->sched_nice != task_nice(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003460 goto change;
3461 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
3462 goto change;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003463 if (dl_policy(policy))
3464 goto change;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003465
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003466 p->sched_reset_on_fork = reset_on_fork;
Namhyung Kim45afb172012-07-07 16:49:02 +09003467 task_rq_unlock(rq, p, &flags);
Dario Faggiolia51e9192011-03-24 14:00:18 +01003468 return 0;
3469 }
Dario Faggiolid50dde52013-11-07 14:43:36 +01003470change:
Dario Faggiolia51e9192011-03-24 14:00:18 +01003471
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003472 if (user) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003473#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003474 /*
3475 * Do not allow realtime tasks into groups that have no runtime
3476 * assigned.
3477 */
3478 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01003479 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
3480 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003481 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003482 return -EPERM;
3483 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003484#endif
Dario Faggioli332ac172013-11-07 14:43:45 +01003485#ifdef CONFIG_SMP
3486 if (dl_bandwidth_enabled() && dl_policy(policy)) {
3487 cpumask_t *span = rq->rd->span;
Dario Faggioli332ac172013-11-07 14:43:45 +01003488
3489 /*
3490 * Don't allow tasks with an affinity mask smaller than
3491 * the entire root_domain to become SCHED_DEADLINE. We
3492 * will also fail if there's no bandwidth available.
3493 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003494 if (!cpumask_subset(span, &p->cpus_allowed) ||
3495 rq->rd->dl_bw.bw == 0) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003496 task_rq_unlock(rq, p, &flags);
3497 return -EPERM;
3498 }
3499 }
3500#endif
3501 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 /* recheck policy now with rq lock held */
3504 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3505 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003506 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 goto recheck;
3508 }
Dario Faggioli332ac172013-11-07 14:43:45 +01003509
3510 /*
3511 * If setscheduling to SCHED_DEADLINE (or changing the parameters
3512 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
3513 * is available.
3514 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003515 if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003516 task_rq_unlock(rq, p, &flags);
3517 return -EBUSY;
3518 }
3519
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003520 p->sched_reset_on_fork = reset_on_fork;
3521 oldprio = p->prio;
3522
3523 /*
3524 * Special case for priority boosted tasks.
3525 *
3526 * If the new priority is lower or equal (user space view)
3527 * than the current (boosted) priority, we just store the new
3528 * normal parameters and do not touch the scheduler class and
3529 * the runqueue. This will be done when the task deboost
3530 * itself.
3531 */
3532 if (rt_mutex_check_prio(p, newprio)) {
3533 __setscheduler_params(p, attr);
3534 task_rq_unlock(rq, p, &flags);
3535 return 0;
3536 }
3537
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003538 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003539 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003540 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003541 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003542 if (running)
3543 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003544
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003545 prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003546 __setscheduler(rq, p, attr);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003547
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003548 if (running)
3549 p->sched_class->set_curr_task(rq);
Thomas Gleixner81a44c52014-02-07 20:58:41 +01003550 if (on_rq) {
3551 /*
3552 * We enqueue to tail when the priority of a task is
3553 * increased (user space view).
3554 */
3555 enqueue_task(rq, p, oldprio <= p->prio ? ENQUEUE_HEAD : 0);
3556 }
Steven Rostedtcb469842008-01-25 21:08:22 +01003557
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003558 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003559 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003560
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07003561 rt_mutex_adjust_pi(p);
3562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 return 0;
3564}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003565
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003566static int _sched_setscheduler(struct task_struct *p, int policy,
3567 const struct sched_param *param, bool check)
3568{
3569 struct sched_attr attr = {
3570 .sched_policy = policy,
3571 .sched_priority = param->sched_priority,
3572 .sched_nice = PRIO_TO_NICE(p->static_prio),
3573 };
3574
3575 /*
Daniel Bristot de Oliveirad8d28c82014-07-22 23:27:41 -03003576 * Fixup the legacy SCHED_RESET_ON_FORK hack, except if
3577 * the policy=-1 was passed by sched_setparam().
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003578 */
Daniel Bristot de Oliveirad8d28c82014-07-22 23:27:41 -03003579 if ((policy != -1) && (policy & SCHED_RESET_ON_FORK)) {
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003580 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
3581 policy &= ~SCHED_RESET_ON_FORK;
3582 attr.sched_policy = policy;
3583 }
3584
3585 return __sched_setscheduler(p, &attr, check);
3586}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003587/**
3588 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
3589 * @p: the task in question.
3590 * @policy: new policy.
3591 * @param: structure containing the new RT priority.
3592 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003593 * Return: 0 on success. An error code otherwise.
3594 *
Rusty Russell961ccdd2008-06-23 13:55:38 +10003595 * NOTE that the task may be already dead.
3596 */
3597int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003598 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003599{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003600 return _sched_setscheduler(p, policy, param, true);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003601}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602EXPORT_SYMBOL_GPL(sched_setscheduler);
3603
Dario Faggiolid50dde52013-11-07 14:43:36 +01003604int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
3605{
3606 return __sched_setscheduler(p, attr, true);
3607}
3608EXPORT_SYMBOL_GPL(sched_setattr);
3609
Rusty Russell961ccdd2008-06-23 13:55:38 +10003610/**
3611 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
3612 * @p: the task in question.
3613 * @policy: new policy.
3614 * @param: structure containing the new RT priority.
3615 *
3616 * Just like sched_setscheduler, only don't bother checking if the
3617 * current context has permission. For example, this is needed in
3618 * stop_machine(): we create temporary high priority worker threads,
3619 * but our caller might not have that capability.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003620 *
3621 * Return: 0 on success. An error code otherwise.
Rusty Russell961ccdd2008-06-23 13:55:38 +10003622 */
3623int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003624 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003625{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003626 return _sched_setscheduler(p, policy, param, false);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003627}
3628
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003629static int
3630do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 struct sched_param lparam;
3633 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003634 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
3636 if (!param || pid < 0)
3637 return -EINVAL;
3638 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3639 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003640
3641 rcu_read_lock();
3642 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003644 if (p != NULL)
3645 retval = sched_setscheduler(p, policy, &lparam);
3646 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07003647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 return retval;
3649}
3650
Dario Faggiolid50dde52013-11-07 14:43:36 +01003651/*
3652 * Mimics kernel/events/core.c perf_copy_attr().
3653 */
3654static int sched_copy_attr(struct sched_attr __user *uattr,
3655 struct sched_attr *attr)
3656{
3657 u32 size;
3658 int ret;
3659
3660 if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0))
3661 return -EFAULT;
3662
3663 /*
3664 * zero the full structure, so that a short copy will be nice.
3665 */
3666 memset(attr, 0, sizeof(*attr));
3667
3668 ret = get_user(size, &uattr->size);
3669 if (ret)
3670 return ret;
3671
3672 if (size > PAGE_SIZE) /* silly large */
3673 goto err_size;
3674
3675 if (!size) /* abi compat */
3676 size = SCHED_ATTR_SIZE_VER0;
3677
3678 if (size < SCHED_ATTR_SIZE_VER0)
3679 goto err_size;
3680
3681 /*
3682 * If we're handed a bigger struct than we know of,
3683 * ensure all the unknown bits are 0 - i.e. new
3684 * user-space does not rely on any kernel feature
3685 * extensions we dont know about yet.
3686 */
3687 if (size > sizeof(*attr)) {
3688 unsigned char __user *addr;
3689 unsigned char __user *end;
3690 unsigned char val;
3691
3692 addr = (void __user *)uattr + sizeof(*attr);
3693 end = (void __user *)uattr + size;
3694
3695 for (; addr < end; addr++) {
3696 ret = get_user(val, addr);
3697 if (ret)
3698 return ret;
3699 if (val)
3700 goto err_size;
3701 }
3702 size = sizeof(*attr);
3703 }
3704
3705 ret = copy_from_user(attr, uattr, size);
3706 if (ret)
3707 return -EFAULT;
3708
3709 /*
3710 * XXX: do we want to be lenient like existing syscalls; or do we want
3711 * to be strict and return an error on out-of-bounds values?
3712 */
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003713 attr->sched_nice = clamp(attr->sched_nice, MIN_NICE, MAX_NICE);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003714
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003715 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003716
3717err_size:
3718 put_user(sizeof(*attr), &uattr->size);
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003719 return -E2BIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003720}
3721
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722/**
3723 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3724 * @pid: the pid in question.
3725 * @policy: new policy.
3726 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003727 *
3728 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003730SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
3731 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732{
Jason Baronc21761f2006-01-18 17:43:03 -08003733 /* negative values for policy are not valid */
3734 if (policy < 0)
3735 return -EINVAL;
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 return do_sched_setscheduler(pid, policy, param);
3738}
3739
3740/**
3741 * sys_sched_setparam - set/change the RT priority of a thread
3742 * @pid: the pid in question.
3743 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003744 *
3745 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003747SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748{
3749 return do_sched_setscheduler(pid, -1, param);
3750}
3751
3752/**
Dario Faggiolid50dde52013-11-07 14:43:36 +01003753 * sys_sched_setattr - same as above, but with extended sched_attr
3754 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003755 * @uattr: structure containing the extended parameters.
Masanari Iidadb66d752014-04-18 01:59:15 +09003756 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003757 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003758SYSCALL_DEFINE3(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr,
3759 unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003760{
3761 struct sched_attr attr;
3762 struct task_struct *p;
3763 int retval;
3764
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003765 if (!uattr || pid < 0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003766 return -EINVAL;
3767
Michael Kerrisk143cf232014-05-09 16:54:15 +02003768 retval = sched_copy_attr(uattr, &attr);
3769 if (retval)
3770 return retval;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003771
Richard Weinbergerb14ed2c2014-06-02 22:38:34 +02003772 if ((int)attr.sched_policy < 0)
Peter Zijlstradbdb2272014-05-09 10:49:03 +02003773 return -EINVAL;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003774
3775 rcu_read_lock();
3776 retval = -ESRCH;
3777 p = find_process_by_pid(pid);
3778 if (p != NULL)
3779 retval = sched_setattr(p, &attr);
3780 rcu_read_unlock();
3781
3782 return retval;
3783}
3784
3785/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3787 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003788 *
3789 * Return: On success, the policy of the thread. Otherwise, a negative error
3790 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003792SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003794 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003795 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
3797 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003798 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
3800 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003801 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 p = find_process_by_pid(pid);
3803 if (p) {
3804 retval = security_task_getscheduler(p);
3805 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02003806 retval = p->policy
3807 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003809 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 return retval;
3811}
3812
3813/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02003814 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 * @pid: the pid in question.
3816 * @param: structure containing the RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003817 *
3818 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
3819 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003821SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822{
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003823 struct sched_param lp = { .sched_priority = 0 };
Ingo Molnar36c8b582006-07-03 00:25:41 -07003824 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003825 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
3827 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003828 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003830 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 p = find_process_by_pid(pid);
3832 retval = -ESRCH;
3833 if (!p)
3834 goto out_unlock;
3835
3836 retval = security_task_getscheduler(p);
3837 if (retval)
3838 goto out_unlock;
3839
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003840 if (task_has_rt_policy(p))
3841 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003842 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
3844 /*
3845 * This one might sleep, we cannot do it with a spinlock held ...
3846 */
3847 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 return retval;
3850
3851out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003852 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 return retval;
3854}
3855
Dario Faggiolid50dde52013-11-07 14:43:36 +01003856static int sched_read_attr(struct sched_attr __user *uattr,
3857 struct sched_attr *attr,
3858 unsigned int usize)
3859{
3860 int ret;
3861
3862 if (!access_ok(VERIFY_WRITE, uattr, usize))
3863 return -EFAULT;
3864
3865 /*
3866 * If we're handed a smaller struct than we know of,
3867 * ensure all the unknown bits are 0 - i.e. old
3868 * user-space does not get uncomplete information.
3869 */
3870 if (usize < sizeof(*attr)) {
3871 unsigned char *addr;
3872 unsigned char *end;
3873
3874 addr = (void *)attr + usize;
3875 end = (void *)attr + sizeof(*attr);
3876
3877 for (; addr < end; addr++) {
3878 if (*addr)
Michael Kerrisk22400672014-05-09 16:54:33 +02003879 return -EFBIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003880 }
3881
3882 attr->size = usize;
3883 }
3884
Vegard Nossum4efbc452014-02-16 22:24:17 +01003885 ret = copy_to_user(uattr, attr, attr->size);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003886 if (ret)
3887 return -EFAULT;
3888
Michael Kerrisk22400672014-05-09 16:54:33 +02003889 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003890}
3891
3892/**
Dario Faggioliaab03e02013-11-28 11:14:43 +01003893 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
Dario Faggiolid50dde52013-11-07 14:43:36 +01003894 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003895 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003896 * @size: sizeof(attr) for fwd/bwd comp.
Masanari Iidadb66d752014-04-18 01:59:15 +09003897 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003898 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003899SYSCALL_DEFINE4(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
3900 unsigned int, size, unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003901{
3902 struct sched_attr attr = {
3903 .size = sizeof(struct sched_attr),
3904 };
3905 struct task_struct *p;
3906 int retval;
3907
3908 if (!uattr || pid < 0 || size > PAGE_SIZE ||
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003909 size < SCHED_ATTR_SIZE_VER0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003910 return -EINVAL;
3911
3912 rcu_read_lock();
3913 p = find_process_by_pid(pid);
3914 retval = -ESRCH;
3915 if (!p)
3916 goto out_unlock;
3917
3918 retval = security_task_getscheduler(p);
3919 if (retval)
3920 goto out_unlock;
3921
3922 attr.sched_policy = p->policy;
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003923 if (p->sched_reset_on_fork)
3924 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003925 if (task_has_dl_policy(p))
3926 __getparam_dl(p, &attr);
3927 else if (task_has_rt_policy(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003928 attr.sched_priority = p->rt_priority;
3929 else
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003930 attr.sched_nice = task_nice(p);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003931
3932 rcu_read_unlock();
3933
3934 retval = sched_read_attr(uattr, &attr, size);
3935 return retval;
3936
3937out_unlock:
3938 rcu_read_unlock();
3939 return retval;
3940}
3941
Rusty Russell96f874e22008-11-25 02:35:14 +10303942long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303944 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003945 struct task_struct *p;
3946 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003948 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
3950 p = find_process_by_pid(pid);
3951 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003952 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 return -ESRCH;
3954 }
3955
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003956 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003958 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
Tejun Heo14a40ff2013-03-19 13:45:20 -07003960 if (p->flags & PF_NO_SETAFFINITY) {
3961 retval = -EINVAL;
3962 goto out_put_task;
3963 }
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303964 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
3965 retval = -ENOMEM;
3966 goto out_put_task;
3967 }
3968 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
3969 retval = -ENOMEM;
3970 goto out_free_cpus_allowed;
3971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 retval = -EPERM;
Eric W. Biederman4c44aaa2012-07-26 05:05:21 -07003973 if (!check_same_owner(p)) {
3974 rcu_read_lock();
3975 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
3976 rcu_read_unlock();
3977 goto out_unlock;
3978 }
3979 rcu_read_unlock();
3980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003982 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07003983 if (retval)
3984 goto out_unlock;
3985
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003986
3987 cpuset_cpus_allowed(p, cpus_allowed);
3988 cpumask_and(new_mask, in_mask, cpus_allowed);
3989
Dario Faggioli332ac172013-11-07 14:43:45 +01003990 /*
3991 * Since bandwidth control happens on root_domain basis,
3992 * if admission test is enabled, we only admit -deadline
3993 * tasks allowed to run on all the CPUs in the task's
3994 * root_domain.
3995 */
3996#ifdef CONFIG_SMP
3997 if (task_has_dl_policy(p)) {
3998 const struct cpumask *span = task_rq(p)->rd->span;
3999
Peter Zijlstrae4099a52013-12-17 10:03:34 +01004000 if (dl_bandwidth_enabled() && !cpumask_subset(span, new_mask)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01004001 retval = -EBUSY;
4002 goto out_unlock;
4003 }
4004 }
4005#endif
Peter Zijlstra49246272010-10-17 21:46:10 +02004006again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304007 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Paul Menage8707d8b2007-10-18 23:40:22 -07004009 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304010 cpuset_cpus_allowed(p, cpus_allowed);
4011 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07004012 /*
4013 * We must have raced with a concurrent cpuset
4014 * update. Just reset the cpus_allowed to the
4015 * cpuset's cpus_allowed
4016 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304017 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004018 goto again;
4019 }
4020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304022 free_cpumask_var(new_mask);
4023out_free_cpus_allowed:
4024 free_cpumask_var(cpus_allowed);
4025out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 return retval;
4028}
4029
4030static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10304031 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032{
Rusty Russell96f874e22008-11-25 02:35:14 +10304033 if (len < cpumask_size())
4034 cpumask_clear(new_mask);
4035 else if (len > cpumask_size())
4036 len = cpumask_size();
4037
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4039}
4040
4041/**
4042 * sys_sched_setaffinity - set the cpu affinity of a process
4043 * @pid: pid of the process
4044 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4045 * @user_mask_ptr: user-space pointer to the new cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004046 *
4047 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004049SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
4050 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304052 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 int retval;
4054
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304055 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
4056 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304058 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
4059 if (retval == 0)
4060 retval = sched_setaffinity(pid, new_mask);
4061 free_cpumask_var(new_mask);
4062 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063}
4064
Rusty Russell96f874e22008-11-25 02:35:14 +10304065long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004067 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00004068 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004071 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
4073 retval = -ESRCH;
4074 p = find_process_by_pid(pid);
4075 if (!p)
4076 goto out_unlock;
4077
David Quigleye7834f82006-06-23 02:03:59 -07004078 retval = security_task_getscheduler(p);
4079 if (retval)
4080 goto out_unlock;
4081
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004082 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02004083 cpumask_and(mask, &p->cpus_allowed, cpu_active_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004084 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
4086out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004087 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
Ulrich Drepper9531b622007-08-09 11:16:46 +02004089 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090}
4091
4092/**
4093 * sys_sched_getaffinity - get the cpu affinity of a process
4094 * @pid: pid of the process
4095 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4096 * @user_mask_ptr: user-space pointer to hold the current cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004097 *
4098 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004100SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
4101 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102{
4103 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10304104 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Anton Blanchard84fba5e2010-04-06 17:02:19 +10004106 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004107 return -EINVAL;
4108 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 return -EINVAL;
4110
Rusty Russellf17c8602008-11-25 02:35:11 +10304111 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
4112 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Rusty Russellf17c8602008-11-25 02:35:11 +10304114 ret = sched_getaffinity(pid, mask);
4115 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09004116 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004117
4118 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10304119 ret = -EFAULT;
4120 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004121 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10304122 }
4123 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Rusty Russellf17c8602008-11-25 02:35:11 +10304125 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126}
4127
4128/**
4129 * sys_sched_yield - yield the current processor to other threads.
4130 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004131 * This function yields the current CPU to other tasks. If there are no
4132 * other threads running on this CPU then this function will return.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004133 *
4134 * Return: 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004136SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004138 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
Ingo Molnar2d723762007-10-15 17:00:12 +02004140 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004141 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
4143 /*
4144 * Since we are going to call schedule() anyway, there's
4145 * no need to preempt or enable interrupts:
4146 */
4147 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004148 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01004149 do_raw_spin_unlock(&rq->lock);
Thomas Gleixnerba74c142011-03-21 13:32:17 +01004150 sched_preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
4152 schedule();
4153
4154 return 0;
4155}
4156
Andrew Mortone7b38402006-06-30 01:56:00 -07004157static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004159 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02004160 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004161 __preempt_count_sub(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162}
4163
Herbert Xu02b67cc32008-01-25 21:08:28 +01004164int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004166 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 __cond_resched();
4168 return 1;
4169 }
4170 return 0;
4171}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004172EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173
4174/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004175 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 * call schedule, and on return reacquire the lock.
4177 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004178 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 * operations here to prevent schedule() from being called twice (once via
4180 * spin_unlock(), once by hand).
4181 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004182int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004184 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004185 int ret = 0;
4186
Peter Zijlstraf607c662009-07-20 19:16:29 +02004187 lockdep_assert_held(lock);
4188
Paul E. McKenney4a81e832014-06-20 16:49:01 -07004189 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004191 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01004192 __cond_resched();
4193 else
4194 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004195 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004198 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004200EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004202int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203{
4204 BUG_ON(!in_softirq());
4205
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004206 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004207 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 __cond_resched();
4209 local_bh_disable();
4210 return 1;
4211 }
4212 return 0;
4213}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004214EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216/**
4217 * yield - yield the current processor to other threads.
4218 *
Peter Zijlstra8e3fabf2012-03-06 18:54:26 +01004219 * Do not ever use this function, there's a 99% chance you're doing it wrong.
4220 *
4221 * The scheduler is at all times free to pick the calling task as the most
4222 * eligible task to run, if removing the yield() call from your code breaks
4223 * it, its already broken.
4224 *
4225 * Typical broken usage is:
4226 *
4227 * while (!event)
4228 * yield();
4229 *
4230 * where one assumes that yield() will let 'the other' process run that will
4231 * make event true. If the current task is a SCHED_FIFO task that will never
4232 * happen. Never use yield() as a progress guarantee!!
4233 *
4234 * If you want to use yield() to wait for something, use wait_event().
4235 * If you want to use yield() to be 'nice' for others, use cond_resched().
4236 * If you still want to use yield(), do not!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 */
4238void __sched yield(void)
4239{
4240 set_current_state(TASK_RUNNING);
4241 sys_sched_yield();
4242}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243EXPORT_SYMBOL(yield);
4244
Mike Galbraithd95f4122011-02-01 09:50:51 -05004245/**
4246 * yield_to - yield the current processor to another thread in
4247 * your thread group, or accelerate that thread toward the
4248 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07004249 * @p: target task
4250 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05004251 *
4252 * It's the caller's job to ensure that the target task struct
4253 * can't go away on us before we can do any checks.
4254 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004255 * Return:
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304256 * true (>0) if we indeed boosted the target task.
4257 * false (0) if we failed to boost the target.
4258 * -ESRCH if there's no task to yield to.
Mike Galbraithd95f4122011-02-01 09:50:51 -05004259 */
Dan Carpenterfa933842014-05-23 13:20:42 +03004260int __sched yield_to(struct task_struct *p, bool preempt)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004261{
4262 struct task_struct *curr = current;
4263 struct rq *rq, *p_rq;
4264 unsigned long flags;
Dan Carpenterc3c18642013-02-05 14:37:51 +03004265 int yielded = 0;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004266
4267 local_irq_save(flags);
4268 rq = this_rq();
4269
4270again:
4271 p_rq = task_rq(p);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304272 /*
4273 * If we're the only runnable task on the rq and target rq also
4274 * has only one task, there's absolutely no point in yielding.
4275 */
4276 if (rq->nr_running == 1 && p_rq->nr_running == 1) {
4277 yielded = -ESRCH;
4278 goto out_irq;
4279 }
4280
Mike Galbraithd95f4122011-02-01 09:50:51 -05004281 double_rq_lock(rq, p_rq);
Shigeru Yoshida39e24d8f2013-11-23 18:38:01 +09004282 if (task_rq(p) != p_rq) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004283 double_rq_unlock(rq, p_rq);
4284 goto again;
4285 }
4286
4287 if (!curr->sched_class->yield_to_task)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304288 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004289
4290 if (curr->sched_class != p->sched_class)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304291 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004292
4293 if (task_running(p_rq, p) || p->state)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304294 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004295
4296 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004297 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004298 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004299 /*
4300 * Make p's CPU reschedule; pick_next_entity takes care of
4301 * fairness.
4302 */
4303 if (preempt && rq != p_rq)
Kirill Tkhai88751252014-06-29 00:03:57 +04004304 resched_curr(p_rq);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004305 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05004306
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304307out_unlock:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004308 double_rq_unlock(rq, p_rq);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304309out_irq:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004310 local_irq_restore(flags);
4311
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304312 if (yielded > 0)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004313 schedule();
4314
4315 return yielded;
4316}
4317EXPORT_SYMBOL_GPL(yield_to);
4318
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004320 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 */
4323void __sched io_schedule(void)
4324{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004325 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004327 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004329 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004330 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004332 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004334 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336EXPORT_SYMBOL(io_schedule);
4337
4338long __sched io_schedule_timeout(long timeout)
4339{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004340 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 long ret;
4342
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004343 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004345 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004346 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004348 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004350 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 return ret;
4352}
4353
4354/**
4355 * sys_sched_get_priority_max - return maximum RT priority.
4356 * @policy: scheduling class.
4357 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004358 * Return: On success, this syscall returns the maximum
4359 * rt_priority that can be used by a given scheduling class.
4360 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004362SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363{
4364 int ret = -EINVAL;
4365
4366 switch (policy) {
4367 case SCHED_FIFO:
4368 case SCHED_RR:
4369 ret = MAX_USER_RT_PRIO-1;
4370 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004371 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004373 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004374 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 ret = 0;
4376 break;
4377 }
4378 return ret;
4379}
4380
4381/**
4382 * sys_sched_get_priority_min - return minimum RT priority.
4383 * @policy: scheduling class.
4384 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004385 * Return: On success, this syscall returns the minimum
4386 * rt_priority that can be used by a given scheduling class.
4387 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004389SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390{
4391 int ret = -EINVAL;
4392
4393 switch (policy) {
4394 case SCHED_FIFO:
4395 case SCHED_RR:
4396 ret = 1;
4397 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004398 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004400 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004401 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 ret = 0;
4403 }
4404 return ret;
4405}
4406
4407/**
4408 * sys_sched_rr_get_interval - return the default timeslice of a process.
4409 * @pid: pid of the process.
4410 * @interval: userspace pointer to the timeslice value.
4411 *
4412 * this syscall writes the default timeslice value of a given process
4413 * into the user-space timespec buffer. A value of '0' means infinity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004414 *
4415 * Return: On success, 0 and the timeslice is in @interval. Otherwise,
4416 * an error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01004418SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01004419 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004421 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004422 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004423 unsigned long flags;
4424 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004425 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
4428 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004429 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
4431 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004432 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 p = find_process_by_pid(pid);
4434 if (!p)
4435 goto out_unlock;
4436
4437 retval = security_task_getscheduler(p);
4438 if (retval)
4439 goto out_unlock;
4440
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004441 rq = task_rq_lock(p, &flags);
Peter Zijlstraa57beec2014-01-27 11:54:13 +01004442 time_slice = 0;
4443 if (p->sched_class->get_rr_interval)
4444 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004445 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004446
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004447 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004448 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004453 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 return retval;
4455}
4456
Steven Rostedt7c731e02008-05-12 21:20:41 +02004457static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004458
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004459void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 unsigned long free = 0;
Paul E. McKenney4e797522012-11-07 13:35:32 -08004462 int ppid;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004463 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08004466 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004467 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004468#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004470 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004472 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473#else
4474 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004475 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004477 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478#endif
4479#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05004480 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481#endif
Paul E. McKenney4e797522012-11-07 13:35:32 -08004482 rcu_read_lock();
4483 ppid = task_pid_nr(rcu_dereference(p->real_parent));
4484 rcu_read_unlock();
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004485 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
Paul E. McKenney4e797522012-11-07 13:35:32 -08004486 task_pid_nr(p), ppid,
David Rientjesaa47b7e2009-05-04 01:38:05 -07004487 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Tejun Heo3d1cb202013-04-30 15:27:22 -07004489 print_worker_info(KERN_INFO, p);
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01004490 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491}
4492
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004493void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004495 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
Ingo Molnar4bd77322007-07-11 21:21:47 +02004497#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004498 printk(KERN_INFO
4499 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004501 printk(KERN_INFO
4502 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004504 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 do_each_thread(g, p) {
4506 /*
4507 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004508 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 */
4510 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004511 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004512 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 } while_each_thread(g, p);
4514
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004515 touch_all_softlockup_watchdogs();
4516
Ingo Molnardd41f592007-07-09 18:51:59 +02004517#ifdef CONFIG_SCHED_DEBUG
4518 sysrq_sched_debug_show();
4519#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004520 rcu_read_unlock();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004521 /*
4522 * Only show locks if all tasks are dumped:
4523 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02004524 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004525 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526}
4527
Paul Gortmaker0db06282013-06-19 14:53:51 -04004528void init_idle_bootup_task(struct task_struct *idle)
Ingo Molnar1df21052007-07-09 18:51:58 +02004529{
Ingo Molnardd41f592007-07-09 18:51:59 +02004530 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004531}
4532
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004533/**
4534 * init_idle - set up an idle thread for a given CPU
4535 * @idle: task in question
4536 * @cpu: cpu the idle task belongs to
4537 *
4538 * NOTE: this function does not set the idle thread's NEED_RESCHED
4539 * flag, to make booting more robust.
4540 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004541void init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004543 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 unsigned long flags;
4545
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004546 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01004547
Rik van Riel5e1576e2013-10-07 11:29:26 +01004548 __sched_fork(0, idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01004549 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02004550 idle->se.exec_start = sched_clock();
4551
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004552 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004553 /*
4554 * We're having a chicken and egg problem, even though we are
4555 * holding rq->lock, the cpu isn't yet set to this cpu so the
4556 * lockdep check in task_group() will fail.
4557 *
4558 * Similar case to sched_fork(). / Alternatively we could
4559 * use task_rq_lock() here and obtain the other rq->lock.
4560 *
4561 * Silence PROVE_RCU
4562 */
4563 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02004564 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004565 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 rq->curr = rq->idle = idle;
Thomas Gleixner77177852014-02-07 20:58:37 +01004568 idle->on_rq = 1;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02004569#if defined(CONFIG_SMP)
4570 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07004571#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004572 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574 /* Set the preempt count _outside_ the spinlocks! */
Peter Zijlstra01028742013-08-14 14:55:46 +02004575 init_idle_preempt_count(idle, cpu);
Jonathan Corbet625f2a32011-04-22 11:19:10 -06004576
Ingo Molnardd41f592007-07-09 18:51:59 +02004577 /*
4578 * The idle tasks have their own, simple scheduling class:
4579 */
4580 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05004581 ftrace_graph_init_idle_task(idle, cpu);
Frederic Weisbecker45eacc62013-05-15 22:16:32 +02004582 vtime_init_idle(idle, cpu);
Carsten Emdef1c6f1a2011-10-26 23:14:16 +02004583#if defined(CONFIG_SMP)
4584 sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
4585#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586}
4587
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588#ifdef CONFIG_SMP
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004589void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
4590{
4591 if (p->sched_class && p->sched_class->set_cpus_allowed)
4592 p->sched_class->set_cpus_allowed(p, new_mask);
Peter Zijlstra49396022011-06-25 15:45:46 +02004593
4594 cpumask_copy(&p->cpus_allowed, new_mask);
Peter Zijlstra29baa742012-04-23 12:11:21 +02004595 p->nr_cpus_allowed = cpumask_weight(new_mask);
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004596}
4597
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598/*
4599 * This is how migration works:
4600 *
Tejun Heo969c7922010-05-06 18:49:21 +02004601 * 1) we invoke migration_cpu_stop() on the target CPU using
4602 * stop_one_cpu().
4603 * 2) stopper starts to run (implicitly forcing the migrated thread
4604 * off the CPU)
4605 * 3) it checks whether the migrated task is still in the wrong runqueue.
4606 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02004608 * 5) stopper completes and stop_one_cpu() returns and the migration
4609 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 */
4611
4612/*
4613 * Change a given task's CPU affinity. Migrate the thread to a
4614 * proper CPU and schedule it away if the CPU it's executing on
4615 * is removed from the allowed bitmask.
4616 *
4617 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004618 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 * call is not atomic; no spinlocks may be held.
4620 */
Rusty Russell96f874e22008-11-25 02:35:14 +10304621int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622{
4623 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004624 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02004625 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004626 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
4628 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004629
Yong Zhangdb44fc02011-05-09 22:07:05 +08004630 if (cpumask_equal(&p->cpus_allowed, new_mask))
4631 goto out;
4632
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004633 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 ret = -EINVAL;
4635 goto out;
4636 }
4637
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004638 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01004639
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10304641 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 goto out;
4643
Tejun Heo969c7922010-05-06 18:49:21 +02004644 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Peter Zijlstrabd8e7dd2011-04-05 17:23:59 +02004645 if (p->on_rq) {
Tejun Heo969c7922010-05-06 18:49:21 +02004646 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004648 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02004649 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 tlb_migrate_finish(p->mm);
4651 return 0;
4652 }
4653out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004654 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004655
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 return ret;
4657}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07004658EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
4660/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004661 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 * this because either it can't run here any more (set_cpus_allowed()
4663 * away from this CPU, or CPU going down), or because we're
4664 * attempting to rebalance this task on exec (sched_exec).
4665 *
4666 * So we race with normal scheduler movements, but that's OK, as long
4667 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004668 *
4669 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004671static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004673 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01004674 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
Max Krasnyanskye761b772008-07-15 04:43:49 -07004676 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004677 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678
4679 rq_src = cpu_rq(src_cpu);
4680 rq_dest = cpu_rq(dest_cpu);
4681
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004682 raw_spin_lock(&p->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 double_rq_lock(rq_src, rq_dest);
4684 /* Already moved. */
4685 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004686 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 /* Affinity changed (again). */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02004688 if (!cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004689 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Peter Zijlstrae2912002009-12-16 18:04:36 +01004691 /*
4692 * If we're not on a rq, the next wake-up will ensure we're
4693 * placed properly.
4694 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004695 if (p->on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004696 dequeue_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004697 set_task_cpu(p, dest_cpu);
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004698 enqueue_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02004699 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004701done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07004702 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004703fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 double_rq_unlock(rq_src, rq_dest);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004705 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004706 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707}
4708
Mel Gormane6628d52013-10-07 11:29:02 +01004709#ifdef CONFIG_NUMA_BALANCING
4710/* Migrate current task p to target_cpu */
4711int migrate_task_to(struct task_struct *p, int target_cpu)
4712{
4713 struct migration_arg arg = { p, target_cpu };
4714 int curr_cpu = task_cpu(p);
4715
4716 if (curr_cpu == target_cpu)
4717 return 0;
4718
4719 if (!cpumask_test_cpu(target_cpu, tsk_cpus_allowed(p)))
4720 return -EINVAL;
4721
4722 /* TODO: This is not properly updating schedstats */
4723
Mel Gorman286549d2014-01-21 15:51:03 -08004724 trace_sched_move_numa(p, curr_cpu, target_cpu);
Mel Gormane6628d52013-10-07 11:29:02 +01004725 return stop_one_cpu(curr_cpu, migration_cpu_stop, &arg);
4726}
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004727
4728/*
4729 * Requeue a task on a given node and accurately track the number of NUMA
4730 * tasks on the runqueues
4731 */
4732void sched_setnuma(struct task_struct *p, int nid)
4733{
4734 struct rq *rq;
4735 unsigned long flags;
4736 bool on_rq, running;
4737
4738 rq = task_rq_lock(p, &flags);
4739 on_rq = p->on_rq;
4740 running = task_current(rq, p);
4741
4742 if (on_rq)
4743 dequeue_task(rq, p, 0);
4744 if (running)
4745 p->sched_class->put_prev_task(rq, p);
4746
4747 p->numa_preferred_nid = nid;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004748
4749 if (running)
4750 p->sched_class->set_curr_task(rq);
4751 if (on_rq)
4752 enqueue_task(rq, p, 0);
4753 task_rq_unlock(rq, p, &flags);
4754}
Mel Gormane6628d52013-10-07 11:29:02 +01004755#endif
4756
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757/*
Tejun Heo969c7922010-05-06 18:49:21 +02004758 * migration_cpu_stop - this will be executed by a highprio stopper thread
4759 * and performs thread migration by bumping thread off CPU then
4760 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 */
Tejun Heo969c7922010-05-06 18:49:21 +02004762static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763{
Tejun Heo969c7922010-05-06 18:49:21 +02004764 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
Tejun Heo969c7922010-05-06 18:49:21 +02004766 /*
4767 * The original target cpu might have gone down and we might
4768 * be on another cpu but it doesn't matter.
4769 */
4770 local_irq_disable();
4771 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
4772 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 return 0;
4774}
4775
4776#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777
Ingo Molnar48f24c42006-07-03 00:25:40 -07004778/*
4779 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 * offline.
4781 */
4782void idle_task_exit(void)
4783{
4784 struct mm_struct *mm = current->active_mm;
4785
4786 BUG_ON(cpu_online(smp_processor_id()));
4787
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004788 if (mm != &init_mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 switch_mm(mm, &init_mm, current);
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004790 finish_arch_post_lock_switch();
4791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 mmdrop(mm);
4793}
4794
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004795/*
Peter Zijlstra5d180232012-08-20 11:26:57 +02004796 * Since this CPU is going 'away' for a while, fold any nr_active delta
4797 * we might have. Assumes we're called after migrate_tasks() so that the
4798 * nr_active count is stable.
4799 *
4800 * Also see the comment "Global load-average calculations".
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004801 */
Peter Zijlstra5d180232012-08-20 11:26:57 +02004802static void calc_load_migrate(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803{
Peter Zijlstra5d180232012-08-20 11:26:57 +02004804 long delta = calc_load_fold_active(rq);
4805 if (delta)
4806 atomic_long_add(delta, &calc_load_tasks);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02004807}
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004808
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004809static void put_prev_task_fake(struct rq *rq, struct task_struct *prev)
4810{
4811}
4812
4813static const struct sched_class fake_sched_class = {
4814 .put_prev_task = put_prev_task_fake,
4815};
4816
4817static struct task_struct fake_task = {
4818 /*
4819 * Avoid pull_{rt,dl}_task()
4820 */
4821 .prio = MAX_PRIO + 1,
4822 .sched_class = &fake_sched_class,
4823};
4824
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004825/*
4826 * Migrate all tasks from the rq, sleeping tasks will be migrated by
4827 * try_to_wake_up()->select_task_rq().
4828 *
4829 * Called with rq->lock held even though we'er in stop_machine() and
4830 * there's no concurrency possible, we hold the required locks anyway
4831 * because of lock validation efforts.
4832 */
4833static void migrate_tasks(unsigned int dead_cpu)
4834{
4835 struct rq *rq = cpu_rq(dead_cpu);
4836 struct task_struct *next, *stop = rq->stop;
4837 int dest_cpu;
4838
4839 /*
4840 * Fudge the rq selection such that the below task selection loop
4841 * doesn't get stuck on the currently eligible stop task.
4842 *
4843 * We're currently inside stop_machine() and the rq is either stuck
4844 * in the stop_machine_cpu_stop() loop, or we're executing this code,
4845 * either way we should never end up calling schedule() until we're
4846 * done here.
4847 */
4848 rq->stop = NULL;
4849
Frederic Weisbecker77bd3972013-04-12 01:50:58 +02004850 /*
4851 * put_prev_task() and pick_next_task() sched
4852 * class method both need to have an up-to-date
4853 * value of rq->clock[_task]
4854 */
4855 update_rq_clock(rq);
4856
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004857 for ( ; ; ) {
4858 /*
4859 * There's this thread running, bail when that's the only
4860 * remaining thread.
4861 */
4862 if (rq->nr_running == 1)
4863 break;
4864
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004865 next = pick_next_task(rq, &fake_task);
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004866 BUG_ON(!next);
4867 next->sched_class->put_prev_task(rq, next);
4868
4869 /* Find suitable destination for @next, with force if needed. */
4870 dest_cpu = select_fallback_rq(dead_cpu, next);
4871 raw_spin_unlock(&rq->lock);
4872
4873 __migrate_task(next, dead_cpu, dest_cpu);
4874
4875 raw_spin_lock(&rq->lock);
4876 }
4877
4878 rq->stop = stop;
4879}
4880
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881#endif /* CONFIG_HOTPLUG_CPU */
4882
Nick Piggine692ab52007-07-26 13:40:43 +02004883#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
4884
4885static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004886 {
4887 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004888 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004889 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004890 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004891};
4892
4893static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004894 {
4895 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004896 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004897 .child = sd_ctl_dir,
4898 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004899 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004900};
4901
4902static struct ctl_table *sd_alloc_ctl_entry(int n)
4903{
4904 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02004905 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02004906
Nick Piggine692ab52007-07-26 13:40:43 +02004907 return entry;
4908}
4909
Milton Miller6382bc92007-10-15 17:00:19 +02004910static void sd_free_ctl_entry(struct ctl_table **tablep)
4911{
Milton Millercd7900762007-10-17 16:55:11 +02004912 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02004913
Milton Millercd7900762007-10-17 16:55:11 +02004914 /*
4915 * In the intermediate directories, both the child directory and
4916 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004917 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02004918 * static strings and all have proc handlers.
4919 */
4920 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02004921 if (entry->child)
4922 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02004923 if (entry->proc_handler == NULL)
4924 kfree(entry->procname);
4925 }
Milton Miller6382bc92007-10-15 17:00:19 +02004926
4927 kfree(*tablep);
4928 *tablep = NULL;
4929}
4930
Namhyung Kim201c3732012-08-16 17:03:24 +09004931static int min_load_idx = 0;
libinfd9b86d2013-04-08 14:39:12 +08004932static int max_load_idx = CPU_LOAD_IDX_MAX-1;
Namhyung Kim201c3732012-08-16 17:03:24 +09004933
Nick Piggine692ab52007-07-26 13:40:43 +02004934static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02004935set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02004936 const char *procname, void *data, int maxlen,
Namhyung Kim201c3732012-08-16 17:03:24 +09004937 umode_t mode, proc_handler *proc_handler,
4938 bool load_idx)
Nick Piggine692ab52007-07-26 13:40:43 +02004939{
Nick Piggine692ab52007-07-26 13:40:43 +02004940 entry->procname = procname;
4941 entry->data = data;
4942 entry->maxlen = maxlen;
4943 entry->mode = mode;
4944 entry->proc_handler = proc_handler;
Namhyung Kim201c3732012-08-16 17:03:24 +09004945
4946 if (load_idx) {
4947 entry->extra1 = &min_load_idx;
4948 entry->extra2 = &max_load_idx;
4949 }
Nick Piggine692ab52007-07-26 13:40:43 +02004950}
4951
4952static struct ctl_table *
4953sd_alloc_ctl_domain_table(struct sched_domain *sd)
4954{
Alex Shi37e6bae2014-01-23 18:39:54 +08004955 struct ctl_table *table = sd_alloc_ctl_entry(14);
Nick Piggine692ab52007-07-26 13:40:43 +02004956
Milton Millerad1cdc12007-10-15 17:00:19 +02004957 if (table == NULL)
4958 return NULL;
4959
Alexey Dobriyane0361852007-08-09 11:16:46 +02004960 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004961 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004962 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004963 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004964 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004965 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004966 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004967 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004968 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004969 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004970 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004971 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004972 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004973 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004974 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Namhyung Kim201c3732012-08-16 17:03:24 +09004975 sizeof(int), 0644, proc_dointvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004976 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Namhyung Kim201c3732012-08-16 17:03:24 +09004977 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004978 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02004979 &sd->cache_nice_tries,
Namhyung Kim201c3732012-08-16 17:03:24 +09004980 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004981 set_table_entry(&table[10], "flags", &sd->flags,
Namhyung Kim201c3732012-08-16 17:03:24 +09004982 sizeof(int), 0644, proc_dointvec_minmax, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004983 set_table_entry(&table[11], "max_newidle_lb_cost",
4984 &sd->max_newidle_lb_cost,
4985 sizeof(long), 0644, proc_doulongvec_minmax, false);
4986 set_table_entry(&table[12], "name", sd->name,
Namhyung Kim201c3732012-08-16 17:03:24 +09004987 CORENAME_MAX_SIZE, 0444, proc_dostring, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004988 /* &table[13] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02004989
4990 return table;
4991}
4992
Joe Perchesbe7002e2013-06-12 11:55:36 -07004993static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02004994{
4995 struct ctl_table *entry, *table;
4996 struct sched_domain *sd;
4997 int domain_num = 0, i;
4998 char buf[32];
4999
5000 for_each_domain(cpu, sd)
5001 domain_num++;
5002 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005003 if (table == NULL)
5004 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005005
5006 i = 0;
5007 for_each_domain(cpu, sd) {
5008 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005009 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005010 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005011 entry->child = sd_alloc_ctl_domain_table(sd);
5012 entry++;
5013 i++;
5014 }
5015 return table;
5016}
5017
5018static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005019static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005020{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005021 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02005022 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5023 char buf[32];
5024
Milton Miller73785472007-10-24 18:23:48 +02005025 WARN_ON(sd_ctl_dir[0].child);
5026 sd_ctl_dir[0].child = entry;
5027
Milton Millerad1cdc12007-10-15 17:00:19 +02005028 if (entry == NULL)
5029 return;
5030
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005031 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005032 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005033 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005034 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005035 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005036 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005037 }
Milton Miller73785472007-10-24 18:23:48 +02005038
5039 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005040 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5041}
Milton Miller6382bc92007-10-15 17:00:19 +02005042
Milton Miller73785472007-10-24 18:23:48 +02005043/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005044static void unregister_sched_domain_sysctl(void)
5045{
Milton Miller73785472007-10-24 18:23:48 +02005046 if (sd_sysctl_header)
5047 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005048 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005049 if (sd_ctl_dir[0].child)
5050 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005051}
Nick Piggine692ab52007-07-26 13:40:43 +02005052#else
Milton Miller6382bc92007-10-15 17:00:19 +02005053static void register_sched_domain_sysctl(void)
5054{
5055}
5056static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005057{
5058}
5059#endif
5060
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005061static void set_rq_online(struct rq *rq)
5062{
5063 if (!rq->online) {
5064 const struct sched_class *class;
5065
Rusty Russellc6c49272008-11-25 02:35:05 +10305066 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005067 rq->online = 1;
5068
5069 for_each_class(class) {
5070 if (class->rq_online)
5071 class->rq_online(rq);
5072 }
5073 }
5074}
5075
5076static void set_rq_offline(struct rq *rq)
5077{
5078 if (rq->online) {
5079 const struct sched_class *class;
5080
5081 for_each_class(class) {
5082 if (class->rq_offline)
5083 class->rq_offline(rq);
5084 }
5085
Rusty Russellc6c49272008-11-25 02:35:05 +10305086 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005087 rq->online = 0;
5088 }
5089}
5090
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091/*
5092 * migration_call - callback that gets triggered when a CPU is added.
5093 * Here we can start up the necessary migration thread for the new CPU.
5094 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005095static int
Ingo Molnar48f24c42006-07-03 00:25:40 -07005096migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005098 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02005100 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005102 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02005105 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005109 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005110 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005111 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305112 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005113
5114 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005115 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005116 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005118
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04005120 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02005121 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01005122 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005123 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005124 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305125 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005126 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005127 }
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005128 migrate_tasks(cpu);
5129 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005130 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra5d180232012-08-20 11:26:57 +02005131 break;
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005132
Peter Zijlstra5d180232012-08-20 11:26:57 +02005133 case CPU_DEAD:
Peter Zijlstraf319da02012-08-20 11:26:57 +02005134 calc_load_migrate(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005135 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136#endif
5137 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02005138
5139 update_max_interval();
5140
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 return NOTIFY_OK;
5142}
5143
Paul Mackerrasf38b0822009-06-02 21:05:16 +10005144/*
5145 * Register at high priority so that task migration (migrate_all_tasks)
5146 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005147 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005149static struct notifier_block migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02005151 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152};
5153
Corey Minyarda803f022014-05-08 13:47:39 -05005154static void __cpuinit set_cpu_rq_start_time(void)
5155{
5156 int cpu = smp_processor_id();
5157 struct rq *rq = cpu_rq(cpu);
5158 rq->age_stamp = sched_clock_cpu(cpu);
5159}
5160
Paul Gortmaker0db06282013-06-19 14:53:51 -04005161static int sched_cpu_active(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005162 unsigned long action, void *hcpu)
5163{
5164 switch (action & ~CPU_TASKS_FROZEN) {
Corey Minyarda803f022014-05-08 13:47:39 -05005165 case CPU_STARTING:
5166 set_cpu_rq_start_time();
5167 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005168 case CPU_DOWN_FAILED:
5169 set_cpu_active((long)hcpu, true);
5170 return NOTIFY_OK;
5171 default:
5172 return NOTIFY_DONE;
5173 }
5174}
5175
Paul Gortmaker0db06282013-06-19 14:53:51 -04005176static int sched_cpu_inactive(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005177 unsigned long action, void *hcpu)
5178{
Peter Zijlstrade212f12013-12-19 11:54:45 +01005179 unsigned long flags;
5180 long cpu = (long)hcpu;
5181
Tejun Heo3a101d02010-06-08 21:40:36 +02005182 switch (action & ~CPU_TASKS_FROZEN) {
5183 case CPU_DOWN_PREPARE:
Peter Zijlstrade212f12013-12-19 11:54:45 +01005184 set_cpu_active(cpu, false);
5185
5186 /* explicitly allow suspend */
5187 if (!(action & CPU_TASKS_FROZEN)) {
5188 struct dl_bw *dl_b = dl_bw_of(cpu);
5189 bool overflow;
5190 int cpus;
5191
5192 raw_spin_lock_irqsave(&dl_b->lock, flags);
5193 cpus = dl_bw_cpus(cpu);
5194 overflow = __dl_overflow(dl_b, cpus, 0, 0);
5195 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
5196
5197 if (overflow)
5198 return notifier_from_errno(-EBUSY);
5199 }
Tejun Heo3a101d02010-06-08 21:40:36 +02005200 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005201 }
Peter Zijlstrade212f12013-12-19 11:54:45 +01005202
5203 return NOTIFY_DONE;
Tejun Heo3a101d02010-06-08 21:40:36 +02005204}
5205
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005206static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207{
5208 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005209 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005210
Tejun Heo3a101d02010-06-08 21:40:36 +02005211 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005212 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5213 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5215 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005216
Tejun Heo3a101d02010-06-08 21:40:36 +02005217 /* Register cpu active notifiers */
5218 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
5219 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
5220
Thomas Gleixnera004cd42009-07-21 09:54:05 +02005221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005223early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224#endif
5225
5226#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005227
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005228static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
5229
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005230#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005231
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005232static __read_mostly int sched_debug_enabled;
Mike Travisf6630112009-11-17 18:22:15 -06005233
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005234static int __init sched_debug_setup(char *str)
Mike Travisf6630112009-11-17 18:22:15 -06005235{
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005236 sched_debug_enabled = 1;
Mike Travisf6630112009-11-17 18:22:15 -06005237
5238 return 0;
5239}
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005240early_param("sched_debug", sched_debug_setup);
5241
5242static inline bool sched_debug(void)
5243{
5244 return sched_debug_enabled;
5245}
Mike Travisf6630112009-11-17 18:22:15 -06005246
Mike Travis7c16ec52008-04-04 18:11:11 -07005247static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10305248 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005249{
5250 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07005251 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005252
Rusty Russell968ea6d2008-12-13 21:55:51 +10305253 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10305254 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005255
5256 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5257
5258 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005259 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005260 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005261 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5262 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005263 return -1;
5264 }
5265
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005266 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005267
Rusty Russell758b2cd2008-11-25 02:35:04 +10305268 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005269 printk(KERN_ERR "ERROR: domain->span does not contain "
5270 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005271 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10305272 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005273 printk(KERN_ERR "ERROR: domain->groups does not contain"
5274 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005275 }
5276
5277 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5278 do {
5279 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005280 printk("\n");
5281 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005282 break;
5283 }
5284
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005285 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005286 * Even though we initialize ->capacity to something semi-sane,
5287 * we leave capacity_orig unset. This allows us to detect if
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005288 * domain iteration is still funny without causing /0 traps.
5289 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005290 if (!group->sgc->capacity_orig) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005291 printk(KERN_CONT "\n");
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005292 printk(KERN_ERR "ERROR: domain->cpu_capacity not set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005293 break;
5294 }
5295
Rusty Russell758b2cd2008-11-25 02:35:04 +10305296 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005297 printk(KERN_CONT "\n");
5298 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005299 break;
5300 }
5301
Peter Zijlstracb83b622012-04-17 15:49:36 +02005302 if (!(sd->flags & SD_OVERLAP) &&
5303 cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005304 printk(KERN_CONT "\n");
5305 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005306 break;
5307 }
5308
Rusty Russell758b2cd2008-11-25 02:35:04 +10305309 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005310
Rusty Russell968ea6d2008-12-13 21:55:51 +10305311 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305312
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005313 printk(KERN_CONT " %s", str);
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005314 if (group->sgc->capacity != SCHED_CAPACITY_SCALE) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005315 printk(KERN_CONT " (cpu_capacity = %d)",
5316 group->sgc->capacity);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305317 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005318
5319 group = group->next;
5320 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005321 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005322
Rusty Russell758b2cd2008-11-25 02:35:04 +10305323 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005324 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005325
Rusty Russell758b2cd2008-11-25 02:35:04 +10305326 if (sd->parent &&
5327 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005328 printk(KERN_ERR "ERROR: parent span is not a superset "
5329 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005330 return 0;
5331}
5332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333static void sched_domain_debug(struct sched_domain *sd, int cpu)
5334{
5335 int level = 0;
5336
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005337 if (!sched_debug_enabled)
Mike Travisf6630112009-11-17 18:22:15 -06005338 return;
5339
Nick Piggin41c7ce92005-06-25 14:57:24 -07005340 if (!sd) {
5341 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5342 return;
5343 }
5344
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5346
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005347 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005348 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 level++;
5351 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005352 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005353 break;
5354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005356#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005357# define sched_domain_debug(sd, cpu) do { } while (0)
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005358static inline bool sched_debug(void)
5359{
5360 return false;
5361}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005362#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005364static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005365{
Rusty Russell758b2cd2008-11-25 02:35:04 +10305366 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005367 return 1;
5368
5369 /* Following flags need at least 2 groups */
5370 if (sd->flags & (SD_LOAD_BALANCE |
5371 SD_BALANCE_NEWIDLE |
5372 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005373 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005374 SD_SHARE_CPUCAPACITY |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005375 SD_SHARE_PKG_RESOURCES |
5376 SD_SHARE_POWERDOMAIN)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005377 if (sd->groups != sd->groups->next)
5378 return 0;
5379 }
5380
5381 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005382 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005383 return 0;
5384
5385 return 1;
5386}
5387
Ingo Molnar48f24c42006-07-03 00:25:40 -07005388static int
5389sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005390{
5391 unsigned long cflags = sd->flags, pflags = parent->flags;
5392
5393 if (sd_degenerate(parent))
5394 return 1;
5395
Rusty Russell758b2cd2008-11-25 02:35:04 +10305396 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005397 return 0;
5398
Suresh Siddha245af2c2005-06-25 14:57:25 -07005399 /* Flags needing groups don't count if only 1 group in parent */
5400 if (parent->groups == parent->groups->next) {
5401 pflags &= ~(SD_LOAD_BALANCE |
5402 SD_BALANCE_NEWIDLE |
5403 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005404 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005405 SD_SHARE_CPUCAPACITY |
Peter Zijlstra10866e622013-08-19 16:57:04 +02005406 SD_SHARE_PKG_RESOURCES |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005407 SD_PREFER_SIBLING |
5408 SD_SHARE_POWERDOMAIN);
Ken Chen54364992008-12-07 18:47:37 -08005409 if (nr_node_ids == 1)
5410 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005411 }
5412 if (~cflags & pflags)
5413 return 0;
5414
5415 return 1;
5416}
5417
Peter Zijlstradce840a2011-04-07 14:09:50 +02005418static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10305419{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005420 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01005421
Rusty Russell68e74562008-11-25 02:35:13 +10305422 cpupri_cleanup(&rd->cpupri);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005423 cpudl_cleanup(&rd->cpudl);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005424 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305425 free_cpumask_var(rd->rto_mask);
5426 free_cpumask_var(rd->online);
5427 free_cpumask_var(rd->span);
5428 kfree(rd);
5429}
5430
Gregory Haskins57d885f2008-01-25 21:08:18 +01005431static void rq_attach_root(struct rq *rq, struct root_domain *rd)
5432{
Ingo Molnara0490fa2009-02-12 11:35:40 +01005433 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005434 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005435
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005436 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005437
5438 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01005439 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005440
Rusty Russellc6c49272008-11-25 02:35:05 +10305441 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005442 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005443
Rusty Russellc6c49272008-11-25 02:35:05 +10305444 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01005445
Ingo Molnara0490fa2009-02-12 11:35:40 +01005446 /*
Shigeru Yoshida05159732013-11-17 12:12:36 +09005447 * If we dont want to free the old_rd yet then
Ingo Molnara0490fa2009-02-12 11:35:40 +01005448 * set old_rd to NULL to skip the freeing later
5449 * in this function:
5450 */
5451 if (!atomic_dec_and_test(&old_rd->refcount))
5452 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005453 }
5454
5455 atomic_inc(&rd->refcount);
5456 rq->rd = rd;
5457
Rusty Russellc6c49272008-11-25 02:35:05 +10305458 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04005459 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005460 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005461
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005462 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01005463
5464 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02005465 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005466}
5467
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005468static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005469{
5470 memset(rd, 0, sizeof(*rd));
5471
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005472 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08005473 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005474 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305475 goto free_span;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005476 if (!alloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305477 goto free_online;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005478 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
5479 goto free_dlo_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02005480
Dario Faggioli332ac172013-11-07 14:43:45 +01005481 init_dl_bw(&rd->dl_bw);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005482 if (cpudl_init(&rd->cpudl) != 0)
5483 goto free_dlo_mask;
Dario Faggioli332ac172013-11-07 14:43:45 +01005484
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005485 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10305486 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10305487 return 0;
5488
Rusty Russell68e74562008-11-25 02:35:13 +10305489free_rto_mask:
5490 free_cpumask_var(rd->rto_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005491free_dlo_mask:
5492 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305493free_online:
5494 free_cpumask_var(rd->online);
5495free_span:
5496 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08005497out:
Rusty Russellc6c49272008-11-25 02:35:05 +10305498 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005499}
5500
Peter Zijlstra029632f2011-10-25 10:00:11 +02005501/*
5502 * By default the system creates a single root-domain with all cpus as
5503 * members (mimicking the global state we have today).
5504 */
5505struct root_domain def_root_domain;
5506
Gregory Haskins57d885f2008-01-25 21:08:18 +01005507static void init_defrootdomain(void)
5508{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005509 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10305510
Gregory Haskins57d885f2008-01-25 21:08:18 +01005511 atomic_set(&def_root_domain.refcount, 1);
5512}
5513
Gregory Haskinsdc938522008-01-25 21:08:26 +01005514static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005515{
5516 struct root_domain *rd;
5517
5518 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
5519 if (!rd)
5520 return NULL;
5521
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005522 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305523 kfree(rd);
5524 return NULL;
5525 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01005526
5527 return rd;
5528}
5529
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005530static void free_sched_groups(struct sched_group *sg, int free_sgc)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005531{
5532 struct sched_group *tmp, *first;
5533
5534 if (!sg)
5535 return;
5536
5537 first = sg;
5538 do {
5539 tmp = sg->next;
5540
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005541 if (free_sgc && atomic_dec_and_test(&sg->sgc->ref))
5542 kfree(sg->sgc);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005543
5544 kfree(sg);
5545 sg = tmp;
5546 } while (sg != first);
5547}
5548
Peter Zijlstradce840a2011-04-07 14:09:50 +02005549static void free_sched_domain(struct rcu_head *rcu)
5550{
5551 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005552
5553 /*
5554 * If its an overlapping domain it has private groups, iterate and
5555 * nuke them all.
5556 */
5557 if (sd->flags & SD_OVERLAP) {
5558 free_sched_groups(sd->groups, 1);
5559 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005560 kfree(sd->groups->sgc);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005561 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005562 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005563 kfree(sd);
5564}
5565
5566static void destroy_sched_domain(struct sched_domain *sd, int cpu)
5567{
5568 call_rcu(&sd->rcu, free_sched_domain);
5569}
5570
5571static void destroy_sched_domains(struct sched_domain *sd, int cpu)
5572{
5573 for (; sd; sd = sd->parent)
5574 destroy_sched_domain(sd, cpu);
5575}
5576
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577/*
Peter Zijlstra518cd622011-12-07 15:07:31 +01005578 * Keep a special pointer to the highest sched_domain that has
5579 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
5580 * allows us to avoid some pointer chasing select_idle_sibling().
5581 *
5582 * Also keep a unique ID per domain (we use the first cpu number in
5583 * the cpumask of the domain), this allows us to quickly tell if
Peter Zijlstra39be3502012-01-26 12:44:34 +01005584 * two cpus are in the same cache domain, see cpus_share_cache().
Peter Zijlstra518cd622011-12-07 15:07:31 +01005585 */
5586DEFINE_PER_CPU(struct sched_domain *, sd_llc);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005587DEFINE_PER_CPU(int, sd_llc_size);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005588DEFINE_PER_CPU(int, sd_llc_id);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005589DEFINE_PER_CPU(struct sched_domain *, sd_numa);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305590DEFINE_PER_CPU(struct sched_domain *, sd_busy);
5591DEFINE_PER_CPU(struct sched_domain *, sd_asym);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005592
5593static void update_top_cache_domain(int cpu)
5594{
5595 struct sched_domain *sd;
Mel Gorman5d4cf992013-12-17 09:21:25 +00005596 struct sched_domain *busy_sd = NULL;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005597 int id = cpu;
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005598 int size = 1;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005599
5600 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005601 if (sd) {
Peter Zijlstra518cd622011-12-07 15:07:31 +01005602 id = cpumask_first(sched_domain_span(sd));
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005603 size = cpumask_weight(sched_domain_span(sd));
Mel Gorman5d4cf992013-12-17 09:21:25 +00005604 busy_sd = sd->parent; /* sd_busy */
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005605 }
Mel Gorman5d4cf992013-12-17 09:21:25 +00005606 rcu_assign_pointer(per_cpu(sd_busy, cpu), busy_sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005607
5608 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005609 per_cpu(sd_llc_size, cpu) = size;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005610 per_cpu(sd_llc_id, cpu) = id;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005611
5612 sd = lowest_flag_domain(cpu, SD_NUMA);
5613 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305614
5615 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
5616 rcu_assign_pointer(per_cpu(sd_asym, cpu), sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005617}
5618
5619/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01005620 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 * hold the hotplug lock.
5622 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01005623static void
5624cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005626 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005627 struct sched_domain *tmp;
5628
5629 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08005630 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005631 struct sched_domain *parent = tmp->parent;
5632 if (!parent)
5633 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08005634
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005635 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005636 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005637 if (parent->parent)
5638 parent->parent->child = tmp;
Peter Zijlstra10866e622013-08-19 16:57:04 +02005639 /*
5640 * Transfer SD_PREFER_SIBLING down in case of a
5641 * degenerate parent; the spans match for this
5642 * so the property transfers.
5643 */
5644 if (parent->flags & SD_PREFER_SIBLING)
5645 tmp->flags |= SD_PREFER_SIBLING;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005646 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08005647 } else
5648 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005649 }
5650
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005651 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005652 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005653 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005654 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005655 if (sd)
5656 sd->child = NULL;
5657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005659 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
Gregory Haskins57d885f2008-01-25 21:08:18 +01005661 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005662 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07005663 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005664 destroy_sched_domains(tmp, cpu);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005665
5666 update_top_cache_domain(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667}
5668
5669/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10305670static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
5672/* Setup the mask of cpus configured for isolated domains */
5673static int __init isolated_cpu_setup(char *str)
5674{
Rusty Russellbdddd292009-12-02 14:09:16 +10305675 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10305676 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677 return 1;
5678}
5679
Ingo Molnar8927f492007-10-15 17:00:13 +02005680__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005682struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005683 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005684 struct root_domain *rd;
5685};
5686
Andreas Herrmann2109b992009-08-18 12:53:00 +02005687enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005688 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005689 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02005690 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02005691 sa_none,
5692};
5693
Peter Zijlstrac1174872012-05-31 14:47:33 +02005694/*
5695 * Build an iteration mask that can exclude certain CPUs from the upwards
5696 * domain traversal.
5697 *
5698 * Asymmetric node setups can result in situations where the domain tree is of
5699 * unequal depth, make sure to skip domains that already cover the entire
5700 * range.
5701 *
5702 * In that case build_sched_domains() will have terminated the iteration early
5703 * and our sibling sd spans will be empty. Domains should always include the
5704 * cpu they're built on, so check that.
5705 *
5706 */
5707static void build_group_mask(struct sched_domain *sd, struct sched_group *sg)
5708{
5709 const struct cpumask *span = sched_domain_span(sd);
5710 struct sd_data *sdd = sd->private;
5711 struct sched_domain *sibling;
5712 int i;
5713
5714 for_each_cpu(i, span) {
5715 sibling = *per_cpu_ptr(sdd->sd, i);
5716 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
5717 continue;
5718
5719 cpumask_set_cpu(i, sched_group_mask(sg));
5720 }
5721}
5722
5723/*
5724 * Return the canonical balance cpu for this group, this is the first cpu
5725 * of this group that's also in the iteration mask.
5726 */
5727int group_balance_cpu(struct sched_group *sg)
5728{
5729 return cpumask_first_and(sched_group_cpus(sg), sched_group_mask(sg));
5730}
5731
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005732static int
5733build_overlap_sched_groups(struct sched_domain *sd, int cpu)
5734{
5735 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
5736 const struct cpumask *span = sched_domain_span(sd);
5737 struct cpumask *covered = sched_domains_tmpmask;
5738 struct sd_data *sdd = sd->private;
5739 struct sched_domain *child;
5740 int i;
5741
5742 cpumask_clear(covered);
5743
5744 for_each_cpu(i, span) {
5745 struct cpumask *sg_span;
5746
5747 if (cpumask_test_cpu(i, covered))
5748 continue;
5749
Peter Zijlstrac1174872012-05-31 14:47:33 +02005750 child = *per_cpu_ptr(sdd->sd, i);
5751
5752 /* See the comment near build_group_mask(). */
5753 if (!cpumask_test_cpu(i, sched_domain_span(child)))
5754 continue;
5755
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005756 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
Suresh Siddha4d78a222011-11-18 15:03:29 -08005757 GFP_KERNEL, cpu_to_node(cpu));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005758
5759 if (!sg)
5760 goto fail;
5761
5762 sg_span = sched_group_cpus(sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005763 if (child->child) {
5764 child = child->child;
5765 cpumask_copy(sg_span, sched_domain_span(child));
5766 } else
5767 cpumask_set_cpu(i, sg_span);
5768
5769 cpumask_or(covered, covered, sg_span);
5770
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005771 sg->sgc = *per_cpu_ptr(sdd->sgc, i);
5772 if (atomic_inc_return(&sg->sgc->ref) == 1)
Peter Zijlstrac1174872012-05-31 14:47:33 +02005773 build_group_mask(sd, sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005774
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005775 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005776 * Initialize sgc->capacity such that even if we mess up the
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005777 * domains and no possible iteration will get us here, we won't
5778 * die on a /0 trap.
5779 */
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005780 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005781 sg->sgc->capacity_orig = sg->sgc->capacity;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005782
5783 /*
5784 * Make sure the first group of this domain contains the
5785 * canonical balance cpu. Otherwise the sched_domain iteration
5786 * breaks. See update_sg_lb_stats().
5787 */
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005788 if ((!groups && cpumask_test_cpu(cpu, sg_span)) ||
Peter Zijlstrac1174872012-05-31 14:47:33 +02005789 group_balance_cpu(sg) == cpu)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005790 groups = sg;
5791
5792 if (!first)
5793 first = sg;
5794 if (last)
5795 last->next = sg;
5796 last = sg;
5797 last->next = first;
5798 }
5799 sd->groups = groups;
5800
5801 return 0;
5802
5803fail:
5804 free_sched_groups(first, 0);
5805
5806 return -ENOMEM;
5807}
5808
Peter Zijlstradce840a2011-04-07 14:09:50 +02005809static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005811 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
5812 struct sched_domain *child = sd->child;
5813
5814 if (child)
5815 cpu = cpumask_first(sched_domain_span(child));
5816
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005817 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005818 *sg = *per_cpu_ptr(sdd->sg, cpu);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005819 (*sg)->sgc = *per_cpu_ptr(sdd->sgc, cpu);
5820 atomic_set(&(*sg)->sgc->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005821 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005822
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823 return cpu;
5824}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825
Ingo Molnar48f24c42006-07-03 00:25:40 -07005826/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02005827 * build_sched_groups will build a circular linked list of the groups
5828 * covered by the given span, and will set each group's ->cpumask correctly,
Nicolas Pitreced549f2014-05-26 18:19:38 -04005829 * and ->cpu_capacity to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005830 *
5831 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07005832 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005833static int
5834build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005835{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005836 struct sched_group *first = NULL, *last = NULL;
5837 struct sd_data *sdd = sd->private;
5838 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005839 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005840 int i;
5841
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005842 get_group(cpu, sdd, &sd->groups);
5843 atomic_inc(&sd->groups->ref);
5844
Viresh Kumar09366292013-06-11 16:32:43 +05305845 if (cpu != cpumask_first(span))
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005846 return 0;
5847
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005848 lockdep_assert_held(&sched_domains_mutex);
5849 covered = sched_domains_tmpmask;
5850
Peter Zijlstradce840a2011-04-07 14:09:50 +02005851 cpumask_clear(covered);
5852
5853 for_each_cpu(i, span) {
5854 struct sched_group *sg;
Viresh Kumarcd08e922013-06-11 16:32:44 +05305855 int group, j;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005856
5857 if (cpumask_test_cpu(i, covered))
5858 continue;
5859
Viresh Kumarcd08e922013-06-11 16:32:44 +05305860 group = get_group(i, sdd, &sg);
Peter Zijlstrac1174872012-05-31 14:47:33 +02005861 cpumask_setall(sched_group_mask(sg));
Peter Zijlstradce840a2011-04-07 14:09:50 +02005862
5863 for_each_cpu(j, span) {
5864 if (get_group(j, sdd, NULL) != group)
5865 continue;
5866
5867 cpumask_set_cpu(j, covered);
5868 cpumask_set_cpu(j, sched_group_cpus(sg));
5869 }
5870
5871 if (!first)
5872 first = sg;
5873 if (last)
5874 last->next = sg;
5875 last = sg;
5876 }
5877 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005878
5879 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005880}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005881
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882/*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005883 * Initialize sched groups cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005884 *
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005885 * cpu_capacity indicates the capacity of sched group, which is used while
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005886 * distributing the load between different sched groups in a sched domain.
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005887 * Typically cpu_capacity for all the groups in a sched domain will be same
5888 * unless there are asymmetries in the topology. If there are asymmetries,
5889 * group having more cpu_capacity will pickup more load compared to the
5890 * group having less cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005891 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005892static void init_sched_groups_capacity(int cpu, struct sched_domain *sd)
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005893{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005894 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005895
Viresh Kumar94c95ba2013-06-11 16:32:45 +05305896 WARN_ON(!sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005897
5898 do {
5899 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
5900 sg = sg->next;
5901 } while (sg != sd->groups);
5902
Peter Zijlstrac1174872012-05-31 14:47:33 +02005903 if (cpu != group_balance_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005904 return;
5905
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005906 update_group_capacity(sd, cpu);
5907 atomic_set(&sg->sgc->nr_busy_cpus, sg->group_weight);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005908}
5909
5910/*
Mike Travis7c16ec52008-04-04 18:11:11 -07005911 * Initializers for schedule domains
5912 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
5913 */
5914
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005915static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02005916int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005917
5918static int __init setup_relax_domain_level(char *str)
5919{
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05005920 if (kstrtoint(str, 0, &default_relax_domain_level))
5921 pr_warn("Unable to set relax_domain_level\n");
Li Zefan30e0e172008-05-13 10:27:17 +08005922
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005923 return 1;
5924}
5925__setup("relax_domain_level=", setup_relax_domain_level);
5926
5927static void set_domain_attribute(struct sched_domain *sd,
5928 struct sched_domain_attr *attr)
5929{
5930 int request;
5931
5932 if (!attr || attr->relax_domain_level < 0) {
5933 if (default_relax_domain_level < 0)
5934 return;
5935 else
5936 request = default_relax_domain_level;
5937 } else
5938 request = attr->relax_domain_level;
5939 if (request < sd->level) {
5940 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005941 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005942 } else {
5943 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005944 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005945 }
5946}
5947
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005948static void __sdt_free(const struct cpumask *cpu_map);
5949static int __sdt_alloc(const struct cpumask *cpu_map);
5950
Andreas Herrmann2109b992009-08-18 12:53:00 +02005951static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
5952 const struct cpumask *cpu_map)
5953{
5954 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005955 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02005956 if (!atomic_read(&d->rd->refcount))
5957 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005958 case sa_sd:
5959 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02005960 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005961 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02005962 case sa_none:
5963 break;
5964 }
5965}
5966
5967static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
5968 const struct cpumask *cpu_map)
5969{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005970 memset(d, 0, sizeof(*d));
5971
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005972 if (__sdt_alloc(cpu_map))
5973 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005974 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005975 if (!d->sd)
5976 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005977 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02005978 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005979 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005980 return sa_rootdomain;
5981}
5982
Peter Zijlstradce840a2011-04-07 14:09:50 +02005983/*
5984 * NULL the sd_data elements we've used to build the sched_domain and
5985 * sched_group structure so that the subsequent __free_domain_allocs()
5986 * will not free the data we're using.
5987 */
5988static void claim_allocations(int cpu, struct sched_domain *sd)
5989{
5990 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005991
5992 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
5993 *per_cpu_ptr(sdd->sd, cpu) = NULL;
5994
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005995 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02005996 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005997
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005998 if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref))
5999 *per_cpu_ptr(sdd->sgc, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006000}
6001
Peter Zijlstracb83b622012-04-17 15:49:36 +02006002#ifdef CONFIG_NUMA
Peter Zijlstracb83b622012-04-17 15:49:36 +02006003static int sched_domains_numa_levels;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006004static int *sched_domains_numa_distance;
6005static struct cpumask ***sched_domains_numa_masks;
6006static int sched_domains_curr_level;
Vincent Guittot143e1e22014-04-11 11:44:37 +02006007#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02006008
Vincent Guittot143e1e22014-04-11 11:44:37 +02006009/*
6010 * SD_flags allowed in topology descriptions.
6011 *
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006012 * SD_SHARE_CPUCAPACITY - describes SMT topologies
Vincent Guittot143e1e22014-04-11 11:44:37 +02006013 * SD_SHARE_PKG_RESOURCES - describes shared caches
6014 * SD_NUMA - describes NUMA topologies
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006015 * SD_SHARE_POWERDOMAIN - describes shared power domain
Vincent Guittot143e1e22014-04-11 11:44:37 +02006016 *
6017 * Odd one out:
6018 * SD_ASYM_PACKING - describes SMT quirks
6019 */
6020#define TOPOLOGY_SD_FLAGS \
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006021 (SD_SHARE_CPUCAPACITY | \
Vincent Guittot143e1e22014-04-11 11:44:37 +02006022 SD_SHARE_PKG_RESOURCES | \
6023 SD_NUMA | \
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006024 SD_ASYM_PACKING | \
6025 SD_SHARE_POWERDOMAIN)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006026
6027static struct sched_domain *
Vincent Guittot143e1e22014-04-11 11:44:37 +02006028sd_init(struct sched_domain_topology_level *tl, int cpu)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006029{
6030 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu);
Vincent Guittot143e1e22014-04-11 11:44:37 +02006031 int sd_weight, sd_flags = 0;
6032
6033#ifdef CONFIG_NUMA
6034 /*
6035 * Ugly hack to pass state to sd_numa_mask()...
6036 */
6037 sched_domains_curr_level = tl->numa_level;
6038#endif
6039
6040 sd_weight = cpumask_weight(tl->mask(cpu));
6041
6042 if (tl->sd_flags)
6043 sd_flags = (*tl->sd_flags)();
6044 if (WARN_ONCE(sd_flags & ~TOPOLOGY_SD_FLAGS,
6045 "wrong sd_flags in topology description\n"))
6046 sd_flags &= ~TOPOLOGY_SD_FLAGS;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006047
6048 *sd = (struct sched_domain){
6049 .min_interval = sd_weight,
6050 .max_interval = 2*sd_weight,
6051 .busy_factor = 32,
Peter Zijlstra870a0bb2012-05-11 00:26:27 +02006052 .imbalance_pct = 125,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006053
6054 .cache_nice_tries = 0,
6055 .busy_idx = 0,
6056 .idle_idx = 0,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006057 .newidle_idx = 0,
6058 .wake_idx = 0,
6059 .forkexec_idx = 0,
6060
6061 .flags = 1*SD_LOAD_BALANCE
6062 | 1*SD_BALANCE_NEWIDLE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006063 | 1*SD_BALANCE_EXEC
6064 | 1*SD_BALANCE_FORK
Peter Zijlstracb83b622012-04-17 15:49:36 +02006065 | 0*SD_BALANCE_WAKE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006066 | 1*SD_WAKE_AFFINE
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006067 | 0*SD_SHARE_CPUCAPACITY
Peter Zijlstracb83b622012-04-17 15:49:36 +02006068 | 0*SD_SHARE_PKG_RESOURCES
Vincent Guittot143e1e22014-04-11 11:44:37 +02006069 | 0*SD_SERIALIZE
Peter Zijlstracb83b622012-04-17 15:49:36 +02006070 | 0*SD_PREFER_SIBLING
Vincent Guittot143e1e22014-04-11 11:44:37 +02006071 | 0*SD_NUMA
6072 | sd_flags
Peter Zijlstracb83b622012-04-17 15:49:36 +02006073 ,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006074
Peter Zijlstracb83b622012-04-17 15:49:36 +02006075 .last_balance = jiffies,
6076 .balance_interval = sd_weight,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006077 .smt_gain = 0,
Jason Low2b4cfe62014-04-23 18:30:34 -07006078 .max_newidle_lb_cost = 0,
6079 .next_decay_max_lb_cost = jiffies,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006080#ifdef CONFIG_SCHED_DEBUG
6081 .name = tl->name,
6082#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02006083 };
Peter Zijlstracb83b622012-04-17 15:49:36 +02006084
6085 /*
Vincent Guittot143e1e22014-04-11 11:44:37 +02006086 * Convert topological properties into behaviour.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006087 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006088
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006089 if (sd->flags & SD_SHARE_CPUCAPACITY) {
Vincent Guittot143e1e22014-04-11 11:44:37 +02006090 sd->imbalance_pct = 110;
6091 sd->smt_gain = 1178; /* ~15% */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006092
6093 } else if (sd->flags & SD_SHARE_PKG_RESOURCES) {
6094 sd->imbalance_pct = 117;
6095 sd->cache_nice_tries = 1;
6096 sd->busy_idx = 2;
6097
6098#ifdef CONFIG_NUMA
6099 } else if (sd->flags & SD_NUMA) {
6100 sd->cache_nice_tries = 2;
6101 sd->busy_idx = 3;
6102 sd->idle_idx = 2;
6103
6104 sd->flags |= SD_SERIALIZE;
6105 if (sched_domains_numa_distance[tl->numa_level] > RECLAIM_DISTANCE) {
6106 sd->flags &= ~(SD_BALANCE_EXEC |
6107 SD_BALANCE_FORK |
6108 SD_WAKE_AFFINE);
6109 }
6110
6111#endif
6112 } else {
6113 sd->flags |= SD_PREFER_SIBLING;
6114 sd->cache_nice_tries = 1;
6115 sd->busy_idx = 2;
6116 sd->idle_idx = 1;
6117 }
6118
6119 sd->private = &tl->data;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006120
6121 return sd;
6122}
6123
Vincent Guittot143e1e22014-04-11 11:44:37 +02006124/*
6125 * Topology list, bottom-up.
6126 */
6127static struct sched_domain_topology_level default_topology[] = {
6128#ifdef CONFIG_SCHED_SMT
6129 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
6130#endif
6131#ifdef CONFIG_SCHED_MC
6132 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
6133#endif
Vincent Guittot143e1e22014-04-11 11:44:37 +02006134 { cpu_cpu_mask, SD_INIT_NAME(DIE) },
6135 { NULL, },
6136};
6137
6138struct sched_domain_topology_level *sched_domain_topology = default_topology;
6139
6140#define for_each_sd_topology(tl) \
6141 for (tl = sched_domain_topology; tl->mask; tl++)
6142
6143void set_sched_topology(struct sched_domain_topology_level *tl)
6144{
6145 sched_domain_topology = tl;
6146}
6147
6148#ifdef CONFIG_NUMA
6149
Peter Zijlstracb83b622012-04-17 15:49:36 +02006150static const struct cpumask *sd_numa_mask(int cpu)
6151{
6152 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
6153}
6154
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006155static void sched_numa_warn(const char *str)
6156{
6157 static int done = false;
6158 int i,j;
6159
6160 if (done)
6161 return;
6162
6163 done = true;
6164
6165 printk(KERN_WARNING "ERROR: %s\n\n", str);
6166
6167 for (i = 0; i < nr_node_ids; i++) {
6168 printk(KERN_WARNING " ");
6169 for (j = 0; j < nr_node_ids; j++)
6170 printk(KERN_CONT "%02d ", node_distance(i,j));
6171 printk(KERN_CONT "\n");
6172 }
6173 printk(KERN_WARNING "\n");
6174}
6175
6176static bool find_numa_distance(int distance)
6177{
6178 int i;
6179
6180 if (distance == node_distance(0, 0))
6181 return true;
6182
6183 for (i = 0; i < sched_domains_numa_levels; i++) {
6184 if (sched_domains_numa_distance[i] == distance)
6185 return true;
6186 }
6187
6188 return false;
6189}
6190
Peter Zijlstracb83b622012-04-17 15:49:36 +02006191static void sched_init_numa(void)
6192{
6193 int next_distance, curr_distance = node_distance(0, 0);
6194 struct sched_domain_topology_level *tl;
6195 int level = 0;
6196 int i, j, k;
6197
Peter Zijlstracb83b622012-04-17 15:49:36 +02006198 sched_domains_numa_distance = kzalloc(sizeof(int) * nr_node_ids, GFP_KERNEL);
6199 if (!sched_domains_numa_distance)
6200 return;
6201
6202 /*
6203 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
6204 * unique distances in the node_distance() table.
6205 *
6206 * Assumes node_distance(0,j) includes all distances in
6207 * node_distance(i,j) in order to avoid cubic time.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006208 */
6209 next_distance = curr_distance;
6210 for (i = 0; i < nr_node_ids; i++) {
6211 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006212 for (k = 0; k < nr_node_ids; k++) {
6213 int distance = node_distance(i, k);
6214
6215 if (distance > curr_distance &&
6216 (distance < next_distance ||
6217 next_distance == curr_distance))
6218 next_distance = distance;
6219
6220 /*
6221 * While not a strong assumption it would be nice to know
6222 * about cases where if node A is connected to B, B is not
6223 * equally connected to A.
6224 */
6225 if (sched_debug() && node_distance(k, i) != distance)
6226 sched_numa_warn("Node-distance not symmetric");
6227
6228 if (sched_debug() && i && !find_numa_distance(distance))
6229 sched_numa_warn("Node-0 not representative");
6230 }
6231 if (next_distance != curr_distance) {
6232 sched_domains_numa_distance[level++] = next_distance;
6233 sched_domains_numa_levels = level;
6234 curr_distance = next_distance;
6235 } else break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006236 }
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006237
6238 /*
6239 * In case of sched_debug() we verify the above assumption.
6240 */
6241 if (!sched_debug())
6242 break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006243 }
6244 /*
6245 * 'level' contains the number of unique distances, excluding the
6246 * identity distance node_distance(i,i).
6247 *
Viresh Kumar28b4a522013-04-05 16:26:46 +05306248 * The sched_domains_numa_distance[] array includes the actual distance
Peter Zijlstracb83b622012-04-17 15:49:36 +02006249 * numbers.
6250 */
6251
Tang Chen5f7865f2012-09-25 21:12:30 +08006252 /*
6253 * Here, we should temporarily reset sched_domains_numa_levels to 0.
6254 * If it fails to allocate memory for array sched_domains_numa_masks[][],
6255 * the array will contain less then 'level' members. This could be
6256 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
6257 * in other functions.
6258 *
6259 * We reset it to 'level' at the end of this function.
6260 */
6261 sched_domains_numa_levels = 0;
6262
Peter Zijlstracb83b622012-04-17 15:49:36 +02006263 sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL);
6264 if (!sched_domains_numa_masks)
6265 return;
6266
6267 /*
6268 * Now for each level, construct a mask per node which contains all
6269 * cpus of nodes that are that many hops away from us.
6270 */
6271 for (i = 0; i < level; i++) {
6272 sched_domains_numa_masks[i] =
6273 kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
6274 if (!sched_domains_numa_masks[i])
6275 return;
6276
6277 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstra2ea45802012-05-25 09:26:43 +02006278 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
Peter Zijlstracb83b622012-04-17 15:49:36 +02006279 if (!mask)
6280 return;
6281
6282 sched_domains_numa_masks[i][j] = mask;
6283
6284 for (k = 0; k < nr_node_ids; k++) {
Peter Zijlstradd7d8632012-05-11 00:56:20 +02006285 if (node_distance(j, k) > sched_domains_numa_distance[i])
Peter Zijlstracb83b622012-04-17 15:49:36 +02006286 continue;
6287
6288 cpumask_or(mask, mask, cpumask_of_node(k));
6289 }
6290 }
6291 }
6292
Vincent Guittot143e1e22014-04-11 11:44:37 +02006293 /* Compute default topology size */
6294 for (i = 0; sched_domain_topology[i].mask; i++);
6295
Vincent Guittotc515db82014-05-13 11:11:01 +02006296 tl = kzalloc((i + level + 1) *
Peter Zijlstracb83b622012-04-17 15:49:36 +02006297 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
6298 if (!tl)
6299 return;
6300
6301 /*
6302 * Copy the default topology bits..
6303 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006304 for (i = 0; sched_domain_topology[i].mask; i++)
6305 tl[i] = sched_domain_topology[i];
Peter Zijlstracb83b622012-04-17 15:49:36 +02006306
6307 /*
6308 * .. and append 'j' levels of NUMA goodness.
6309 */
6310 for (j = 0; j < level; i++, j++) {
6311 tl[i] = (struct sched_domain_topology_level){
Peter Zijlstracb83b622012-04-17 15:49:36 +02006312 .mask = sd_numa_mask,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006313 .sd_flags = cpu_numa_flags,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006314 .flags = SDTL_OVERLAP,
6315 .numa_level = j,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006316 SD_INIT_NAME(NUMA)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006317 };
6318 }
6319
6320 sched_domain_topology = tl;
Tang Chen5f7865f2012-09-25 21:12:30 +08006321
6322 sched_domains_numa_levels = level;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006323}
Tang Chen301a5cb2012-09-25 21:12:31 +08006324
6325static void sched_domains_numa_masks_set(int cpu)
6326{
6327 int i, j;
6328 int node = cpu_to_node(cpu);
6329
6330 for (i = 0; i < sched_domains_numa_levels; i++) {
6331 for (j = 0; j < nr_node_ids; j++) {
6332 if (node_distance(j, node) <= sched_domains_numa_distance[i])
6333 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
6334 }
6335 }
6336}
6337
6338static void sched_domains_numa_masks_clear(int cpu)
6339{
6340 int i, j;
6341 for (i = 0; i < sched_domains_numa_levels; i++) {
6342 for (j = 0; j < nr_node_ids; j++)
6343 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
6344 }
6345}
6346
6347/*
6348 * Update sched_domains_numa_masks[level][node] array when new cpus
6349 * are onlined.
6350 */
6351static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6352 unsigned long action,
6353 void *hcpu)
6354{
6355 int cpu = (long)hcpu;
6356
6357 switch (action & ~CPU_TASKS_FROZEN) {
6358 case CPU_ONLINE:
6359 sched_domains_numa_masks_set(cpu);
6360 break;
6361
6362 case CPU_DEAD:
6363 sched_domains_numa_masks_clear(cpu);
6364 break;
6365
6366 default:
6367 return NOTIFY_DONE;
6368 }
6369
6370 return NOTIFY_OK;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006371}
6372#else
6373static inline void sched_init_numa(void)
6374{
6375}
Tang Chen301a5cb2012-09-25 21:12:31 +08006376
6377static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6378 unsigned long action,
6379 void *hcpu)
6380{
6381 return 0;
6382}
Peter Zijlstracb83b622012-04-17 15:49:36 +02006383#endif /* CONFIG_NUMA */
6384
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006385static int __sdt_alloc(const struct cpumask *cpu_map)
6386{
6387 struct sched_domain_topology_level *tl;
6388 int j;
6389
Viresh Kumar27723a62013-06-10 16:27:20 +05306390 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006391 struct sd_data *sdd = &tl->data;
6392
6393 sdd->sd = alloc_percpu(struct sched_domain *);
6394 if (!sdd->sd)
6395 return -ENOMEM;
6396
6397 sdd->sg = alloc_percpu(struct sched_group *);
6398 if (!sdd->sg)
6399 return -ENOMEM;
6400
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006401 sdd->sgc = alloc_percpu(struct sched_group_capacity *);
6402 if (!sdd->sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006403 return -ENOMEM;
6404
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006405 for_each_cpu(j, cpu_map) {
6406 struct sched_domain *sd;
6407 struct sched_group *sg;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006408 struct sched_group_capacity *sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006409
6410 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
6411 GFP_KERNEL, cpu_to_node(j));
6412 if (!sd)
6413 return -ENOMEM;
6414
6415 *per_cpu_ptr(sdd->sd, j) = sd;
6416
6417 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
6418 GFP_KERNEL, cpu_to_node(j));
6419 if (!sg)
6420 return -ENOMEM;
6421
Igor Mammedov30b4e9e2012-05-09 12:38:28 +02006422 sg->next = sg;
6423
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006424 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006425
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006426 sgc = kzalloc_node(sizeof(struct sched_group_capacity) + cpumask_size(),
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006427 GFP_KERNEL, cpu_to_node(j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006428 if (!sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006429 return -ENOMEM;
6430
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006431 *per_cpu_ptr(sdd->sgc, j) = sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006432 }
6433 }
6434
6435 return 0;
6436}
6437
6438static void __sdt_free(const struct cpumask *cpu_map)
6439{
6440 struct sched_domain_topology_level *tl;
6441 int j;
6442
Viresh Kumar27723a62013-06-10 16:27:20 +05306443 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006444 struct sd_data *sdd = &tl->data;
6445
6446 for_each_cpu(j, cpu_map) {
he, bofb2cf2c2012-04-25 19:59:21 +08006447 struct sched_domain *sd;
6448
6449 if (sdd->sd) {
6450 sd = *per_cpu_ptr(sdd->sd, j);
6451 if (sd && (sd->flags & SD_OVERLAP))
6452 free_sched_groups(sd->groups, 0);
6453 kfree(*per_cpu_ptr(sdd->sd, j));
6454 }
6455
6456 if (sdd->sg)
6457 kfree(*per_cpu_ptr(sdd->sg, j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006458 if (sdd->sgc)
6459 kfree(*per_cpu_ptr(sdd->sgc, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006460 }
6461 free_percpu(sdd->sd);
he, bofb2cf2c2012-04-25 19:59:21 +08006462 sdd->sd = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006463 free_percpu(sdd->sg);
he, bofb2cf2c2012-04-25 19:59:21 +08006464 sdd->sg = NULL;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006465 free_percpu(sdd->sgc);
6466 sdd->sgc = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006467 }
6468}
6469
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006470struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306471 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
6472 struct sched_domain *child, int cpu)
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006473{
Vincent Guittot143e1e22014-04-11 11:44:37 +02006474 struct sched_domain *sd = sd_init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006475 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02006476 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006477
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006478 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02006479 if (child) {
6480 sd->level = child->level + 1;
6481 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02006482 child->parent = sd;
Viresh Kumarc75e0122013-06-10 16:27:19 +05306483 sd->child = child;
Peter Zijlstra6ae72df2014-07-22 11:47:40 +02006484
6485 if (!cpumask_subset(sched_domain_span(child),
6486 sched_domain_span(sd))) {
6487 pr_err("BUG: arch topology borken\n");
6488#ifdef CONFIG_SCHED_DEBUG
6489 pr_err(" the %s domain not a subset of the %s domain\n",
6490 child->name, sd->name);
6491#endif
6492 /* Fixup, ensure @sd has at least @child cpus. */
6493 cpumask_or(sched_domain_span(sd),
6494 sched_domain_span(sd),
6495 sched_domain_span(child));
6496 }
6497
Peter Zijlstra60495e72011-04-07 14:10:04 +02006498 }
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05006499 set_domain_attribute(sd, attr);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006500
6501 return sd;
6502}
6503
Mike Travis7c16ec52008-04-04 18:11:11 -07006504/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006505 * Build sched domains for a given set of cpus and attach the sched domains
6506 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006508static int build_sched_domains(const struct cpumask *cpu_map,
6509 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510{
Viresh Kumar1c632162013-06-10 16:27:18 +05306511 enum s_alloc alloc_state;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006512 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006513 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02006514 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10306515
Andreas Herrmann2109b992009-08-18 12:53:00 +02006516 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
6517 if (alloc_state != sa_rootdomain)
6518 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07006519
Peter Zijlstradce840a2011-04-07 14:09:50 +02006520 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10306521 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02006522 struct sched_domain_topology_level *tl;
6523
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02006524 sd = NULL;
Viresh Kumar27723a62013-06-10 16:27:20 +05306525 for_each_sd_topology(tl) {
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306526 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
Viresh Kumar22da9562013-06-04 15:41:15 +05306527 if (tl == sched_domain_topology)
6528 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006529 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
6530 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02006531 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
6532 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006533 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006534 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006535
Peter Zijlstradce840a2011-04-07 14:09:50 +02006536 /* Build the groups for the domains */
6537 for_each_cpu(i, cpu_map) {
6538 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6539 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006540 if (sd->flags & SD_OVERLAP) {
6541 if (build_overlap_sched_groups(sd, i))
6542 goto error;
6543 } else {
6544 if (build_sched_groups(sd, i))
6545 goto error;
6546 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02006547 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02006548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549
Nicolas Pitreced549f2014-05-26 18:19:38 -04006550 /* Calculate CPU capacity for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02006551 for (i = nr_cpumask_bits-1; i >= 0; i--) {
6552 if (!cpumask_test_cpu(i, cpu_map))
6553 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554
Peter Zijlstradce840a2011-04-07 14:09:50 +02006555 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6556 claim_allocations(i, sd);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006557 init_sched_groups_capacity(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006558 }
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006559 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006560
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006562 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306563 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006564 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006565 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006567 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006568
Peter Zijlstra822ff792011-04-07 14:09:51 +02006569 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006570error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02006571 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02006572 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573}
Paul Jackson029190c2007-10-18 23:40:20 -07006574
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306575static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07006576static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02006577static struct sched_domain_attr *dattr_cur;
6578 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07006579
6580/*
6581 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10306582 * cpumask) fails, then fallback to a single sched domain,
6583 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07006584 */
Rusty Russell42128232008-11-25 02:35:12 +10306585static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07006586
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006587/*
6588 * arch_update_cpu_topology lets virtualized architectures update the
6589 * cpu core maps. It is supposed to return 1 if the topology changed
6590 * or 0 if it stayed the same.
6591 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -07006592int __weak arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01006593{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006594 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01006595}
6596
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306597cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
6598{
6599 int i;
6600 cpumask_var_t *doms;
6601
6602 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
6603 if (!doms)
6604 return NULL;
6605 for (i = 0; i < ndoms; i++) {
6606 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
6607 free_sched_domains(doms, i);
6608 return NULL;
6609 }
6610 }
6611 return doms;
6612}
6613
6614void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
6615{
6616 unsigned int i;
6617 for (i = 0; i < ndoms; i++)
6618 free_cpumask_var(doms[i]);
6619 kfree(doms);
6620}
6621
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006622/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006623 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006624 * For now this just excludes isolated cpus, but could be used to
6625 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006626 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006627static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006628{
Milton Miller73785472007-10-24 18:23:48 +02006629 int err;
6630
Heiko Carstens22e52b02008-03-12 18:31:59 +01006631 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006632 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306633 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07006634 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306635 doms_cur = &fallback_doms;
6636 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006637 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02006638 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006639
6640 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006641}
6642
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006643/*
6644 * Detach sched domains from a group of cpus specified in cpu_map
6645 * These cpus will now be attached to the NULL domain
6646 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306647static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006648{
6649 int i;
6650
Peter Zijlstradce840a2011-04-07 14:09:50 +02006651 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306652 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006653 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006654 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006655}
6656
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006657/* handle null as "default" */
6658static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
6659 struct sched_domain_attr *new, int idx_new)
6660{
6661 struct sched_domain_attr tmp;
6662
6663 /* fast path */
6664 if (!new && !cur)
6665 return 1;
6666
6667 tmp = SD_ATTR_INIT;
6668 return !memcmp(cur ? (cur + idx_cur) : &tmp,
6669 new ? (new + idx_new) : &tmp,
6670 sizeof(struct sched_domain_attr));
6671}
6672
Paul Jackson029190c2007-10-18 23:40:20 -07006673/*
6674 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006675 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006676 * doms_new[] to the current sched domain partitioning, doms_cur[].
6677 * It destroys each deleted domain and builds each new domain.
6678 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306679 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006680 * The masks don't intersect (don't overlap.) We should setup one
6681 * sched domain for each mask. CPUs not in any of the cpumasks will
6682 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006683 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6684 * it as it is.
6685 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306686 * The passed in 'doms_new' should be allocated using
6687 * alloc_sched_domains. This routine takes ownership of it and will
6688 * free_sched_domains it when done with it. If the caller failed the
6689 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
6690 * and partition_sched_domains() will fallback to the single partition
6691 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07006692 *
Rusty Russell96f874e22008-11-25 02:35:14 +10306693 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08006694 * ndoms_new == 0 is a special case for destroying existing domains,
6695 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006696 *
Paul Jackson029190c2007-10-18 23:40:20 -07006697 * Call with hotplug lock held
6698 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306699void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006700 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07006701{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006702 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006703 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07006704
Heiko Carstens712555e2008-04-28 11:33:07 +02006705 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006706
Milton Miller73785472007-10-24 18:23:48 +02006707 /* always unregister in case we don't destroy any domains */
6708 unregister_sched_domain_sysctl();
6709
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006710 /* Let architecture update cpu core mappings. */
6711 new_topology = arch_update_cpu_topology();
6712
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006713 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07006714
6715 /* Destroy deleted domains */
6716 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006717 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306718 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006719 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006720 goto match1;
6721 }
6722 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306723 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07006724match1:
6725 ;
6726 }
6727
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006728 n = ndoms_cur;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006729 if (doms_new == NULL) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006730 n = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306731 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006732 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08006733 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006734 }
6735
Paul Jackson029190c2007-10-18 23:40:20 -07006736 /* Build new domains */
6737 for (i = 0; i < ndoms_new; i++) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006738 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306739 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006740 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006741 goto match2;
6742 }
6743 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006744 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07006745match2:
6746 ;
6747 }
6748
6749 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306750 if (doms_cur != &fallback_doms)
6751 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006752 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07006753 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006754 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07006755 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006756
6757 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006758
Heiko Carstens712555e2008-04-28 11:33:07 +02006759 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07006760}
6761
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306762static int num_cpus_frozen; /* used to mark begin/end of suspend/resume */
6763
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764/*
Tejun Heo3a101d02010-06-08 21:40:36 +02006765 * Update cpusets according to cpu_active mask. If cpusets are
6766 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
6767 * around partition_sched_domains().
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306768 *
6769 * If we come here as part of a suspend/resume, don't touch cpusets because we
6770 * want to restore it back to its original state upon resume anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02006772static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
6773 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306775 switch (action) {
6776 case CPU_ONLINE_FROZEN:
6777 case CPU_DOWN_FAILED_FROZEN:
6778
6779 /*
6780 * num_cpus_frozen tracks how many CPUs are involved in suspend
6781 * resume sequence. As long as this is not the last online
6782 * operation in the resume sequence, just build a single sched
6783 * domain, ignoring cpusets.
6784 */
6785 num_cpus_frozen--;
6786 if (likely(num_cpus_frozen)) {
6787 partition_sched_domains(1, NULL, NULL);
6788 break;
6789 }
6790
6791 /*
6792 * This is the last CPU online operation. So fall through and
6793 * restore the original sched domains by considering the
6794 * cpuset configurations.
6795 */
6796
Max Krasnyanskye761b772008-07-15 04:43:49 -07006797 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006798 case CPU_DOWN_FAILED:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306799 cpuset_update_active_cpus(true);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306800 break;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006801 default:
6802 return NOTIFY_DONE;
6803 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306804 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006805}
Tejun Heo3a101d02010-06-08 21:40:36 +02006806
Tejun Heo0b2e9182010-06-21 23:53:31 +02006807static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
6808 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02006809{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306810 switch (action) {
Tejun Heo3a101d02010-06-08 21:40:36 +02006811 case CPU_DOWN_PREPARE:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306812 cpuset_update_active_cpus(false);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306813 break;
6814 case CPU_DOWN_PREPARE_FROZEN:
6815 num_cpus_frozen++;
6816 partition_sched_domains(1, NULL, NULL);
6817 break;
Tejun Heo3a101d02010-06-08 21:40:36 +02006818 default:
6819 return NOTIFY_DONE;
6820 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306821 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02006822}
Max Krasnyanskye761b772008-07-15 04:43:49 -07006823
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824void __init sched_init_smp(void)
6825{
Rusty Russelldcc30a32008-11-25 02:35:12 +10306826 cpumask_var_t non_isolated_cpus;
6827
6828 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08006829 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006830
Peter Zijlstracb83b622012-04-17 15:49:36 +02006831 sched_init_numa();
6832
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02006833 /*
6834 * There's no userspace yet to cause hotplug operations; hence all the
6835 * cpu masks are stable and all blatant races in the below code cannot
6836 * happen.
6837 */
Heiko Carstens712555e2008-04-28 11:33:07 +02006838 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006839 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10306840 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
6841 if (cpumask_empty(non_isolated_cpus))
6842 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02006843 mutex_unlock(&sched_domains_mutex);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006844
Tang Chen301a5cb2012-09-25 21:12:31 +08006845 hotcpu_notifier(sched_domains_numa_masks_update, CPU_PRI_SCHED_ACTIVE);
Tejun Heo3a101d02010-06-08 21:40:36 +02006846 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
6847 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006848
Peter Zijlstrab328ca12008-04-29 10:02:46 +02006849 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07006850
6851 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306852 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07006853 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006854 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10306855 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10306856
Rusty Russell0e3900e2008-11-25 02:35:13 +10306857 init_sched_rt_class();
Juri Lelli1baca4c2013-11-07 14:43:38 +01006858 init_sched_dl_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859}
6860#else
6861void __init sched_init_smp(void)
6862{
Ingo Molnar19978ca2007-11-09 22:39:38 +01006863 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864}
6865#endif /* CONFIG_SMP */
6866
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05306867const_debug unsigned int sysctl_timer_migration = 1;
6868
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869int in_sched_functions(unsigned long addr)
6870{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871 return in_lock_functions(addr) ||
6872 (addr >= (unsigned long)__sched_text_start
6873 && addr < (unsigned long)__sched_text_end);
6874}
6875
Peter Zijlstra029632f2011-10-25 10:00:11 +02006876#ifdef CONFIG_CGROUP_SCHED
Li Zefan27b4b932013-03-05 16:07:52 +08006877/*
6878 * Default task group.
6879 * Every task in system belongs to this group at bootup.
6880 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02006881struct task_group root_task_group;
Mike Galbraith35cf4e52012-08-07 05:00:13 +02006882LIST_HEAD(task_groups);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006883#endif
6884
Joonsoo Kime6252c32013-04-23 17:27:41 +09006885DECLARE_PER_CPU(cpumask_var_t, load_balance_mask);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006886
Linus Torvalds1da177e2005-04-16 15:20:36 -07006887void __init sched_init(void)
6888{
Ingo Molnardd41f592007-07-09 18:51:59 +02006889 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07006890 unsigned long alloc_size = 0, ptr;
6891
6892#ifdef CONFIG_FAIR_GROUP_SCHED
6893 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6894#endif
6895#ifdef CONFIG_RT_GROUP_SCHED
6896 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6897#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306898#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10306899 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306900#endif
Mike Travis434d53b2008-04-04 18:11:04 -07006901 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03006902 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07006903
6904#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006905 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006906 ptr += nr_cpu_ids * sizeof(void **);
6907
Yong Zhang07e06b02011-01-07 15:17:36 +08006908 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006909 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006910
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006911#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07006912#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006913 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006914 ptr += nr_cpu_ids * sizeof(void **);
6915
Yong Zhang07e06b02011-01-07 15:17:36 +08006916 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006917 ptr += nr_cpu_ids * sizeof(void **);
6918
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006919#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306920#ifdef CONFIG_CPUMASK_OFFSTACK
6921 for_each_possible_cpu(i) {
Joonsoo Kime6252c32013-04-23 17:27:41 +09006922 per_cpu(load_balance_mask, i) = (void *)ptr;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306923 ptr += cpumask_size();
6924 }
6925#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07006926 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006927
Dario Faggioli332ac172013-11-07 14:43:45 +01006928 init_rt_bandwidth(&def_rt_bandwidth,
6929 global_rt_period(), global_rt_runtime());
6930 init_dl_bandwidth(&def_dl_bandwidth,
Peter Zijlstra17248132013-12-17 12:44:49 +01006931 global_rt_period(), global_rt_runtime());
Dario Faggioli332ac172013-11-07 14:43:45 +01006932
Gregory Haskins57d885f2008-01-25 21:08:18 +01006933#ifdef CONFIG_SMP
6934 init_defrootdomain();
6935#endif
6936
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006937#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006938 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006939 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006940#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006941
Dhaval Giani7c941432010-01-20 13:26:18 +01006942#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006943 list_add(&root_task_group.list, &task_groups);
6944 INIT_LIST_HEAD(&root_task_group.children);
Glauber Costaf4d6f6c2011-11-01 19:19:07 -02006945 INIT_LIST_HEAD(&root_task_group.siblings);
Mike Galbraith5091faa2010-11-30 14:18:03 +01006946 autogroup_init(&init_task);
Glauber Costa54c707e2011-11-28 14:45:19 -02006947
Dhaval Giani7c941432010-01-20 13:26:18 +01006948#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006949
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006950 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006951 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952
6953 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006954 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07006955 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006956 rq->calc_load_active = 0;
6957 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02006958 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006959 init_rt_rq(&rq->rt, rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01006960 init_dl_rq(&rq->dl, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006961#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02006962 root_task_group.shares = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006963 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006964 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08006965 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02006966 *
6967 * In case of task-groups formed thr' the cgroup filesystem, it
6968 * gets 100% of the cpu resources in the system. This overall
6969 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08006970 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02006971 * based on each entity's (task or task-group's) weight
6972 * (se->load.weight).
6973 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006974 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02006975 * 1024) and two child groups A0 and A1 (of weight 1024 each),
6976 * then A0's share of the cpu resource is:
6977 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02006978 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02006979 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006980 * We achieve this by letting root_task_group's tasks sit
6981 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02006982 */
Paul Turnerab84d312011-07-21 09:43:28 -07006983 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08006984 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006985#endif /* CONFIG_FAIR_GROUP_SCHED */
6986
6987 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01006988#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006989 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006990#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991
Ingo Molnardd41f592007-07-09 18:51:59 +02006992 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6993 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07006994
6995 rq->last_load_update_tick = jiffies;
6996
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006998 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006999 rq->rd = NULL;
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04007000 rq->cpu_capacity = SCHED_CAPACITY_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04007001 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007003 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007005 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04007006 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01007007 rq->idle_stamp = 0;
7008 rq->avg_idle = 2*sysctl_sched_migration_cost;
Jason Low9bd721c2013-09-13 11:26:52 -07007009 rq->max_idle_balance_cost = sysctl_sched_migration_cost;
Peter Zijlstra367456c2012-02-20 21:49:09 +01007010
7011 INIT_LIST_HEAD(&rq->cfs_tasks);
7012
Gregory Haskinsdc938522008-01-25 21:08:26 +01007013 rq_attach_root(rq, &def_root_domain);
Frederic Weisbecker3451d022011-08-10 23:21:01 +02007014#ifdef CONFIG_NO_HZ_COMMON
Suresh Siddha1c792db2011-12-01 17:07:32 -08007015 rq->nohz_flags = 0;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07007016#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02007017#ifdef CONFIG_NO_HZ_FULL
7018 rq->last_sched_tick = 0;
7019#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007021 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023 }
7024
Peter Williams2dd73a42006-06-27 02:54:34 -07007025 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007026
Avi Kivitye107be32007-07-26 13:40:43 +02007027#ifdef CONFIG_PREEMPT_NOTIFIERS
7028 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7029#endif
7030
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031 /*
7032 * The boot idle thread does lazy MMU switching as well:
7033 */
7034 atomic_inc(&init_mm.mm_count);
7035 enter_lazy_tlb(&init_mm, current);
7036
7037 /*
7038 * Make us the idle thread. Technically, schedule() should not be
7039 * called from this thread, however somewhere below it might be,
7040 * but because we are the idle thread, we just pick up running again
7041 * when this runqueue becomes "idle".
7042 */
7043 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007044
7045 calc_load_update = jiffies + LOAD_FREQ;
7046
Ingo Molnardd41f592007-07-09 18:51:59 +02007047 /*
7048 * During early bootup we pretend to be a normal task:
7049 */
7050 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007051
Rusty Russellbf4d83f2008-11-25 09:57:51 +10307052#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02007053 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russellbdddd292009-12-02 14:09:16 +10307054 /* May be allocated at isolcpus cmdline parse time */
7055 if (cpu_isolated_map == NULL)
7056 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Thomas Gleixner29d5e042012-04-20 13:05:45 +00007057 idle_thread_set_boot_cpu();
Corey Minyarda803f022014-05-08 13:47:39 -05007058 set_cpu_rq_start_time();
Peter Zijlstra029632f2011-10-25 10:00:11 +02007059#endif
7060 init_sched_fair_class();
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10307061
Ingo Molnar6892b752008-02-13 14:02:36 +01007062 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007063}
7064
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02007065#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007066static inline int preempt_count_equals(int preempt_offset)
7067{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01007068 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007069
Arnd Bergmann4ba82162011-01-25 22:52:22 +01007070 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007071}
7072
Simon Kagstromd8948372009-12-23 11:08:18 +01007073void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075 static unsigned long prev_jiffy; /* ratelimiting */
7076
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07007077 rcu_sleep_check(); /* WARN_ON_ONCE() by default, no rate limit reqd. */
Thomas Gleixnerdb273be2014-02-07 20:58:38 +01007078 if ((preempt_count_equals(preempt_offset) && !irqs_disabled() &&
7079 !is_idle_task(current)) ||
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007080 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02007081 return;
7082 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7083 return;
7084 prev_jiffy = jiffies;
7085
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01007086 printk(KERN_ERR
7087 "BUG: sleeping function called from invalid context at %s:%d\n",
7088 file, line);
7089 printk(KERN_ERR
7090 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
7091 in_atomic(), irqs_disabled(),
7092 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02007093
7094 debug_show_held_locks(current);
7095 if (irqs_disabled())
7096 print_irqtrace_events(current);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01007097#ifdef CONFIG_DEBUG_PREEMPT
7098 if (!preempt_count_equals(preempt_offset)) {
7099 pr_err("Preemption disabled at:");
7100 print_ip_sym(current->preempt_disable_ip);
7101 pr_cont("\n");
7102 }
7103#endif
Ingo Molnaraef745f2008-08-28 11:34:43 +02007104 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105}
7106EXPORT_SYMBOL(__might_sleep);
7107#endif
7108
7109#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007110static void normalize_task(struct rq *rq, struct task_struct *p)
7111{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007112 const struct sched_class *prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01007113 struct sched_attr attr = {
7114 .sched_policy = SCHED_NORMAL,
7115 };
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007116 int old_prio = p->prio;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007117 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02007118
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007119 on_rq = p->on_rq;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007120 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007121 dequeue_task(rq, p, 0);
Dario Faggiolid50dde52013-11-07 14:43:36 +01007122 __setscheduler(rq, p, &attr);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007123 if (on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007124 enqueue_task(rq, p, 0);
Kirill Tkhai88751252014-06-29 00:03:57 +04007125 resched_curr(rq);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007126 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007127
7128 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007129}
7130
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131void normalize_rt_tasks(void)
7132{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007133 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007135 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007137 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007138 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007139 /*
7140 * Only normalize user tasks:
7141 */
7142 if (!p->mm)
7143 continue;
7144
Ingo Molnardd41f592007-07-09 18:51:59 +02007145 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007146#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03007147 p->se.statistics.wait_start = 0;
7148 p->se.statistics.sleep_start = 0;
7149 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007150#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007151
Dario Faggioliaab03e02013-11-28 11:14:43 +01007152 if (!dl_task(p) && !rt_task(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007153 /*
7154 * Renice negative nice level userspace
7155 * tasks back to 0:
7156 */
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05007157 if (task_nice(p) < 0 && p->mm)
Ingo Molnardd41f592007-07-09 18:51:59 +02007158 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007159 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161
Thomas Gleixner1d615482009-11-17 14:54:03 +01007162 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007163 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007164
Ingo Molnar178be792007-10-15 17:00:18 +02007165 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007166
Ingo Molnarb29739f2006-06-27 02:54:51 -07007167 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01007168 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007169 } while_each_thread(g, p);
7170
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007171 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172}
7173
7174#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007175
Jason Wessel67fc4e02010-05-20 21:04:21 -05007176#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007177/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05007178 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007179 *
7180 * They can only be called when the whole system has been
7181 * stopped - every CPU needs to be quiescent, and no scheduling
7182 * activity can take place. Using them for anything else would
7183 * be a serious bug, and as a result, they aren't even visible
7184 * under any other configuration.
7185 */
7186
7187/**
7188 * curr_task - return the current task for a given cpu.
7189 * @cpu: the processor in question.
7190 *
7191 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
Yacine Belkadie69f6182013-07-12 20:45:47 +02007192 *
7193 * Return: The current task for @cpu.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007194 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007195struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007196{
7197 return cpu_curr(cpu);
7198}
7199
Jason Wessel67fc4e02010-05-20 21:04:21 -05007200#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
7201
7202#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07007203/**
7204 * set_curr_task - set the current task for a given cpu.
7205 * @cpu: the processor in question.
7206 * @p: the task pointer to set.
7207 *
7208 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007209 * are serviced on a separate stack. It allows the architecture to switch the
7210 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007211 * must be called with all CPU's synchronized, and interrupts disabled, the
7212 * and caller must save the original value of the current task (see
7213 * curr_task() above) and restore that value before reenabling interrupts and
7214 * re-starting the system.
7215 *
7216 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7217 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007218void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007219{
7220 cpu_curr(cpu) = p;
7221}
7222
7223#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007224
Dhaval Giani7c941432010-01-20 13:26:18 +01007225#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02007226/* task_group_lock serializes the addition/removal of task groups */
7227static DEFINE_SPINLOCK(task_group_lock);
7228
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007229static void free_sched_group(struct task_group *tg)
7230{
7231 free_fair_sched_group(tg);
7232 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01007233 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007234 kfree(tg);
7235}
7236
7237/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007238struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007239{
7240 struct task_group *tg;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007241
7242 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7243 if (!tg)
7244 return ERR_PTR(-ENOMEM);
7245
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007246 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007247 goto err;
7248
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007249 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007250 goto err;
7251
Li Zefanace783b2013-01-24 14:30:48 +08007252 return tg;
7253
7254err:
7255 free_sched_group(tg);
7256 return ERR_PTR(-ENOMEM);
7257}
7258
7259void sched_online_group(struct task_group *tg, struct task_group *parent)
7260{
7261 unsigned long flags;
7262
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007263 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007264 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007265
7266 WARN_ON(!parent); /* root should already exist */
7267
7268 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007269 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08007270 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007271 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007272}
7273
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007274/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007275static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007276{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007277 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007278 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007279}
7280
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007281/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007282void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007283{
Li Zefanace783b2013-01-24 14:30:48 +08007284 /* wait for possible concurrent references to cfs_rqs complete */
7285 call_rcu(&tg->rcu, free_sched_group_rcu);
7286}
7287
7288void sched_offline_group(struct task_group *tg)
7289{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007290 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007291 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007292
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007293 /* end participation in shares distribution */
7294 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007295 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007296
7297 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007298 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007299 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007300 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007301}
7302
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007303/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007304 * The caller of this function should have put the task in its new group
7305 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7306 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007307 */
7308void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007309{
Peter Zijlstra8323f262012-06-22 13:36:05 +02007310 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007311 int on_rq, running;
7312 unsigned long flags;
7313 struct rq *rq;
7314
7315 rq = task_rq_lock(tsk, &flags);
7316
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007317 running = task_current(rq, tsk);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007318 on_rq = tsk->on_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007319
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007320 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007321 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007322 if (unlikely(running))
7323 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007324
Tejun Heo073219e2014-02-08 10:36:58 -05007325 tg = container_of(task_css_check(tsk, cpu_cgrp_id,
Peter Zijlstra8323f262012-06-22 13:36:05 +02007326 lockdep_is_held(&tsk->sighand->siglock)),
7327 struct task_group, css);
7328 tg = autogroup_task_group(tsk, tg);
7329 tsk->sched_task_group = tg;
7330
Peter Zijlstra810b3812008-02-29 15:21:01 -05007331#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007332 if (tsk->sched_class->task_move_group)
7333 tsk->sched_class->task_move_group(tsk, on_rq);
7334 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05007335#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007336 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05007337
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007338 if (unlikely(running))
7339 tsk->sched_class->set_curr_task(rq);
7340 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01007341 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007342
Peter Zijlstra0122ec52011-04-05 17:23:51 +02007343 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007344}
Dhaval Giani7c941432010-01-20 13:26:18 +01007345#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007346
Paul Turnera790de92011-07-21 09:43:29 -07007347#ifdef CONFIG_RT_GROUP_SCHED
7348/*
7349 * Ensure that the real time constraints are schedulable.
7350 */
7351static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007352
Dhaval Giani521f1a242008-02-28 15:21:56 +05307353/* Must be called with tasklist_lock held */
7354static inline int tg_has_rt_tasks(struct task_group *tg)
7355{
7356 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007357
Dhaval Giani521f1a242008-02-28 15:21:56 +05307358 do_each_thread(g, p) {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007359 if (rt_task(p) && task_rq(p)->rt.tg == tg)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307360 return 1;
7361 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007362
Dhaval Giani521f1a242008-02-28 15:21:56 +05307363 return 0;
7364}
7365
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007366struct rt_schedulable_data {
7367 struct task_group *tg;
7368 u64 rt_period;
7369 u64 rt_runtime;
7370};
7371
Paul Turnera790de92011-07-21 09:43:29 -07007372static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007373{
7374 struct rt_schedulable_data *d = data;
7375 struct task_group *child;
7376 unsigned long total, sum = 0;
7377 u64 period, runtime;
7378
7379 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7380 runtime = tg->rt_bandwidth.rt_runtime;
7381
7382 if (tg == d->tg) {
7383 period = d->rt_period;
7384 runtime = d->rt_runtime;
7385 }
7386
Peter Zijlstra4653f802008-09-23 15:33:44 +02007387 /*
7388 * Cannot have more runtime than the period.
7389 */
7390 if (runtime > period && runtime != RUNTIME_INF)
7391 return -EINVAL;
7392
7393 /*
7394 * Ensure we don't starve existing RT tasks.
7395 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007396 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
7397 return -EBUSY;
7398
7399 total = to_ratio(period, runtime);
7400
Peter Zijlstra4653f802008-09-23 15:33:44 +02007401 /*
7402 * Nobody can have more than the global setting allows.
7403 */
7404 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
7405 return -EINVAL;
7406
7407 /*
7408 * The sum of our children's runtime should not exceed our own.
7409 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007410 list_for_each_entry_rcu(child, &tg->children, siblings) {
7411 period = ktime_to_ns(child->rt_bandwidth.rt_period);
7412 runtime = child->rt_bandwidth.rt_runtime;
7413
7414 if (child == d->tg) {
7415 period = d->rt_period;
7416 runtime = d->rt_runtime;
7417 }
7418
7419 sum += to_ratio(period, runtime);
7420 }
7421
7422 if (sum > total)
7423 return -EINVAL;
7424
7425 return 0;
7426}
7427
7428static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
7429{
Paul Turner82774342011-07-21 09:43:35 -07007430 int ret;
7431
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007432 struct rt_schedulable_data data = {
7433 .tg = tg,
7434 .rt_period = period,
7435 .rt_runtime = runtime,
7436 };
7437
Paul Turner82774342011-07-21 09:43:35 -07007438 rcu_read_lock();
7439 ret = walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
7440 rcu_read_unlock();
7441
7442 return ret;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007443}
7444
Paul Turnerab84d312011-07-21 09:43:28 -07007445static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007446 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007447{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007448 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007449
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007450 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307451 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007452 err = __rt_schedulable(tg, rt_period, rt_runtime);
7453 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307454 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007455
Thomas Gleixner0986b112009-11-17 15:32:06 +01007456 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007457 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
7458 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007459
7460 for_each_possible_cpu(i) {
7461 struct rt_rq *rt_rq = tg->rt_rq[i];
7462
Thomas Gleixner0986b112009-11-17 15:32:06 +01007463 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007464 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01007465 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007466 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007467 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02007468unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307469 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007470 mutex_unlock(&rt_constraints_mutex);
7471
7472 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007473}
7474
Li Zefan25cc7da2013-03-05 16:07:33 +08007475static int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007476{
7477 u64 rt_runtime, rt_period;
7478
7479 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7480 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7481 if (rt_runtime_us < 0)
7482 rt_runtime = RUNTIME_INF;
7483
Paul Turnerab84d312011-07-21 09:43:28 -07007484 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007485}
7486
Li Zefan25cc7da2013-03-05 16:07:33 +08007487static long sched_group_rt_runtime(struct task_group *tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007488{
7489 u64 rt_runtime_us;
7490
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007491 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007492 return -1;
7493
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007494 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007495 do_div(rt_runtime_us, NSEC_PER_USEC);
7496 return rt_runtime_us;
7497}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007498
Li Zefan25cc7da2013-03-05 16:07:33 +08007499static int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007500{
7501 u64 rt_runtime, rt_period;
7502
7503 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
7504 rt_runtime = tg->rt_bandwidth.rt_runtime;
7505
Raistlin619b0482008-06-26 18:54:09 +02007506 if (rt_period == 0)
7507 return -EINVAL;
7508
Paul Turnerab84d312011-07-21 09:43:28 -07007509 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007510}
7511
Li Zefan25cc7da2013-03-05 16:07:33 +08007512static long sched_group_rt_period(struct task_group *tg)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007513{
7514 u64 rt_period_us;
7515
7516 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
7517 do_div(rt_period_us, NSEC_PER_USEC);
7518 return rt_period_us;
7519}
Dario Faggioli332ac172013-11-07 14:43:45 +01007520#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007521
Dario Faggioli332ac172013-11-07 14:43:45 +01007522#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007523static int sched_rt_global_constraints(void)
7524{
7525 int ret = 0;
7526
7527 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007528 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02007529 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007530 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007531 mutex_unlock(&rt_constraints_mutex);
7532
7533 return ret;
7534}
Dhaval Giani54e99122009-02-27 15:13:54 +05307535
Li Zefan25cc7da2013-03-05 16:07:33 +08007536static int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
Dhaval Giani54e99122009-02-27 15:13:54 +05307537{
7538 /* Don't accept realtime tasks when there is no way for them to run */
7539 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
7540 return 0;
7541
7542 return 1;
7543}
7544
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007545#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007546static int sched_rt_global_constraints(void)
7547{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007548 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007549 int i, ret = 0;
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07007550
Thomas Gleixner0986b112009-11-17 15:32:06 +01007551 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007552 for_each_possible_cpu(i) {
7553 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
7554
Thomas Gleixner0986b112009-11-17 15:32:06 +01007555 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007556 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01007557 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007558 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007559 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007560
Dario Faggioli332ac172013-11-07 14:43:45 +01007561 return ret;
7562}
7563#endif /* CONFIG_RT_GROUP_SCHED */
7564
Dario Faggioli332ac172013-11-07 14:43:45 +01007565static int sched_dl_global_constraints(void)
7566{
Peter Zijlstra17248132013-12-17 12:44:49 +01007567 u64 runtime = global_rt_runtime();
7568 u64 period = global_rt_period();
Dario Faggioli332ac172013-11-07 14:43:45 +01007569 u64 new_bw = to_ratio(period, runtime);
Peter Zijlstra17248132013-12-17 12:44:49 +01007570 int cpu, ret = 0;
Juri Lelli49516342014-02-11 09:24:27 +01007571 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007572
7573 /*
7574 * Here we want to check the bandwidth not being set to some
7575 * value smaller than the currently allocated bandwidth in
7576 * any of the root_domains.
7577 *
7578 * FIXME: Cycling on all the CPUs is overdoing, but simpler than
7579 * cycling on root_domains... Discussion on different/better
7580 * solutions is welcome!
7581 */
Peter Zijlstra17248132013-12-17 12:44:49 +01007582 for_each_possible_cpu(cpu) {
7583 struct dl_bw *dl_b = dl_bw_of(cpu);
Dario Faggioli332ac172013-11-07 14:43:45 +01007584
Juri Lelli49516342014-02-11 09:24:27 +01007585 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007586 if (new_bw < dl_b->total_bw)
7587 ret = -EBUSY;
Juri Lelli49516342014-02-11 09:24:27 +01007588 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007589
7590 if (ret)
7591 break;
Dario Faggioli332ac172013-11-07 14:43:45 +01007592 }
7593
Peter Zijlstra17248132013-12-17 12:44:49 +01007594 return ret;
7595}
7596
7597static void sched_dl_do_global(void)
7598{
7599 u64 new_bw = -1;
7600 int cpu;
Juri Lelli49516342014-02-11 09:24:27 +01007601 unsigned long flags;
Peter Zijlstra17248132013-12-17 12:44:49 +01007602
7603 def_dl_bandwidth.dl_period = global_rt_period();
7604 def_dl_bandwidth.dl_runtime = global_rt_runtime();
7605
7606 if (global_rt_runtime() != RUNTIME_INF)
7607 new_bw = to_ratio(global_rt_period(), global_rt_runtime());
7608
7609 /*
7610 * FIXME: As above...
7611 */
7612 for_each_possible_cpu(cpu) {
7613 struct dl_bw *dl_b = dl_bw_of(cpu);
7614
Juri Lelli49516342014-02-11 09:24:27 +01007615 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007616 dl_b->bw = new_bw;
Juri Lelli49516342014-02-11 09:24:27 +01007617 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007618 }
7619}
7620
7621static int sched_rt_global_validate(void)
7622{
7623 if (sysctl_sched_rt_period <= 0)
7624 return -EINVAL;
7625
Juri Lellie9e7cb32014-02-11 09:24:26 +01007626 if ((sysctl_sched_rt_runtime != RUNTIME_INF) &&
7627 (sysctl_sched_rt_runtime > sysctl_sched_rt_period))
Peter Zijlstra17248132013-12-17 12:44:49 +01007628 return -EINVAL;
7629
Dario Faggioli332ac172013-11-07 14:43:45 +01007630 return 0;
7631}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007632
Peter Zijlstra17248132013-12-17 12:44:49 +01007633static void sched_rt_do_global(void)
7634{
7635 def_rt_bandwidth.rt_runtime = global_rt_runtime();
7636 def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period());
7637}
7638
7639int sched_rt_handler(struct ctl_table *table, int write,
7640 void __user *buffer, size_t *lenp,
7641 loff_t *ppos)
7642{
7643 int old_period, old_runtime;
7644 static DEFINE_MUTEX(mutex);
7645 int ret;
7646
7647 mutex_lock(&mutex);
7648 old_period = sysctl_sched_rt_period;
7649 old_runtime = sysctl_sched_rt_runtime;
7650
7651 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7652
7653 if (!ret && write) {
7654 ret = sched_rt_global_validate();
7655 if (ret)
7656 goto undo;
7657
7658 ret = sched_rt_global_constraints();
7659 if (ret)
7660 goto undo;
7661
7662 ret = sched_dl_global_constraints();
7663 if (ret)
7664 goto undo;
7665
7666 sched_rt_do_global();
7667 sched_dl_do_global();
7668 }
7669 if (0) {
7670undo:
7671 sysctl_sched_rt_period = old_period;
7672 sysctl_sched_rt_runtime = old_runtime;
7673 }
7674 mutex_unlock(&mutex);
7675
7676 return ret;
7677}
7678
Clark Williamsce0dbbb2013-02-07 09:47:04 -06007679int sched_rr_handler(struct ctl_table *table, int write,
7680 void __user *buffer, size_t *lenp,
7681 loff_t *ppos)
7682{
7683 int ret;
7684 static DEFINE_MUTEX(mutex);
7685
7686 mutex_lock(&mutex);
7687 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7688 /* make sure that internally we keep jiffies */
7689 /* also, writing zero resets timeslice to default */
7690 if (!ret && write) {
7691 sched_rr_timeslice = sched_rr_timeslice <= 0 ?
7692 RR_TIMESLICE : msecs_to_jiffies(sched_rr_timeslice);
7693 }
7694 mutex_unlock(&mutex);
7695 return ret;
7696}
7697
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007698#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007699
Tejun Heoa7c6d552013-08-08 20:11:23 -04007700static inline struct task_group *css_tg(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007701{
Tejun Heoa7c6d552013-08-08 20:11:23 -04007702 return css ? container_of(css, struct task_group, css) : NULL;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007703}
7704
Tejun Heoeb954192013-08-08 20:11:23 -04007705static struct cgroup_subsys_state *
7706cpu_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007707{
Tejun Heoeb954192013-08-08 20:11:23 -04007708 struct task_group *parent = css_tg(parent_css);
7709 struct task_group *tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007710
Tejun Heoeb954192013-08-08 20:11:23 -04007711 if (!parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007712 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08007713 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007714 }
7715
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007716 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007717 if (IS_ERR(tg))
7718 return ERR_PTR(-ENOMEM);
7719
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007720 return &tg->css;
7721}
7722
Tejun Heoeb954192013-08-08 20:11:23 -04007723static int cpu_cgroup_css_online(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007724{
Tejun Heoeb954192013-08-08 20:11:23 -04007725 struct task_group *tg = css_tg(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04007726 struct task_group *parent = css_tg(css->parent);
Li Zefanace783b2013-01-24 14:30:48 +08007727
Tejun Heo63876982013-08-08 20:11:23 -04007728 if (parent)
7729 sched_online_group(tg, parent);
Li Zefanace783b2013-01-24 14:30:48 +08007730 return 0;
7731}
7732
Tejun Heoeb954192013-08-08 20:11:23 -04007733static void cpu_cgroup_css_free(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007734{
Tejun Heoeb954192013-08-08 20:11:23 -04007735 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007736
7737 sched_destroy_group(tg);
7738}
7739
Tejun Heoeb954192013-08-08 20:11:23 -04007740static void cpu_cgroup_css_offline(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007741{
Tejun Heoeb954192013-08-08 20:11:23 -04007742 struct task_group *tg = css_tg(css);
Li Zefanace783b2013-01-24 14:30:48 +08007743
7744 sched_offline_group(tg);
7745}
7746
Tejun Heoeb954192013-08-08 20:11:23 -04007747static int cpu_cgroup_can_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007748 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007749{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007750 struct task_struct *task;
7751
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007752 cgroup_taskset_for_each(task, tset) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007753#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heoeb954192013-08-08 20:11:23 -04007754 if (!sched_rt_can_attach(css_tg(css), task))
Tejun Heobb9d97b2011-12-12 18:12:21 -08007755 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007756#else
Tejun Heobb9d97b2011-12-12 18:12:21 -08007757 /* We don't support RT-tasks being in separate groups */
7758 if (task->sched_class != &fair_sched_class)
7759 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007760#endif
Tejun Heobb9d97b2011-12-12 18:12:21 -08007761 }
Ben Blumbe367d02009-09-23 15:56:31 -07007762 return 0;
7763}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007764
Tejun Heoeb954192013-08-08 20:11:23 -04007765static void cpu_cgroup_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007766 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007767{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007768 struct task_struct *task;
7769
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007770 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08007771 sched_move_task(task);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007772}
7773
Tejun Heoeb954192013-08-08 20:11:23 -04007774static void cpu_cgroup_exit(struct cgroup_subsys_state *css,
7775 struct cgroup_subsys_state *old_css,
7776 struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007777{
7778 /*
7779 * cgroup_exit() is called in the copy_process() failure path.
7780 * Ignore this case since the task hasn't ran yet, this avoids
7781 * trying to poke a half freed task state from generic code.
7782 */
7783 if (!(task->flags & PF_EXITING))
7784 return;
7785
7786 sched_move_task(task);
7787}
7788
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007789#ifdef CONFIG_FAIR_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007790static int cpu_shares_write_u64(struct cgroup_subsys_state *css,
7791 struct cftype *cftype, u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007792{
Tejun Heo182446d2013-08-08 20:11:24 -04007793 return sched_group_set_shares(css_tg(css), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007794}
7795
Tejun Heo182446d2013-08-08 20:11:24 -04007796static u64 cpu_shares_read_u64(struct cgroup_subsys_state *css,
7797 struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007798{
Tejun Heo182446d2013-08-08 20:11:24 -04007799 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007800
Nikhil Raoc8b28112011-05-18 14:37:48 -07007801 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007802}
Paul Turnerab84d312011-07-21 09:43:28 -07007803
7804#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07007805static DEFINE_MUTEX(cfs_constraints_mutex);
7806
Paul Turnerab84d312011-07-21 09:43:28 -07007807const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
7808const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
7809
Paul Turnera790de92011-07-21 09:43:29 -07007810static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
7811
Paul Turnerab84d312011-07-21 09:43:28 -07007812static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
7813{
Paul Turner56f570e2011-11-07 20:26:33 -08007814 int i, ret = 0, runtime_enabled, runtime_was_enabled;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007815 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnerab84d312011-07-21 09:43:28 -07007816
7817 if (tg == &root_task_group)
7818 return -EINVAL;
7819
7820 /*
7821 * Ensure we have at some amount of bandwidth every period. This is
7822 * to prevent reaching a state of large arrears when throttled via
7823 * entity_tick() resulting in prolonged exit starvation.
7824 */
7825 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
7826 return -EINVAL;
7827
7828 /*
7829 * Likewise, bound things on the otherside by preventing insane quota
7830 * periods. This also allows us to normalize in computing quota
7831 * feasibility.
7832 */
7833 if (period > max_cfs_quota_period)
7834 return -EINVAL;
7835
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04007836 /*
7837 * Prevent race between setting of cfs_rq->runtime_enabled and
7838 * unthrottle_offline_cfs_rqs().
7839 */
7840 get_online_cpus();
Paul Turnera790de92011-07-21 09:43:29 -07007841 mutex_lock(&cfs_constraints_mutex);
7842 ret = __cfs_schedulable(tg, period, quota);
7843 if (ret)
7844 goto out_unlock;
7845
Paul Turner58088ad2011-07-21 09:43:31 -07007846 runtime_enabled = quota != RUNTIME_INF;
Paul Turner56f570e2011-11-07 20:26:33 -08007847 runtime_was_enabled = cfs_b->quota != RUNTIME_INF;
Ben Segall1ee14e62013-10-16 11:16:12 -07007848 /*
7849 * If we need to toggle cfs_bandwidth_used, off->on must occur
7850 * before making related changes, and on->off must occur afterwards
7851 */
7852 if (runtime_enabled && !runtime_was_enabled)
7853 cfs_bandwidth_usage_inc();
Paul Turnerab84d312011-07-21 09:43:28 -07007854 raw_spin_lock_irq(&cfs_b->lock);
7855 cfs_b->period = ns_to_ktime(period);
7856 cfs_b->quota = quota;
Paul Turner58088ad2011-07-21 09:43:31 -07007857
Paul Turnera9cf55b2011-07-21 09:43:32 -07007858 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07007859 /* restart the period timer (if active) to handle new period expiry */
7860 if (runtime_enabled && cfs_b->timer_active) {
7861 /* force a reprogram */
Roman Gushchin09dc4ab2014-05-19 15:10:09 +04007862 __start_cfs_bandwidth(cfs_b, true);
Paul Turner58088ad2011-07-21 09:43:31 -07007863 }
Paul Turnerab84d312011-07-21 09:43:28 -07007864 raw_spin_unlock_irq(&cfs_b->lock);
7865
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04007866 for_each_online_cpu(i) {
Paul Turnerab84d312011-07-21 09:43:28 -07007867 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
Peter Zijlstra029632f2011-10-25 10:00:11 +02007868 struct rq *rq = cfs_rq->rq;
Paul Turnerab84d312011-07-21 09:43:28 -07007869
7870 raw_spin_lock_irq(&rq->lock);
Paul Turner58088ad2011-07-21 09:43:31 -07007871 cfs_rq->runtime_enabled = runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07007872 cfs_rq->runtime_remaining = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07007873
Peter Zijlstra029632f2011-10-25 10:00:11 +02007874 if (cfs_rq->throttled)
Paul Turner671fd9d2011-07-21 09:43:34 -07007875 unthrottle_cfs_rq(cfs_rq);
Paul Turnerab84d312011-07-21 09:43:28 -07007876 raw_spin_unlock_irq(&rq->lock);
7877 }
Ben Segall1ee14e62013-10-16 11:16:12 -07007878 if (runtime_was_enabled && !runtime_enabled)
7879 cfs_bandwidth_usage_dec();
Paul Turnera790de92011-07-21 09:43:29 -07007880out_unlock:
7881 mutex_unlock(&cfs_constraints_mutex);
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04007882 put_online_cpus();
Paul Turnerab84d312011-07-21 09:43:28 -07007883
Paul Turnera790de92011-07-21 09:43:29 -07007884 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07007885}
7886
7887int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
7888{
7889 u64 quota, period;
7890
Peter Zijlstra029632f2011-10-25 10:00:11 +02007891 period = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007892 if (cfs_quota_us < 0)
7893 quota = RUNTIME_INF;
7894 else
7895 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
7896
7897 return tg_set_cfs_bandwidth(tg, period, quota);
7898}
7899
7900long tg_get_cfs_quota(struct task_group *tg)
7901{
7902 u64 quota_us;
7903
Peter Zijlstra029632f2011-10-25 10:00:11 +02007904 if (tg->cfs_bandwidth.quota == RUNTIME_INF)
Paul Turnerab84d312011-07-21 09:43:28 -07007905 return -1;
7906
Peter Zijlstra029632f2011-10-25 10:00:11 +02007907 quota_us = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007908 do_div(quota_us, NSEC_PER_USEC);
7909
7910 return quota_us;
7911}
7912
7913int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
7914{
7915 u64 quota, period;
7916
7917 period = (u64)cfs_period_us * NSEC_PER_USEC;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007918 quota = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007919
Paul Turnerab84d312011-07-21 09:43:28 -07007920 return tg_set_cfs_bandwidth(tg, period, quota);
7921}
7922
7923long tg_get_cfs_period(struct task_group *tg)
7924{
7925 u64 cfs_period_us;
7926
Peter Zijlstra029632f2011-10-25 10:00:11 +02007927 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007928 do_div(cfs_period_us, NSEC_PER_USEC);
7929
7930 return cfs_period_us;
7931}
7932
Tejun Heo182446d2013-08-08 20:11:24 -04007933static s64 cpu_cfs_quota_read_s64(struct cgroup_subsys_state *css,
7934 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007935{
Tejun Heo182446d2013-08-08 20:11:24 -04007936 return tg_get_cfs_quota(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007937}
7938
Tejun Heo182446d2013-08-08 20:11:24 -04007939static int cpu_cfs_quota_write_s64(struct cgroup_subsys_state *css,
7940 struct cftype *cftype, s64 cfs_quota_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007941{
Tejun Heo182446d2013-08-08 20:11:24 -04007942 return tg_set_cfs_quota(css_tg(css), cfs_quota_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007943}
7944
Tejun Heo182446d2013-08-08 20:11:24 -04007945static u64 cpu_cfs_period_read_u64(struct cgroup_subsys_state *css,
7946 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007947{
Tejun Heo182446d2013-08-08 20:11:24 -04007948 return tg_get_cfs_period(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007949}
7950
Tejun Heo182446d2013-08-08 20:11:24 -04007951static int cpu_cfs_period_write_u64(struct cgroup_subsys_state *css,
7952 struct cftype *cftype, u64 cfs_period_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007953{
Tejun Heo182446d2013-08-08 20:11:24 -04007954 return tg_set_cfs_period(css_tg(css), cfs_period_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007955}
7956
Paul Turnera790de92011-07-21 09:43:29 -07007957struct cfs_schedulable_data {
7958 struct task_group *tg;
7959 u64 period, quota;
7960};
7961
7962/*
7963 * normalize group quota/period to be quota/max_period
7964 * note: units are usecs
7965 */
7966static u64 normalize_cfs_quota(struct task_group *tg,
7967 struct cfs_schedulable_data *d)
7968{
7969 u64 quota, period;
7970
7971 if (tg == d->tg) {
7972 period = d->period;
7973 quota = d->quota;
7974 } else {
7975 period = tg_get_cfs_period(tg);
7976 quota = tg_get_cfs_quota(tg);
7977 }
7978
7979 /* note: these should typically be equivalent */
7980 if (quota == RUNTIME_INF || quota == -1)
7981 return RUNTIME_INF;
7982
7983 return to_ratio(period, quota);
7984}
7985
7986static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
7987{
7988 struct cfs_schedulable_data *d = data;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007989 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007990 s64 quota = 0, parent_quota = -1;
7991
7992 if (!tg->parent) {
7993 quota = RUNTIME_INF;
7994 } else {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007995 struct cfs_bandwidth *parent_b = &tg->parent->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007996
7997 quota = normalize_cfs_quota(tg, d);
7998 parent_quota = parent_b->hierarchal_quota;
7999
8000 /*
8001 * ensure max(child_quota) <= parent_quota, inherit when no
8002 * limit is set
8003 */
8004 if (quota == RUNTIME_INF)
8005 quota = parent_quota;
8006 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
8007 return -EINVAL;
8008 }
8009 cfs_b->hierarchal_quota = quota;
8010
8011 return 0;
8012}
8013
8014static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
8015{
Paul Turner82774342011-07-21 09:43:35 -07008016 int ret;
Paul Turnera790de92011-07-21 09:43:29 -07008017 struct cfs_schedulable_data data = {
8018 .tg = tg,
8019 .period = period,
8020 .quota = quota,
8021 };
8022
8023 if (quota != RUNTIME_INF) {
8024 do_div(data.period, NSEC_PER_USEC);
8025 do_div(data.quota, NSEC_PER_USEC);
8026 }
8027
Paul Turner82774342011-07-21 09:43:35 -07008028 rcu_read_lock();
8029 ret = walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
8030 rcu_read_unlock();
8031
8032 return ret;
Paul Turnera790de92011-07-21 09:43:29 -07008033}
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008034
Tejun Heo2da8ca82013-12-05 12:28:04 -05008035static int cpu_stats_show(struct seq_file *sf, void *v)
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008036{
Tejun Heo2da8ca82013-12-05 12:28:04 -05008037 struct task_group *tg = css_tg(seq_css(sf));
Peter Zijlstra029632f2011-10-25 10:00:11 +02008038 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008039
Tejun Heo44ffc752013-12-05 12:28:01 -05008040 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods);
8041 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled);
8042 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008043
8044 return 0;
8045}
Paul Turnerab84d312011-07-21 09:43:28 -07008046#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008047#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008048
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008049#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04008050static int cpu_rt_runtime_write(struct cgroup_subsys_state *css,
8051 struct cftype *cft, s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008052{
Tejun Heo182446d2013-08-08 20:11:24 -04008053 return sched_group_set_rt_runtime(css_tg(css), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008054}
8055
Tejun Heo182446d2013-08-08 20:11:24 -04008056static s64 cpu_rt_runtime_read(struct cgroup_subsys_state *css,
8057 struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008058{
Tejun Heo182446d2013-08-08 20:11:24 -04008059 return sched_group_rt_runtime(css_tg(css));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008060}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008061
Tejun Heo182446d2013-08-08 20:11:24 -04008062static int cpu_rt_period_write_uint(struct cgroup_subsys_state *css,
8063 struct cftype *cftype, u64 rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008064{
Tejun Heo182446d2013-08-08 20:11:24 -04008065 return sched_group_set_rt_period(css_tg(css), rt_period_us);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008066}
8067
Tejun Heo182446d2013-08-08 20:11:24 -04008068static u64 cpu_rt_period_read_uint(struct cgroup_subsys_state *css,
8069 struct cftype *cft)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008070{
Tejun Heo182446d2013-08-08 20:11:24 -04008071 return sched_group_rt_period(css_tg(css));
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008072}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008073#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008074
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008075static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008076#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008077 {
8078 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07008079 .read_u64 = cpu_shares_read_u64,
8080 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008081 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008082#endif
Paul Turnerab84d312011-07-21 09:43:28 -07008083#ifdef CONFIG_CFS_BANDWIDTH
8084 {
8085 .name = "cfs_quota_us",
8086 .read_s64 = cpu_cfs_quota_read_s64,
8087 .write_s64 = cpu_cfs_quota_write_s64,
8088 },
8089 {
8090 .name = "cfs_period_us",
8091 .read_u64 = cpu_cfs_period_read_u64,
8092 .write_u64 = cpu_cfs_period_write_u64,
8093 },
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008094 {
8095 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05008096 .seq_show = cpu_stats_show,
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008097 },
Paul Turnerab84d312011-07-21 09:43:28 -07008098#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008099#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008100 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008101 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07008102 .read_s64 = cpu_rt_runtime_read,
8103 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008104 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008105 {
8106 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07008107 .read_u64 = cpu_rt_period_read_uint,
8108 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008109 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008110#endif
Tejun Heo4baf6e32012-04-01 12:09:55 -07008111 { } /* terminate */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008112};
8113
Tejun Heo073219e2014-02-08 10:36:58 -05008114struct cgroup_subsys cpu_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08008115 .css_alloc = cpu_cgroup_css_alloc,
8116 .css_free = cpu_cgroup_css_free,
Li Zefanace783b2013-01-24 14:30:48 +08008117 .css_online = cpu_cgroup_css_online,
8118 .css_offline = cpu_cgroup_css_offline,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008119 .can_attach = cpu_cgroup_can_attach,
8120 .attach = cpu_cgroup_attach,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01008121 .exit = cpu_cgroup_exit,
Tejun Heo4baf6e32012-04-01 12:09:55 -07008122 .base_cftypes = cpu_files,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008123 .early_init = 1,
8124};
8125
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008126#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008127
Paul E. McKenneyb637a322012-09-19 16:58:38 -07008128void dump_cpu_task(int cpu)
8129{
8130 pr_info("Task dump for CPU %d:\n", cpu);
8131 sched_show_task(cpu_curr(cpu));
8132}