blob: 7f3063c153d81d7d9e9cc900f89698c7b09fd50c [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;
142 rq->clock += delta;
143 update_rq_clock_task(rq, delta);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200144}
145
Ingo Molnare436d802007-07-19 21:28:35 +0200146/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200147 * Debugging: various feature bits
148 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200149
150#define SCHED_FEAT(name, enabled) \
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200151 (1UL << __SCHED_FEAT_##name) * enabled |
152
153const_debug unsigned int sysctl_sched_features =
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100154#include "features.h"
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200155 0;
156
157#undef SCHED_FEAT
158
159#ifdef CONFIG_SCHED_DEBUG
160#define SCHED_FEAT(name, enabled) \
161 #name ,
162
Hiroshi Shimamoto12925312012-05-25 15:41:54 +0900163static const char * const sched_feat_names[] = {
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100164#include "features.h"
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200165};
166
167#undef SCHED_FEAT
168
Li Zefan34f3a812008-10-30 15:23:32 +0800169static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200170{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200171 int i;
172
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200173 for (i = 0; i < __SCHED_FEAT_NR; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800174 if (!(sysctl_sched_features & (1UL << i)))
175 seq_puts(m, "NO_");
176 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200177 }
Li Zefan34f3a812008-10-30 15:23:32 +0800178 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200179
Li Zefan34f3a812008-10-30 15:23:32 +0800180 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200181}
182
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200183#ifdef HAVE_JUMP_LABEL
184
Ingo Molnarc5905af2012-02-24 08:31:31 +0100185#define jump_label_key__true STATIC_KEY_INIT_TRUE
186#define jump_label_key__false STATIC_KEY_INIT_FALSE
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200187
188#define SCHED_FEAT(name, enabled) \
189 jump_label_key__##enabled ,
190
Ingo Molnarc5905af2012-02-24 08:31:31 +0100191struct static_key sched_feat_keys[__SCHED_FEAT_NR] = {
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200192#include "features.h"
193};
194
195#undef SCHED_FEAT
196
197static void sched_feat_disable(int i)
198{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100199 if (static_key_enabled(&sched_feat_keys[i]))
200 static_key_slow_dec(&sched_feat_keys[i]);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200201}
202
203static void sched_feat_enable(int i)
204{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100205 if (!static_key_enabled(&sched_feat_keys[i]))
206 static_key_slow_inc(&sched_feat_keys[i]);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200207}
208#else
209static void sched_feat_disable(int i) { };
210static void sched_feat_enable(int i) { };
211#endif /* HAVE_JUMP_LABEL */
212
Mel Gorman1a687c22012-11-22 11:16:36 +0000213static int sched_feat_set(char *cmp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200214{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200215 int i;
Mel Gorman1a687c22012-11-22 11:16:36 +0000216 int neg = 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200217
Hillf Danton524429c2011-01-06 20:58:12 +0800218 if (strncmp(cmp, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200219 neg = 1;
220 cmp += 3;
221 }
222
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200223 for (i = 0; i < __SCHED_FEAT_NR; i++) {
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400224 if (strcmp(cmp, sched_feat_names[i]) == 0) {
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200225 if (neg) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200226 sysctl_sched_features &= ~(1UL << i);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200227 sched_feat_disable(i);
228 } else {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200229 sysctl_sched_features |= (1UL << i);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200230 sched_feat_enable(i);
231 }
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200232 break;
233 }
234 }
235
Mel Gorman1a687c22012-11-22 11:16:36 +0000236 return i;
237}
238
239static ssize_t
240sched_feat_write(struct file *filp, const char __user *ubuf,
241 size_t cnt, loff_t *ppos)
242{
243 char buf[64];
244 char *cmp;
245 int i;
246
247 if (cnt > 63)
248 cnt = 63;
249
250 if (copy_from_user(&buf, ubuf, cnt))
251 return -EFAULT;
252
253 buf[cnt] = 0;
254 cmp = strstrip(buf);
255
256 i = sched_feat_set(cmp);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200257 if (i == __SCHED_FEAT_NR)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200258 return -EINVAL;
259
Jan Blunck42994722009-11-20 17:40:37 +0100260 *ppos += cnt;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200261
262 return cnt;
263}
264
Li Zefan34f3a812008-10-30 15:23:32 +0800265static int sched_feat_open(struct inode *inode, struct file *filp)
266{
267 return single_open(filp, sched_feat_show, NULL);
268}
269
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700270static const struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800271 .open = sched_feat_open,
272 .write = sched_feat_write,
273 .read = seq_read,
274 .llseek = seq_lseek,
275 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200276};
277
278static __init int sched_init_debug(void)
279{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200280 debugfs_create_file("sched_features", 0644, NULL, NULL,
281 &sched_feat_fops);
282
283 return 0;
284}
285late_initcall(sched_init_debug);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200286#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200287
288/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100289 * Number of tasks to iterate in a single balance run.
290 * Limited because this is done with IRQs disabled.
291 */
292const_debug unsigned int sysctl_sched_nr_migrate = 32;
293
294/*
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200295 * period over which we average the RT time consumption, measured
296 * in ms.
297 *
298 * default: 1s
299 */
300const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
301
302/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100303 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100304 * default: 1s
305 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100306unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100307
Peter Zijlstra029632f2011-10-25 10:00:11 +0200308__read_mostly int scheduler_running;
Ingo Molnar6892b752008-02-13 14:02:36 +0100309
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100310/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100311 * part of the period that we allow rt tasks to run in us.
312 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100313 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100314int sysctl_sched_rt_runtime = 950000;
315
Dario Faggioli332ac172013-11-07 14:43:45 +0100316/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200317 * __task_rq_lock - lock the rq @p resides on.
Ingo Molnarb29739f2006-06-27 02:54:51 -0700318 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700319static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700320 __acquires(rq->lock)
321{
Peter Zijlstra0970d292010-02-15 14:45:54 +0100322 struct rq *rq;
323
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200324 lockdep_assert_held(&p->pi_lock);
325
Andi Kleen3a5c3592007-10-15 17:00:14 +0200326 for (;;) {
Peter Zijlstra0970d292010-02-15 14:45:54 +0100327 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100328 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100329 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200330 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100331 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700332 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700333}
334
335/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200336 * task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700338static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200339 __acquires(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 __acquires(rq->lock)
341{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700342 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Andi Kleen3a5c3592007-10-15 17:00:14 +0200344 for (;;) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200345 raw_spin_lock_irqsave(&p->pi_lock, *flags);
Andi Kleen3a5c3592007-10-15 17:00:14 +0200346 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100347 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100348 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200349 return rq;
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200350 raw_spin_unlock(&rq->lock);
351 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Alexey Dobriyana9957442007-10-15 17:00:13 +0200355static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700356 __releases(rq->lock)
357{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100358 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700359}
360
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200361static inline void
362task_rq_unlock(struct rq *rq, struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 __releases(rq->lock)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200364 __releases(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200366 raw_spin_unlock(&rq->lock);
367 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800371 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200373static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 __acquires(rq->lock)
375{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700376 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 local_irq_disable();
379 rq = this_rq();
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100380 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 return rq;
383}
384
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100385#ifdef CONFIG_SCHED_HRTICK
386/*
387 * Use HR-timers to deliver accurate preemption points.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100388 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100389
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100390static void hrtick_clear(struct rq *rq)
391{
392 if (hrtimer_active(&rq->hrtick_timer))
393 hrtimer_cancel(&rq->hrtick_timer);
394}
395
396/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100397 * High-resolution timer tick.
398 * Runs from hardirq context with interrupts disabled.
399 */
400static enum hrtimer_restart hrtick(struct hrtimer *timer)
401{
402 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
403
404 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
405
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100406 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200407 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100408 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100409 raw_spin_unlock(&rq->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100410
411 return HRTIMER_NORESTART;
412}
413
Rabin Vincent95e904c2008-05-11 05:55:33 +0530414#ifdef CONFIG_SMP
Peter Zijlstra971ee282013-06-28 11:18:53 +0200415
416static int __hrtick_restart(struct rq *rq)
417{
418 struct hrtimer *timer = &rq->hrtick_timer;
419 ktime_t time = hrtimer_get_softexpires(timer);
420
421 return __hrtimer_start_range_ns(timer, time, 0, HRTIMER_MODE_ABS_PINNED, 0);
422}
423
Peter Zijlstra31656512008-07-18 18:01:23 +0200424/*
425 * called from hardirq (IPI) context
426 */
427static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200428{
Peter Zijlstra31656512008-07-18 18:01:23 +0200429 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200430
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100431 raw_spin_lock(&rq->lock);
Peter Zijlstra971ee282013-06-28 11:18:53 +0200432 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200433 rq->hrtick_csd_pending = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100434 raw_spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200435}
436
Peter Zijlstra31656512008-07-18 18:01:23 +0200437/*
438 * Called to set the hrtick timer state.
439 *
440 * called with rq->lock held and irqs disabled
441 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200442void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200443{
Peter Zijlstra31656512008-07-18 18:01:23 +0200444 struct hrtimer *timer = &rq->hrtick_timer;
445 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200446
Arjan van de Vencc584b22008-09-01 15:02:30 -0700447 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +0200448
449 if (rq == this_rq()) {
Peter Zijlstra971ee282013-06-28 11:18:53 +0200450 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200451 } else if (!rq->hrtick_csd_pending) {
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100452 smp_call_function_single_async(cpu_of(rq), &rq->hrtick_csd);
Peter Zijlstra31656512008-07-18 18:01:23 +0200453 rq->hrtick_csd_pending = 1;
454 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200455}
456
457static int
458hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
459{
460 int cpu = (int)(long)hcpu;
461
462 switch (action) {
463 case CPU_UP_CANCELED:
464 case CPU_UP_CANCELED_FROZEN:
465 case CPU_DOWN_PREPARE:
466 case CPU_DOWN_PREPARE_FROZEN:
467 case CPU_DEAD:
468 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +0200469 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200470 return NOTIFY_OK;
471 }
472
473 return NOTIFY_DONE;
474}
475
Rakib Mullickfa748202008-09-22 14:55:45 -0700476static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200477{
478 hotcpu_notifier(hotplug_hrtick, 0);
479}
Peter Zijlstra31656512008-07-18 18:01:23 +0200480#else
481/*
482 * Called to set the hrtick timer state.
483 *
484 * called with rq->lock held and irqs disabled
485 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200486void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstra31656512008-07-18 18:01:23 +0200487{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100488 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530489 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +0200490}
491
Andrew Morton006c75f2008-09-22 14:55:46 -0700492static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +0200493{
494}
Rabin Vincent95e904c2008-05-11 05:55:33 +0530495#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200496
497static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100498{
Peter Zijlstra31656512008-07-18 18:01:23 +0200499#ifdef CONFIG_SMP
500 rq->hrtick_csd_pending = 0;
501
502 rq->hrtick_csd.flags = 0;
503 rq->hrtick_csd.func = __hrtick_start;
504 rq->hrtick_csd.info = rq;
505#endif
506
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100507 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
508 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100509}
Andrew Morton006c75f2008-09-22 14:55:46 -0700510#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100511static inline void hrtick_clear(struct rq *rq)
512{
513}
514
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100515static inline void init_rq_hrtick(struct rq *rq)
516{
517}
518
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200519static inline void init_hrtick(void)
520{
521}
Andrew Morton006c75f2008-09-22 14:55:46 -0700522#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100523
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200524/*
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200525 * cmpxchg based fetch_or, macro so it works for different integer types
526 */
527#define fetch_or(ptr, val) \
528({ typeof(*(ptr)) __old, __val = *(ptr); \
529 for (;;) { \
530 __old = cmpxchg((ptr), __val, __val | (val)); \
531 if (__old == __val) \
532 break; \
533 __val = __old; \
534 } \
535 __old; \
536})
537
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700538#if defined(CONFIG_SMP) && defined(TIF_POLLING_NRFLAG)
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200539/*
540 * Atomically set TIF_NEED_RESCHED and test for TIF_POLLING_NRFLAG,
541 * this avoids any races wrt polling state changes and thereby avoids
542 * spurious IPIs.
543 */
544static bool set_nr_and_not_polling(struct task_struct *p)
545{
546 struct thread_info *ti = task_thread_info(p);
547 return !(fetch_or(&ti->flags, _TIF_NEED_RESCHED) & _TIF_POLLING_NRFLAG);
548}
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700549
550/*
551 * Atomically set TIF_NEED_RESCHED if TIF_POLLING_NRFLAG is set.
552 *
553 * If this returns true, then the idle task promises to call
554 * sched_ttwu_pending() and reschedule soon.
555 */
556static bool set_nr_if_polling(struct task_struct *p)
557{
558 struct thread_info *ti = task_thread_info(p);
559 typeof(ti->flags) old, val = ACCESS_ONCE(ti->flags);
560
561 for (;;) {
562 if (!(val & _TIF_POLLING_NRFLAG))
563 return false;
564 if (val & _TIF_NEED_RESCHED)
565 return true;
566 old = cmpxchg(&ti->flags, val, val | _TIF_NEED_RESCHED);
567 if (old == val)
568 break;
569 val = old;
570 }
571 return true;
572}
573
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200574#else
575static bool set_nr_and_not_polling(struct task_struct *p)
576{
577 set_tsk_need_resched(p);
578 return true;
579}
Peter Zijlstrae3baac42014-06-04 10:31:18 -0700580
581#ifdef CONFIG_SMP
582static bool set_nr_if_polling(struct task_struct *p)
583{
584 return false;
585}
586#endif
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200587#endif
588
589/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200590 * resched_task - mark a task 'to be rescheduled now'.
591 *
592 * On UP this means the setting of the need_resched flag, on SMP it
593 * might also involve a cross-CPU call to trigger the scheduler on
594 * the target CPU.
595 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200596void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200597{
598 int cpu;
599
Peter Zijlstrab021fe32013-09-17 09:30:55 +0200600 lockdep_assert_held(&task_rq(p)->lock);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200601
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +0800602 if (test_tsk_need_resched(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200603 return;
604
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200605 cpu = task_cpu(p);
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200606
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200607 if (cpu == smp_processor_id()) {
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200608 set_tsk_need_resched(p);
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200609 set_preempt_need_resched();
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200610 return;
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200611 }
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200612
Peter Zijlstrafd99f912014-04-09 15:35:08 +0200613 if (set_nr_and_not_polling(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200614 smp_send_reschedule(cpu);
Andy Lutomirskidfc68f22014-06-04 10:31:15 -0700615 else
616 trace_sched_wake_idle_without_ipi(cpu);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200617}
618
Peter Zijlstra029632f2011-10-25 10:00:11 +0200619void resched_cpu(int cpu)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200620{
621 struct rq *rq = cpu_rq(cpu);
622 unsigned long flags;
623
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100624 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200625 return;
626 resched_task(cpu_curr(cpu));
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100627 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200628}
Thomas Gleixner06d83082008-03-22 09:20:24 +0100629
Peter Zijlstrab021fe32013-09-17 09:30:55 +0200630#ifdef CONFIG_SMP
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200631#ifdef CONFIG_NO_HZ_COMMON
Thomas Gleixner06d83082008-03-22 09:20:24 +0100632/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700633 * In the semi idle case, use the nearest busy cpu for migrating timers
634 * from an idle cpu. This is good for power-savings.
635 *
636 * We don't do similar optimization for completely idle system, as
637 * selecting an idle cpu will add more delays to the timers than intended
638 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
639 */
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530640int get_nohz_timer_target(int pinned)
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700641{
642 int cpu = smp_processor_id();
643 int i;
644 struct sched_domain *sd;
645
Viresh Kumar6201b4d2014-03-18 16:26:07 +0530646 if (pinned || !get_sysctl_timer_migration() || !idle_cpu(cpu))
647 return cpu;
648
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200649 rcu_read_lock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700650 for_each_domain(cpu, sd) {
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200651 for_each_cpu(i, sched_domain_span(sd)) {
652 if (!idle_cpu(i)) {
653 cpu = i;
654 goto unlock;
655 }
656 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700657 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200658unlock:
659 rcu_read_unlock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700660 return cpu;
661}
662/*
Thomas Gleixner06d83082008-03-22 09:20:24 +0100663 * When add_timer_on() enqueues a timer into the timer wheel of an
664 * idle CPU then this timer might expire before the next timer event
665 * which is scheduled to wake up that CPU. In case of a completely
666 * idle system the next event might even be infinite time into the
667 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
668 * leaves the inner idle loop so the newly added timer is taken into
669 * account when the CPU goes back to idle and evaluates the timer
670 * wheel for the next timer event.
671 */
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200672static void wake_up_idle_cpu(int cpu)
Thomas Gleixner06d83082008-03-22 09:20:24 +0100673{
674 struct rq *rq = cpu_rq(cpu);
675
676 if (cpu == smp_processor_id())
677 return;
678
Andy Lutomirski67b9ca72014-06-04 10:31:17 -0700679 if (set_nr_and_not_polling(rq->idle))
Thomas Gleixner06d83082008-03-22 09:20:24 +0100680 smp_send_reschedule(cpu);
Andy Lutomirskidfc68f22014-06-04 10:31:15 -0700681 else
682 trace_sched_wake_idle_without_ipi(cpu);
Thomas Gleixner06d83082008-03-22 09:20:24 +0100683}
Mike Galbraith39c0cbe2010-03-11 17:17:13 +0100684
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200685static bool wake_up_full_nohz_cpu(int cpu)
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200686{
Frederic Weisbecker53c5fa12014-06-04 16:20:21 +0200687 /*
688 * We just need the target to call irq_exit() and re-evaluate
689 * the next tick. The nohz full kick at least implies that.
690 * If needed we can still optimize that later with an
691 * empty IRQ.
692 */
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200693 if (tick_nohz_full_cpu(cpu)) {
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200694 if (cpu != smp_processor_id() ||
695 tick_nohz_tick_stopped())
Frederic Weisbecker53c5fa12014-06-04 16:20:21 +0200696 tick_nohz_full_kick_cpu(cpu);
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200697 return true;
698 }
699
700 return false;
701}
702
703void wake_up_nohz_cpu(int cpu)
704{
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200705 if (!wake_up_full_nohz_cpu(cpu))
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200706 wake_up_idle_cpu(cpu);
707}
708
Suresh Siddhaca380622011-10-03 15:09:00 -0700709static inline bool got_nohz_idle_kick(void)
710{
Suresh Siddha1c792db2011-12-01 17:07:32 -0800711 int cpu = smp_processor_id();
Vincent Guittot873b4c62013-06-05 10:13:11 +0200712
713 if (!test_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu)))
714 return false;
715
716 if (idle_cpu(cpu) && !need_resched())
717 return true;
718
719 /*
720 * We can't run Idle Load Balance on this CPU for this time so we
721 * cancel it and clear NOHZ_BALANCE_KICK
722 */
723 clear_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu));
724 return false;
Suresh Siddhaca380622011-10-03 15:09:00 -0700725}
726
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200727#else /* CONFIG_NO_HZ_COMMON */
Suresh Siddhaca380622011-10-03 15:09:00 -0700728
729static inline bool got_nohz_idle_kick(void)
730{
731 return false;
732}
733
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200734#endif /* CONFIG_NO_HZ_COMMON */
Thomas Gleixner06d83082008-03-22 09:20:24 +0100735
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200736#ifdef CONFIG_NO_HZ_FULL
737bool sched_can_stop_tick(void)
738{
739 struct rq *rq;
740
741 rq = this_rq();
742
Frederic Weisbecker3882ec62014-03-18 22:54:04 +0100743 /*
744 * More than one running task need preemption.
745 * nr_running update is assumed to be visible
746 * after IPI is sent from wakers.
747 */
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200748 if (rq->nr_running > 1)
749 return false;
750
751 return true;
752}
753#endif /* CONFIG_NO_HZ_FULL */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200754
Peter Zijlstra029632f2011-10-25 10:00:11 +0200755void sched_avg_update(struct rq *rq)
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200756{
757 s64 period = sched_avg_period();
758
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200759 while ((s64)(rq_clock(rq) - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -0700760 /*
761 * Inline assembly required to prevent the compiler
762 * optimising this loop into a divmod call.
763 * See __iter_div_u64_rem() for another example of this.
764 */
765 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200766 rq->age_stamp += period;
767 rq->rt_avg /= 2;
768 }
769}
770
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200771#endif /* CONFIG_SMP */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200772
Paul Turnera790de92011-07-21 09:43:29 -0700773#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
774 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
Peter Zijlstraeb755802008-08-19 12:33:05 +0200775/*
Paul Turner82774342011-07-21 09:43:35 -0700776 * Iterate task_group tree rooted at *from, calling @down when first entering a
777 * node and @up when leaving it for the final time.
778 *
779 * Caller must hold rcu_lock or sufficient equivalent.
Peter Zijlstraeb755802008-08-19 12:33:05 +0200780 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200781int walk_tg_tree_from(struct task_group *from,
Paul Turner82774342011-07-21 09:43:35 -0700782 tg_visitor down, tg_visitor up, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200783{
784 struct task_group *parent, *child;
785 int ret;
786
Paul Turner82774342011-07-21 09:43:35 -0700787 parent = from;
788
Peter Zijlstraeb755802008-08-19 12:33:05 +0200789down:
790 ret = (*down)(parent, data);
791 if (ret)
Paul Turner82774342011-07-21 09:43:35 -0700792 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200793 list_for_each_entry_rcu(child, &parent->children, siblings) {
794 parent = child;
795 goto down;
796
797up:
798 continue;
799 }
800 ret = (*up)(parent, data);
Paul Turner82774342011-07-21 09:43:35 -0700801 if (ret || parent == from)
802 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200803
804 child = parent;
805 parent = parent->parent;
806 if (parent)
807 goto up;
Paul Turner82774342011-07-21 09:43:35 -0700808out:
Peter Zijlstraeb755802008-08-19 12:33:05 +0200809 return ret;
810}
811
Peter Zijlstra029632f2011-10-25 10:00:11 +0200812int tg_nop(struct task_group *tg, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200813{
814 return 0;
815}
816#endif
817
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200818static void set_load_weight(struct task_struct *p)
819{
Nikhil Raof05998d2011-05-18 10:09:38 -0700820 int prio = p->static_prio - MAX_RT_PRIO;
821 struct load_weight *load = &p->se.load;
822
Ingo Molnardd41f592007-07-09 18:51:59 +0200823 /*
824 * SCHED_IDLE tasks get minimal weight:
825 */
826 if (p->policy == SCHED_IDLE) {
Nikhil Raoc8b28112011-05-18 14:37:48 -0700827 load->weight = scale_load(WEIGHT_IDLEPRIO);
Nikhil Raof05998d2011-05-18 10:09:38 -0700828 load->inv_weight = WMULT_IDLEPRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +0200829 return;
830 }
831
Nikhil Raoc8b28112011-05-18 14:37:48 -0700832 load->weight = scale_load(prio_to_weight[prio]);
Nikhil Raof05998d2011-05-18 10:09:38 -0700833 load->inv_weight = prio_to_wmult[prio];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200834}
835
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100836static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -0600837{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100838 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300839 sched_info_queued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100840 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200841}
842
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100843static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +0200844{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100845 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300846 sched_info_dequeued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100847 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200848}
849
Peter Zijlstra029632f2011-10-25 10:00:11 +0200850void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100851{
852 if (task_contributes_to_load(p))
853 rq->nr_uninterruptible--;
854
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100855 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100856}
857
Peter Zijlstra029632f2011-10-25 10:00:11 +0200858void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100859{
860 if (task_contributes_to_load(p))
861 rq->nr_uninterruptible++;
862
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100863 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100864}
865
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100866static void update_rq_clock_task(struct rq *rq, s64 delta)
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700867{
Glauber Costa095c0aa2011-07-11 15:28:18 -0400868/*
869 * In theory, the compile should just see 0 here, and optimize out the call
870 * to sched_rt_avg_update. But I don't trust it...
871 */
872#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
873 s64 steal = 0, irq_delta = 0;
874#endif
875#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Peter Zijlstra8e92c202010-12-09 14:15:34 +0100876 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100877
878 /*
879 * Since irq_time is only updated on {soft,}irq_exit, we might run into
880 * this case when a previous update_rq_clock() happened inside a
881 * {soft,}irq region.
882 *
883 * When this happens, we stop ->clock_task and only update the
884 * prev_irq_time stamp to account for the part that fit, so that a next
885 * update will consume the rest. This ensures ->clock_task is
886 * monotonic.
887 *
888 * It does however cause some slight miss-attribution of {soft,}irq
889 * time, a more accurate solution would be to update the irq_time using
890 * the current rq->clock timestamp, except that would require using
891 * atomic ops.
892 */
893 if (irq_delta > delta)
894 irq_delta = delta;
895
896 rq->prev_irq_time += irq_delta;
897 delta -= irq_delta;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400898#endif
899#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
Ingo Molnarc5905af2012-02-24 08:31:31 +0100900 if (static_key_false((&paravirt_steal_rq_enabled))) {
Glauber Costa095c0aa2011-07-11 15:28:18 -0400901 steal = paravirt_steal_clock(cpu_of(rq));
902 steal -= rq->prev_steal_time_rq;
903
904 if (unlikely(steal > delta))
905 steal = delta;
906
Glauber Costa095c0aa2011-07-11 15:28:18 -0400907 rq->prev_steal_time_rq += steal;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400908 delta -= steal;
909 }
910#endif
911
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100912 rq->clock_task += delta;
913
Glauber Costa095c0aa2011-07-11 15:28:18 -0400914#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -0400915 if ((irq_delta + steal) && sched_feat(NONTASK_CAPACITY))
Glauber Costa095c0aa2011-07-11 15:28:18 -0400916 sched_rt_avg_update(rq, irq_delta + steal);
917#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700918}
919
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200920void sched_set_stop_task(int cpu, struct task_struct *stop)
921{
922 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
923 struct task_struct *old_stop = cpu_rq(cpu)->stop;
924
925 if (stop) {
926 /*
927 * Make it appear like a SCHED_FIFO task, its something
928 * userspace knows about and won't get confused about.
929 *
930 * Also, it will make PI more or less work without too
931 * much confusion -- but then, stop work should not
932 * rely on PI working anyway.
933 */
934 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
935
936 stop->sched_class = &stop_sched_class;
937 }
938
939 cpu_rq(cpu)->stop = stop;
940
941 if (old_stop) {
942 /*
943 * Reset it back to a normal scheduling class so that
944 * it can die in pieces.
945 */
946 old_stop->sched_class = &rt_sched_class;
947 }
948}
949
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100950/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200951 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200952 */
Ingo Molnar14531182007-07-09 18:51:59 +0200953static inline int __normal_prio(struct task_struct *p)
954{
Ingo Molnardd41f592007-07-09 18:51:59 +0200955 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200956}
957
958/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700959 * Calculate the expected normal priority: i.e. priority
960 * without taking RT-inheritance into account. Might be
961 * boosted by interactivity modifiers. Changes upon fork,
962 * setprio syscalls, and whenever the interactivity
963 * estimator recalculates.
964 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700965static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700966{
967 int prio;
968
Dario Faggioliaab03e02013-11-28 11:14:43 +0100969 if (task_has_dl_policy(p))
970 prio = MAX_DL_PRIO-1;
971 else if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700972 prio = MAX_RT_PRIO-1 - p->rt_priority;
973 else
974 prio = __normal_prio(p);
975 return prio;
976}
977
978/*
979 * Calculate the current priority, i.e. the priority
980 * taken into account by the scheduler. This value might
981 * be boosted by RT tasks, or might be boosted by
982 * interactivity modifiers. Will be RT if the task got
983 * RT-boosted. If not then it returns p->normal_prio.
984 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700985static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700986{
987 p->normal_prio = normal_prio(p);
988 /*
989 * If we are RT tasks or we were boosted to RT priority,
990 * keep the priority unchanged. Otherwise, update priority
991 * to the normal priority:
992 */
993 if (!rt_prio(p->prio))
994 return p->normal_prio;
995 return p->prio;
996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998/**
999 * task_curr - is this task currently executing on a CPU?
1000 * @p: the task in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02001001 *
1002 * Return: 1 if the task is currently executing. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001004inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 return cpu_curr(task_cpu(p)) == p;
1007}
1008
Steven Rostedtcb469842008-01-25 21:08:22 +01001009static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1010 const struct sched_class *prev_class,
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001011 int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01001012{
1013 if (prev_class != p->sched_class) {
1014 if (prev_class->switched_from)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001015 prev_class->switched_from(rq, p);
1016 p->sched_class->switched_to(rq, p);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01001017 } else if (oldprio != p->prio || dl_task(p))
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001018 p->sched_class->prio_changed(rq, p, oldprio);
Steven Rostedtcb469842008-01-25 21:08:22 +01001019}
1020
Peter Zijlstra029632f2011-10-25 10:00:11 +02001021void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001022{
1023 const struct sched_class *class;
1024
1025 if (p->sched_class == rq->curr->sched_class) {
1026 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
1027 } else {
1028 for_each_class(class) {
1029 if (class == rq->curr->sched_class)
1030 break;
1031 if (class == p->sched_class) {
1032 resched_task(rq->curr);
1033 break;
1034 }
1035 }
1036 }
1037
1038 /*
1039 * A queue event has occurred, and we're going to schedule. In
1040 * this case, we can save a useless back to back clock update.
1041 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001042 if (rq->curr->on_rq && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001043 rq->skip_clock_update = 1;
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02001047void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001048{
Peter Zijlstrae2912002009-12-16 18:04:36 +01001049#ifdef CONFIG_SCHED_DEBUG
1050 /*
1051 * We should never call set_task_cpu() on a blocked task,
1052 * ttwu() will sort out the placement.
1053 */
Peter Zijlstra077614e2009-12-17 13:16:31 +01001054 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
Peter Zijlstra01028742013-08-14 14:55:46 +02001055 !(task_preempt_count(p) & PREEMPT_ACTIVE));
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001056
1057#ifdef CONFIG_LOCKDEP
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001058 /*
1059 * The caller should hold either p->pi_lock or rq->lock, when changing
1060 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
1061 *
1062 * sched_move_task() holds both and thus holding either pins the cgroup,
Peter Zijlstra8323f262012-06-22 13:36:05 +02001063 * see task_group().
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001064 *
1065 * Furthermore, all task_rq users should acquire both locks, see
1066 * task_rq_lock().
1067 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001068 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
1069 lockdep_is_held(&task_rq(p)->lock)));
1070#endif
Peter Zijlstrae2912002009-12-16 18:04:36 +01001071#endif
1072
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08001073 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01001074
Peter Zijlstra0c697742009-12-22 15:43:19 +01001075 if (task_cpu(p) != new_cpu) {
Paul Turner0a74bef2012-10-04 13:18:30 +02001076 if (p->sched_class->migrate_task_rq)
1077 p->sched_class->migrate_task_rq(p, new_cpu);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001078 p->se.nr_migrations++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001079 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001080 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001081
1082 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001083}
1084
Peter Zijlstraac66f542013-10-07 11:29:16 +01001085static void __migrate_swap_task(struct task_struct *p, int cpu)
1086{
1087 if (p->on_rq) {
1088 struct rq *src_rq, *dst_rq;
1089
1090 src_rq = task_rq(p);
1091 dst_rq = cpu_rq(cpu);
1092
1093 deactivate_task(src_rq, p, 0);
1094 set_task_cpu(p, cpu);
1095 activate_task(dst_rq, p, 0);
1096 check_preempt_curr(dst_rq, p, 0);
1097 } else {
1098 /*
1099 * Task isn't running anymore; make it appear like we migrated
1100 * it before it went to sleep. This means on wakeup we make the
1101 * previous cpu our targer instead of where it really is.
1102 */
1103 p->wake_cpu = cpu;
1104 }
1105}
1106
1107struct migration_swap_arg {
1108 struct task_struct *src_task, *dst_task;
1109 int src_cpu, dst_cpu;
1110};
1111
1112static int migrate_swap_stop(void *data)
1113{
1114 struct migration_swap_arg *arg = data;
1115 struct rq *src_rq, *dst_rq;
1116 int ret = -EAGAIN;
1117
1118 src_rq = cpu_rq(arg->src_cpu);
1119 dst_rq = cpu_rq(arg->dst_cpu);
1120
Peter Zijlstra74602312013-10-10 20:17:22 +02001121 double_raw_lock(&arg->src_task->pi_lock,
1122 &arg->dst_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001123 double_rq_lock(src_rq, dst_rq);
1124 if (task_cpu(arg->dst_task) != arg->dst_cpu)
1125 goto unlock;
1126
1127 if (task_cpu(arg->src_task) != arg->src_cpu)
1128 goto unlock;
1129
1130 if (!cpumask_test_cpu(arg->dst_cpu, tsk_cpus_allowed(arg->src_task)))
1131 goto unlock;
1132
1133 if (!cpumask_test_cpu(arg->src_cpu, tsk_cpus_allowed(arg->dst_task)))
1134 goto unlock;
1135
1136 __migrate_swap_task(arg->src_task, arg->dst_cpu);
1137 __migrate_swap_task(arg->dst_task, arg->src_cpu);
1138
1139 ret = 0;
1140
1141unlock:
1142 double_rq_unlock(src_rq, dst_rq);
Peter Zijlstra74602312013-10-10 20:17:22 +02001143 raw_spin_unlock(&arg->dst_task->pi_lock);
1144 raw_spin_unlock(&arg->src_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001145
1146 return ret;
1147}
1148
1149/*
1150 * Cross migrate two tasks
1151 */
1152int migrate_swap(struct task_struct *cur, struct task_struct *p)
1153{
1154 struct migration_swap_arg arg;
1155 int ret = -EINVAL;
1156
Peter Zijlstraac66f542013-10-07 11:29:16 +01001157 arg = (struct migration_swap_arg){
1158 .src_task = cur,
1159 .src_cpu = task_cpu(cur),
1160 .dst_task = p,
1161 .dst_cpu = task_cpu(p),
1162 };
1163
1164 if (arg.src_cpu == arg.dst_cpu)
1165 goto out;
1166
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001167 /*
1168 * These three tests are all lockless; this is OK since all of them
1169 * will be re-checked with proper locks held further down the line.
1170 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01001171 if (!cpu_active(arg.src_cpu) || !cpu_active(arg.dst_cpu))
1172 goto out;
1173
1174 if (!cpumask_test_cpu(arg.dst_cpu, tsk_cpus_allowed(arg.src_task)))
1175 goto out;
1176
1177 if (!cpumask_test_cpu(arg.src_cpu, tsk_cpus_allowed(arg.dst_task)))
1178 goto out;
1179
Mel Gorman286549d2014-01-21 15:51:03 -08001180 trace_sched_swap_numa(cur, arg.src_cpu, p, arg.dst_cpu);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001181 ret = stop_two_cpus(arg.dst_cpu, arg.src_cpu, migrate_swap_stop, &arg);
1182
1183out:
Peter Zijlstraac66f542013-10-07 11:29:16 +01001184 return ret;
1185}
1186
Tejun Heo969c7922010-05-06 18:49:21 +02001187struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07001188 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001190};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Tejun Heo969c7922010-05-06 18:49:21 +02001192static int migration_cpu_stop(void *data);
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 * wait_task_inactive - wait for a thread to unschedule.
1196 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001197 * If @match_state is nonzero, it's the @p->state value just checked and
1198 * not expected to change. If it changes, i.e. @p might have woken up,
1199 * then return zero. When we succeed in waiting for @p to be off its CPU,
1200 * we return a positive number (its total switch count). If a second call
1201 * a short while later returns the same number, the caller can be sure that
1202 * @p has remained unscheduled the whole time.
1203 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 * The caller must ensure that the task *will* unschedule sometime soon,
1205 * else this function might spin for a *long* time. This function can't
1206 * be called with interrupts off, or it may introduce deadlock with
1207 * smp_call_function() if an IPI is sent by the same process we are
1208 * waiting to become inactive.
1209 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001210unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001213 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001214 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001215 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Andi Kleen3a5c3592007-10-15 17:00:14 +02001217 for (;;) {
1218 /*
1219 * We do the initial early heuristics without holding
1220 * any task-queue locks at all. We'll only try to get
1221 * the runqueue lock when things look like they will
1222 * work out!
1223 */
1224 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001225
Andi Kleen3a5c3592007-10-15 17:00:14 +02001226 /*
1227 * If the task is actively running on another CPU
1228 * still, just relax and busy-wait without holding
1229 * any locks.
1230 *
1231 * NOTE! Since we don't hold any locks, it's not
1232 * even sure that "rq" stays as the right runqueue!
1233 * But we don't care, since "task_running()" will
1234 * return false if the runqueue has changed and p
1235 * is actually now running somewhere else!
1236 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001237 while (task_running(rq, p)) {
1238 if (match_state && unlikely(p->state != match_state))
1239 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001240 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001241 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001242
Andi Kleen3a5c3592007-10-15 17:00:14 +02001243 /*
1244 * Ok, time to look more closely! We need the rq
1245 * lock now, to be *sure*. If we're wrong, we'll
1246 * just go back and repeat.
1247 */
1248 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02001249 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001250 running = task_running(rq, p);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001251 on_rq = p->on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001252 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001253 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001254 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001255 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001256
Andi Kleen3a5c3592007-10-15 17:00:14 +02001257 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001258 * If it changed from the expected state, bail out now.
1259 */
1260 if (unlikely(!ncsw))
1261 break;
1262
1263 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001264 * Was it really running after all now that we
1265 * checked with the proper locks actually held?
1266 *
1267 * Oops. Go back and try again..
1268 */
1269 if (unlikely(running)) {
1270 cpu_relax();
1271 continue;
1272 }
1273
1274 /*
1275 * It's not enough that it's not actively running,
1276 * it must be off the runqueue _entirely_, and not
1277 * preempted!
1278 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00001279 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02001280 * running right now), it's preempted, and we should
1281 * yield - it could be a while.
1282 */
1283 if (unlikely(on_rq)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00001284 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
1285
1286 set_current_state(TASK_UNINTERRUPTIBLE);
1287 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001288 continue;
1289 }
1290
1291 /*
1292 * Ahh, all good. It wasn't running, and it wasn't
1293 * runnable, which means that it will never become
1294 * running in the future either. We're all done!
1295 */
1296 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07001298
1299 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
1302/***
1303 * kick_process - kick a running thread to enter/exit the kernel
1304 * @p: the to-be-kicked thread
1305 *
1306 * Cause a process which is running on another CPU to enter
1307 * kernel-mode, without any delay. (to get signals handled.)
1308 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001309 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 * because all it wants to ensure is that the remote task enters
1311 * the kernel. If the IPI races and the task has been migrated
1312 * to another CPU then no harm is done and the purpose has been
1313 * achieved as well.
1314 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001315void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 int cpu;
1318
1319 preempt_disable();
1320 cpu = task_cpu(p);
1321 if ((cpu != smp_processor_id()) && task_curr(p))
1322 smp_send_reschedule(cpu);
1323 preempt_enable();
1324}
Rusty Russellb43e3522009-06-12 22:27:00 -06001325EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07001326#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001328#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01001329/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001330 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01001331 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001332static int select_fallback_rq(int cpu, struct task_struct *p)
1333{
Tang Chenaa00d892013-02-22 16:33:33 -08001334 int nid = cpu_to_node(cpu);
1335 const struct cpumask *nodemask = NULL;
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001336 enum { cpuset, possible, fail } state = cpuset;
1337 int dest_cpu;
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001338
Tang Chenaa00d892013-02-22 16:33:33 -08001339 /*
1340 * If the node that the cpu is on has been offlined, cpu_to_node()
1341 * will return -1. There is no cpu on the node, and we should
1342 * select the cpu on the other node.
1343 */
1344 if (nid != -1) {
1345 nodemask = cpumask_of_node(nid);
1346
1347 /* Look for allowed, online CPU in same node. */
1348 for_each_cpu(dest_cpu, nodemask) {
1349 if (!cpu_online(dest_cpu))
1350 continue;
1351 if (!cpu_active(dest_cpu))
1352 continue;
1353 if (cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
1354 return dest_cpu;
1355 }
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001356 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001357
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001358 for (;;) {
1359 /* Any allowed, online CPU? */
Srivatsa S. Bhate3831ed2012-03-30 19:40:28 +05301360 for_each_cpu(dest_cpu, tsk_cpus_allowed(p)) {
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001361 if (!cpu_online(dest_cpu))
1362 continue;
1363 if (!cpu_active(dest_cpu))
1364 continue;
1365 goto out;
1366 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001367
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001368 switch (state) {
1369 case cpuset:
1370 /* No more Mr. Nice Guy. */
1371 cpuset_cpus_allowed_fallback(p);
1372 state = possible;
1373 break;
1374
1375 case possible:
1376 do_set_cpus_allowed(p, cpu_possible_mask);
1377 state = fail;
1378 break;
1379
1380 case fail:
1381 BUG();
1382 break;
1383 }
1384 }
1385
1386out:
1387 if (state != cpuset) {
1388 /*
1389 * Don't tell them about moving exiting tasks or
1390 * kernel threads (both mm NULL), since they never
1391 * leave kernel.
1392 */
1393 if (p->mm && printk_ratelimit()) {
John Stultzaac74dc2014-06-04 16:11:40 -07001394 printk_deferred("process %d (%s) no longer affine to cpu%d\n",
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001395 task_pid_nr(p), p->comm, cpu);
1396 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001397 }
1398
1399 return dest_cpu;
1400}
1401
Peter Zijlstrae2912002009-12-16 18:04:36 +01001402/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001403 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01001404 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001405static inline
Peter Zijlstraac66f542013-10-07 11:29:16 +01001406int select_task_rq(struct task_struct *p, int cpu, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001407{
Peter Zijlstraac66f542013-10-07 11:29:16 +01001408 cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001409
1410 /*
1411 * In order not to call set_task_cpu() on a blocking task we need
1412 * to rely on ttwu() to place the task on a valid ->cpus_allowed
1413 * cpu.
1414 *
1415 * Since this is common to all placement strategies, this lives here.
1416 *
1417 * [ this allows ->select_task() to simply return task_cpu(p) and
1418 * not worry about this generic constraint ]
1419 */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02001420 if (unlikely(!cpumask_test_cpu(cpu, tsk_cpus_allowed(p)) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01001421 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001422 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001423
1424 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001425}
Mike Galbraith09a40af2010-04-15 07:29:59 +02001426
1427static void update_avg(u64 *avg, u64 sample)
1428{
1429 s64 diff = sample - *avg;
1430 *avg += diff >> 3;
1431}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001432#endif
1433
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001434static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001435ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001436{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001437#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001438 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09001439
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001440#ifdef CONFIG_SMP
1441 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09001442
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001443 if (cpu == this_cpu) {
1444 schedstat_inc(rq, ttwu_local);
1445 schedstat_inc(p, se.statistics.nr_wakeups_local);
1446 } else {
1447 struct sched_domain *sd;
1448
1449 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001450 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001451 for_each_domain(this_cpu, sd) {
1452 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
1453 schedstat_inc(sd, ttwu_wake_remote);
1454 break;
1455 }
1456 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001457 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001458 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001459
1460 if (wake_flags & WF_MIGRATED)
1461 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
1462
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001463#endif /* CONFIG_SMP */
1464
1465 schedstat_inc(rq, ttwu_count);
1466 schedstat_inc(p, se.statistics.nr_wakeups);
1467
1468 if (wake_flags & WF_SYNC)
1469 schedstat_inc(p, se.statistics.nr_wakeups_sync);
1470
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001471#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09001472}
1473
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001474static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001475{
Tejun Heo9ed38112009-12-03 15:08:03 +09001476 activate_task(rq, p, en_flags);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001477 p->on_rq = 1;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02001478
1479 /* if a worker is waking up, notify workqueue */
1480 if (p->flags & PF_WQ_WORKER)
1481 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09001482}
1483
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001484/*
1485 * Mark the task runnable and perform wakeup-preemption.
1486 */
Peter Zijlstra89363382011-04-05 17:23:42 +02001487static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001488ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001489{
Tejun Heo9ed38112009-12-03 15:08:03 +09001490 check_preempt_curr(rq, p, wake_flags);
Peter Zijlstraa8d7ad52013-03-14 10:48:39 +01001491 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09001492
1493 p->state = TASK_RUNNING;
1494#ifdef CONFIG_SMP
1495 if (p->sched_class->task_woken)
1496 p->sched_class->task_woken(rq, p);
1497
Steven Rostedte69c6342010-12-06 17:10:31 -05001498 if (rq->idle_stamp) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001499 u64 delta = rq_clock(rq) - rq->idle_stamp;
Jason Low9bd721c2013-09-13 11:26:52 -07001500 u64 max = 2*rq->max_idle_balance_cost;
Tejun Heo9ed38112009-12-03 15:08:03 +09001501
Jason Lowabfafa52013-09-13 11:26:51 -07001502 update_avg(&rq->avg_idle, delta);
1503
1504 if (rq->avg_idle > max)
Tejun Heo9ed38112009-12-03 15:08:03 +09001505 rq->avg_idle = max;
Jason Lowabfafa52013-09-13 11:26:51 -07001506
Tejun Heo9ed38112009-12-03 15:08:03 +09001507 rq->idle_stamp = 0;
1508 }
1509#endif
1510}
1511
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001512static void
1513ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
1514{
1515#ifdef CONFIG_SMP
1516 if (p->sched_contributes_to_load)
1517 rq->nr_uninterruptible--;
1518#endif
1519
1520 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
1521 ttwu_do_wakeup(rq, p, wake_flags);
1522}
1523
1524/*
1525 * Called in case the task @p isn't fully descheduled from its runqueue,
1526 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
1527 * since all we need to do is flip p->state to TASK_RUNNING, since
1528 * the task is still ->on_rq.
1529 */
1530static int ttwu_remote(struct task_struct *p, int wake_flags)
1531{
1532 struct rq *rq;
1533 int ret = 0;
1534
1535 rq = __task_rq_lock(p);
1536 if (p->on_rq) {
Frederic Weisbecker1ad4ec02013-04-12 01:51:00 +02001537 /* check_preempt_curr() may use rq clock */
1538 update_rq_clock(rq);
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001539 ttwu_do_wakeup(rq, p, wake_flags);
1540 ret = 1;
1541 }
1542 __task_rq_unlock(rq);
1543
1544 return ret;
1545}
1546
Peter Zijlstra317f3942011-04-05 17:23:58 +02001547#ifdef CONFIG_SMP
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001548void sched_ttwu_pending(void)
Peter Zijlstra317f3942011-04-05 17:23:58 +02001549{
1550 struct rq *rq = this_rq();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001551 struct llist_node *llist = llist_del_all(&rq->wake_list);
1552 struct task_struct *p;
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001553 unsigned long flags;
Peter Zijlstra317f3942011-04-05 17:23:58 +02001554
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001555 if (!llist)
1556 return;
1557
1558 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001559
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001560 while (llist) {
1561 p = llist_entry(llist, struct task_struct, wake_entry);
1562 llist = llist_next(llist);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001563 ttwu_do_activate(rq, p, 0);
1564 }
1565
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001566 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001567}
1568
1569void scheduler_ipi(void)
1570{
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001571 /*
1572 * Fold TIF_NEED_RESCHED into the preempt_count; anybody setting
1573 * TIF_NEED_RESCHED remotely (for the first time) will also send
1574 * this IPI.
1575 */
Peter Zijlstra8cb75e02013-11-20 12:22:37 +01001576 preempt_fold_need_resched();
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001577
Frederic Weisbeckerfd2ac4f2014-03-18 21:12:53 +01001578 if (llist_empty(&this_rq()->wake_list) && !got_nohz_idle_kick())
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001579 return;
1580
1581 /*
1582 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
1583 * traditionally all their work was done from the interrupt return
1584 * path. Now that we actually do some work, we need to make sure
1585 * we do call them.
1586 *
1587 * Some archs already do call them, luckily irq_enter/exit nest
1588 * properly.
1589 *
1590 * Arguably we should visit all archs and update all handlers,
1591 * however a fair share of IPIs are still resched only so this would
1592 * somewhat pessimize the simple resched case.
1593 */
1594 irq_enter();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001595 sched_ttwu_pending();
Suresh Siddhaca380622011-10-03 15:09:00 -07001596
1597 /*
1598 * Check if someone kicked us for doing the nohz idle load balance.
1599 */
Vincent Guittot873b4c62013-06-05 10:13:11 +02001600 if (unlikely(got_nohz_idle_kick())) {
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001601 this_rq()->idle_balance = 1;
Suresh Siddhaca380622011-10-03 15:09:00 -07001602 raise_softirq_irqoff(SCHED_SOFTIRQ);
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001603 }
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001604 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02001605}
1606
1607static void ttwu_queue_remote(struct task_struct *p, int cpu)
1608{
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001609 struct rq *rq = cpu_rq(cpu);
1610
1611 if (llist_add(&p->wake_entry, &cpu_rq(cpu)->wake_list)) {
1612 if (!set_nr_if_polling(rq->idle))
1613 smp_send_reschedule(cpu);
1614 else
1615 trace_sched_wake_idle_without_ipi(cpu);
1616 }
Peter Zijlstra317f3942011-04-05 17:23:58 +02001617}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001618
Peter Zijlstra39be3502012-01-26 12:44:34 +01001619bool cpus_share_cache(int this_cpu, int that_cpu)
Peter Zijlstra518cd622011-12-07 15:07:31 +01001620{
1621 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
1622}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001623#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001624
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001625static void ttwu_queue(struct task_struct *p, int cpu)
1626{
1627 struct rq *rq = cpu_rq(cpu);
1628
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00001629#if defined(CONFIG_SMP)
Peter Zijlstra39be3502012-01-26 12:44:34 +01001630 if (sched_feat(TTWU_QUEUE) && !cpus_share_cache(smp_processor_id(), cpu)) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02001631 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001632 ttwu_queue_remote(p, cpu);
1633 return;
1634 }
1635#endif
1636
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001637 raw_spin_lock(&rq->lock);
1638 ttwu_do_activate(rq, p, 0);
1639 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09001640}
1641
1642/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09001644 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09001646 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 *
1648 * Put it on the run-queue if it's not already there. The "current"
1649 * thread is always on the run-queue (except when the actual
1650 * re-schedule is in progress), and as such you're allowed to do
1651 * the simpler "current->state = TASK_RUNNING" to mark yourself
1652 * runnable without the overhead of this.
1653 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02001654 * Return: %true if @p was woken up, %false if it was already running.
Tejun Heo9ed38112009-12-03 15:08:03 +09001655 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001657static int
1658try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001661 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001662
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02001663 /*
1664 * If we are going to wake up a thread waiting for CONDITION we
1665 * need to ensure that CONDITION=1 done by the caller can not be
1666 * reordered with p->state check below. This pairs with mb() in
1667 * set_current_state() the waiting thread does.
1668 */
1669 smp_mb__before_spinlock();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001670 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001671 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 goto out;
1673
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001674 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001676
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001677 if (p->on_rq && ttwu_remote(p, wake_flags))
1678 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001681 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001682 * If the owning (remote) cpu is still in the middle of schedule() with
1683 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001684 */
Peter Zijlstraf3e94782012-09-12 11:22:00 +02001685 while (p->on_cpu)
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001686 cpu_relax();
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001687 /*
1688 * Pairs with the smp_wmb() in finish_lock_switch().
1689 */
1690 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02001692 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001693 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001694
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001695 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02001696 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01001697
Peter Zijlstraac66f542013-10-07 11:29:16 +01001698 cpu = select_task_rq(p, p->wake_cpu, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001699 if (task_cpu(p) != cpu) {
1700 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02001701 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001705 ttwu_queue(p, cpu);
1706stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001707 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001709 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 return success;
1712}
1713
David Howells50fa6102009-04-28 15:01:38 +01001714/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02001715 * try_to_wake_up_local - try to wake up a local task with rq lock held
1716 * @p: the thread to be awakened
1717 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02001718 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02001719 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02001720 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02001721 */
1722static void try_to_wake_up_local(struct task_struct *p)
1723{
1724 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001725
Tejun Heo383efcd2013-03-18 12:22:34 -07001726 if (WARN_ON_ONCE(rq != this_rq()) ||
1727 WARN_ON_ONCE(p == current))
1728 return;
1729
Tejun Heo21aa9af2010-06-08 21:40:37 +02001730 lockdep_assert_held(&rq->lock);
1731
Peter Zijlstra2acca552011-04-05 17:23:50 +02001732 if (!raw_spin_trylock(&p->pi_lock)) {
1733 raw_spin_unlock(&rq->lock);
1734 raw_spin_lock(&p->pi_lock);
1735 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001736 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02001737
Tejun Heo21aa9af2010-06-08 21:40:37 +02001738 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02001739 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02001740
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001741 if (!p->on_rq)
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001742 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
1743
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001744 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001745 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02001746out:
1747 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001748}
1749
1750/**
David Howells50fa6102009-04-28 15:01:38 +01001751 * wake_up_process - Wake up a specific process
1752 * @p: The process to be woken up.
1753 *
1754 * Attempt to wake up the nominated process and move it to the set of runnable
Yacine Belkadie69f6182013-07-12 20:45:47 +02001755 * processes.
1756 *
1757 * Return: 1 if the process was woken up, 0 if it was already running.
David Howells50fa6102009-04-28 15:01:38 +01001758 *
1759 * It may be assumed that this function implies a write memory barrier before
1760 * changing the task state if and only if any tasks are woken up.
1761 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001762int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Oleg Nesterov9067ac82013-01-21 20:48:17 +01001764 WARN_ON(task_is_stopped_or_traced(p));
1765 return try_to_wake_up(p, TASK_NORMAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767EXPORT_SYMBOL(wake_up_process);
1768
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001769int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
1771 return try_to_wake_up(p, state, 0);
1772}
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774/*
1775 * Perform scheduler related setup for a newly forked process p.
1776 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001777 *
1778 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 */
Rik van Riel5e1576e2013-10-07 11:29:26 +01001780static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001782 p->on_rq = 0;
1783
1784 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001785 p->se.exec_start = 0;
1786 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001787 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001788 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001789 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001790 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001791
1792#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03001793 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001794#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001795
Dario Faggioliaab03e02013-11-28 11:14:43 +01001796 RB_CLEAR_NODE(&p->dl.rb_node);
1797 hrtimer_init(&p->dl.dl_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1798 p->dl.dl_runtime = p->dl.runtime = 0;
1799 p->dl.dl_deadline = p->dl.deadline = 0;
Harald Gustafsson755378a2013-11-07 14:43:40 +01001800 p->dl.dl_period = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001801 p->dl.flags = 0;
1802
Peter Zijlstrafa717062008-01-25 21:08:27 +01001803 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07001804
Avi Kivitye107be32007-07-26 13:40:43 +02001805#ifdef CONFIG_PREEMPT_NOTIFIERS
1806 INIT_HLIST_HEAD(&p->preempt_notifiers);
1807#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001808
1809#ifdef CONFIG_NUMA_BALANCING
1810 if (p->mm && atomic_read(&p->mm->mm_users) == 1) {
Mel Gorman7e8d16b2013-10-07 11:28:54 +01001811 p->mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001812 p->mm->numa_scan_seq = 0;
1813 }
1814
Rik van Riel5e1576e2013-10-07 11:29:26 +01001815 if (clone_flags & CLONE_VM)
1816 p->numa_preferred_nid = current->numa_preferred_nid;
1817 else
1818 p->numa_preferred_nid = -1;
1819
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001820 p->node_stamp = 0ULL;
1821 p->numa_scan_seq = p->mm ? p->mm->numa_scan_seq : 0;
Peter Zijlstra4b96a292012-10-25 14:16:47 +02001822 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001823 p->numa_work.next = &p->numa_work;
Rik van Rielff1df892014-01-27 17:03:41 -05001824 p->numa_faults_memory = NULL;
1825 p->numa_faults_buffer_memory = NULL;
Rik van Riel7e2703e2014-01-27 17:03:45 -05001826 p->last_task_numa_placement = 0;
1827 p->last_sum_exec_runtime = 0;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01001828
1829 INIT_LIST_HEAD(&p->numa_entry);
1830 p->numa_group = NULL;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001831#endif /* CONFIG_NUMA_BALANCING */
Ingo Molnardd41f592007-07-09 18:51:59 +02001832}
1833
Mel Gorman1a687c22012-11-22 11:16:36 +00001834#ifdef CONFIG_NUMA_BALANCING
Mel Gorman3105b862012-11-23 11:23:49 +00001835#ifdef CONFIG_SCHED_DEBUG
Mel Gorman1a687c22012-11-22 11:16:36 +00001836void set_numabalancing_state(bool enabled)
1837{
1838 if (enabled)
1839 sched_feat_set("NUMA");
1840 else
1841 sched_feat_set("NO_NUMA");
1842}
Mel Gorman3105b862012-11-23 11:23:49 +00001843#else
1844__read_mostly bool numabalancing_enabled;
1845
1846void set_numabalancing_state(bool enabled)
1847{
1848 numabalancing_enabled = enabled;
1849}
1850#endif /* CONFIG_SCHED_DEBUG */
Andi Kleen54a43d52014-01-23 15:53:13 -08001851
1852#ifdef CONFIG_PROC_SYSCTL
1853int sysctl_numa_balancing(struct ctl_table *table, int write,
1854 void __user *buffer, size_t *lenp, loff_t *ppos)
1855{
1856 struct ctl_table t;
1857 int err;
1858 int state = numabalancing_enabled;
1859
1860 if (write && !capable(CAP_SYS_ADMIN))
1861 return -EPERM;
1862
1863 t = *table;
1864 t.data = &state;
1865 err = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
1866 if (err < 0)
1867 return err;
1868 if (write)
1869 set_numabalancing_state(state);
1870 return err;
1871}
1872#endif
1873#endif
Mel Gorman1a687c22012-11-22 11:16:36 +00001874
Ingo Molnardd41f592007-07-09 18:51:59 +02001875/*
1876 * fork()/clone()-time setup:
1877 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001878int sched_fork(unsigned long clone_flags, struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02001879{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001880 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001881 int cpu = get_cpu();
1882
Rik van Riel5e1576e2013-10-07 11:29:26 +01001883 __sched_fork(clone_flags, p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001884 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01001885 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001886 * nobody will actually run it, and a signal or other external
1887 * event cannot wake it up and insert it on the runqueue either.
1888 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01001889 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001890
Ingo Molnarb29739f2006-06-27 02:54:51 -07001891 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02001892 * Make sure we do not leak PI boosting priority to the child.
1893 */
1894 p->prio = current->normal_prio;
1895
1896 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001897 * Revert to default priority/policy on fork if requested.
1898 */
1899 if (unlikely(p->sched_reset_on_fork)) {
Dario Faggioliaab03e02013-11-28 11:14:43 +01001900 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001901 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001902 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02001903 p->rt_priority = 0;
1904 } else if (PRIO_TO_NICE(p->static_prio) < 0)
1905 p->static_prio = NICE_TO_PRIO(0);
1906
1907 p->prio = p->normal_prio = __normal_prio(p);
1908 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001909
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001910 /*
1911 * We don't need the reset flag anymore after the fork. It has
1912 * fulfilled its duty:
1913 */
1914 p->sched_reset_on_fork = 0;
1915 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02001916
Dario Faggioliaab03e02013-11-28 11:14:43 +01001917 if (dl_prio(p->prio)) {
1918 put_cpu();
1919 return -EAGAIN;
1920 } else if (rt_prio(p->prio)) {
1921 p->sched_class = &rt_sched_class;
1922 } else {
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001923 p->sched_class = &fair_sched_class;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001924 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001925
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001926 if (p->sched_class->task_fork)
1927 p->sched_class->task_fork(p);
1928
Peter Zijlstra86951592010-06-22 11:44:53 +02001929 /*
1930 * The child is not yet in the pid-hash so no cgroup attach races,
1931 * and the cgroup is pinned to this child due to cgroup_fork()
1932 * is ran before sched_fork().
1933 *
1934 * Silence PROVE_RCU.
1935 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001936 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001937 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001938 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001939
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001940#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001941 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001942 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001944#if defined(CONFIG_SMP)
1945 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07001946#endif
Peter Zijlstra01028742013-08-14 14:55:46 +02001947 init_task_preempt_count(p);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001948#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05001949 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001950 RB_CLEAR_NODE(&p->pushable_dl_tasks);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001951#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05001952
Nick Piggin476d1392005-06-25 14:57:29 -07001953 put_cpu();
Dario Faggioliaab03e02013-11-28 11:14:43 +01001954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Dario Faggioli332ac172013-11-07 14:43:45 +01001957unsigned long to_ratio(u64 period, u64 runtime)
1958{
1959 if (runtime == RUNTIME_INF)
1960 return 1ULL << 20;
1961
1962 /*
1963 * Doing this here saves a lot of checks in all
1964 * the calling paths, and returning zero seems
1965 * safe for them anyway.
1966 */
1967 if (period == 0)
1968 return 0;
1969
1970 return div64_u64(runtime << 20, period);
1971}
1972
1973#ifdef CONFIG_SMP
1974inline struct dl_bw *dl_bw_of(int i)
1975{
1976 return &cpu_rq(i)->rd->dl_bw;
1977}
1978
Peter Zijlstrade212f12013-12-19 11:54:45 +01001979static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001980{
Peter Zijlstrade212f12013-12-19 11:54:45 +01001981 struct root_domain *rd = cpu_rq(i)->rd;
1982 int cpus = 0;
1983
1984 for_each_cpu_and(i, rd->span, cpu_active_mask)
1985 cpus++;
1986
1987 return cpus;
Dario Faggioli332ac172013-11-07 14:43:45 +01001988}
1989#else
1990inline struct dl_bw *dl_bw_of(int i)
1991{
1992 return &cpu_rq(i)->dl.dl_bw;
1993}
1994
Peter Zijlstrade212f12013-12-19 11:54:45 +01001995static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001996{
1997 return 1;
1998}
1999#endif
2000
2001static inline
2002void __dl_clear(struct dl_bw *dl_b, u64 tsk_bw)
2003{
2004 dl_b->total_bw -= tsk_bw;
2005}
2006
2007static inline
2008void __dl_add(struct dl_bw *dl_b, u64 tsk_bw)
2009{
2010 dl_b->total_bw += tsk_bw;
2011}
2012
2013static inline
2014bool __dl_overflow(struct dl_bw *dl_b, int cpus, u64 old_bw, u64 new_bw)
2015{
2016 return dl_b->bw != -1 &&
2017 dl_b->bw * cpus < dl_b->total_bw - old_bw + new_bw;
2018}
2019
2020/*
2021 * We must be sure that accepting a new task (or allowing changing the
2022 * parameters of an existing one) is consistent with the bandwidth
2023 * constraints. If yes, this function also accordingly updates the currently
2024 * allocated bandwidth to reflect the new situation.
2025 *
2026 * This function is called while holding p's rq->lock.
2027 */
2028static int dl_overflow(struct task_struct *p, int policy,
2029 const struct sched_attr *attr)
2030{
2031
2032 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
Steven Rostedt4df16382014-02-19 13:53:35 -05002033 u64 period = attr->sched_period ?: attr->sched_deadline;
Dario Faggioli332ac172013-11-07 14:43:45 +01002034 u64 runtime = attr->sched_runtime;
2035 u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
Peter Zijlstrade212f12013-12-19 11:54:45 +01002036 int cpus, err = -1;
Dario Faggioli332ac172013-11-07 14:43:45 +01002037
2038 if (new_bw == p->dl.dl_bw)
2039 return 0;
2040
2041 /*
2042 * Either if a task, enters, leave, or stays -deadline but changes
2043 * its parameters, we may need to update accordingly the total
2044 * allocated bandwidth of the container.
2045 */
2046 raw_spin_lock(&dl_b->lock);
Peter Zijlstrade212f12013-12-19 11:54:45 +01002047 cpus = dl_bw_cpus(task_cpu(p));
Dario Faggioli332ac172013-11-07 14:43:45 +01002048 if (dl_policy(policy) && !task_has_dl_policy(p) &&
2049 !__dl_overflow(dl_b, cpus, 0, new_bw)) {
2050 __dl_add(dl_b, new_bw);
2051 err = 0;
2052 } else if (dl_policy(policy) && task_has_dl_policy(p) &&
2053 !__dl_overflow(dl_b, cpus, p->dl.dl_bw, new_bw)) {
2054 __dl_clear(dl_b, p->dl.dl_bw);
2055 __dl_add(dl_b, new_bw);
2056 err = 0;
2057 } else if (!dl_policy(policy) && task_has_dl_policy(p)) {
2058 __dl_clear(dl_b, p->dl.dl_bw);
2059 err = 0;
2060 }
2061 raw_spin_unlock(&dl_b->lock);
2062
2063 return err;
2064}
2065
2066extern void init_dl_bw(struct dl_bw *dl_b);
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/*
2069 * wake_up_new_task - wake up a newly created task for the first time.
2070 *
2071 * This function will do some initial scheduler statistics housekeeping
2072 * that must be done for every newly created context, then puts the task
2073 * on the runqueue and wakes it.
2074 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02002075void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
2077 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002078 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002079
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002080 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002081#ifdef CONFIG_SMP
2082 /*
2083 * Fork balancing, do it here and not earlier because:
2084 * - cpus_allowed can change in the fork path
2085 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002086 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01002087 set_task_cpu(p, select_task_rq(p, task_cpu(p), SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002088#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Alex Shia75cdaa2013-06-20 10:18:47 +08002090 /* Initialize new task's runnable average */
2091 init_task_runnable_average(p);
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002092 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002093 activate_task(rq, p, 0);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002094 p->on_rq = 1;
Peter Zijlstra89363382011-04-05 17:23:42 +02002095 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02002096 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002097#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002098 if (p->sched_class->task_woken)
2099 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002100#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002101 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
2103
Avi Kivitye107be32007-07-26 13:40:43 +02002104#ifdef CONFIG_PREEMPT_NOTIFIERS
2105
2106/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002107 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002108 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002109 */
2110void preempt_notifier_register(struct preempt_notifier *notifier)
2111{
2112 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2113}
2114EXPORT_SYMBOL_GPL(preempt_notifier_register);
2115
2116/**
2117 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002118 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002119 *
2120 * This is safe to call from within a preemption notifier.
2121 */
2122void preempt_notifier_unregister(struct preempt_notifier *notifier)
2123{
2124 hlist_del(&notifier->link);
2125}
2126EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2127
2128static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2129{
2130 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002131
Sasha Levinb67bfe02013-02-27 17:06:00 -08002132 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002133 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2134}
2135
2136static void
2137fire_sched_out_preempt_notifiers(struct task_struct *curr,
2138 struct task_struct *next)
2139{
2140 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002141
Sasha Levinb67bfe02013-02-27 17:06:00 -08002142 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002143 notifier->ops->sched_out(notifier, next);
2144}
2145
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002146#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002147
2148static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2149{
2150}
2151
2152static void
2153fire_sched_out_preempt_notifiers(struct task_struct *curr,
2154 struct task_struct *next)
2155{
2156}
2157
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002158#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002161 * prepare_task_switch - prepare to switch tasks
2162 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002163 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002164 * @next: the task we are going to switch to.
2165 *
2166 * This is called with the rq lock held and interrupts off. It must
2167 * be paired with a subsequent finish_task_switch after the context
2168 * switch.
2169 *
2170 * prepare_task_switch sets up locking and calls architecture specific
2171 * hooks.
2172 */
Avi Kivitye107be32007-07-26 13:40:43 +02002173static inline void
2174prepare_task_switch(struct rq *rq, struct task_struct *prev,
2175 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002176{
Andrew Vagin895dd922012-07-12 14:14:29 +04002177 trace_sched_switch(prev, next);
Michael S. Tsirkin43148952013-09-22 17:20:54 +03002178 sched_info_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002179 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02002180 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002181 prepare_lock_switch(rq, next);
2182 prepare_arch_switch(next);
2183}
2184
2185/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002187 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 * @prev: the thread we just switched away from.
2189 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002190 * finish_task_switch must be called after the context switch, paired
2191 * with a prepare_task_switch call before the context switch.
2192 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2193 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 *
2195 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002196 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 * with the lock held can cause deadlocks; see schedule() for
2198 * details.)
2199 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002200static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 __releases(rq->lock)
2202{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002204 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 rq->prev_mm = NULL;
2207
2208 /*
2209 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002210 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002211 * schedule one last time. The schedule call will never return, and
2212 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002213 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 * still held, otherwise prev could be scheduled on another cpu, die
2215 * there before we look at prev->state, and then the reference would
2216 * be dropped twice.
2217 * Manfred Spraul <manfred@colorfullife.com>
2218 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002219 prev_state = prev->state;
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +02002220 vtime_task_switch(prev);
Nick Piggin4866cde2005-06-25 14:57:23 -07002221 finish_arch_switch(prev);
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002222 perf_event_task_sched_in(prev, current);
Nick Piggin4866cde2005-06-25 14:57:23 -07002223 finish_lock_switch(rq, prev);
Catalin Marinas01f23e12011-11-27 21:43:10 +00002224 finish_arch_post_lock_switch();
Steven Rostedte8fa1362008-01-25 21:08:05 +01002225
Avi Kivitye107be32007-07-26 13:40:43 +02002226 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (mm)
2228 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002229 if (unlikely(prev_state == TASK_DEAD)) {
Dario Faggiolie6c390f2013-11-07 14:43:35 +01002230 if (prev->sched_class->task_dead)
2231 prev->sched_class->task_dead(prev);
2232
bibo maoc6fd91f2006-03-26 01:38:20 -08002233 /*
2234 * Remove function-return probe instances associated with this
2235 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002236 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002237 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002239 }
Frederic Weisbecker99e5ada2013-04-20 17:11:50 +02002240
2241 tick_nohz_task_switch(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
Gregory Haskins3f029d32009-07-29 11:08:47 -04002244#ifdef CONFIG_SMP
2245
Gregory Haskins3f029d32009-07-29 11:08:47 -04002246/* rq->lock is NOT held, but preemption is disabled */
2247static inline void post_schedule(struct rq *rq)
2248{
2249 if (rq->post_schedule) {
2250 unsigned long flags;
2251
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002252 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002253 if (rq->curr->sched_class->post_schedule)
2254 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002255 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002256
2257 rq->post_schedule = 0;
2258 }
2259}
2260
2261#else
2262
Gregory Haskins3f029d32009-07-29 11:08:47 -04002263static inline void post_schedule(struct rq *rq)
2264{
2265}
2266
2267#endif
2268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269/**
2270 * schedule_tail - first thing a freshly forked thread must call.
2271 * @prev: the thread we just switched away from.
2272 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002273asmlinkage __visible void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 __releases(rq->lock)
2275{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002276 struct rq *rq = this_rq();
2277
Nick Piggin4866cde2005-06-25 14:57:23 -07002278 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002279
Gregory Haskins3f029d32009-07-29 11:08:47 -04002280 /*
2281 * FIXME: do we need to worry about rq being invalidated by the
2282 * task_switch?
2283 */
2284 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002285
Nick Piggin4866cde2005-06-25 14:57:23 -07002286#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2287 /* In this case, finish_task_switch does not reenable preemption */
2288 preempt_enable();
2289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002291 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292}
2293
2294/*
2295 * context_switch - switch to the new MM and the new
2296 * thread's register state.
2297 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002298static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002299context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002300 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
Ingo Molnardd41f592007-07-09 18:51:59 +02002302 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Avi Kivitye107be32007-07-26 13:40:43 +02002304 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002305
Ingo Molnardd41f592007-07-09 18:51:59 +02002306 mm = next->mm;
2307 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002308 /*
2309 * For paravirt, this is coupled with an exit in switch_to to
2310 * combine the page table reload and the switch backend into
2311 * one hypercall.
2312 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002313 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002314
Heiko Carstens31915ab2010-09-16 14:42:25 +02002315 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 next->active_mm = oldmm;
2317 atomic_inc(&oldmm->mm_count);
2318 enter_lazy_tlb(oldmm, next);
2319 } else
2320 switch_mm(oldmm, mm, next);
2321
Heiko Carstens31915ab2010-09-16 14:42:25 +02002322 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 rq->prev_mm = oldmm;
2325 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002326 /*
2327 * Since the runqueue lock will be released by the next
2328 * task (which is an invalid locking op but in the case
2329 * of the scheduler it's an obvious special-case), so we
2330 * do an early lockdep release here:
2331 */
2332#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002333 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002334#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002336 context_tracking_task_switch(prev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 /* Here we just switch the register state and the stack. */
2338 switch_to(prev, next, prev);
2339
Ingo Molnardd41f592007-07-09 18:51:59 +02002340 barrier();
2341 /*
2342 * this_rq must be evaluated again because prev may have moved
2343 * CPUs since it called schedule(), thus the 'rq' on its stack
2344 * frame will be invalid.
2345 */
2346 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
2349/*
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002350 * nr_running and nr_context_switches:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 *
2352 * externally visible scheduler statistics: current number of runnable
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002353 * threads, total number of context switches performed since bootup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 */
2355unsigned long nr_running(void)
2356{
2357 unsigned long i, sum = 0;
2358
2359 for_each_online_cpu(i)
2360 sum += cpu_rq(i)->nr_running;
2361
2362 return sum;
2363}
2364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365unsigned long long nr_context_switches(void)
2366{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002367 int i;
2368 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002370 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 sum += cpu_rq(i)->nr_switches;
2372
2373 return sum;
2374}
2375
2376unsigned long nr_iowait(void)
2377{
2378 unsigned long i, sum = 0;
2379
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002380 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2382
2383 return sum;
2384}
2385
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002386unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07002387{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002388 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07002389 return atomic_read(&this->nr_iowait);
2390}
2391
Ingo Molnardd41f592007-07-09 18:51:59 +02002392#ifdef CONFIG_SMP
2393
Ingo Molnar48f24c42006-07-03 00:25:40 -07002394/*
Peter Zijlstra38022902009-12-16 18:04:37 +01002395 * sched_exec - execve() is a valuable balancing opportunity, because at
2396 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 */
Peter Zijlstra38022902009-12-16 18:04:37 +01002398void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
Peter Zijlstra38022902009-12-16 18:04:37 +01002400 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01002402 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01002403
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002404 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstraac66f542013-10-07 11:29:16 +01002405 dest_cpu = p->sched_class->select_task_rq(p, task_cpu(p), SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002406 if (dest_cpu == smp_processor_id())
2407 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01002408
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002409 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02002410 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07002411
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002412 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
2413 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return;
2415 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01002416unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002417 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420#endif
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422DEFINE_PER_CPU(struct kernel_stat, kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002423DEFINE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425EXPORT_PER_CPU_SYMBOL(kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002426EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002429 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07002430 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002431 *
2432 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002434static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
2435{
2436 u64 ns = 0;
2437
2438 if (task_current(rq, p)) {
2439 update_rq_clock(rq);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02002440 ns = rq_clock_task(rq) - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002441 if ((s64)ns < 0)
2442 ns = 0;
2443 }
2444
2445 return ns;
2446}
2447
Frank Mayharbb34d922008-09-12 09:54:39 -07002448unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02002451 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07002452 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002453
Ingo Molnar41b86e92007-07-09 18:51:58 +02002454 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002455 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002456 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02002457
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002458 return ns;
2459}
Frank Mayharf06febc2008-09-12 09:54:39 -07002460
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002461/*
2462 * Return accounted runtime for the task.
2463 * In case the task is currently running, return the runtime plus current's
2464 * pending runtime that have not been accounted yet.
2465 */
2466unsigned long long task_sched_runtime(struct task_struct *p)
2467{
2468 unsigned long flags;
2469 struct rq *rq;
2470 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002471
Peter Zijlstra911b2892013-11-11 18:21:56 +01002472#if defined(CONFIG_64BIT) && defined(CONFIG_SMP)
2473 /*
2474 * 64-bit doesn't need locks to atomically read a 64bit value.
2475 * So we have a optimization chance when the task's delta_exec is 0.
2476 * Reading ->on_cpu is racy, but this is ok.
2477 *
2478 * If we race with it leaving cpu, we'll take a lock. So we're correct.
2479 * If we race with it entering cpu, unaccounted time is 0. This is
2480 * indistinguishable from the read occurring a few cycles earlier.
2481 */
2482 if (!p->on_cpu)
2483 return p->se.sum_exec_runtime;
2484#endif
2485
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002486 rq = task_rq_lock(p, &flags);
2487 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002488 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002489
2490 return ns;
2491}
2492
Balbir Singh49048622008-09-05 18:12:23 +02002493/*
Christoph Lameter7835b982006-12-10 02:20:22 -08002494 * This function gets called by the timer code, with HZ frequency.
2495 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08002496 */
2497void scheduler_tick(void)
2498{
Christoph Lameter7835b982006-12-10 02:20:22 -08002499 int cpu = smp_processor_id();
2500 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002501 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002502
2503 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08002504
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002505 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002506 update_rq_clock(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01002507 curr->sched_class->task_tick(rq, curr, 0);
Alex Shi83dfd522013-06-20 10:18:49 +08002508 update_cpu_load_active(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002509 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02002510
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002511 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002512
Christoph Lametere418e1c2006-12-10 02:20:23 -08002513#ifdef CONFIG_SMP
Suresh Siddha6eb57e02011-10-03 15:09:01 -07002514 rq->idle_balance = idle_cpu(cpu);
Daniel Lezcano7caff662014-01-06 12:34:38 +01002515 trigger_load_balance(rq);
Christoph Lametere418e1c2006-12-10 02:20:23 -08002516#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002517 rq_last_tick_reset(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518}
2519
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002520#ifdef CONFIG_NO_HZ_FULL
2521/**
2522 * scheduler_tick_max_deferment
2523 *
2524 * Keep at least one tick per second when a single
2525 * active task is running because the scheduler doesn't
2526 * yet completely support full dynticks environment.
2527 *
2528 * This makes sure that uptime, CFS vruntime, load
2529 * balancing, etc... continue to move forward, even
2530 * with a very low granularity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02002531 *
2532 * Return: Maximum deferment in nanoseconds.
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002533 */
2534u64 scheduler_tick_max_deferment(void)
2535{
2536 struct rq *rq = this_rq();
2537 unsigned long next, now = ACCESS_ONCE(jiffies);
2538
2539 next = rq->last_sched_tick + HZ;
2540
2541 if (time_before_eq(next, now))
2542 return 0;
2543
Kevin Hilman8fe8ff02014-01-15 14:51:38 +01002544 return jiffies_to_nsecs(next - now);
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002545}
2546#endif
2547
Lai Jiangshan132380a2009-04-02 14:18:25 +08002548notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002549{
2550 if (in_lock_functions(addr)) {
2551 addr = CALLER_ADDR2;
2552 if (in_lock_functions(addr))
2553 addr = CALLER_ADDR3;
2554 }
2555 return addr;
2556}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05002558#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
2559 defined(CONFIG_PREEMPT_TRACER))
2560
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002561void preempt_count_add(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002563#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 /*
2565 * Underflow?
2566 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002567 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
2568 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002569#endif
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002570 __preempt_count_add(val);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002571#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 /*
2573 * Spinlock count overflowing soon?
2574 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002575 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
2576 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002577#endif
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002578 if (preempt_count() == val) {
2579 unsigned long ip = get_parent_ip(CALLER_ADDR1);
2580#ifdef CONFIG_DEBUG_PREEMPT
2581 current->preempt_disable_ip = ip;
2582#endif
2583 trace_preempt_off(CALLER_ADDR0, ip);
2584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002586EXPORT_SYMBOL(preempt_count_add);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002587NOKPROBE_SYMBOL(preempt_count_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002589void preempt_count_sub(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002591#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 /*
2593 * Underflow?
2594 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01002595 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002596 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 /*
2598 * Is the spinlock portion underflowing?
2599 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002600 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
2601 !(preempt_count() & PREEMPT_MASK)))
2602 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002603#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002604
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002605 if (preempt_count() == val)
2606 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002607 __preempt_count_sub(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002609EXPORT_SYMBOL(preempt_count_sub);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002610NOKPROBE_SYMBOL(preempt_count_sub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612#endif
2613
2614/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002615 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002617static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
Dave Jones664dfa62011-12-22 16:39:30 -05002619 if (oops_in_progress)
2620 return;
2621
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01002622 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
2623 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02002624
Ingo Molnardd41f592007-07-09 18:51:59 +02002625 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07002626 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02002627 if (irqs_disabled())
2628 print_irqtrace_events(prev);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002629#ifdef CONFIG_DEBUG_PREEMPT
2630 if (in_atomic_preempt_off()) {
2631 pr_err("Preemption disabled at:");
2632 print_ip_sym(current->preempt_disable_ip);
2633 pr_cont("\n");
2634 }
2635#endif
Stephen Boyd6135fc12012-03-28 17:10:47 -07002636 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +10302637 add_taint(TAINT_WARN, LOCKDEP_STILL_OK);
Ingo Molnardd41f592007-07-09 18:51:59 +02002638}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Ingo Molnardd41f592007-07-09 18:51:59 +02002640/*
2641 * Various schedule()-time debugging checks and statistics:
2642 */
2643static inline void schedule_debug(struct task_struct *prev)
2644{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002646 * Test if we are atomic. Since do_exit() needs to call into
Oleg Nesterov192301e2013-11-13 16:45:38 +01002647 * schedule() atomically, we ignore that path. Otherwise whine
2648 * if we are scheduling when we should not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 */
Oleg Nesterov192301e2013-11-13 16:45:38 +01002650 if (unlikely(in_atomic_preempt_off() && prev->state != TASK_DEAD))
Ingo Molnardd41f592007-07-09 18:51:59 +02002651 __schedule_bug(prev);
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07002652 rcu_sleep_check();
Ingo Molnardd41f592007-07-09 18:51:59 +02002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2655
Ingo Molnar2d723762007-10-15 17:00:12 +02002656 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02002657}
2658
2659/*
2660 * Pick up the highest-prio task:
2661 */
2662static inline struct task_struct *
Peter Zijlstra606dba22012-02-11 06:05:00 +01002663pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02002664{
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002665 const struct sched_class *class = &fair_sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02002666 struct task_struct *p;
2667
2668 /*
2669 * Optimization: we know that if all tasks are in
2670 * the fair class we can call that function directly:
2671 */
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002672 if (likely(prev->sched_class == class &&
Peter Zijlstra38033c32014-01-23 20:32:21 +01002673 rq->nr_running == rq->cfs.h_nr_running)) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002674 p = fair_sched_class.pick_next_task(rq, prev);
Peter Zijlstra6ccdc842014-04-24 12:00:47 +02002675 if (unlikely(p == RETRY_TASK))
2676 goto again;
2677
2678 /* assumes fair_sched_class->next == idle_sched_class */
2679 if (unlikely(!p))
2680 p = idle_sched_class.pick_next_task(rq, prev);
2681
2682 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02002683 }
2684
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002685again:
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002686 for_each_class(class) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002687 p = class->pick_next_task(rq, prev);
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002688 if (p) {
2689 if (unlikely(p == RETRY_TASK))
2690 goto again;
Ingo Molnardd41f592007-07-09 18:51:59 +02002691 return p;
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002692 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002693 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002694
2695 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02002696}
2697
2698/*
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002699 * __schedule() is the main scheduler function.
Pekka Enbergedde96e2012-08-04 11:49:47 +03002700 *
2701 * The main means of driving the scheduler and thus entering this function are:
2702 *
2703 * 1. Explicit blocking: mutex, semaphore, waitqueue, etc.
2704 *
2705 * 2. TIF_NEED_RESCHED flag is checked on interrupt and userspace return
2706 * paths. For example, see arch/x86/entry_64.S.
2707 *
2708 * To drive preemption between tasks, the scheduler sets the flag in timer
2709 * interrupt handler scheduler_tick().
2710 *
2711 * 3. Wakeups don't really cause entry into schedule(). They add a
2712 * task to the run-queue and that's it.
2713 *
2714 * Now, if the new task added to the run-queue preempts the current
2715 * task, then the wakeup sets TIF_NEED_RESCHED and schedule() gets
2716 * called on the nearest possible occasion:
2717 *
2718 * - If the kernel is preemptible (CONFIG_PREEMPT=y):
2719 *
2720 * - in syscall or exception context, at the next outmost
2721 * preempt_enable(). (this might be as soon as the wake_up()'s
2722 * spin_unlock()!)
2723 *
2724 * - in IRQ context, return from interrupt-handler to
2725 * preemptible context
2726 *
2727 * - If the kernel is not preemptible (CONFIG_PREEMPT is not set)
2728 * then at the next:
2729 *
2730 * - cond_resched() call
2731 * - explicit schedule() call
2732 * - return from syscall or exception to user-space
2733 * - return from interrupt-handler to user-space
Ingo Molnardd41f592007-07-09 18:51:59 +02002734 */
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002735static void __sched __schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02002736{
2737 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08002738 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02002739 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02002740 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002741
Peter Zijlstraff743342009-03-13 12:21:26 +01002742need_resched:
2743 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02002744 cpu = smp_processor_id();
2745 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07002746 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002747 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02002748
Ingo Molnardd41f592007-07-09 18:51:59 +02002749 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Peter Zijlstra31656512008-07-18 18:01:23 +02002751 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02002752 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002753
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02002754 /*
2755 * Make sure that signal_pending_state()->signal_pending() below
2756 * can't be reordered with __set_current_state(TASK_INTERRUPTIBLE)
2757 * done by the caller to avoid the race with signal_wake_up().
2758 */
2759 smp_mb__before_spinlock();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002760 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002762 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02002763 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02002764 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002765 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002766 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02002767 deactivate_task(rq, prev, DEQUEUE_SLEEP);
2768 prev->on_rq = 0;
2769
Tejun Heo21aa9af2010-06-08 21:40:37 +02002770 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02002771 * If a worker went to sleep, notify and ask workqueue
2772 * whether it wants to wake up a task to maintain
2773 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002774 */
2775 if (prev->flags & PF_WQ_WORKER) {
2776 struct task_struct *to_wakeup;
2777
2778 to_wakeup = wq_worker_sleeping(prev, cpu);
2779 if (to_wakeup)
2780 try_to_wake_up_local(to_wakeup);
2781 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02002782 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002783 switch_count = &prev->nvcsw;
2784 }
2785
Peter Zijlstra606dba22012-02-11 06:05:00 +01002786 if (prev->on_rq || rq->skip_clock_update < 0)
2787 update_rq_clock(rq);
2788
2789 next = pick_next_task(rq, prev);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002790 clear_tsk_need_resched(prev);
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002791 clear_preempt_need_resched();
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002792 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 rq->nr_switches++;
2796 rq->curr = next;
2797 ++*switch_count;
2798
Ingo Molnardd41f592007-07-09 18:51:59 +02002799 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002800 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002801 * The context switch have flipped the stack from under us
2802 * and restored the local variables which were saved when
2803 * this task called schedule() in the past. prev == current
2804 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002805 */
2806 cpu = smp_processor_id();
2807 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002809 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Gregory Haskins3f029d32009-07-29 11:08:47 -04002811 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002813 sched_preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01002814 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 goto need_resched;
2816}
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002817
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002818static inline void sched_submit_work(struct task_struct *tsk)
2819{
Thomas Gleixner3c7d5182011-07-17 20:46:52 +02002820 if (!tsk->state || tsk_is_pi_blocked(tsk))
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002821 return;
2822 /*
2823 * If we are going to sleep and we have plugged IO queued,
2824 * make sure to submit it to avoid deadlocks.
2825 */
2826 if (blk_needs_flush_plug(tsk))
2827 blk_schedule_flush_plug(tsk);
2828}
2829
Andi Kleen722a9f92014-05-02 00:44:38 +02002830asmlinkage __visible void __sched schedule(void)
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002831{
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002832 struct task_struct *tsk = current;
2833
2834 sched_submit_work(tsk);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002835 __schedule();
2836}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837EXPORT_SYMBOL(schedule);
2838
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002839#ifdef CONFIG_CONTEXT_TRACKING
Andi Kleen722a9f92014-05-02 00:44:38 +02002840asmlinkage __visible void __sched schedule_user(void)
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002841{
2842 /*
2843 * If we come here after a random call to set_need_resched(),
2844 * or we have been woken up remotely but the IPI has not yet arrived,
2845 * we haven't yet exited the RCU idle mode. Do it here manually until
2846 * we find a better solution.
2847 */
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002848 user_exit();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002849 schedule();
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002850 user_enter();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002851}
2852#endif
2853
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002854/**
2855 * schedule_preempt_disabled - called with preemption disabled
2856 *
2857 * Returns with preemption disabled. Note: preempt_count must be 1
2858 */
2859void __sched schedule_preempt_disabled(void)
2860{
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002861 sched_preempt_enable_no_resched();
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002862 schedule();
2863 preempt_disable();
2864}
2865
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866#ifdef CONFIG_PREEMPT
2867/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002868 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002869 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 * occur there and call schedule directly.
2871 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002872asmlinkage __visible void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 /*
2875 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002876 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 */
Frederic Weisbeckerfbb00b52013-06-19 23:56:22 +02002878 if (likely(!preemptible()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 return;
2880
Andi Kleen3a5c3592007-10-15 17:00:14 +02002881 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002882 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002883 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002884 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002885
2886 /*
2887 * Check again in case we missed a preemption opportunity
2888 * between schedule and now.
2889 */
2890 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002891 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892}
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002893NOKPROBE_SYMBOL(preempt_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894EXPORT_SYMBOL(preempt_schedule);
Thomas Gleixner32e475d2013-11-21 12:41:44 +01002895#endif /* CONFIG_PREEMPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002898 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 * off of irq context.
2900 * Note, that this is called and return with irqs disabled. This will
2901 * protect us against recursive calling from irq.
2902 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002903asmlinkage __visible void __sched preempt_schedule_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002905 enum ctx_state prev_state;
Ingo Molnar6478d882008-01-25 21:08:33 +01002906
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002907 /* Catch callers which need to be fixed */
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002908 BUG_ON(preempt_count() || !irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002910 prev_state = exception_enter();
2911
Andi Kleen3a5c3592007-10-15 17:00:14 +02002912 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002913 __preempt_count_add(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002914 local_irq_enable();
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002915 __schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02002916 local_irq_disable();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002917 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002918
2919 /*
2920 * Check again in case we missed a preemption opportunity
2921 * between schedule and now.
2922 */
2923 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002924 } while (need_resched());
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002925
2926 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927}
2928
Peter Zijlstra63859d42009-09-15 19:14:42 +02002929int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002930 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
Peter Zijlstra63859d42009-09-15 19:14:42 +02002932 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934EXPORT_SYMBOL(default_wake_function);
2935
Ingo Molnarb29739f2006-06-27 02:54:51 -07002936#ifdef CONFIG_RT_MUTEXES
2937
2938/*
2939 * rt_mutex_setprio - set the current priority of a task
2940 * @p: task
2941 * @prio: prio value (kernel-internal form)
2942 *
2943 * This function changes the 'effective' priority of a task. It does
2944 * not touch ->normal_prio like __setscheduler().
2945 *
Thomas Gleixnerc365c292014-02-07 20:58:42 +01002946 * Used by the rt_mutex code to implement priority inheritance
2947 * logic. Call site only calls if the priority of the task changed.
Ingo Molnarb29739f2006-06-27 02:54:51 -07002948 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002949void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002950{
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002951 int oldprio, on_rq, running, enqueue_flag = 0;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002952 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002953 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002954
Dario Faggioliaab03e02013-11-28 11:14:43 +01002955 BUG_ON(prio > MAX_PRIO);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002956
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002957 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002958
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02002959 /*
2960 * Idle task boosting is a nono in general. There is one
2961 * exception, when PREEMPT_RT and NOHZ is active:
2962 *
2963 * The idle task calls get_next_timer_interrupt() and holds
2964 * the timer wheel base->lock on the CPU and another CPU wants
2965 * to access the timer (probably to cancel it). We can safely
2966 * ignore the boosting request, as the idle CPU runs this code
2967 * with interrupts disabled and will complete the lock
2968 * protected section without being interrupted. So there is no
2969 * real need to boost.
2970 */
2971 if (unlikely(p == rq->idle)) {
2972 WARN_ON(p != rq->curr);
2973 WARN_ON(p->pi_blocked_on);
2974 goto out_unlock;
2975 }
2976
Steven Rostedta8027072010-09-20 15:13:34 -04002977 trace_sched_pi_setprio(p, prio);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002978 p->pi_top_task = rt_mutex_get_top_task(p);
Andrew Mortond5f9f942007-05-08 20:27:06 -07002979 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002980 prev_class = p->sched_class;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002981 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01002982 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002983 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02002984 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002985 if (running)
2986 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02002987
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002988 /*
2989 * Boosting condition are:
2990 * 1. -rt task is running and holds mutex A
2991 * --> -dl task blocks on mutex A
2992 *
2993 * 2. -dl task is running and holds mutex A
2994 * --> -dl task blocks on mutex A and could preempt the
2995 * running task
2996 */
2997 if (dl_prio(prio)) {
2998 if (!dl_prio(p->normal_prio) || (p->pi_top_task &&
2999 dl_entity_preempt(&p->pi_top_task->dl, &p->dl))) {
3000 p->dl.dl_boosted = 1;
3001 p->dl.dl_throttled = 0;
3002 enqueue_flag = ENQUEUE_REPLENISH;
3003 } else
3004 p->dl.dl_boosted = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003005 p->sched_class = &dl_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003006 } else if (rt_prio(prio)) {
3007 if (dl_prio(oldprio))
3008 p->dl.dl_boosted = 0;
3009 if (oldprio < prio)
3010 enqueue_flag = ENQUEUE_HEAD;
Ingo Molnardd41f592007-07-09 18:51:59 +02003011 p->sched_class = &rt_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003012 } else {
3013 if (dl_prio(oldprio))
3014 p->dl.dl_boosted = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003015 p->sched_class = &fair_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003016 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003017
Ingo Molnarb29739f2006-06-27 02:54:51 -07003018 p->prio = prio;
3019
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003020 if (running)
3021 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003022 if (on_rq)
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003023 enqueue_task(rq, p, enqueue_flag);
Steven Rostedtcb469842008-01-25 21:08:22 +01003024
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003025 check_class_changed(rq, p, prev_class, oldprio);
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02003026out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003027 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003028}
Ingo Molnarb29739f2006-06-27 02:54:51 -07003029#endif
Dario Faggiolid50dde52013-11-07 14:43:36 +01003030
Ingo Molnar36c8b582006-07-03 00:25:41 -07003031void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032{
Ingo Molnardd41f592007-07-09 18:51:59 +02003033 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003035 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003037 if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 return;
3039 /*
3040 * We have to be careful, if called from sys_setpriority(),
3041 * the task might be in the middle of scheduling on another CPU.
3042 */
3043 rq = task_rq_lock(p, &flags);
3044 /*
3045 * The RT priorities are set via sched_setscheduler(), but we still
3046 * allow the 'normal' nice value to be set - but as expected
3047 * it wont have any effect on scheduling until the task is
Dario Faggioliaab03e02013-11-28 11:14:43 +01003048 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01003050 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 p->static_prio = NICE_TO_PRIO(nice);
3052 goto out_unlock;
3053 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003054 on_rq = p->on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003055 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02003056 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003059 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003060 old_prio = p->prio;
3061 p->prio = effective_prio(p);
3062 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Ingo Molnardd41f592007-07-09 18:51:59 +02003064 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01003065 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07003067 * If the task increased its priority or is running and
3068 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003070 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 resched_task(rq->curr);
3072 }
3073out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003074 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076EXPORT_SYMBOL(set_user_nice);
3077
Matt Mackalle43379f2005-05-01 08:59:00 -07003078/*
3079 * can_nice - check if a task can reduce its nice value
3080 * @p: task
3081 * @nice: nice value
3082 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003083int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07003084{
Matt Mackall024f4742005-08-18 11:24:19 -07003085 /* convert nice value [19,-20] to rlimit style value [1,40] */
Dongsheng Yang7aa2c012014-05-08 18:33:49 +09003086 int nice_rlim = nice_to_rlimit(nice);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003087
Jiri Slaby78d7d402010-03-05 13:42:54 -08003088 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07003089 capable(CAP_SYS_NICE));
3090}
3091
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092#ifdef __ARCH_WANT_SYS_NICE
3093
3094/*
3095 * sys_nice - change the priority of the current process.
3096 * @increment: priority increment
3097 *
3098 * sys_setpriority is a more generic, but much slower function that
3099 * does similar things.
3100 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003101SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003103 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 /*
3106 * Setpriority might change our priority at the same moment.
3107 * We don't have to worry. Conceptually one call occurs first
3108 * and we have a single winner.
3109 */
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003110 increment = clamp(increment, -NICE_WIDTH, NICE_WIDTH);
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003111 nice = task_nice(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003113 nice = clamp_val(nice, MIN_NICE, MAX_NICE);
Matt Mackalle43379f2005-05-01 08:59:00 -07003114 if (increment < 0 && !can_nice(current, nice))
3115 return -EPERM;
3116
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 retval = security_task_setnice(current, nice);
3118 if (retval)
3119 return retval;
3120
3121 set_user_nice(current, nice);
3122 return 0;
3123}
3124
3125#endif
3126
3127/**
3128 * task_prio - return the priority value of a given task.
3129 * @p: the task in question.
3130 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003131 * Return: The priority value as seen by users in /proc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 * RT tasks are offset by -200. Normal tasks are centered
3133 * around 0, value goes from -16 to +15.
3134 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003135int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136{
3137 return p->prio - MAX_RT_PRIO;
3138}
3139
3140/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 * idle_cpu - is a given cpu idle currently?
3142 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003143 *
3144 * Return: 1 if the CPU is currently idle. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 */
3146int idle_cpu(int cpu)
3147{
Thomas Gleixner908a3282011-09-15 15:32:06 +02003148 struct rq *rq = cpu_rq(cpu);
3149
3150 if (rq->curr != rq->idle)
3151 return 0;
3152
3153 if (rq->nr_running)
3154 return 0;
3155
3156#ifdef CONFIG_SMP
3157 if (!llist_empty(&rq->wake_list))
3158 return 0;
3159#endif
3160
3161 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162}
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164/**
3165 * idle_task - return the idle task for a given cpu.
3166 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003167 *
3168 * Return: The idle task for the cpu @cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003170struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171{
3172 return cpu_rq(cpu)->idle;
3173}
3174
3175/**
3176 * find_process_by_pid - find a process with a matching PID value.
3177 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003178 *
3179 * The task of @pid, if found. %NULL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003181static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07003183 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184}
3185
Dario Faggioliaab03e02013-11-28 11:14:43 +01003186/*
3187 * This function initializes the sched_dl_entity of a newly becoming
3188 * SCHED_DEADLINE task.
3189 *
3190 * Only the static values are considered here, the actual runtime and the
3191 * absolute deadline will be properly calculated when the task is enqueued
3192 * for the first time with its new policy.
3193 */
3194static void
3195__setparam_dl(struct task_struct *p, const struct sched_attr *attr)
3196{
3197 struct sched_dl_entity *dl_se = &p->dl;
3198
3199 init_dl_task_timer(dl_se);
3200 dl_se->dl_runtime = attr->sched_runtime;
3201 dl_se->dl_deadline = attr->sched_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003202 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003203 dl_se->flags = attr->sched_flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01003204 dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
Dario Faggioliaab03e02013-11-28 11:14:43 +01003205 dl_se->dl_throttled = 0;
3206 dl_se->dl_new = 1;
Juri Lelli5bfd1262014-04-15 13:49:04 +02003207 dl_se->dl_yielded = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003208}
3209
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003210static void __setscheduler_params(struct task_struct *p,
3211 const struct sched_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003213 int policy = attr->sched_policy;
3214
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003215 if (policy == -1) /* setparam */
3216 policy = p->policy;
3217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 p->policy = policy;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003219
Dario Faggioliaab03e02013-11-28 11:14:43 +01003220 if (dl_policy(policy))
3221 __setparam_dl(p, attr);
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003222 else if (fair_policy(policy))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003223 p->static_prio = NICE_TO_PRIO(attr->sched_nice);
3224
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003225 /*
3226 * __sched_setscheduler() ensures attr->sched_priority == 0 when
3227 * !rt_policy. Always setting this ensures that things like
3228 * getparam()/getattr() don't report silly values for !rt tasks.
3229 */
3230 p->rt_priority = attr->sched_priority;
Steven Rostedt383afd02014-03-11 19:24:20 -04003231 p->normal_prio = normal_prio(p);
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003232 set_load_weight(p);
3233}
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003234
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003235/* Actually do priority change: must hold pi & rq lock. */
3236static void __setscheduler(struct rq *rq, struct task_struct *p,
3237 const struct sched_attr *attr)
3238{
3239 __setscheduler_params(p, attr);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003240
Steven Rostedt383afd02014-03-11 19:24:20 -04003241 /*
3242 * If we get here, there was no pi waiters boosting the
3243 * task. It is safe to use the normal prio.
3244 */
3245 p->prio = normal_prio(p);
3246
Dario Faggioliaab03e02013-11-28 11:14:43 +01003247 if (dl_prio(p->prio))
3248 p->sched_class = &dl_sched_class;
3249 else if (rt_prio(p->prio))
Peter Zijlstraffd44db2009-11-10 20:12:01 +01003250 p->sched_class = &rt_sched_class;
3251 else
3252 p->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253}
Dario Faggioliaab03e02013-11-28 11:14:43 +01003254
3255static void
3256__getparam_dl(struct task_struct *p, struct sched_attr *attr)
3257{
3258 struct sched_dl_entity *dl_se = &p->dl;
3259
3260 attr->sched_priority = p->rt_priority;
3261 attr->sched_runtime = dl_se->dl_runtime;
3262 attr->sched_deadline = dl_se->dl_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003263 attr->sched_period = dl_se->dl_period;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003264 attr->sched_flags = dl_se->flags;
3265}
3266
3267/*
3268 * This function validates the new parameters of a -deadline task.
3269 * We ask for the deadline not being zero, and greater or equal
Harald Gustafsson755378a2013-11-07 14:43:40 +01003270 * than the runtime, as well as the period of being zero or
Dario Faggioli332ac172013-11-07 14:43:45 +01003271 * greater than deadline. Furthermore, we have to be sure that
Juri Lellib08278192014-05-13 14:11:31 +02003272 * user parameters are above the internal resolution of 1us (we
3273 * check sched_runtime only since it is always the smaller one) and
3274 * below 2^63 ns (we have to check both sched_deadline and
3275 * sched_period, as the latter can be zero).
Dario Faggioliaab03e02013-11-28 11:14:43 +01003276 */
3277static bool
3278__checkparam_dl(const struct sched_attr *attr)
3279{
Juri Lellib08278192014-05-13 14:11:31 +02003280 /* deadline != 0 */
3281 if (attr->sched_deadline == 0)
3282 return false;
3283
3284 /*
3285 * Since we truncate DL_SCALE bits, make sure we're at least
3286 * that big.
3287 */
3288 if (attr->sched_runtime < (1ULL << DL_SCALE))
3289 return false;
3290
3291 /*
3292 * Since we use the MSB for wrap-around and sign issues, make
3293 * sure it's not set (mind that period can be equal to zero).
3294 */
3295 if (attr->sched_deadline & (1ULL << 63) ||
3296 attr->sched_period & (1ULL << 63))
3297 return false;
3298
3299 /* runtime <= deadline <= period (if period != 0) */
3300 if ((attr->sched_period != 0 &&
3301 attr->sched_period < attr->sched_deadline) ||
3302 attr->sched_deadline < attr->sched_runtime)
3303 return false;
3304
3305 return true;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003306}
3307
David Howellsc69e8d92008-11-14 10:39:19 +11003308/*
3309 * check the target process has a UID that matches the current process's
3310 */
3311static bool check_same_owner(struct task_struct *p)
3312{
3313 const struct cred *cred = current_cred(), *pcred;
3314 bool match;
3315
3316 rcu_read_lock();
3317 pcred = __task_cred(p);
Eric W. Biederman9c806aa2012-02-02 18:54:02 -08003318 match = (uid_eq(cred->euid, pcred->euid) ||
3319 uid_eq(cred->euid, pcred->uid));
David Howellsc69e8d92008-11-14 10:39:19 +11003320 rcu_read_unlock();
3321 return match;
3322}
3323
Dario Faggiolid50dde52013-11-07 14:43:36 +01003324static int __sched_setscheduler(struct task_struct *p,
3325 const struct sched_attr *attr,
3326 bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327{
Steven Rostedt383afd02014-03-11 19:24:20 -04003328 int newprio = dl_policy(attr->sched_policy) ? MAX_DL_PRIO - 1 :
3329 MAX_RT_PRIO - 1 - attr->sched_priority;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003330 int retval, oldprio, oldpolicy = -1, on_rq, running;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003331 int policy = attr->sched_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003333 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003334 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003335 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Steven Rostedt66e53932006-06-27 02:54:44 -07003337 /* may grab non-irq protected spin_locks */
3338 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339recheck:
3340 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02003341 if (policy < 0) {
3342 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003344 } else {
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003345 reset_on_fork = !!(attr->sched_flags & SCHED_FLAG_RESET_ON_FORK);
Lennart Poetteringca94c442009-06-15 17:17:47 +02003346
Dario Faggioliaab03e02013-11-28 11:14:43 +01003347 if (policy != SCHED_DEADLINE &&
3348 policy != SCHED_FIFO && policy != SCHED_RR &&
Lennart Poetteringca94c442009-06-15 17:17:47 +02003349 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
3350 policy != SCHED_IDLE)
3351 return -EINVAL;
3352 }
3353
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003354 if (attr->sched_flags & ~(SCHED_FLAG_RESET_ON_FORK))
3355 return -EINVAL;
3356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 /*
3358 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02003359 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
3360 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 */
Peter Zijlstra0bb040a2014-01-15 17:15:13 +01003362 if ((p->mm && attr->sched_priority > MAX_USER_RT_PRIO-1) ||
Dario Faggiolid50dde52013-11-07 14:43:36 +01003363 (!p->mm && attr->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 return -EINVAL;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003365 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
3366 (rt_policy(policy) != (attr->sched_priority != 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 return -EINVAL;
3368
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003369 /*
3370 * Allow unprivileged RT tasks to decrease priority:
3371 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10003372 if (user && !capable(CAP_SYS_NICE)) {
Dario Faggiolid50dde52013-11-07 14:43:36 +01003373 if (fair_policy(policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003374 if (attr->sched_nice < task_nice(p) &&
Peter Zijlstraeaad4512014-01-16 17:54:25 +01003375 !can_nice(p, attr->sched_nice))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003376 return -EPERM;
3377 }
3378
Ingo Molnare05606d2007-07-09 18:51:59 +02003379 if (rt_policy(policy)) {
Oleg Nesterova44702e82010-06-11 01:09:44 +02003380 unsigned long rlim_rtprio =
3381 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003382
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003383 /* can't set/change the rt policy */
3384 if (policy != p->policy && !rlim_rtprio)
3385 return -EPERM;
3386
3387 /* can't increase priority */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003388 if (attr->sched_priority > p->rt_priority &&
3389 attr->sched_priority > rlim_rtprio)
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003390 return -EPERM;
3391 }
Darren Hartc02aa732011-02-17 15:37:07 -08003392
Juri Lellid44753b2014-03-03 12:09:21 +01003393 /*
3394 * Can't set/change SCHED_DEADLINE policy at all for now
3395 * (safest behavior); in the future we would like to allow
3396 * unprivileged DL tasks to increase their relative deadline
3397 * or reduce their runtime (both ways reducing utilization)
3398 */
3399 if (dl_policy(policy))
3400 return -EPERM;
3401
Ingo Molnardd41f592007-07-09 18:51:59 +02003402 /*
Darren Hartc02aa732011-02-17 15:37:07 -08003403 * Treat SCHED_IDLE as nice 20. Only allow a switch to
3404 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02003405 */
Darren Hartc02aa732011-02-17 15:37:07 -08003406 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003407 if (!can_nice(p, task_nice(p)))
Darren Hartc02aa732011-02-17 15:37:07 -08003408 return -EPERM;
3409 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003410
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003411 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11003412 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003413 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003414
3415 /* Normal users shall not reset the sched_reset_on_fork flag */
3416 if (p->sched_reset_on_fork && !reset_on_fork)
3417 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003420 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003421 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003422 if (retval)
3423 return retval;
3424 }
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07003427 * make sure no PI-waiters arrive (or leave) while we are
3428 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003429 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003430 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 * runqueue lock must be held.
3432 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003433 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003434
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003435 /*
3436 * Changing the policy of the stop threads its a very bad idea
3437 */
3438 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003439 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003440 return -EINVAL;
3441 }
3442
Dario Faggiolia51e9192011-03-24 14:00:18 +01003443 /*
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003444 * If not changing anything there's no need to proceed further,
3445 * but store a possible modification of reset_on_fork.
Dario Faggiolia51e9192011-03-24 14:00:18 +01003446 */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003447 if (unlikely(policy == p->policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003448 if (fair_policy(policy) && attr->sched_nice != task_nice(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003449 goto change;
3450 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
3451 goto change;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003452 if (dl_policy(policy))
3453 goto change;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003454
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003455 p->sched_reset_on_fork = reset_on_fork;
Namhyung Kim45afb172012-07-07 16:49:02 +09003456 task_rq_unlock(rq, p, &flags);
Dario Faggiolia51e9192011-03-24 14:00:18 +01003457 return 0;
3458 }
Dario Faggiolid50dde52013-11-07 14:43:36 +01003459change:
Dario Faggiolia51e9192011-03-24 14:00:18 +01003460
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003461 if (user) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003462#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003463 /*
3464 * Do not allow realtime tasks into groups that have no runtime
3465 * assigned.
3466 */
3467 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01003468 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
3469 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003470 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003471 return -EPERM;
3472 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003473#endif
Dario Faggioli332ac172013-11-07 14:43:45 +01003474#ifdef CONFIG_SMP
3475 if (dl_bandwidth_enabled() && dl_policy(policy)) {
3476 cpumask_t *span = rq->rd->span;
Dario Faggioli332ac172013-11-07 14:43:45 +01003477
3478 /*
3479 * Don't allow tasks with an affinity mask smaller than
3480 * the entire root_domain to become SCHED_DEADLINE. We
3481 * will also fail if there's no bandwidth available.
3482 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003483 if (!cpumask_subset(span, &p->cpus_allowed) ||
3484 rq->rd->dl_bw.bw == 0) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003485 task_rq_unlock(rq, p, &flags);
3486 return -EPERM;
3487 }
3488 }
3489#endif
3490 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 /* recheck policy now with rq lock held */
3493 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3494 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003495 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 goto recheck;
3497 }
Dario Faggioli332ac172013-11-07 14:43:45 +01003498
3499 /*
3500 * If setscheduling to SCHED_DEADLINE (or changing the parameters
3501 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
3502 * is available.
3503 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003504 if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003505 task_rq_unlock(rq, p, &flags);
3506 return -EBUSY;
3507 }
3508
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003509 p->sched_reset_on_fork = reset_on_fork;
3510 oldprio = p->prio;
3511
3512 /*
3513 * Special case for priority boosted tasks.
3514 *
3515 * If the new priority is lower or equal (user space view)
3516 * than the current (boosted) priority, we just store the new
3517 * normal parameters and do not touch the scheduler class and
3518 * the runqueue. This will be done when the task deboost
3519 * itself.
3520 */
3521 if (rt_mutex_check_prio(p, newprio)) {
3522 __setscheduler_params(p, attr);
3523 task_rq_unlock(rq, p, &flags);
3524 return 0;
3525 }
3526
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003527 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003528 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003529 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003530 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003531 if (running)
3532 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003533
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003534 prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003535 __setscheduler(rq, p, attr);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003536
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003537 if (running)
3538 p->sched_class->set_curr_task(rq);
Thomas Gleixner81a44c52014-02-07 20:58:41 +01003539 if (on_rq) {
3540 /*
3541 * We enqueue to tail when the priority of a task is
3542 * increased (user space view).
3543 */
3544 enqueue_task(rq, p, oldprio <= p->prio ? ENQUEUE_HEAD : 0);
3545 }
Steven Rostedtcb469842008-01-25 21:08:22 +01003546
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003547 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003548 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003549
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07003550 rt_mutex_adjust_pi(p);
3551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 return 0;
3553}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003554
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003555static int _sched_setscheduler(struct task_struct *p, int policy,
3556 const struct sched_param *param, bool check)
3557{
3558 struct sched_attr attr = {
3559 .sched_policy = policy,
3560 .sched_priority = param->sched_priority,
3561 .sched_nice = PRIO_TO_NICE(p->static_prio),
3562 };
3563
3564 /*
3565 * Fixup the legacy SCHED_RESET_ON_FORK hack
3566 */
3567 if (policy & SCHED_RESET_ON_FORK) {
3568 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
3569 policy &= ~SCHED_RESET_ON_FORK;
3570 attr.sched_policy = policy;
3571 }
3572
3573 return __sched_setscheduler(p, &attr, check);
3574}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003575/**
3576 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
3577 * @p: the task in question.
3578 * @policy: new policy.
3579 * @param: structure containing the new RT priority.
3580 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003581 * Return: 0 on success. An error code otherwise.
3582 *
Rusty Russell961ccdd2008-06-23 13:55:38 +10003583 * NOTE that the task may be already dead.
3584 */
3585int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003586 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003587{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003588 return _sched_setscheduler(p, policy, param, true);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003589}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590EXPORT_SYMBOL_GPL(sched_setscheduler);
3591
Dario Faggiolid50dde52013-11-07 14:43:36 +01003592int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
3593{
3594 return __sched_setscheduler(p, attr, true);
3595}
3596EXPORT_SYMBOL_GPL(sched_setattr);
3597
Rusty Russell961ccdd2008-06-23 13:55:38 +10003598/**
3599 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
3600 * @p: the task in question.
3601 * @policy: new policy.
3602 * @param: structure containing the new RT priority.
3603 *
3604 * Just like sched_setscheduler, only don't bother checking if the
3605 * current context has permission. For example, this is needed in
3606 * stop_machine(): we create temporary high priority worker threads,
3607 * but our caller might not have that capability.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003608 *
3609 * Return: 0 on success. An error code otherwise.
Rusty Russell961ccdd2008-06-23 13:55:38 +10003610 */
3611int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003612 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003613{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003614 return _sched_setscheduler(p, policy, param, false);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003615}
3616
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003617static int
3618do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 struct sched_param lparam;
3621 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003622 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
3624 if (!param || pid < 0)
3625 return -EINVAL;
3626 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3627 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003628
3629 rcu_read_lock();
3630 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003632 if (p != NULL)
3633 retval = sched_setscheduler(p, policy, &lparam);
3634 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07003635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 return retval;
3637}
3638
Dario Faggiolid50dde52013-11-07 14:43:36 +01003639/*
3640 * Mimics kernel/events/core.c perf_copy_attr().
3641 */
3642static int sched_copy_attr(struct sched_attr __user *uattr,
3643 struct sched_attr *attr)
3644{
3645 u32 size;
3646 int ret;
3647
3648 if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0))
3649 return -EFAULT;
3650
3651 /*
3652 * zero the full structure, so that a short copy will be nice.
3653 */
3654 memset(attr, 0, sizeof(*attr));
3655
3656 ret = get_user(size, &uattr->size);
3657 if (ret)
3658 return ret;
3659
3660 if (size > PAGE_SIZE) /* silly large */
3661 goto err_size;
3662
3663 if (!size) /* abi compat */
3664 size = SCHED_ATTR_SIZE_VER0;
3665
3666 if (size < SCHED_ATTR_SIZE_VER0)
3667 goto err_size;
3668
3669 /*
3670 * If we're handed a bigger struct than we know of,
3671 * ensure all the unknown bits are 0 - i.e. new
3672 * user-space does not rely on any kernel feature
3673 * extensions we dont know about yet.
3674 */
3675 if (size > sizeof(*attr)) {
3676 unsigned char __user *addr;
3677 unsigned char __user *end;
3678 unsigned char val;
3679
3680 addr = (void __user *)uattr + sizeof(*attr);
3681 end = (void __user *)uattr + size;
3682
3683 for (; addr < end; addr++) {
3684 ret = get_user(val, addr);
3685 if (ret)
3686 return ret;
3687 if (val)
3688 goto err_size;
3689 }
3690 size = sizeof(*attr);
3691 }
3692
3693 ret = copy_from_user(attr, uattr, size);
3694 if (ret)
3695 return -EFAULT;
3696
3697 /*
3698 * XXX: do we want to be lenient like existing syscalls; or do we want
3699 * to be strict and return an error on out-of-bounds values?
3700 */
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003701 attr->sched_nice = clamp(attr->sched_nice, MIN_NICE, MAX_NICE);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003702
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003703 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003704
3705err_size:
3706 put_user(sizeof(*attr), &uattr->size);
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003707 return -E2BIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003708}
3709
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710/**
3711 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3712 * @pid: the pid in question.
3713 * @policy: new policy.
3714 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003715 *
3716 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003718SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
3719 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720{
Jason Baronc21761f2006-01-18 17:43:03 -08003721 /* negative values for policy are not valid */
3722 if (policy < 0)
3723 return -EINVAL;
3724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 return do_sched_setscheduler(pid, policy, param);
3726}
3727
3728/**
3729 * sys_sched_setparam - set/change the RT priority of a thread
3730 * @pid: the pid in question.
3731 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003732 *
3733 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003735SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
3737 return do_sched_setscheduler(pid, -1, param);
3738}
3739
3740/**
Dario Faggiolid50dde52013-11-07 14:43:36 +01003741 * sys_sched_setattr - same as above, but with extended sched_attr
3742 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003743 * @uattr: structure containing the extended parameters.
Masanari Iidadb66d752014-04-18 01:59:15 +09003744 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003745 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003746SYSCALL_DEFINE3(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr,
3747 unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003748{
3749 struct sched_attr attr;
3750 struct task_struct *p;
3751 int retval;
3752
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003753 if (!uattr || pid < 0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003754 return -EINVAL;
3755
Michael Kerrisk143cf232014-05-09 16:54:15 +02003756 retval = sched_copy_attr(uattr, &attr);
3757 if (retval)
3758 return retval;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003759
Richard Weinbergerb14ed2c2014-06-02 22:38:34 +02003760 if ((int)attr.sched_policy < 0)
Peter Zijlstradbdb2272014-05-09 10:49:03 +02003761 return -EINVAL;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003762
3763 rcu_read_lock();
3764 retval = -ESRCH;
3765 p = find_process_by_pid(pid);
3766 if (p != NULL)
3767 retval = sched_setattr(p, &attr);
3768 rcu_read_unlock();
3769
3770 return retval;
3771}
3772
3773/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3775 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003776 *
3777 * Return: On success, the policy of the thread. Otherwise, a negative error
3778 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003780SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003782 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003783 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003786 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
3788 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003789 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 p = find_process_by_pid(pid);
3791 if (p) {
3792 retval = security_task_getscheduler(p);
3793 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02003794 retval = p->policy
3795 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003797 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 return retval;
3799}
3800
3801/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02003802 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 * @pid: the pid in question.
3804 * @param: structure containing the RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003805 *
3806 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
3807 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003809SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810{
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003811 struct sched_param lp = { .sched_priority = 0 };
Ingo Molnar36c8b582006-07-03 00:25:41 -07003812 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003813 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
3815 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003816 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003818 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 p = find_process_by_pid(pid);
3820 retval = -ESRCH;
3821 if (!p)
3822 goto out_unlock;
3823
3824 retval = security_task_getscheduler(p);
3825 if (retval)
3826 goto out_unlock;
3827
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003828 if (task_has_rt_policy(p))
3829 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003830 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
3832 /*
3833 * This one might sleep, we cannot do it with a spinlock held ...
3834 */
3835 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 return retval;
3838
3839out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003840 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 return retval;
3842}
3843
Dario Faggiolid50dde52013-11-07 14:43:36 +01003844static int sched_read_attr(struct sched_attr __user *uattr,
3845 struct sched_attr *attr,
3846 unsigned int usize)
3847{
3848 int ret;
3849
3850 if (!access_ok(VERIFY_WRITE, uattr, usize))
3851 return -EFAULT;
3852
3853 /*
3854 * If we're handed a smaller struct than we know of,
3855 * ensure all the unknown bits are 0 - i.e. old
3856 * user-space does not get uncomplete information.
3857 */
3858 if (usize < sizeof(*attr)) {
3859 unsigned char *addr;
3860 unsigned char *end;
3861
3862 addr = (void *)attr + usize;
3863 end = (void *)attr + sizeof(*attr);
3864
3865 for (; addr < end; addr++) {
3866 if (*addr)
Michael Kerrisk22400672014-05-09 16:54:33 +02003867 return -EFBIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003868 }
3869
3870 attr->size = usize;
3871 }
3872
Vegard Nossum4efbc452014-02-16 22:24:17 +01003873 ret = copy_to_user(uattr, attr, attr->size);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003874 if (ret)
3875 return -EFAULT;
3876
Michael Kerrisk22400672014-05-09 16:54:33 +02003877 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003878}
3879
3880/**
Dario Faggioliaab03e02013-11-28 11:14:43 +01003881 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
Dario Faggiolid50dde52013-11-07 14:43:36 +01003882 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003883 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003884 * @size: sizeof(attr) for fwd/bwd comp.
Masanari Iidadb66d752014-04-18 01:59:15 +09003885 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003886 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003887SYSCALL_DEFINE4(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
3888 unsigned int, size, unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003889{
3890 struct sched_attr attr = {
3891 .size = sizeof(struct sched_attr),
3892 };
3893 struct task_struct *p;
3894 int retval;
3895
3896 if (!uattr || pid < 0 || size > PAGE_SIZE ||
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003897 size < SCHED_ATTR_SIZE_VER0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003898 return -EINVAL;
3899
3900 rcu_read_lock();
3901 p = find_process_by_pid(pid);
3902 retval = -ESRCH;
3903 if (!p)
3904 goto out_unlock;
3905
3906 retval = security_task_getscheduler(p);
3907 if (retval)
3908 goto out_unlock;
3909
3910 attr.sched_policy = p->policy;
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003911 if (p->sched_reset_on_fork)
3912 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003913 if (task_has_dl_policy(p))
3914 __getparam_dl(p, &attr);
3915 else if (task_has_rt_policy(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003916 attr.sched_priority = p->rt_priority;
3917 else
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003918 attr.sched_nice = task_nice(p);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003919
3920 rcu_read_unlock();
3921
3922 retval = sched_read_attr(uattr, &attr, size);
3923 return retval;
3924
3925out_unlock:
3926 rcu_read_unlock();
3927 return retval;
3928}
3929
Rusty Russell96f874e22008-11-25 02:35:14 +10303930long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303932 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003933 struct task_struct *p;
3934 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003936 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
3938 p = find_process_by_pid(pid);
3939 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003940 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 return -ESRCH;
3942 }
3943
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003944 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003946 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Tejun Heo14a40ff2013-03-19 13:45:20 -07003948 if (p->flags & PF_NO_SETAFFINITY) {
3949 retval = -EINVAL;
3950 goto out_put_task;
3951 }
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303952 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
3953 retval = -ENOMEM;
3954 goto out_put_task;
3955 }
3956 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
3957 retval = -ENOMEM;
3958 goto out_free_cpus_allowed;
3959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 retval = -EPERM;
Eric W. Biederman4c44aaa2012-07-26 05:05:21 -07003961 if (!check_same_owner(p)) {
3962 rcu_read_lock();
3963 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
3964 rcu_read_unlock();
3965 goto out_unlock;
3966 }
3967 rcu_read_unlock();
3968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003970 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07003971 if (retval)
3972 goto out_unlock;
3973
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003974
3975 cpuset_cpus_allowed(p, cpus_allowed);
3976 cpumask_and(new_mask, in_mask, cpus_allowed);
3977
Dario Faggioli332ac172013-11-07 14:43:45 +01003978 /*
3979 * Since bandwidth control happens on root_domain basis,
3980 * if admission test is enabled, we only admit -deadline
3981 * tasks allowed to run on all the CPUs in the task's
3982 * root_domain.
3983 */
3984#ifdef CONFIG_SMP
3985 if (task_has_dl_policy(p)) {
3986 const struct cpumask *span = task_rq(p)->rd->span;
3987
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003988 if (dl_bandwidth_enabled() && !cpumask_subset(span, new_mask)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003989 retval = -EBUSY;
3990 goto out_unlock;
3991 }
3992 }
3993#endif
Peter Zijlstra49246272010-10-17 21:46:10 +02003994again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303995 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Paul Menage8707d8b2007-10-18 23:40:22 -07003997 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303998 cpuset_cpus_allowed(p, cpus_allowed);
3999 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07004000 /*
4001 * We must have raced with a concurrent cpuset
4002 * update. Just reset the cpus_allowed to the
4003 * cpuset's cpus_allowed
4004 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304005 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004006 goto again;
4007 }
4008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304010 free_cpumask_var(new_mask);
4011out_free_cpus_allowed:
4012 free_cpumask_var(cpus_allowed);
4013out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 return retval;
4016}
4017
4018static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10304019 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020{
Rusty Russell96f874e22008-11-25 02:35:14 +10304021 if (len < cpumask_size())
4022 cpumask_clear(new_mask);
4023 else if (len > cpumask_size())
4024 len = cpumask_size();
4025
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4027}
4028
4029/**
4030 * sys_sched_setaffinity - set the cpu affinity of a process
4031 * @pid: pid of the process
4032 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4033 * @user_mask_ptr: user-space pointer to the new cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004034 *
4035 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004037SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
4038 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304040 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 int retval;
4042
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304043 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
4044 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304046 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
4047 if (retval == 0)
4048 retval = sched_setaffinity(pid, new_mask);
4049 free_cpumask_var(new_mask);
4050 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051}
4052
Rusty Russell96f874e22008-11-25 02:35:14 +10304053long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004055 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00004056 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004059 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060
4061 retval = -ESRCH;
4062 p = find_process_by_pid(pid);
4063 if (!p)
4064 goto out_unlock;
4065
David Quigleye7834f82006-06-23 02:03:59 -07004066 retval = security_task_getscheduler(p);
4067 if (retval)
4068 goto out_unlock;
4069
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004070 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02004071 cpumask_and(mask, &p->cpus_allowed, cpu_active_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004072 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
4074out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004075 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
Ulrich Drepper9531b622007-08-09 11:16:46 +02004077 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078}
4079
4080/**
4081 * sys_sched_getaffinity - get the cpu affinity of a process
4082 * @pid: pid of the process
4083 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4084 * @user_mask_ptr: user-space pointer to hold the current cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004085 *
4086 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004088SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
4089 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090{
4091 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10304092 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
Anton Blanchard84fba5e2010-04-06 17:02:19 +10004094 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004095 return -EINVAL;
4096 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 return -EINVAL;
4098
Rusty Russellf17c8602008-11-25 02:35:11 +10304099 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
4100 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
Rusty Russellf17c8602008-11-25 02:35:11 +10304102 ret = sched_getaffinity(pid, mask);
4103 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09004104 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004105
4106 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10304107 ret = -EFAULT;
4108 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004109 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10304110 }
4111 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
Rusty Russellf17c8602008-11-25 02:35:11 +10304113 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114}
4115
4116/**
4117 * sys_sched_yield - yield the current processor to other threads.
4118 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004119 * This function yields the current CPU to other tasks. If there are no
4120 * other threads running on this CPU then this function will return.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004121 *
4122 * Return: 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004124SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004126 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Ingo Molnar2d723762007-10-15 17:00:12 +02004128 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004129 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
4131 /*
4132 * Since we are going to call schedule() anyway, there's
4133 * no need to preempt or enable interrupts:
4134 */
4135 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004136 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01004137 do_raw_spin_unlock(&rq->lock);
Thomas Gleixnerba74c142011-03-21 13:32:17 +01004138 sched_preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140 schedule();
4141
4142 return 0;
4143}
4144
Andrew Mortone7b38402006-06-30 01:56:00 -07004145static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146{
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004147 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02004148 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004149 __preempt_count_sub(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
4151
Herbert Xu02b67cc32008-01-25 21:08:28 +01004152int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153{
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004154 rcu_cond_resched();
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004155 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 __cond_resched();
4157 return 1;
4158 }
4159 return 0;
4160}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004161EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
4163/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004164 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 * call schedule, and on return reacquire the lock.
4166 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004167 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 * operations here to prevent schedule() from being called twice (once via
4169 * spin_unlock(), once by hand).
4170 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004171int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172{
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004173 bool need_rcu_resched = rcu_should_resched();
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004174 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004175 int ret = 0;
4176
Peter Zijlstraf607c662009-07-20 19:16:29 +02004177 lockdep_assert_held(lock);
4178
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004179 if (spin_needbreak(lock) || resched || need_rcu_resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004181 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01004182 __cond_resched();
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004183 else if (unlikely(need_rcu_resched))
4184 rcu_resched();
Nick Piggin95c354f2008-01-30 13:31:20 +01004185 else
4186 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004187 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004190 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004192EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004194int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195{
4196 BUG_ON(!in_softirq());
4197
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004198 rcu_cond_resched(); /* BH disabled OK, just recording QSes. */
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004199 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004200 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 __cond_resched();
4202 local_bh_disable();
4203 return 1;
4204 }
4205 return 0;
4206}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004207EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209/**
4210 * yield - yield the current processor to other threads.
4211 *
Peter Zijlstra8e3fabf2012-03-06 18:54:26 +01004212 * Do not ever use this function, there's a 99% chance you're doing it wrong.
4213 *
4214 * The scheduler is at all times free to pick the calling task as the most
4215 * eligible task to run, if removing the yield() call from your code breaks
4216 * it, its already broken.
4217 *
4218 * Typical broken usage is:
4219 *
4220 * while (!event)
4221 * yield();
4222 *
4223 * where one assumes that yield() will let 'the other' process run that will
4224 * make event true. If the current task is a SCHED_FIFO task that will never
4225 * happen. Never use yield() as a progress guarantee!!
4226 *
4227 * If you want to use yield() to wait for something, use wait_event().
4228 * If you want to use yield() to be 'nice' for others, use cond_resched().
4229 * If you still want to use yield(), do not!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 */
4231void __sched yield(void)
4232{
4233 set_current_state(TASK_RUNNING);
4234 sys_sched_yield();
4235}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236EXPORT_SYMBOL(yield);
4237
Mike Galbraithd95f4122011-02-01 09:50:51 -05004238/**
4239 * yield_to - yield the current processor to another thread in
4240 * your thread group, or accelerate that thread toward the
4241 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07004242 * @p: target task
4243 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05004244 *
4245 * It's the caller's job to ensure that the target task struct
4246 * can't go away on us before we can do any checks.
4247 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004248 * Return:
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304249 * true (>0) if we indeed boosted the target task.
4250 * false (0) if we failed to boost the target.
4251 * -ESRCH if there's no task to yield to.
Mike Galbraithd95f4122011-02-01 09:50:51 -05004252 */
Dan Carpenterfa933842014-05-23 13:20:42 +03004253int __sched yield_to(struct task_struct *p, bool preempt)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004254{
4255 struct task_struct *curr = current;
4256 struct rq *rq, *p_rq;
4257 unsigned long flags;
Dan Carpenterc3c18642013-02-05 14:37:51 +03004258 int yielded = 0;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004259
4260 local_irq_save(flags);
4261 rq = this_rq();
4262
4263again:
4264 p_rq = task_rq(p);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304265 /*
4266 * If we're the only runnable task on the rq and target rq also
4267 * has only one task, there's absolutely no point in yielding.
4268 */
4269 if (rq->nr_running == 1 && p_rq->nr_running == 1) {
4270 yielded = -ESRCH;
4271 goto out_irq;
4272 }
4273
Mike Galbraithd95f4122011-02-01 09:50:51 -05004274 double_rq_lock(rq, p_rq);
Shigeru Yoshida39e24d8f2013-11-23 18:38:01 +09004275 if (task_rq(p) != p_rq) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004276 double_rq_unlock(rq, p_rq);
4277 goto again;
4278 }
4279
4280 if (!curr->sched_class->yield_to_task)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304281 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004282
4283 if (curr->sched_class != p->sched_class)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304284 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004285
4286 if (task_running(p_rq, p) || p->state)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304287 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004288
4289 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004290 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004291 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004292 /*
4293 * Make p's CPU reschedule; pick_next_entity takes care of
4294 * fairness.
4295 */
4296 if (preempt && rq != p_rq)
4297 resched_task(p_rq->curr);
4298 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05004299
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304300out_unlock:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004301 double_rq_unlock(rq, p_rq);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304302out_irq:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004303 local_irq_restore(flags);
4304
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304305 if (yielded > 0)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004306 schedule();
4307
4308 return yielded;
4309}
4310EXPORT_SYMBOL_GPL(yield_to);
4311
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004313 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 */
4316void __sched io_schedule(void)
4317{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004318 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004320 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004322 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004323 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004325 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004327 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329EXPORT_SYMBOL(io_schedule);
4330
4331long __sched io_schedule_timeout(long timeout)
4332{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004333 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 long ret;
4335
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004336 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004338 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004339 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004341 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004343 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 return ret;
4345}
4346
4347/**
4348 * sys_sched_get_priority_max - return maximum RT priority.
4349 * @policy: scheduling class.
4350 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004351 * Return: On success, this syscall returns the maximum
4352 * rt_priority that can be used by a given scheduling class.
4353 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004355SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356{
4357 int ret = -EINVAL;
4358
4359 switch (policy) {
4360 case SCHED_FIFO:
4361 case SCHED_RR:
4362 ret = MAX_USER_RT_PRIO-1;
4363 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004364 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004366 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004367 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 ret = 0;
4369 break;
4370 }
4371 return ret;
4372}
4373
4374/**
4375 * sys_sched_get_priority_min - return minimum RT priority.
4376 * @policy: scheduling class.
4377 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004378 * Return: On success, this syscall returns the minimum
4379 * rt_priority that can be used by a given scheduling class.
4380 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004382SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383{
4384 int ret = -EINVAL;
4385
4386 switch (policy) {
4387 case SCHED_FIFO:
4388 case SCHED_RR:
4389 ret = 1;
4390 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004391 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004393 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004394 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 ret = 0;
4396 }
4397 return ret;
4398}
4399
4400/**
4401 * sys_sched_rr_get_interval - return the default timeslice of a process.
4402 * @pid: pid of the process.
4403 * @interval: userspace pointer to the timeslice value.
4404 *
4405 * this syscall writes the default timeslice value of a given process
4406 * into the user-space timespec buffer. A value of '0' means infinity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004407 *
4408 * Return: On success, 0 and the timeslice is in @interval. Otherwise,
4409 * an error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01004411SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01004412 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004414 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004415 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004416 unsigned long flags;
4417 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004418 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
4421 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004422 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423
4424 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004425 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 p = find_process_by_pid(pid);
4427 if (!p)
4428 goto out_unlock;
4429
4430 retval = security_task_getscheduler(p);
4431 if (retval)
4432 goto out_unlock;
4433
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004434 rq = task_rq_lock(p, &flags);
Peter Zijlstraa57beec2014-01-27 11:54:13 +01004435 time_slice = 0;
4436 if (p->sched_class->get_rr_interval)
4437 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004438 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004439
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004440 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004441 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004444
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004446 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 return retval;
4448}
4449
Steven Rostedt7c731e02008-05-12 21:20:41 +02004450static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004451
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004452void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 unsigned long free = 0;
Paul E. McKenney4e797522012-11-07 13:35:32 -08004455 int ppid;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004456 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08004459 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004460 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004461#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004463 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004465 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466#else
4467 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004468 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004470 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471#endif
4472#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05004473 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474#endif
Paul E. McKenney4e797522012-11-07 13:35:32 -08004475 rcu_read_lock();
4476 ppid = task_pid_nr(rcu_dereference(p->real_parent));
4477 rcu_read_unlock();
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004478 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
Paul E. McKenney4e797522012-11-07 13:35:32 -08004479 task_pid_nr(p), ppid,
David Rientjesaa47b7e2009-05-04 01:38:05 -07004480 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
Tejun Heo3d1cb202013-04-30 15:27:22 -07004482 print_worker_info(KERN_INFO, p);
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01004483 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484}
4485
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004486void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004488 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489
Ingo Molnar4bd77322007-07-11 21:21:47 +02004490#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004491 printk(KERN_INFO
4492 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004494 printk(KERN_INFO
4495 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004497 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 do_each_thread(g, p) {
4499 /*
4500 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004501 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 */
4503 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004504 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004505 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 } while_each_thread(g, p);
4507
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004508 touch_all_softlockup_watchdogs();
4509
Ingo Molnardd41f592007-07-09 18:51:59 +02004510#ifdef CONFIG_SCHED_DEBUG
4511 sysrq_sched_debug_show();
4512#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004513 rcu_read_unlock();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004514 /*
4515 * Only show locks if all tasks are dumped:
4516 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02004517 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004518 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519}
4520
Paul Gortmaker0db06282013-06-19 14:53:51 -04004521void init_idle_bootup_task(struct task_struct *idle)
Ingo Molnar1df21052007-07-09 18:51:58 +02004522{
Ingo Molnardd41f592007-07-09 18:51:59 +02004523 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004524}
4525
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004526/**
4527 * init_idle - set up an idle thread for a given CPU
4528 * @idle: task in question
4529 * @cpu: cpu the idle task belongs to
4530 *
4531 * NOTE: this function does not set the idle thread's NEED_RESCHED
4532 * flag, to make booting more robust.
4533 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004534void init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004536 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 unsigned long flags;
4538
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004539 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01004540
Rik van Riel5e1576e2013-10-07 11:29:26 +01004541 __sched_fork(0, idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01004542 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02004543 idle->se.exec_start = sched_clock();
4544
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004545 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004546 /*
4547 * We're having a chicken and egg problem, even though we are
4548 * holding rq->lock, the cpu isn't yet set to this cpu so the
4549 * lockdep check in task_group() will fail.
4550 *
4551 * Similar case to sched_fork(). / Alternatively we could
4552 * use task_rq_lock() here and obtain the other rq->lock.
4553 *
4554 * Silence PROVE_RCU
4555 */
4556 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02004557 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004558 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 rq->curr = rq->idle = idle;
Thomas Gleixner77177852014-02-07 20:58:37 +01004561 idle->on_rq = 1;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02004562#if defined(CONFIG_SMP)
4563 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07004564#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004565 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
4567 /* Set the preempt count _outside_ the spinlocks! */
Peter Zijlstra01028742013-08-14 14:55:46 +02004568 init_idle_preempt_count(idle, cpu);
Jonathan Corbet625f2a32011-04-22 11:19:10 -06004569
Ingo Molnardd41f592007-07-09 18:51:59 +02004570 /*
4571 * The idle tasks have their own, simple scheduling class:
4572 */
4573 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05004574 ftrace_graph_init_idle_task(idle, cpu);
Frederic Weisbecker45eacc62013-05-15 22:16:32 +02004575 vtime_init_idle(idle, cpu);
Carsten Emdef1c6f1a2011-10-26 23:14:16 +02004576#if defined(CONFIG_SMP)
4577 sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
4578#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579}
4580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581#ifdef CONFIG_SMP
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004582void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
4583{
4584 if (p->sched_class && p->sched_class->set_cpus_allowed)
4585 p->sched_class->set_cpus_allowed(p, new_mask);
Peter Zijlstra49396022011-06-25 15:45:46 +02004586
4587 cpumask_copy(&p->cpus_allowed, new_mask);
Peter Zijlstra29baa742012-04-23 12:11:21 +02004588 p->nr_cpus_allowed = cpumask_weight(new_mask);
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004589}
4590
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591/*
4592 * This is how migration works:
4593 *
Tejun Heo969c7922010-05-06 18:49:21 +02004594 * 1) we invoke migration_cpu_stop() on the target CPU using
4595 * stop_one_cpu().
4596 * 2) stopper starts to run (implicitly forcing the migrated thread
4597 * off the CPU)
4598 * 3) it checks whether the migrated task is still in the wrong runqueue.
4599 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02004601 * 5) stopper completes and stop_one_cpu() returns and the migration
4602 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 */
4604
4605/*
4606 * Change a given task's CPU affinity. Migrate the thread to a
4607 * proper CPU and schedule it away if the CPU it's executing on
4608 * is removed from the allowed bitmask.
4609 *
4610 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004611 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 * call is not atomic; no spinlocks may be held.
4613 */
Rusty Russell96f874e22008-11-25 02:35:14 +10304614int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615{
4616 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004617 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02004618 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004619 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
4621 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004622
Yong Zhangdb44fc02011-05-09 22:07:05 +08004623 if (cpumask_equal(&p->cpus_allowed, new_mask))
4624 goto out;
4625
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004626 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 ret = -EINVAL;
4628 goto out;
4629 }
4630
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004631 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01004632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10304634 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 goto out;
4636
Tejun Heo969c7922010-05-06 18:49:21 +02004637 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Peter Zijlstrabd8e7dd2011-04-05 17:23:59 +02004638 if (p->on_rq) {
Tejun Heo969c7922010-05-06 18:49:21 +02004639 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004641 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02004642 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 tlb_migrate_finish(p->mm);
4644 return 0;
4645 }
4646out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004647 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004648
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 return ret;
4650}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07004651EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652
4653/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004654 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 * this because either it can't run here any more (set_cpus_allowed()
4656 * away from this CPU, or CPU going down), or because we're
4657 * attempting to rebalance this task on exec (sched_exec).
4658 *
4659 * So we race with normal scheduler movements, but that's OK, as long
4660 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004661 *
4662 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004664static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004666 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01004667 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
Max Krasnyanskye761b772008-07-15 04:43:49 -07004669 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004670 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671
4672 rq_src = cpu_rq(src_cpu);
4673 rq_dest = cpu_rq(dest_cpu);
4674
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004675 raw_spin_lock(&p->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 double_rq_lock(rq_src, rq_dest);
4677 /* Already moved. */
4678 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004679 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 /* Affinity changed (again). */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02004681 if (!cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004682 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
Peter Zijlstrae2912002009-12-16 18:04:36 +01004684 /*
4685 * If we're not on a rq, the next wake-up will ensure we're
4686 * placed properly.
4687 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004688 if (p->on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004689 dequeue_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004690 set_task_cpu(p, dest_cpu);
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004691 enqueue_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02004692 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004694done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07004695 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004696fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 double_rq_unlock(rq_src, rq_dest);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004698 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004699 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700}
4701
Mel Gormane6628d52013-10-07 11:29:02 +01004702#ifdef CONFIG_NUMA_BALANCING
4703/* Migrate current task p to target_cpu */
4704int migrate_task_to(struct task_struct *p, int target_cpu)
4705{
4706 struct migration_arg arg = { p, target_cpu };
4707 int curr_cpu = task_cpu(p);
4708
4709 if (curr_cpu == target_cpu)
4710 return 0;
4711
4712 if (!cpumask_test_cpu(target_cpu, tsk_cpus_allowed(p)))
4713 return -EINVAL;
4714
4715 /* TODO: This is not properly updating schedstats */
4716
Mel Gorman286549d2014-01-21 15:51:03 -08004717 trace_sched_move_numa(p, curr_cpu, target_cpu);
Mel Gormane6628d52013-10-07 11:29:02 +01004718 return stop_one_cpu(curr_cpu, migration_cpu_stop, &arg);
4719}
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004720
4721/*
4722 * Requeue a task on a given node and accurately track the number of NUMA
4723 * tasks on the runqueues
4724 */
4725void sched_setnuma(struct task_struct *p, int nid)
4726{
4727 struct rq *rq;
4728 unsigned long flags;
4729 bool on_rq, running;
4730
4731 rq = task_rq_lock(p, &flags);
4732 on_rq = p->on_rq;
4733 running = task_current(rq, p);
4734
4735 if (on_rq)
4736 dequeue_task(rq, p, 0);
4737 if (running)
4738 p->sched_class->put_prev_task(rq, p);
4739
4740 p->numa_preferred_nid = nid;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004741
4742 if (running)
4743 p->sched_class->set_curr_task(rq);
4744 if (on_rq)
4745 enqueue_task(rq, p, 0);
4746 task_rq_unlock(rq, p, &flags);
4747}
Mel Gormane6628d52013-10-07 11:29:02 +01004748#endif
4749
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750/*
Tejun Heo969c7922010-05-06 18:49:21 +02004751 * migration_cpu_stop - this will be executed by a highprio stopper thread
4752 * and performs thread migration by bumping thread off CPU then
4753 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 */
Tejun Heo969c7922010-05-06 18:49:21 +02004755static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756{
Tejun Heo969c7922010-05-06 18:49:21 +02004757 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758
Tejun Heo969c7922010-05-06 18:49:21 +02004759 /*
4760 * The original target cpu might have gone down and we might
4761 * be on another cpu but it doesn't matter.
4762 */
4763 local_irq_disable();
4764 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
4765 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 return 0;
4767}
4768
4769#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770
Ingo Molnar48f24c42006-07-03 00:25:40 -07004771/*
4772 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 * offline.
4774 */
4775void idle_task_exit(void)
4776{
4777 struct mm_struct *mm = current->active_mm;
4778
4779 BUG_ON(cpu_online(smp_processor_id()));
4780
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004781 if (mm != &init_mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 switch_mm(mm, &init_mm, current);
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004783 finish_arch_post_lock_switch();
4784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 mmdrop(mm);
4786}
4787
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004788/*
Peter Zijlstra5d180232012-08-20 11:26:57 +02004789 * Since this CPU is going 'away' for a while, fold any nr_active delta
4790 * we might have. Assumes we're called after migrate_tasks() so that the
4791 * nr_active count is stable.
4792 *
4793 * Also see the comment "Global load-average calculations".
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004794 */
Peter Zijlstra5d180232012-08-20 11:26:57 +02004795static void calc_load_migrate(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796{
Peter Zijlstra5d180232012-08-20 11:26:57 +02004797 long delta = calc_load_fold_active(rq);
4798 if (delta)
4799 atomic_long_add(delta, &calc_load_tasks);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02004800}
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004801
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004802static void put_prev_task_fake(struct rq *rq, struct task_struct *prev)
4803{
4804}
4805
4806static const struct sched_class fake_sched_class = {
4807 .put_prev_task = put_prev_task_fake,
4808};
4809
4810static struct task_struct fake_task = {
4811 /*
4812 * Avoid pull_{rt,dl}_task()
4813 */
4814 .prio = MAX_PRIO + 1,
4815 .sched_class = &fake_sched_class,
4816};
4817
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004818/*
4819 * Migrate all tasks from the rq, sleeping tasks will be migrated by
4820 * try_to_wake_up()->select_task_rq().
4821 *
4822 * Called with rq->lock held even though we'er in stop_machine() and
4823 * there's no concurrency possible, we hold the required locks anyway
4824 * because of lock validation efforts.
4825 */
4826static void migrate_tasks(unsigned int dead_cpu)
4827{
4828 struct rq *rq = cpu_rq(dead_cpu);
4829 struct task_struct *next, *stop = rq->stop;
4830 int dest_cpu;
4831
4832 /*
4833 * Fudge the rq selection such that the below task selection loop
4834 * doesn't get stuck on the currently eligible stop task.
4835 *
4836 * We're currently inside stop_machine() and the rq is either stuck
4837 * in the stop_machine_cpu_stop() loop, or we're executing this code,
4838 * either way we should never end up calling schedule() until we're
4839 * done here.
4840 */
4841 rq->stop = NULL;
4842
Frederic Weisbecker77bd3972013-04-12 01:50:58 +02004843 /*
4844 * put_prev_task() and pick_next_task() sched
4845 * class method both need to have an up-to-date
4846 * value of rq->clock[_task]
4847 */
4848 update_rq_clock(rq);
4849
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004850 for ( ; ; ) {
4851 /*
4852 * There's this thread running, bail when that's the only
4853 * remaining thread.
4854 */
4855 if (rq->nr_running == 1)
4856 break;
4857
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004858 next = pick_next_task(rq, &fake_task);
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004859 BUG_ON(!next);
4860 next->sched_class->put_prev_task(rq, next);
4861
4862 /* Find suitable destination for @next, with force if needed. */
4863 dest_cpu = select_fallback_rq(dead_cpu, next);
4864 raw_spin_unlock(&rq->lock);
4865
4866 __migrate_task(next, dead_cpu, dest_cpu);
4867
4868 raw_spin_lock(&rq->lock);
4869 }
4870
4871 rq->stop = stop;
4872}
4873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874#endif /* CONFIG_HOTPLUG_CPU */
4875
Nick Piggine692ab52007-07-26 13:40:43 +02004876#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
4877
4878static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004879 {
4880 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004881 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004882 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004883 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004884};
4885
4886static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004887 {
4888 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004889 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004890 .child = sd_ctl_dir,
4891 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004892 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004893};
4894
4895static struct ctl_table *sd_alloc_ctl_entry(int n)
4896{
4897 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02004898 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02004899
Nick Piggine692ab52007-07-26 13:40:43 +02004900 return entry;
4901}
4902
Milton Miller6382bc92007-10-15 17:00:19 +02004903static void sd_free_ctl_entry(struct ctl_table **tablep)
4904{
Milton Millercd7900762007-10-17 16:55:11 +02004905 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02004906
Milton Millercd7900762007-10-17 16:55:11 +02004907 /*
4908 * In the intermediate directories, both the child directory and
4909 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004910 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02004911 * static strings and all have proc handlers.
4912 */
4913 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02004914 if (entry->child)
4915 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02004916 if (entry->proc_handler == NULL)
4917 kfree(entry->procname);
4918 }
Milton Miller6382bc92007-10-15 17:00:19 +02004919
4920 kfree(*tablep);
4921 *tablep = NULL;
4922}
4923
Namhyung Kim201c3732012-08-16 17:03:24 +09004924static int min_load_idx = 0;
libinfd9b86d2013-04-08 14:39:12 +08004925static int max_load_idx = CPU_LOAD_IDX_MAX-1;
Namhyung Kim201c3732012-08-16 17:03:24 +09004926
Nick Piggine692ab52007-07-26 13:40:43 +02004927static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02004928set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02004929 const char *procname, void *data, int maxlen,
Namhyung Kim201c3732012-08-16 17:03:24 +09004930 umode_t mode, proc_handler *proc_handler,
4931 bool load_idx)
Nick Piggine692ab52007-07-26 13:40:43 +02004932{
Nick Piggine692ab52007-07-26 13:40:43 +02004933 entry->procname = procname;
4934 entry->data = data;
4935 entry->maxlen = maxlen;
4936 entry->mode = mode;
4937 entry->proc_handler = proc_handler;
Namhyung Kim201c3732012-08-16 17:03:24 +09004938
4939 if (load_idx) {
4940 entry->extra1 = &min_load_idx;
4941 entry->extra2 = &max_load_idx;
4942 }
Nick Piggine692ab52007-07-26 13:40:43 +02004943}
4944
4945static struct ctl_table *
4946sd_alloc_ctl_domain_table(struct sched_domain *sd)
4947{
Alex Shi37e6bae2014-01-23 18:39:54 +08004948 struct ctl_table *table = sd_alloc_ctl_entry(14);
Nick Piggine692ab52007-07-26 13:40:43 +02004949
Milton Millerad1cdc12007-10-15 17:00:19 +02004950 if (table == NULL)
4951 return NULL;
4952
Alexey Dobriyane0361852007-08-09 11:16:46 +02004953 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004954 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004955 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004956 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004957 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004958 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004959 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004960 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004961 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004962 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004963 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004964 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004965 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004966 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004967 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Namhyung Kim201c3732012-08-16 17:03:24 +09004968 sizeof(int), 0644, proc_dointvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004969 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Namhyung Kim201c3732012-08-16 17:03:24 +09004970 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004971 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02004972 &sd->cache_nice_tries,
Namhyung Kim201c3732012-08-16 17:03:24 +09004973 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004974 set_table_entry(&table[10], "flags", &sd->flags,
Namhyung Kim201c3732012-08-16 17:03:24 +09004975 sizeof(int), 0644, proc_dointvec_minmax, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004976 set_table_entry(&table[11], "max_newidle_lb_cost",
4977 &sd->max_newidle_lb_cost,
4978 sizeof(long), 0644, proc_doulongvec_minmax, false);
4979 set_table_entry(&table[12], "name", sd->name,
Namhyung Kim201c3732012-08-16 17:03:24 +09004980 CORENAME_MAX_SIZE, 0444, proc_dostring, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004981 /* &table[13] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02004982
4983 return table;
4984}
4985
Joe Perchesbe7002e2013-06-12 11:55:36 -07004986static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02004987{
4988 struct ctl_table *entry, *table;
4989 struct sched_domain *sd;
4990 int domain_num = 0, i;
4991 char buf[32];
4992
4993 for_each_domain(cpu, sd)
4994 domain_num++;
4995 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02004996 if (table == NULL)
4997 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02004998
4999 i = 0;
5000 for_each_domain(cpu, sd) {
5001 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005002 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005003 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005004 entry->child = sd_alloc_ctl_domain_table(sd);
5005 entry++;
5006 i++;
5007 }
5008 return table;
5009}
5010
5011static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005012static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005013{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005014 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02005015 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5016 char buf[32];
5017
Milton Miller73785472007-10-24 18:23:48 +02005018 WARN_ON(sd_ctl_dir[0].child);
5019 sd_ctl_dir[0].child = entry;
5020
Milton Millerad1cdc12007-10-15 17:00:19 +02005021 if (entry == NULL)
5022 return;
5023
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005024 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005025 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005026 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005027 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005028 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005029 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005030 }
Milton Miller73785472007-10-24 18:23:48 +02005031
5032 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005033 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5034}
Milton Miller6382bc92007-10-15 17:00:19 +02005035
Milton Miller73785472007-10-24 18:23:48 +02005036/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005037static void unregister_sched_domain_sysctl(void)
5038{
Milton Miller73785472007-10-24 18:23:48 +02005039 if (sd_sysctl_header)
5040 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005041 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005042 if (sd_ctl_dir[0].child)
5043 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005044}
Nick Piggine692ab52007-07-26 13:40:43 +02005045#else
Milton Miller6382bc92007-10-15 17:00:19 +02005046static void register_sched_domain_sysctl(void)
5047{
5048}
5049static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005050{
5051}
5052#endif
5053
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005054static void set_rq_online(struct rq *rq)
5055{
5056 if (!rq->online) {
5057 const struct sched_class *class;
5058
Rusty Russellc6c49272008-11-25 02:35:05 +10305059 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005060 rq->online = 1;
5061
5062 for_each_class(class) {
5063 if (class->rq_online)
5064 class->rq_online(rq);
5065 }
5066 }
5067}
5068
5069static void set_rq_offline(struct rq *rq)
5070{
5071 if (rq->online) {
5072 const struct sched_class *class;
5073
5074 for_each_class(class) {
5075 if (class->rq_offline)
5076 class->rq_offline(rq);
5077 }
5078
Rusty Russellc6c49272008-11-25 02:35:05 +10305079 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005080 rq->online = 0;
5081 }
5082}
5083
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084/*
5085 * migration_call - callback that gets triggered when a CPU is added.
5086 * Here we can start up the necessary migration thread for the new CPU.
5087 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005088static int
Ingo Molnar48f24c42006-07-03 00:25:40 -07005089migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005091 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02005093 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005095 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02005098 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005102 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005103 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005104 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305105 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005106
5107 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005108 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005109 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04005113 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02005114 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01005115 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005116 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005117 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305118 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005119 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005120 }
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005121 migrate_tasks(cpu);
5122 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005123 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra5d180232012-08-20 11:26:57 +02005124 break;
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005125
Peter Zijlstra5d180232012-08-20 11:26:57 +02005126 case CPU_DEAD:
Peter Zijlstraf319da02012-08-20 11:26:57 +02005127 calc_load_migrate(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129#endif
5130 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02005131
5132 update_max_interval();
5133
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 return NOTIFY_OK;
5135}
5136
Paul Mackerrasf38b0822009-06-02 21:05:16 +10005137/*
5138 * Register at high priority so that task migration (migrate_all_tasks)
5139 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005140 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005142static struct notifier_block migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02005144 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145};
5146
Corey Minyarda803f022014-05-08 13:47:39 -05005147static void __cpuinit set_cpu_rq_start_time(void)
5148{
5149 int cpu = smp_processor_id();
5150 struct rq *rq = cpu_rq(cpu);
5151 rq->age_stamp = sched_clock_cpu(cpu);
5152}
5153
Paul Gortmaker0db06282013-06-19 14:53:51 -04005154static int sched_cpu_active(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005155 unsigned long action, void *hcpu)
5156{
5157 switch (action & ~CPU_TASKS_FROZEN) {
Corey Minyarda803f022014-05-08 13:47:39 -05005158 case CPU_STARTING:
5159 set_cpu_rq_start_time();
5160 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005161 case CPU_DOWN_FAILED:
5162 set_cpu_active((long)hcpu, true);
5163 return NOTIFY_OK;
5164 default:
5165 return NOTIFY_DONE;
5166 }
5167}
5168
Paul Gortmaker0db06282013-06-19 14:53:51 -04005169static int sched_cpu_inactive(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005170 unsigned long action, void *hcpu)
5171{
Peter Zijlstrade212f12013-12-19 11:54:45 +01005172 unsigned long flags;
5173 long cpu = (long)hcpu;
5174
Tejun Heo3a101d02010-06-08 21:40:36 +02005175 switch (action & ~CPU_TASKS_FROZEN) {
5176 case CPU_DOWN_PREPARE:
Peter Zijlstrade212f12013-12-19 11:54:45 +01005177 set_cpu_active(cpu, false);
5178
5179 /* explicitly allow suspend */
5180 if (!(action & CPU_TASKS_FROZEN)) {
5181 struct dl_bw *dl_b = dl_bw_of(cpu);
5182 bool overflow;
5183 int cpus;
5184
5185 raw_spin_lock_irqsave(&dl_b->lock, flags);
5186 cpus = dl_bw_cpus(cpu);
5187 overflow = __dl_overflow(dl_b, cpus, 0, 0);
5188 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
5189
5190 if (overflow)
5191 return notifier_from_errno(-EBUSY);
5192 }
Tejun Heo3a101d02010-06-08 21:40:36 +02005193 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005194 }
Peter Zijlstrade212f12013-12-19 11:54:45 +01005195
5196 return NOTIFY_DONE;
Tejun Heo3a101d02010-06-08 21:40:36 +02005197}
5198
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005199static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200{
5201 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005202 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005203
Tejun Heo3a101d02010-06-08 21:40:36 +02005204 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005205 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5206 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5208 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005209
Tejun Heo3a101d02010-06-08 21:40:36 +02005210 /* Register cpu active notifiers */
5211 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
5212 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
5213
Thomas Gleixnera004cd42009-07-21 09:54:05 +02005214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005216early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217#endif
5218
5219#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005220
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005221static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
5222
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005223#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005224
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005225static __read_mostly int sched_debug_enabled;
Mike Travisf6630112009-11-17 18:22:15 -06005226
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005227static int __init sched_debug_setup(char *str)
Mike Travisf6630112009-11-17 18:22:15 -06005228{
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005229 sched_debug_enabled = 1;
Mike Travisf6630112009-11-17 18:22:15 -06005230
5231 return 0;
5232}
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005233early_param("sched_debug", sched_debug_setup);
5234
5235static inline bool sched_debug(void)
5236{
5237 return sched_debug_enabled;
5238}
Mike Travisf6630112009-11-17 18:22:15 -06005239
Mike Travis7c16ec52008-04-04 18:11:11 -07005240static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10305241 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005242{
5243 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07005244 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005245
Rusty Russell968ea6d2008-12-13 21:55:51 +10305246 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10305247 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005248
5249 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5250
5251 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005252 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005253 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005254 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5255 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005256 return -1;
5257 }
5258
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005259 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005260
Rusty Russell758b2cd2008-11-25 02:35:04 +10305261 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005262 printk(KERN_ERR "ERROR: domain->span does not contain "
5263 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005264 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10305265 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005266 printk(KERN_ERR "ERROR: domain->groups does not contain"
5267 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005268 }
5269
5270 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5271 do {
5272 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005273 printk("\n");
5274 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005275 break;
5276 }
5277
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005278 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005279 * Even though we initialize ->capacity to something semi-sane,
5280 * we leave capacity_orig unset. This allows us to detect if
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005281 * domain iteration is still funny without causing /0 traps.
5282 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005283 if (!group->sgc->capacity_orig) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005284 printk(KERN_CONT "\n");
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005285 printk(KERN_ERR "ERROR: domain->cpu_capacity not set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005286 break;
5287 }
5288
Rusty Russell758b2cd2008-11-25 02:35:04 +10305289 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005290 printk(KERN_CONT "\n");
5291 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005292 break;
5293 }
5294
Peter Zijlstracb83b622012-04-17 15:49:36 +02005295 if (!(sd->flags & SD_OVERLAP) &&
5296 cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005297 printk(KERN_CONT "\n");
5298 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005299 break;
5300 }
5301
Rusty Russell758b2cd2008-11-25 02:35:04 +10305302 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005303
Rusty Russell968ea6d2008-12-13 21:55:51 +10305304 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305305
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005306 printk(KERN_CONT " %s", str);
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005307 if (group->sgc->capacity != SCHED_CAPACITY_SCALE) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005308 printk(KERN_CONT " (cpu_capacity = %d)",
5309 group->sgc->capacity);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305310 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005311
5312 group = group->next;
5313 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005314 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005315
Rusty Russell758b2cd2008-11-25 02:35:04 +10305316 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005317 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005318
Rusty Russell758b2cd2008-11-25 02:35:04 +10305319 if (sd->parent &&
5320 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005321 printk(KERN_ERR "ERROR: parent span is not a superset "
5322 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005323 return 0;
5324}
5325
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326static void sched_domain_debug(struct sched_domain *sd, int cpu)
5327{
5328 int level = 0;
5329
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005330 if (!sched_debug_enabled)
Mike Travisf6630112009-11-17 18:22:15 -06005331 return;
5332
Nick Piggin41c7ce92005-06-25 14:57:24 -07005333 if (!sd) {
5334 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5335 return;
5336 }
5337
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5339
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005340 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005341 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 level++;
5344 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005345 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005346 break;
5347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005349#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005350# define sched_domain_debug(sd, cpu) do { } while (0)
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005351static inline bool sched_debug(void)
5352{
5353 return false;
5354}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005355#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005357static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005358{
Rusty Russell758b2cd2008-11-25 02:35:04 +10305359 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005360 return 1;
5361
5362 /* Following flags need at least 2 groups */
5363 if (sd->flags & (SD_LOAD_BALANCE |
5364 SD_BALANCE_NEWIDLE |
5365 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005366 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005367 SD_SHARE_CPUCAPACITY |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005368 SD_SHARE_PKG_RESOURCES |
5369 SD_SHARE_POWERDOMAIN)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005370 if (sd->groups != sd->groups->next)
5371 return 0;
5372 }
5373
5374 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005375 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005376 return 0;
5377
5378 return 1;
5379}
5380
Ingo Molnar48f24c42006-07-03 00:25:40 -07005381static int
5382sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005383{
5384 unsigned long cflags = sd->flags, pflags = parent->flags;
5385
5386 if (sd_degenerate(parent))
5387 return 1;
5388
Rusty Russell758b2cd2008-11-25 02:35:04 +10305389 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005390 return 0;
5391
Suresh Siddha245af2c2005-06-25 14:57:25 -07005392 /* Flags needing groups don't count if only 1 group in parent */
5393 if (parent->groups == parent->groups->next) {
5394 pflags &= ~(SD_LOAD_BALANCE |
5395 SD_BALANCE_NEWIDLE |
5396 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005397 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005398 SD_SHARE_CPUCAPACITY |
Peter Zijlstra10866e622013-08-19 16:57:04 +02005399 SD_SHARE_PKG_RESOURCES |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005400 SD_PREFER_SIBLING |
5401 SD_SHARE_POWERDOMAIN);
Ken Chen54364992008-12-07 18:47:37 -08005402 if (nr_node_ids == 1)
5403 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005404 }
5405 if (~cflags & pflags)
5406 return 0;
5407
5408 return 1;
5409}
5410
Peter Zijlstradce840a2011-04-07 14:09:50 +02005411static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10305412{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005413 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01005414
Rusty Russell68e74562008-11-25 02:35:13 +10305415 cpupri_cleanup(&rd->cpupri);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005416 cpudl_cleanup(&rd->cpudl);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005417 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305418 free_cpumask_var(rd->rto_mask);
5419 free_cpumask_var(rd->online);
5420 free_cpumask_var(rd->span);
5421 kfree(rd);
5422}
5423
Gregory Haskins57d885f2008-01-25 21:08:18 +01005424static void rq_attach_root(struct rq *rq, struct root_domain *rd)
5425{
Ingo Molnara0490fa2009-02-12 11:35:40 +01005426 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005427 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005428
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005429 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005430
5431 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01005432 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005433
Rusty Russellc6c49272008-11-25 02:35:05 +10305434 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005435 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005436
Rusty Russellc6c49272008-11-25 02:35:05 +10305437 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01005438
Ingo Molnara0490fa2009-02-12 11:35:40 +01005439 /*
Shigeru Yoshida05159732013-11-17 12:12:36 +09005440 * If we dont want to free the old_rd yet then
Ingo Molnara0490fa2009-02-12 11:35:40 +01005441 * set old_rd to NULL to skip the freeing later
5442 * in this function:
5443 */
5444 if (!atomic_dec_and_test(&old_rd->refcount))
5445 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005446 }
5447
5448 atomic_inc(&rd->refcount);
5449 rq->rd = rd;
5450
Rusty Russellc6c49272008-11-25 02:35:05 +10305451 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04005452 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005453 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005454
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005455 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01005456
5457 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02005458 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005459}
5460
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005461static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005462{
5463 memset(rd, 0, sizeof(*rd));
5464
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005465 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08005466 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005467 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305468 goto free_span;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005469 if (!alloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305470 goto free_online;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005471 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
5472 goto free_dlo_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02005473
Dario Faggioli332ac172013-11-07 14:43:45 +01005474 init_dl_bw(&rd->dl_bw);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005475 if (cpudl_init(&rd->cpudl) != 0)
5476 goto free_dlo_mask;
Dario Faggioli332ac172013-11-07 14:43:45 +01005477
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005478 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10305479 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10305480 return 0;
5481
Rusty Russell68e74562008-11-25 02:35:13 +10305482free_rto_mask:
5483 free_cpumask_var(rd->rto_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005484free_dlo_mask:
5485 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305486free_online:
5487 free_cpumask_var(rd->online);
5488free_span:
5489 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08005490out:
Rusty Russellc6c49272008-11-25 02:35:05 +10305491 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005492}
5493
Peter Zijlstra029632f2011-10-25 10:00:11 +02005494/*
5495 * By default the system creates a single root-domain with all cpus as
5496 * members (mimicking the global state we have today).
5497 */
5498struct root_domain def_root_domain;
5499
Gregory Haskins57d885f2008-01-25 21:08:18 +01005500static void init_defrootdomain(void)
5501{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005502 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10305503
Gregory Haskins57d885f2008-01-25 21:08:18 +01005504 atomic_set(&def_root_domain.refcount, 1);
5505}
5506
Gregory Haskinsdc938522008-01-25 21:08:26 +01005507static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005508{
5509 struct root_domain *rd;
5510
5511 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
5512 if (!rd)
5513 return NULL;
5514
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005515 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305516 kfree(rd);
5517 return NULL;
5518 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01005519
5520 return rd;
5521}
5522
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005523static void free_sched_groups(struct sched_group *sg, int free_sgc)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005524{
5525 struct sched_group *tmp, *first;
5526
5527 if (!sg)
5528 return;
5529
5530 first = sg;
5531 do {
5532 tmp = sg->next;
5533
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005534 if (free_sgc && atomic_dec_and_test(&sg->sgc->ref))
5535 kfree(sg->sgc);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005536
5537 kfree(sg);
5538 sg = tmp;
5539 } while (sg != first);
5540}
5541
Peter Zijlstradce840a2011-04-07 14:09:50 +02005542static void free_sched_domain(struct rcu_head *rcu)
5543{
5544 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005545
5546 /*
5547 * If its an overlapping domain it has private groups, iterate and
5548 * nuke them all.
5549 */
5550 if (sd->flags & SD_OVERLAP) {
5551 free_sched_groups(sd->groups, 1);
5552 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005553 kfree(sd->groups->sgc);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005554 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005555 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005556 kfree(sd);
5557}
5558
5559static void destroy_sched_domain(struct sched_domain *sd, int cpu)
5560{
5561 call_rcu(&sd->rcu, free_sched_domain);
5562}
5563
5564static void destroy_sched_domains(struct sched_domain *sd, int cpu)
5565{
5566 for (; sd; sd = sd->parent)
5567 destroy_sched_domain(sd, cpu);
5568}
5569
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570/*
Peter Zijlstra518cd622011-12-07 15:07:31 +01005571 * Keep a special pointer to the highest sched_domain that has
5572 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
5573 * allows us to avoid some pointer chasing select_idle_sibling().
5574 *
5575 * Also keep a unique ID per domain (we use the first cpu number in
5576 * the cpumask of the domain), this allows us to quickly tell if
Peter Zijlstra39be3502012-01-26 12:44:34 +01005577 * two cpus are in the same cache domain, see cpus_share_cache().
Peter Zijlstra518cd622011-12-07 15:07:31 +01005578 */
5579DEFINE_PER_CPU(struct sched_domain *, sd_llc);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005580DEFINE_PER_CPU(int, sd_llc_size);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005581DEFINE_PER_CPU(int, sd_llc_id);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005582DEFINE_PER_CPU(struct sched_domain *, sd_numa);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305583DEFINE_PER_CPU(struct sched_domain *, sd_busy);
5584DEFINE_PER_CPU(struct sched_domain *, sd_asym);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005585
5586static void update_top_cache_domain(int cpu)
5587{
5588 struct sched_domain *sd;
Mel Gorman5d4cf992013-12-17 09:21:25 +00005589 struct sched_domain *busy_sd = NULL;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005590 int id = cpu;
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005591 int size = 1;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005592
5593 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005594 if (sd) {
Peter Zijlstra518cd622011-12-07 15:07:31 +01005595 id = cpumask_first(sched_domain_span(sd));
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005596 size = cpumask_weight(sched_domain_span(sd));
Mel Gorman5d4cf992013-12-17 09:21:25 +00005597 busy_sd = sd->parent; /* sd_busy */
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005598 }
Mel Gorman5d4cf992013-12-17 09:21:25 +00005599 rcu_assign_pointer(per_cpu(sd_busy, cpu), busy_sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005600
5601 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005602 per_cpu(sd_llc_size, cpu) = size;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005603 per_cpu(sd_llc_id, cpu) = id;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005604
5605 sd = lowest_flag_domain(cpu, SD_NUMA);
5606 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305607
5608 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
5609 rcu_assign_pointer(per_cpu(sd_asym, cpu), sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005610}
5611
5612/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01005613 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614 * hold the hotplug lock.
5615 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01005616static void
5617cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005619 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005620 struct sched_domain *tmp;
5621
5622 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08005623 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005624 struct sched_domain *parent = tmp->parent;
5625 if (!parent)
5626 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08005627
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005628 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005629 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005630 if (parent->parent)
5631 parent->parent->child = tmp;
Peter Zijlstra10866e622013-08-19 16:57:04 +02005632 /*
5633 * Transfer SD_PREFER_SIBLING down in case of a
5634 * degenerate parent; the spans match for this
5635 * so the property transfers.
5636 */
5637 if (parent->flags & SD_PREFER_SIBLING)
5638 tmp->flags |= SD_PREFER_SIBLING;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005639 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08005640 } else
5641 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005642 }
5643
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005644 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005645 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005646 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005647 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005648 if (sd)
5649 sd->child = NULL;
5650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005652 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653
Gregory Haskins57d885f2008-01-25 21:08:18 +01005654 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005655 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07005656 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005657 destroy_sched_domains(tmp, cpu);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005658
5659 update_top_cache_domain(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660}
5661
5662/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10305663static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664
5665/* Setup the mask of cpus configured for isolated domains */
5666static int __init isolated_cpu_setup(char *str)
5667{
Rusty Russellbdddd292009-12-02 14:09:16 +10305668 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10305669 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670 return 1;
5671}
5672
Ingo Molnar8927f492007-10-15 17:00:13 +02005673__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005675struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005676 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005677 struct root_domain *rd;
5678};
5679
Andreas Herrmann2109b992009-08-18 12:53:00 +02005680enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005681 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005682 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02005683 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02005684 sa_none,
5685};
5686
Peter Zijlstrac1174872012-05-31 14:47:33 +02005687/*
5688 * Build an iteration mask that can exclude certain CPUs from the upwards
5689 * domain traversal.
5690 *
5691 * Asymmetric node setups can result in situations where the domain tree is of
5692 * unequal depth, make sure to skip domains that already cover the entire
5693 * range.
5694 *
5695 * In that case build_sched_domains() will have terminated the iteration early
5696 * and our sibling sd spans will be empty. Domains should always include the
5697 * cpu they're built on, so check that.
5698 *
5699 */
5700static void build_group_mask(struct sched_domain *sd, struct sched_group *sg)
5701{
5702 const struct cpumask *span = sched_domain_span(sd);
5703 struct sd_data *sdd = sd->private;
5704 struct sched_domain *sibling;
5705 int i;
5706
5707 for_each_cpu(i, span) {
5708 sibling = *per_cpu_ptr(sdd->sd, i);
5709 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
5710 continue;
5711
5712 cpumask_set_cpu(i, sched_group_mask(sg));
5713 }
5714}
5715
5716/*
5717 * Return the canonical balance cpu for this group, this is the first cpu
5718 * of this group that's also in the iteration mask.
5719 */
5720int group_balance_cpu(struct sched_group *sg)
5721{
5722 return cpumask_first_and(sched_group_cpus(sg), sched_group_mask(sg));
5723}
5724
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005725static int
5726build_overlap_sched_groups(struct sched_domain *sd, int cpu)
5727{
5728 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
5729 const struct cpumask *span = sched_domain_span(sd);
5730 struct cpumask *covered = sched_domains_tmpmask;
5731 struct sd_data *sdd = sd->private;
5732 struct sched_domain *child;
5733 int i;
5734
5735 cpumask_clear(covered);
5736
5737 for_each_cpu(i, span) {
5738 struct cpumask *sg_span;
5739
5740 if (cpumask_test_cpu(i, covered))
5741 continue;
5742
Peter Zijlstrac1174872012-05-31 14:47:33 +02005743 child = *per_cpu_ptr(sdd->sd, i);
5744
5745 /* See the comment near build_group_mask(). */
5746 if (!cpumask_test_cpu(i, sched_domain_span(child)))
5747 continue;
5748
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005749 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
Suresh Siddha4d78a222011-11-18 15:03:29 -08005750 GFP_KERNEL, cpu_to_node(cpu));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005751
5752 if (!sg)
5753 goto fail;
5754
5755 sg_span = sched_group_cpus(sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005756 if (child->child) {
5757 child = child->child;
5758 cpumask_copy(sg_span, sched_domain_span(child));
5759 } else
5760 cpumask_set_cpu(i, sg_span);
5761
5762 cpumask_or(covered, covered, sg_span);
5763
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005764 sg->sgc = *per_cpu_ptr(sdd->sgc, i);
5765 if (atomic_inc_return(&sg->sgc->ref) == 1)
Peter Zijlstrac1174872012-05-31 14:47:33 +02005766 build_group_mask(sd, sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005767
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005768 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005769 * Initialize sgc->capacity such that even if we mess up the
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005770 * domains and no possible iteration will get us here, we won't
5771 * die on a /0 trap.
5772 */
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005773 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005774 sg->sgc->capacity_orig = sg->sgc->capacity;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005775
5776 /*
5777 * Make sure the first group of this domain contains the
5778 * canonical balance cpu. Otherwise the sched_domain iteration
5779 * breaks. See update_sg_lb_stats().
5780 */
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005781 if ((!groups && cpumask_test_cpu(cpu, sg_span)) ||
Peter Zijlstrac1174872012-05-31 14:47:33 +02005782 group_balance_cpu(sg) == cpu)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005783 groups = sg;
5784
5785 if (!first)
5786 first = sg;
5787 if (last)
5788 last->next = sg;
5789 last = sg;
5790 last->next = first;
5791 }
5792 sd->groups = groups;
5793
5794 return 0;
5795
5796fail:
5797 free_sched_groups(first, 0);
5798
5799 return -ENOMEM;
5800}
5801
Peter Zijlstradce840a2011-04-07 14:09:50 +02005802static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005804 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
5805 struct sched_domain *child = sd->child;
5806
5807 if (child)
5808 cpu = cpumask_first(sched_domain_span(child));
5809
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005810 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005811 *sg = *per_cpu_ptr(sdd->sg, cpu);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005812 (*sg)->sgc = *per_cpu_ptr(sdd->sgc, cpu);
5813 atomic_set(&(*sg)->sgc->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005814 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005815
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 return cpu;
5817}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
Ingo Molnar48f24c42006-07-03 00:25:40 -07005819/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02005820 * build_sched_groups will build a circular linked list of the groups
5821 * covered by the given span, and will set each group's ->cpumask correctly,
Nicolas Pitreced549f2014-05-26 18:19:38 -04005822 * and ->cpu_capacity to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005823 *
5824 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07005825 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005826static int
5827build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005828{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005829 struct sched_group *first = NULL, *last = NULL;
5830 struct sd_data *sdd = sd->private;
5831 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005832 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005833 int i;
5834
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005835 get_group(cpu, sdd, &sd->groups);
5836 atomic_inc(&sd->groups->ref);
5837
Viresh Kumar09366292013-06-11 16:32:43 +05305838 if (cpu != cpumask_first(span))
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005839 return 0;
5840
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005841 lockdep_assert_held(&sched_domains_mutex);
5842 covered = sched_domains_tmpmask;
5843
Peter Zijlstradce840a2011-04-07 14:09:50 +02005844 cpumask_clear(covered);
5845
5846 for_each_cpu(i, span) {
5847 struct sched_group *sg;
Viresh Kumarcd08e922013-06-11 16:32:44 +05305848 int group, j;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005849
5850 if (cpumask_test_cpu(i, covered))
5851 continue;
5852
Viresh Kumarcd08e922013-06-11 16:32:44 +05305853 group = get_group(i, sdd, &sg);
Peter Zijlstrac1174872012-05-31 14:47:33 +02005854 cpumask_setall(sched_group_mask(sg));
Peter Zijlstradce840a2011-04-07 14:09:50 +02005855
5856 for_each_cpu(j, span) {
5857 if (get_group(j, sdd, NULL) != group)
5858 continue;
5859
5860 cpumask_set_cpu(j, covered);
5861 cpumask_set_cpu(j, sched_group_cpus(sg));
5862 }
5863
5864 if (!first)
5865 first = sg;
5866 if (last)
5867 last->next = sg;
5868 last = sg;
5869 }
5870 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005871
5872 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005873}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005874
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875/*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005876 * Initialize sched groups cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005877 *
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005878 * cpu_capacity indicates the capacity of sched group, which is used while
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005879 * distributing the load between different sched groups in a sched domain.
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005880 * Typically cpu_capacity for all the groups in a sched domain will be same
5881 * unless there are asymmetries in the topology. If there are asymmetries,
5882 * group having more cpu_capacity will pickup more load compared to the
5883 * group having less cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005884 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005885static void init_sched_groups_capacity(int cpu, struct sched_domain *sd)
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005886{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005887 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005888
Viresh Kumar94c95ba2013-06-11 16:32:45 +05305889 WARN_ON(!sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005890
5891 do {
5892 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
5893 sg = sg->next;
5894 } while (sg != sd->groups);
5895
Peter Zijlstrac1174872012-05-31 14:47:33 +02005896 if (cpu != group_balance_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005897 return;
5898
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005899 update_group_capacity(sd, cpu);
5900 atomic_set(&sg->sgc->nr_busy_cpus, sg->group_weight);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005901}
5902
5903/*
Mike Travis7c16ec52008-04-04 18:11:11 -07005904 * Initializers for schedule domains
5905 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
5906 */
5907
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005908static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02005909int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005910
5911static int __init setup_relax_domain_level(char *str)
5912{
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05005913 if (kstrtoint(str, 0, &default_relax_domain_level))
5914 pr_warn("Unable to set relax_domain_level\n");
Li Zefan30e0e172008-05-13 10:27:17 +08005915
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005916 return 1;
5917}
5918__setup("relax_domain_level=", setup_relax_domain_level);
5919
5920static void set_domain_attribute(struct sched_domain *sd,
5921 struct sched_domain_attr *attr)
5922{
5923 int request;
5924
5925 if (!attr || attr->relax_domain_level < 0) {
5926 if (default_relax_domain_level < 0)
5927 return;
5928 else
5929 request = default_relax_domain_level;
5930 } else
5931 request = attr->relax_domain_level;
5932 if (request < sd->level) {
5933 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005934 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005935 } else {
5936 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005937 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005938 }
5939}
5940
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005941static void __sdt_free(const struct cpumask *cpu_map);
5942static int __sdt_alloc(const struct cpumask *cpu_map);
5943
Andreas Herrmann2109b992009-08-18 12:53:00 +02005944static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
5945 const struct cpumask *cpu_map)
5946{
5947 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005948 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02005949 if (!atomic_read(&d->rd->refcount))
5950 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005951 case sa_sd:
5952 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02005953 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005954 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02005955 case sa_none:
5956 break;
5957 }
5958}
5959
5960static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
5961 const struct cpumask *cpu_map)
5962{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005963 memset(d, 0, sizeof(*d));
5964
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005965 if (__sdt_alloc(cpu_map))
5966 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005967 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005968 if (!d->sd)
5969 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005970 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02005971 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005972 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005973 return sa_rootdomain;
5974}
5975
Peter Zijlstradce840a2011-04-07 14:09:50 +02005976/*
5977 * NULL the sd_data elements we've used to build the sched_domain and
5978 * sched_group structure so that the subsequent __free_domain_allocs()
5979 * will not free the data we're using.
5980 */
5981static void claim_allocations(int cpu, struct sched_domain *sd)
5982{
5983 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005984
5985 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
5986 *per_cpu_ptr(sdd->sd, cpu) = NULL;
5987
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005988 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02005989 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005990
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005991 if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref))
5992 *per_cpu_ptr(sdd->sgc, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005993}
5994
Peter Zijlstracb83b622012-04-17 15:49:36 +02005995#ifdef CONFIG_NUMA
Peter Zijlstracb83b622012-04-17 15:49:36 +02005996static int sched_domains_numa_levels;
Peter Zijlstracb83b622012-04-17 15:49:36 +02005997static int *sched_domains_numa_distance;
5998static struct cpumask ***sched_domains_numa_masks;
5999static int sched_domains_curr_level;
Vincent Guittot143e1e22014-04-11 11:44:37 +02006000#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02006001
Vincent Guittot143e1e22014-04-11 11:44:37 +02006002/*
6003 * SD_flags allowed in topology descriptions.
6004 *
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006005 * SD_SHARE_CPUCAPACITY - describes SMT topologies
Vincent Guittot143e1e22014-04-11 11:44:37 +02006006 * SD_SHARE_PKG_RESOURCES - describes shared caches
6007 * SD_NUMA - describes NUMA topologies
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006008 * SD_SHARE_POWERDOMAIN - describes shared power domain
Vincent Guittot143e1e22014-04-11 11:44:37 +02006009 *
6010 * Odd one out:
6011 * SD_ASYM_PACKING - describes SMT quirks
6012 */
6013#define TOPOLOGY_SD_FLAGS \
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006014 (SD_SHARE_CPUCAPACITY | \
Vincent Guittot143e1e22014-04-11 11:44:37 +02006015 SD_SHARE_PKG_RESOURCES | \
6016 SD_NUMA | \
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006017 SD_ASYM_PACKING | \
6018 SD_SHARE_POWERDOMAIN)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006019
6020static struct sched_domain *
Vincent Guittot143e1e22014-04-11 11:44:37 +02006021sd_init(struct sched_domain_topology_level *tl, int cpu)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006022{
6023 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu);
Vincent Guittot143e1e22014-04-11 11:44:37 +02006024 int sd_weight, sd_flags = 0;
6025
6026#ifdef CONFIG_NUMA
6027 /*
6028 * Ugly hack to pass state to sd_numa_mask()...
6029 */
6030 sched_domains_curr_level = tl->numa_level;
6031#endif
6032
6033 sd_weight = cpumask_weight(tl->mask(cpu));
6034
6035 if (tl->sd_flags)
6036 sd_flags = (*tl->sd_flags)();
6037 if (WARN_ONCE(sd_flags & ~TOPOLOGY_SD_FLAGS,
6038 "wrong sd_flags in topology description\n"))
6039 sd_flags &= ~TOPOLOGY_SD_FLAGS;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006040
6041 *sd = (struct sched_domain){
6042 .min_interval = sd_weight,
6043 .max_interval = 2*sd_weight,
6044 .busy_factor = 32,
Peter Zijlstra870a0bb2012-05-11 00:26:27 +02006045 .imbalance_pct = 125,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006046
6047 .cache_nice_tries = 0,
6048 .busy_idx = 0,
6049 .idle_idx = 0,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006050 .newidle_idx = 0,
6051 .wake_idx = 0,
6052 .forkexec_idx = 0,
6053
6054 .flags = 1*SD_LOAD_BALANCE
6055 | 1*SD_BALANCE_NEWIDLE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006056 | 1*SD_BALANCE_EXEC
6057 | 1*SD_BALANCE_FORK
Peter Zijlstracb83b622012-04-17 15:49:36 +02006058 | 0*SD_BALANCE_WAKE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006059 | 1*SD_WAKE_AFFINE
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006060 | 0*SD_SHARE_CPUCAPACITY
Peter Zijlstracb83b622012-04-17 15:49:36 +02006061 | 0*SD_SHARE_PKG_RESOURCES
Vincent Guittot143e1e22014-04-11 11:44:37 +02006062 | 0*SD_SERIALIZE
Peter Zijlstracb83b622012-04-17 15:49:36 +02006063 | 0*SD_PREFER_SIBLING
Vincent Guittot143e1e22014-04-11 11:44:37 +02006064 | 0*SD_NUMA
6065 | sd_flags
Peter Zijlstracb83b622012-04-17 15:49:36 +02006066 ,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006067
Peter Zijlstracb83b622012-04-17 15:49:36 +02006068 .last_balance = jiffies,
6069 .balance_interval = sd_weight,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006070 .smt_gain = 0,
Jason Low2b4cfe62014-04-23 18:30:34 -07006071 .max_newidle_lb_cost = 0,
6072 .next_decay_max_lb_cost = jiffies,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006073#ifdef CONFIG_SCHED_DEBUG
6074 .name = tl->name,
6075#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02006076 };
Peter Zijlstracb83b622012-04-17 15:49:36 +02006077
6078 /*
Vincent Guittot143e1e22014-04-11 11:44:37 +02006079 * Convert topological properties into behaviour.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006080 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006081
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006082 if (sd->flags & SD_SHARE_CPUCAPACITY) {
Vincent Guittot143e1e22014-04-11 11:44:37 +02006083 sd->imbalance_pct = 110;
6084 sd->smt_gain = 1178; /* ~15% */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006085
6086 } else if (sd->flags & SD_SHARE_PKG_RESOURCES) {
6087 sd->imbalance_pct = 117;
6088 sd->cache_nice_tries = 1;
6089 sd->busy_idx = 2;
6090
6091#ifdef CONFIG_NUMA
6092 } else if (sd->flags & SD_NUMA) {
6093 sd->cache_nice_tries = 2;
6094 sd->busy_idx = 3;
6095 sd->idle_idx = 2;
6096
6097 sd->flags |= SD_SERIALIZE;
6098 if (sched_domains_numa_distance[tl->numa_level] > RECLAIM_DISTANCE) {
6099 sd->flags &= ~(SD_BALANCE_EXEC |
6100 SD_BALANCE_FORK |
6101 SD_WAKE_AFFINE);
6102 }
6103
6104#endif
6105 } else {
6106 sd->flags |= SD_PREFER_SIBLING;
6107 sd->cache_nice_tries = 1;
6108 sd->busy_idx = 2;
6109 sd->idle_idx = 1;
6110 }
6111
6112 sd->private = &tl->data;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006113
6114 return sd;
6115}
6116
Vincent Guittot143e1e22014-04-11 11:44:37 +02006117/*
6118 * Topology list, bottom-up.
6119 */
6120static struct sched_domain_topology_level default_topology[] = {
6121#ifdef CONFIG_SCHED_SMT
6122 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
6123#endif
6124#ifdef CONFIG_SCHED_MC
6125 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
6126#endif
Vincent Guittot143e1e22014-04-11 11:44:37 +02006127 { cpu_cpu_mask, SD_INIT_NAME(DIE) },
6128 { NULL, },
6129};
6130
6131struct sched_domain_topology_level *sched_domain_topology = default_topology;
6132
6133#define for_each_sd_topology(tl) \
6134 for (tl = sched_domain_topology; tl->mask; tl++)
6135
6136void set_sched_topology(struct sched_domain_topology_level *tl)
6137{
6138 sched_domain_topology = tl;
6139}
6140
6141#ifdef CONFIG_NUMA
6142
Peter Zijlstracb83b622012-04-17 15:49:36 +02006143static const struct cpumask *sd_numa_mask(int cpu)
6144{
6145 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
6146}
6147
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006148static void sched_numa_warn(const char *str)
6149{
6150 static int done = false;
6151 int i,j;
6152
6153 if (done)
6154 return;
6155
6156 done = true;
6157
6158 printk(KERN_WARNING "ERROR: %s\n\n", str);
6159
6160 for (i = 0; i < nr_node_ids; i++) {
6161 printk(KERN_WARNING " ");
6162 for (j = 0; j < nr_node_ids; j++)
6163 printk(KERN_CONT "%02d ", node_distance(i,j));
6164 printk(KERN_CONT "\n");
6165 }
6166 printk(KERN_WARNING "\n");
6167}
6168
6169static bool find_numa_distance(int distance)
6170{
6171 int i;
6172
6173 if (distance == node_distance(0, 0))
6174 return true;
6175
6176 for (i = 0; i < sched_domains_numa_levels; i++) {
6177 if (sched_domains_numa_distance[i] == distance)
6178 return true;
6179 }
6180
6181 return false;
6182}
6183
Peter Zijlstracb83b622012-04-17 15:49:36 +02006184static void sched_init_numa(void)
6185{
6186 int next_distance, curr_distance = node_distance(0, 0);
6187 struct sched_domain_topology_level *tl;
6188 int level = 0;
6189 int i, j, k;
6190
Peter Zijlstracb83b622012-04-17 15:49:36 +02006191 sched_domains_numa_distance = kzalloc(sizeof(int) * nr_node_ids, GFP_KERNEL);
6192 if (!sched_domains_numa_distance)
6193 return;
6194
6195 /*
6196 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
6197 * unique distances in the node_distance() table.
6198 *
6199 * Assumes node_distance(0,j) includes all distances in
6200 * node_distance(i,j) in order to avoid cubic time.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006201 */
6202 next_distance = curr_distance;
6203 for (i = 0; i < nr_node_ids; i++) {
6204 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006205 for (k = 0; k < nr_node_ids; k++) {
6206 int distance = node_distance(i, k);
6207
6208 if (distance > curr_distance &&
6209 (distance < next_distance ||
6210 next_distance == curr_distance))
6211 next_distance = distance;
6212
6213 /*
6214 * While not a strong assumption it would be nice to know
6215 * about cases where if node A is connected to B, B is not
6216 * equally connected to A.
6217 */
6218 if (sched_debug() && node_distance(k, i) != distance)
6219 sched_numa_warn("Node-distance not symmetric");
6220
6221 if (sched_debug() && i && !find_numa_distance(distance))
6222 sched_numa_warn("Node-0 not representative");
6223 }
6224 if (next_distance != curr_distance) {
6225 sched_domains_numa_distance[level++] = next_distance;
6226 sched_domains_numa_levels = level;
6227 curr_distance = next_distance;
6228 } else break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006229 }
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006230
6231 /*
6232 * In case of sched_debug() we verify the above assumption.
6233 */
6234 if (!sched_debug())
6235 break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006236 }
6237 /*
6238 * 'level' contains the number of unique distances, excluding the
6239 * identity distance node_distance(i,i).
6240 *
Viresh Kumar28b4a522013-04-05 16:26:46 +05306241 * The sched_domains_numa_distance[] array includes the actual distance
Peter Zijlstracb83b622012-04-17 15:49:36 +02006242 * numbers.
6243 */
6244
Tang Chen5f7865f2012-09-25 21:12:30 +08006245 /*
6246 * Here, we should temporarily reset sched_domains_numa_levels to 0.
6247 * If it fails to allocate memory for array sched_domains_numa_masks[][],
6248 * the array will contain less then 'level' members. This could be
6249 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
6250 * in other functions.
6251 *
6252 * We reset it to 'level' at the end of this function.
6253 */
6254 sched_domains_numa_levels = 0;
6255
Peter Zijlstracb83b622012-04-17 15:49:36 +02006256 sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL);
6257 if (!sched_domains_numa_masks)
6258 return;
6259
6260 /*
6261 * Now for each level, construct a mask per node which contains all
6262 * cpus of nodes that are that many hops away from us.
6263 */
6264 for (i = 0; i < level; i++) {
6265 sched_domains_numa_masks[i] =
6266 kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
6267 if (!sched_domains_numa_masks[i])
6268 return;
6269
6270 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstra2ea45802012-05-25 09:26:43 +02006271 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
Peter Zijlstracb83b622012-04-17 15:49:36 +02006272 if (!mask)
6273 return;
6274
6275 sched_domains_numa_masks[i][j] = mask;
6276
6277 for (k = 0; k < nr_node_ids; k++) {
Peter Zijlstradd7d8632012-05-11 00:56:20 +02006278 if (node_distance(j, k) > sched_domains_numa_distance[i])
Peter Zijlstracb83b622012-04-17 15:49:36 +02006279 continue;
6280
6281 cpumask_or(mask, mask, cpumask_of_node(k));
6282 }
6283 }
6284 }
6285
Vincent Guittot143e1e22014-04-11 11:44:37 +02006286 /* Compute default topology size */
6287 for (i = 0; sched_domain_topology[i].mask; i++);
6288
Vincent Guittotc515db82014-05-13 11:11:01 +02006289 tl = kzalloc((i + level + 1) *
Peter Zijlstracb83b622012-04-17 15:49:36 +02006290 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
6291 if (!tl)
6292 return;
6293
6294 /*
6295 * Copy the default topology bits..
6296 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006297 for (i = 0; sched_domain_topology[i].mask; i++)
6298 tl[i] = sched_domain_topology[i];
Peter Zijlstracb83b622012-04-17 15:49:36 +02006299
6300 /*
6301 * .. and append 'j' levels of NUMA goodness.
6302 */
6303 for (j = 0; j < level; i++, j++) {
6304 tl[i] = (struct sched_domain_topology_level){
Peter Zijlstracb83b622012-04-17 15:49:36 +02006305 .mask = sd_numa_mask,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006306 .sd_flags = cpu_numa_flags,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006307 .flags = SDTL_OVERLAP,
6308 .numa_level = j,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006309 SD_INIT_NAME(NUMA)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006310 };
6311 }
6312
6313 sched_domain_topology = tl;
Tang Chen5f7865f2012-09-25 21:12:30 +08006314
6315 sched_domains_numa_levels = level;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006316}
Tang Chen301a5cb2012-09-25 21:12:31 +08006317
6318static void sched_domains_numa_masks_set(int cpu)
6319{
6320 int i, j;
6321 int node = cpu_to_node(cpu);
6322
6323 for (i = 0; i < sched_domains_numa_levels; i++) {
6324 for (j = 0; j < nr_node_ids; j++) {
6325 if (node_distance(j, node) <= sched_domains_numa_distance[i])
6326 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
6327 }
6328 }
6329}
6330
6331static void sched_domains_numa_masks_clear(int cpu)
6332{
6333 int i, j;
6334 for (i = 0; i < sched_domains_numa_levels; i++) {
6335 for (j = 0; j < nr_node_ids; j++)
6336 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
6337 }
6338}
6339
6340/*
6341 * Update sched_domains_numa_masks[level][node] array when new cpus
6342 * are onlined.
6343 */
6344static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6345 unsigned long action,
6346 void *hcpu)
6347{
6348 int cpu = (long)hcpu;
6349
6350 switch (action & ~CPU_TASKS_FROZEN) {
6351 case CPU_ONLINE:
6352 sched_domains_numa_masks_set(cpu);
6353 break;
6354
6355 case CPU_DEAD:
6356 sched_domains_numa_masks_clear(cpu);
6357 break;
6358
6359 default:
6360 return NOTIFY_DONE;
6361 }
6362
6363 return NOTIFY_OK;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006364}
6365#else
6366static inline void sched_init_numa(void)
6367{
6368}
Tang Chen301a5cb2012-09-25 21:12:31 +08006369
6370static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6371 unsigned long action,
6372 void *hcpu)
6373{
6374 return 0;
6375}
Peter Zijlstracb83b622012-04-17 15:49:36 +02006376#endif /* CONFIG_NUMA */
6377
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006378static int __sdt_alloc(const struct cpumask *cpu_map)
6379{
6380 struct sched_domain_topology_level *tl;
6381 int j;
6382
Viresh Kumar27723a62013-06-10 16:27:20 +05306383 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006384 struct sd_data *sdd = &tl->data;
6385
6386 sdd->sd = alloc_percpu(struct sched_domain *);
6387 if (!sdd->sd)
6388 return -ENOMEM;
6389
6390 sdd->sg = alloc_percpu(struct sched_group *);
6391 if (!sdd->sg)
6392 return -ENOMEM;
6393
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006394 sdd->sgc = alloc_percpu(struct sched_group_capacity *);
6395 if (!sdd->sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006396 return -ENOMEM;
6397
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006398 for_each_cpu(j, cpu_map) {
6399 struct sched_domain *sd;
6400 struct sched_group *sg;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006401 struct sched_group_capacity *sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006402
6403 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
6404 GFP_KERNEL, cpu_to_node(j));
6405 if (!sd)
6406 return -ENOMEM;
6407
6408 *per_cpu_ptr(sdd->sd, j) = sd;
6409
6410 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
6411 GFP_KERNEL, cpu_to_node(j));
6412 if (!sg)
6413 return -ENOMEM;
6414
Igor Mammedov30b4e9e2012-05-09 12:38:28 +02006415 sg->next = sg;
6416
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006417 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006418
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006419 sgc = kzalloc_node(sizeof(struct sched_group_capacity) + cpumask_size(),
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006420 GFP_KERNEL, cpu_to_node(j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006421 if (!sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006422 return -ENOMEM;
6423
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006424 *per_cpu_ptr(sdd->sgc, j) = sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006425 }
6426 }
6427
6428 return 0;
6429}
6430
6431static void __sdt_free(const struct cpumask *cpu_map)
6432{
6433 struct sched_domain_topology_level *tl;
6434 int j;
6435
Viresh Kumar27723a62013-06-10 16:27:20 +05306436 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006437 struct sd_data *sdd = &tl->data;
6438
6439 for_each_cpu(j, cpu_map) {
he, bofb2cf2c2012-04-25 19:59:21 +08006440 struct sched_domain *sd;
6441
6442 if (sdd->sd) {
6443 sd = *per_cpu_ptr(sdd->sd, j);
6444 if (sd && (sd->flags & SD_OVERLAP))
6445 free_sched_groups(sd->groups, 0);
6446 kfree(*per_cpu_ptr(sdd->sd, j));
6447 }
6448
6449 if (sdd->sg)
6450 kfree(*per_cpu_ptr(sdd->sg, j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006451 if (sdd->sgc)
6452 kfree(*per_cpu_ptr(sdd->sgc, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006453 }
6454 free_percpu(sdd->sd);
he, bofb2cf2c2012-04-25 19:59:21 +08006455 sdd->sd = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006456 free_percpu(sdd->sg);
he, bofb2cf2c2012-04-25 19:59:21 +08006457 sdd->sg = NULL;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006458 free_percpu(sdd->sgc);
6459 sdd->sgc = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006460 }
6461}
6462
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006463struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306464 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
6465 struct sched_domain *child, int cpu)
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006466{
Vincent Guittot143e1e22014-04-11 11:44:37 +02006467 struct sched_domain *sd = sd_init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006468 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02006469 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006470
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006471 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02006472 if (child) {
6473 sd->level = child->level + 1;
6474 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02006475 child->parent = sd;
Viresh Kumarc75e0122013-06-10 16:27:19 +05306476 sd->child = child;
Peter Zijlstra60495e72011-04-07 14:10:04 +02006477 }
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05006478 set_domain_attribute(sd, attr);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006479
6480 return sd;
6481}
6482
Mike Travis7c16ec52008-04-04 18:11:11 -07006483/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006484 * Build sched domains for a given set of cpus and attach the sched domains
6485 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006487static int build_sched_domains(const struct cpumask *cpu_map,
6488 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489{
Viresh Kumar1c632162013-06-10 16:27:18 +05306490 enum s_alloc alloc_state;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006491 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006492 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02006493 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10306494
Andreas Herrmann2109b992009-08-18 12:53:00 +02006495 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
6496 if (alloc_state != sa_rootdomain)
6497 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07006498
Peter Zijlstradce840a2011-04-07 14:09:50 +02006499 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10306500 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02006501 struct sched_domain_topology_level *tl;
6502
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02006503 sd = NULL;
Viresh Kumar27723a62013-06-10 16:27:20 +05306504 for_each_sd_topology(tl) {
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306505 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
Viresh Kumar22da9562013-06-04 15:41:15 +05306506 if (tl == sched_domain_topology)
6507 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006508 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
6509 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02006510 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
6511 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006512 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006513 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006514
Peter Zijlstradce840a2011-04-07 14:09:50 +02006515 /* Build the groups for the domains */
6516 for_each_cpu(i, cpu_map) {
6517 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6518 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006519 if (sd->flags & SD_OVERLAP) {
6520 if (build_overlap_sched_groups(sd, i))
6521 goto error;
6522 } else {
6523 if (build_sched_groups(sd, i))
6524 goto error;
6525 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02006526 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02006527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528
Nicolas Pitreced549f2014-05-26 18:19:38 -04006529 /* Calculate CPU capacity for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02006530 for (i = nr_cpumask_bits-1; i >= 0; i--) {
6531 if (!cpumask_test_cpu(i, cpu_map))
6532 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533
Peter Zijlstradce840a2011-04-07 14:09:50 +02006534 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6535 claim_allocations(i, sd);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006536 init_sched_groups_capacity(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006537 }
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006538 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006539
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006541 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306542 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006543 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006544 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006546 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006547
Peter Zijlstra822ff792011-04-07 14:09:51 +02006548 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006549error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02006550 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02006551 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552}
Paul Jackson029190c2007-10-18 23:40:20 -07006553
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306554static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07006555static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02006556static struct sched_domain_attr *dattr_cur;
6557 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07006558
6559/*
6560 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10306561 * cpumask) fails, then fallback to a single sched domain,
6562 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07006563 */
Rusty Russell42128232008-11-25 02:35:12 +10306564static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07006565
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006566/*
6567 * arch_update_cpu_topology lets virtualized architectures update the
6568 * cpu core maps. It is supposed to return 1 if the topology changed
6569 * or 0 if it stayed the same.
6570 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -07006571int __weak arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01006572{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006573 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01006574}
6575
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306576cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
6577{
6578 int i;
6579 cpumask_var_t *doms;
6580
6581 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
6582 if (!doms)
6583 return NULL;
6584 for (i = 0; i < ndoms; i++) {
6585 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
6586 free_sched_domains(doms, i);
6587 return NULL;
6588 }
6589 }
6590 return doms;
6591}
6592
6593void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
6594{
6595 unsigned int i;
6596 for (i = 0; i < ndoms; i++)
6597 free_cpumask_var(doms[i]);
6598 kfree(doms);
6599}
6600
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006601/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006602 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006603 * For now this just excludes isolated cpus, but could be used to
6604 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006605 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006606static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006607{
Milton Miller73785472007-10-24 18:23:48 +02006608 int err;
6609
Heiko Carstens22e52b02008-03-12 18:31:59 +01006610 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006611 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306612 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07006613 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306614 doms_cur = &fallback_doms;
6615 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006616 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02006617 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006618
6619 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006620}
6621
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006622/*
6623 * Detach sched domains from a group of cpus specified in cpu_map
6624 * These cpus will now be attached to the NULL domain
6625 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306626static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006627{
6628 int i;
6629
Peter Zijlstradce840a2011-04-07 14:09:50 +02006630 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306631 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006632 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006633 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006634}
6635
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006636/* handle null as "default" */
6637static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
6638 struct sched_domain_attr *new, int idx_new)
6639{
6640 struct sched_domain_attr tmp;
6641
6642 /* fast path */
6643 if (!new && !cur)
6644 return 1;
6645
6646 tmp = SD_ATTR_INIT;
6647 return !memcmp(cur ? (cur + idx_cur) : &tmp,
6648 new ? (new + idx_new) : &tmp,
6649 sizeof(struct sched_domain_attr));
6650}
6651
Paul Jackson029190c2007-10-18 23:40:20 -07006652/*
6653 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006654 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006655 * doms_new[] to the current sched domain partitioning, doms_cur[].
6656 * It destroys each deleted domain and builds each new domain.
6657 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306658 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006659 * The masks don't intersect (don't overlap.) We should setup one
6660 * sched domain for each mask. CPUs not in any of the cpumasks will
6661 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006662 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6663 * it as it is.
6664 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306665 * The passed in 'doms_new' should be allocated using
6666 * alloc_sched_domains. This routine takes ownership of it and will
6667 * free_sched_domains it when done with it. If the caller failed the
6668 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
6669 * and partition_sched_domains() will fallback to the single partition
6670 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07006671 *
Rusty Russell96f874e22008-11-25 02:35:14 +10306672 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08006673 * ndoms_new == 0 is a special case for destroying existing domains,
6674 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006675 *
Paul Jackson029190c2007-10-18 23:40:20 -07006676 * Call with hotplug lock held
6677 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306678void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006679 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07006680{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006681 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006682 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07006683
Heiko Carstens712555e2008-04-28 11:33:07 +02006684 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006685
Milton Miller73785472007-10-24 18:23:48 +02006686 /* always unregister in case we don't destroy any domains */
6687 unregister_sched_domain_sysctl();
6688
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006689 /* Let architecture update cpu core mappings. */
6690 new_topology = arch_update_cpu_topology();
6691
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006692 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07006693
6694 /* Destroy deleted domains */
6695 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006696 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306697 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006698 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006699 goto match1;
6700 }
6701 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306702 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07006703match1:
6704 ;
6705 }
6706
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006707 n = ndoms_cur;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006708 if (doms_new == NULL) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006709 n = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306710 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006711 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08006712 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006713 }
6714
Paul Jackson029190c2007-10-18 23:40:20 -07006715 /* Build new domains */
6716 for (i = 0; i < ndoms_new; i++) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006717 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306718 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006719 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006720 goto match2;
6721 }
6722 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006723 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07006724match2:
6725 ;
6726 }
6727
6728 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306729 if (doms_cur != &fallback_doms)
6730 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006731 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07006732 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006733 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07006734 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006735
6736 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006737
Heiko Carstens712555e2008-04-28 11:33:07 +02006738 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07006739}
6740
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306741static int num_cpus_frozen; /* used to mark begin/end of suspend/resume */
6742
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743/*
Tejun Heo3a101d02010-06-08 21:40:36 +02006744 * Update cpusets according to cpu_active mask. If cpusets are
6745 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
6746 * around partition_sched_domains().
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306747 *
6748 * If we come here as part of a suspend/resume, don't touch cpusets because we
6749 * want to restore it back to its original state upon resume anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006750 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02006751static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
6752 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306754 switch (action) {
6755 case CPU_ONLINE_FROZEN:
6756 case CPU_DOWN_FAILED_FROZEN:
6757
6758 /*
6759 * num_cpus_frozen tracks how many CPUs are involved in suspend
6760 * resume sequence. As long as this is not the last online
6761 * operation in the resume sequence, just build a single sched
6762 * domain, ignoring cpusets.
6763 */
6764 num_cpus_frozen--;
6765 if (likely(num_cpus_frozen)) {
6766 partition_sched_domains(1, NULL, NULL);
6767 break;
6768 }
6769
6770 /*
6771 * This is the last CPU online operation. So fall through and
6772 * restore the original sched domains by considering the
6773 * cpuset configurations.
6774 */
6775
Max Krasnyanskye761b772008-07-15 04:43:49 -07006776 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006777 case CPU_DOWN_FAILED:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306778 cpuset_update_active_cpus(true);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306779 break;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006780 default:
6781 return NOTIFY_DONE;
6782 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306783 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006784}
Tejun Heo3a101d02010-06-08 21:40:36 +02006785
Tejun Heo0b2e9182010-06-21 23:53:31 +02006786static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
6787 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02006788{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306789 switch (action) {
Tejun Heo3a101d02010-06-08 21:40:36 +02006790 case CPU_DOWN_PREPARE:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306791 cpuset_update_active_cpus(false);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306792 break;
6793 case CPU_DOWN_PREPARE_FROZEN:
6794 num_cpus_frozen++;
6795 partition_sched_domains(1, NULL, NULL);
6796 break;
Tejun Heo3a101d02010-06-08 21:40:36 +02006797 default:
6798 return NOTIFY_DONE;
6799 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306800 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02006801}
Max Krasnyanskye761b772008-07-15 04:43:49 -07006802
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803void __init sched_init_smp(void)
6804{
Rusty Russelldcc30a32008-11-25 02:35:12 +10306805 cpumask_var_t non_isolated_cpus;
6806
6807 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08006808 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006809
Peter Zijlstracb83b622012-04-17 15:49:36 +02006810 sched_init_numa();
6811
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02006812 /*
6813 * There's no userspace yet to cause hotplug operations; hence all the
6814 * cpu masks are stable and all blatant races in the below code cannot
6815 * happen.
6816 */
Heiko Carstens712555e2008-04-28 11:33:07 +02006817 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006818 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10306819 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
6820 if (cpumask_empty(non_isolated_cpus))
6821 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02006822 mutex_unlock(&sched_domains_mutex);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006823
Tang Chen301a5cb2012-09-25 21:12:31 +08006824 hotcpu_notifier(sched_domains_numa_masks_update, CPU_PRI_SCHED_ACTIVE);
Tejun Heo3a101d02010-06-08 21:40:36 +02006825 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
6826 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006827
Peter Zijlstrab328ca12008-04-29 10:02:46 +02006828 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07006829
6830 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306831 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07006832 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006833 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10306834 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10306835
Rusty Russell0e3900e2008-11-25 02:35:13 +10306836 init_sched_rt_class();
Juri Lelli1baca4c2013-11-07 14:43:38 +01006837 init_sched_dl_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838}
6839#else
6840void __init sched_init_smp(void)
6841{
Ingo Molnar19978ca2007-11-09 22:39:38 +01006842 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843}
6844#endif /* CONFIG_SMP */
6845
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05306846const_debug unsigned int sysctl_timer_migration = 1;
6847
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848int in_sched_functions(unsigned long addr)
6849{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850 return in_lock_functions(addr) ||
6851 (addr >= (unsigned long)__sched_text_start
6852 && addr < (unsigned long)__sched_text_end);
6853}
6854
Peter Zijlstra029632f2011-10-25 10:00:11 +02006855#ifdef CONFIG_CGROUP_SCHED
Li Zefan27b4b932013-03-05 16:07:52 +08006856/*
6857 * Default task group.
6858 * Every task in system belongs to this group at bootup.
6859 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02006860struct task_group root_task_group;
Mike Galbraith35cf4e52012-08-07 05:00:13 +02006861LIST_HEAD(task_groups);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006862#endif
6863
Joonsoo Kime6252c32013-04-23 17:27:41 +09006864DECLARE_PER_CPU(cpumask_var_t, load_balance_mask);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006865
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866void __init sched_init(void)
6867{
Ingo Molnardd41f592007-07-09 18:51:59 +02006868 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07006869 unsigned long alloc_size = 0, ptr;
6870
6871#ifdef CONFIG_FAIR_GROUP_SCHED
6872 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6873#endif
6874#ifdef CONFIG_RT_GROUP_SCHED
6875 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6876#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306877#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10306878 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306879#endif
Mike Travis434d53b2008-04-04 18:11:04 -07006880 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03006881 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07006882
6883#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006884 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006885 ptr += nr_cpu_ids * sizeof(void **);
6886
Yong Zhang07e06b02011-01-07 15:17:36 +08006887 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006888 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006889
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006890#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07006891#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006892 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006893 ptr += nr_cpu_ids * sizeof(void **);
6894
Yong Zhang07e06b02011-01-07 15:17:36 +08006895 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006896 ptr += nr_cpu_ids * sizeof(void **);
6897
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006898#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306899#ifdef CONFIG_CPUMASK_OFFSTACK
6900 for_each_possible_cpu(i) {
Joonsoo Kime6252c32013-04-23 17:27:41 +09006901 per_cpu(load_balance_mask, i) = (void *)ptr;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306902 ptr += cpumask_size();
6903 }
6904#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07006905 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006906
Dario Faggioli332ac172013-11-07 14:43:45 +01006907 init_rt_bandwidth(&def_rt_bandwidth,
6908 global_rt_period(), global_rt_runtime());
6909 init_dl_bandwidth(&def_dl_bandwidth,
Peter Zijlstra17248132013-12-17 12:44:49 +01006910 global_rt_period(), global_rt_runtime());
Dario Faggioli332ac172013-11-07 14:43:45 +01006911
Gregory Haskins57d885f2008-01-25 21:08:18 +01006912#ifdef CONFIG_SMP
6913 init_defrootdomain();
6914#endif
6915
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006916#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006917 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006918 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006919#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006920
Dhaval Giani7c941432010-01-20 13:26:18 +01006921#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006922 list_add(&root_task_group.list, &task_groups);
6923 INIT_LIST_HEAD(&root_task_group.children);
Glauber Costaf4d6f6c2011-11-01 19:19:07 -02006924 INIT_LIST_HEAD(&root_task_group.siblings);
Mike Galbraith5091faa2010-11-30 14:18:03 +01006925 autogroup_init(&init_task);
Glauber Costa54c707e2011-11-28 14:45:19 -02006926
Dhaval Giani7c941432010-01-20 13:26:18 +01006927#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006928
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006929 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006930 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931
6932 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006933 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07006934 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006935 rq->calc_load_active = 0;
6936 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02006937 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006938 init_rt_rq(&rq->rt, rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01006939 init_dl_rq(&rq->dl, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006940#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02006941 root_task_group.shares = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006942 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006943 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08006944 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02006945 *
6946 * In case of task-groups formed thr' the cgroup filesystem, it
6947 * gets 100% of the cpu resources in the system. This overall
6948 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08006949 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02006950 * based on each entity's (task or task-group's) weight
6951 * (se->load.weight).
6952 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006953 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02006954 * 1024) and two child groups A0 and A1 (of weight 1024 each),
6955 * then A0's share of the cpu resource is:
6956 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02006957 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02006958 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006959 * We achieve this by letting root_task_group's tasks sit
6960 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02006961 */
Paul Turnerab84d312011-07-21 09:43:28 -07006962 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08006963 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006964#endif /* CONFIG_FAIR_GROUP_SCHED */
6965
6966 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01006967#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006968 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006969#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970
Ingo Molnardd41f592007-07-09 18:51:59 +02006971 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6972 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07006973
6974 rq->last_load_update_tick = jiffies;
6975
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006977 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006978 rq->rd = NULL;
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04006979 rq->cpu_capacity = SCHED_CAPACITY_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04006980 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006982 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006984 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006985 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01006986 rq->idle_stamp = 0;
6987 rq->avg_idle = 2*sysctl_sched_migration_cost;
Jason Low9bd721c2013-09-13 11:26:52 -07006988 rq->max_idle_balance_cost = sysctl_sched_migration_cost;
Peter Zijlstra367456c2012-02-20 21:49:09 +01006989
6990 INIT_LIST_HEAD(&rq->cfs_tasks);
6991
Gregory Haskinsdc938522008-01-25 21:08:26 +01006992 rq_attach_root(rq, &def_root_domain);
Frederic Weisbecker3451d022011-08-10 23:21:01 +02006993#ifdef CONFIG_NO_HZ_COMMON
Suresh Siddha1c792db2011-12-01 17:07:32 -08006994 rq->nohz_flags = 0;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07006995#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02006996#ifdef CONFIG_NO_HZ_FULL
6997 rq->last_sched_tick = 0;
6998#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007000 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002 }
7003
Peter Williams2dd73a42006-06-27 02:54:34 -07007004 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007005
Avi Kivitye107be32007-07-26 13:40:43 +02007006#ifdef CONFIG_PREEMPT_NOTIFIERS
7007 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7008#endif
7009
Linus Torvalds1da177e2005-04-16 15:20:36 -07007010 /*
7011 * The boot idle thread does lazy MMU switching as well:
7012 */
7013 atomic_inc(&init_mm.mm_count);
7014 enter_lazy_tlb(&init_mm, current);
7015
7016 /*
7017 * Make us the idle thread. Technically, schedule() should not be
7018 * called from this thread, however somewhere below it might be,
7019 * but because we are the idle thread, we just pick up running again
7020 * when this runqueue becomes "idle".
7021 */
7022 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007023
7024 calc_load_update = jiffies + LOAD_FREQ;
7025
Ingo Molnardd41f592007-07-09 18:51:59 +02007026 /*
7027 * During early bootup we pretend to be a normal task:
7028 */
7029 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007030
Rusty Russellbf4d83f2008-11-25 09:57:51 +10307031#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02007032 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russellbdddd292009-12-02 14:09:16 +10307033 /* May be allocated at isolcpus cmdline parse time */
7034 if (cpu_isolated_map == NULL)
7035 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Thomas Gleixner29d5e042012-04-20 13:05:45 +00007036 idle_thread_set_boot_cpu();
Corey Minyarda803f022014-05-08 13:47:39 -05007037 set_cpu_rq_start_time();
Peter Zijlstra029632f2011-10-25 10:00:11 +02007038#endif
7039 init_sched_fair_class();
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10307040
Ingo Molnar6892b752008-02-13 14:02:36 +01007041 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042}
7043
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02007044#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007045static inline int preempt_count_equals(int preempt_offset)
7046{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01007047 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007048
Arnd Bergmann4ba82162011-01-25 22:52:22 +01007049 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007050}
7051
Simon Kagstromd8948372009-12-23 11:08:18 +01007052void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054 static unsigned long prev_jiffy; /* ratelimiting */
7055
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07007056 rcu_sleep_check(); /* WARN_ON_ONCE() by default, no rate limit reqd. */
Thomas Gleixnerdb273be2014-02-07 20:58:38 +01007057 if ((preempt_count_equals(preempt_offset) && !irqs_disabled() &&
7058 !is_idle_task(current)) ||
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007059 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02007060 return;
7061 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7062 return;
7063 prev_jiffy = jiffies;
7064
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01007065 printk(KERN_ERR
7066 "BUG: sleeping function called from invalid context at %s:%d\n",
7067 file, line);
7068 printk(KERN_ERR
7069 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
7070 in_atomic(), irqs_disabled(),
7071 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02007072
7073 debug_show_held_locks(current);
7074 if (irqs_disabled())
7075 print_irqtrace_events(current);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01007076#ifdef CONFIG_DEBUG_PREEMPT
7077 if (!preempt_count_equals(preempt_offset)) {
7078 pr_err("Preemption disabled at:");
7079 print_ip_sym(current->preempt_disable_ip);
7080 pr_cont("\n");
7081 }
7082#endif
Ingo Molnaraef745f2008-08-28 11:34:43 +02007083 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084}
7085EXPORT_SYMBOL(__might_sleep);
7086#endif
7087
7088#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007089static void normalize_task(struct rq *rq, struct task_struct *p)
7090{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007091 const struct sched_class *prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01007092 struct sched_attr attr = {
7093 .sched_policy = SCHED_NORMAL,
7094 };
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007095 int old_prio = p->prio;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007096 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02007097
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007098 on_rq = p->on_rq;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007099 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007100 dequeue_task(rq, p, 0);
Dario Faggiolid50dde52013-11-07 14:43:36 +01007101 __setscheduler(rq, p, &attr);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007102 if (on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007103 enqueue_task(rq, p, 0);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007104 resched_task(rq->curr);
7105 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007106
7107 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007108}
7109
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110void normalize_rt_tasks(void)
7111{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007112 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007113 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007114 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007116 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007117 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007118 /*
7119 * Only normalize user tasks:
7120 */
7121 if (!p->mm)
7122 continue;
7123
Ingo Molnardd41f592007-07-09 18:51:59 +02007124 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007125#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03007126 p->se.statistics.wait_start = 0;
7127 p->se.statistics.sleep_start = 0;
7128 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007129#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007130
Dario Faggioliaab03e02013-11-28 11:14:43 +01007131 if (!dl_task(p) && !rt_task(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007132 /*
7133 * Renice negative nice level userspace
7134 * tasks back to 0:
7135 */
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05007136 if (task_nice(p) < 0 && p->mm)
Ingo Molnardd41f592007-07-09 18:51:59 +02007137 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140
Thomas Gleixner1d615482009-11-17 14:54:03 +01007141 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007142 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143
Ingo Molnar178be792007-10-15 17:00:18 +02007144 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007145
Ingo Molnarb29739f2006-06-27 02:54:51 -07007146 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01007147 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007148 } while_each_thread(g, p);
7149
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007150 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151}
7152
7153#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007154
Jason Wessel67fc4e02010-05-20 21:04:21 -05007155#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007156/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05007157 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007158 *
7159 * They can only be called when the whole system has been
7160 * stopped - every CPU needs to be quiescent, and no scheduling
7161 * activity can take place. Using them for anything else would
7162 * be a serious bug, and as a result, they aren't even visible
7163 * under any other configuration.
7164 */
7165
7166/**
7167 * curr_task - return the current task for a given cpu.
7168 * @cpu: the processor in question.
7169 *
7170 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
Yacine Belkadie69f6182013-07-12 20:45:47 +02007171 *
7172 * Return: The current task for @cpu.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007173 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007174struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007175{
7176 return cpu_curr(cpu);
7177}
7178
Jason Wessel67fc4e02010-05-20 21:04:21 -05007179#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
7180
7181#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07007182/**
7183 * set_curr_task - set the current task for a given cpu.
7184 * @cpu: the processor in question.
7185 * @p: the task pointer to set.
7186 *
7187 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007188 * are serviced on a separate stack. It allows the architecture to switch the
7189 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007190 * must be called with all CPU's synchronized, and interrupts disabled, the
7191 * and caller must save the original value of the current task (see
7192 * curr_task() above) and restore that value before reenabling interrupts and
7193 * re-starting the system.
7194 *
7195 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7196 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007197void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007198{
7199 cpu_curr(cpu) = p;
7200}
7201
7202#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007203
Dhaval Giani7c941432010-01-20 13:26:18 +01007204#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02007205/* task_group_lock serializes the addition/removal of task groups */
7206static DEFINE_SPINLOCK(task_group_lock);
7207
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007208static void free_sched_group(struct task_group *tg)
7209{
7210 free_fair_sched_group(tg);
7211 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01007212 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007213 kfree(tg);
7214}
7215
7216/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007217struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007218{
7219 struct task_group *tg;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007220
7221 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7222 if (!tg)
7223 return ERR_PTR(-ENOMEM);
7224
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007225 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007226 goto err;
7227
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007228 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007229 goto err;
7230
Li Zefanace783b2013-01-24 14:30:48 +08007231 return tg;
7232
7233err:
7234 free_sched_group(tg);
7235 return ERR_PTR(-ENOMEM);
7236}
7237
7238void sched_online_group(struct task_group *tg, struct task_group *parent)
7239{
7240 unsigned long flags;
7241
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007242 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007243 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007244
7245 WARN_ON(!parent); /* root should already exist */
7246
7247 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007248 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08007249 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007250 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007251}
7252
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007253/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007254static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007255{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007256 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007257 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007258}
7259
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007260/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007261void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007262{
Li Zefanace783b2013-01-24 14:30:48 +08007263 /* wait for possible concurrent references to cfs_rqs complete */
7264 call_rcu(&tg->rcu, free_sched_group_rcu);
7265}
7266
7267void sched_offline_group(struct task_group *tg)
7268{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007269 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007270 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007271
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007272 /* end participation in shares distribution */
7273 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007274 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007275
7276 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007277 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007278 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007279 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007280}
7281
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007282/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007283 * The caller of this function should have put the task in its new group
7284 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7285 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007286 */
7287void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007288{
Peter Zijlstra8323f262012-06-22 13:36:05 +02007289 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007290 int on_rq, running;
7291 unsigned long flags;
7292 struct rq *rq;
7293
7294 rq = task_rq_lock(tsk, &flags);
7295
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007296 running = task_current(rq, tsk);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007297 on_rq = tsk->on_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007298
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007299 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007300 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007301 if (unlikely(running))
7302 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007303
Tejun Heo073219e2014-02-08 10:36:58 -05007304 tg = container_of(task_css_check(tsk, cpu_cgrp_id,
Peter Zijlstra8323f262012-06-22 13:36:05 +02007305 lockdep_is_held(&tsk->sighand->siglock)),
7306 struct task_group, css);
7307 tg = autogroup_task_group(tsk, tg);
7308 tsk->sched_task_group = tg;
7309
Peter Zijlstra810b3812008-02-29 15:21:01 -05007310#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007311 if (tsk->sched_class->task_move_group)
7312 tsk->sched_class->task_move_group(tsk, on_rq);
7313 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05007314#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007315 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05007316
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007317 if (unlikely(running))
7318 tsk->sched_class->set_curr_task(rq);
7319 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01007320 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007321
Peter Zijlstra0122ec52011-04-05 17:23:51 +02007322 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007323}
Dhaval Giani7c941432010-01-20 13:26:18 +01007324#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007325
Paul Turnera790de92011-07-21 09:43:29 -07007326#ifdef CONFIG_RT_GROUP_SCHED
7327/*
7328 * Ensure that the real time constraints are schedulable.
7329 */
7330static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007331
Dhaval Giani521f1a242008-02-28 15:21:56 +05307332/* Must be called with tasklist_lock held */
7333static inline int tg_has_rt_tasks(struct task_group *tg)
7334{
7335 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007336
Dhaval Giani521f1a242008-02-28 15:21:56 +05307337 do_each_thread(g, p) {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007338 if (rt_task(p) && task_rq(p)->rt.tg == tg)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307339 return 1;
7340 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007341
Dhaval Giani521f1a242008-02-28 15:21:56 +05307342 return 0;
7343}
7344
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007345struct rt_schedulable_data {
7346 struct task_group *tg;
7347 u64 rt_period;
7348 u64 rt_runtime;
7349};
7350
Paul Turnera790de92011-07-21 09:43:29 -07007351static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007352{
7353 struct rt_schedulable_data *d = data;
7354 struct task_group *child;
7355 unsigned long total, sum = 0;
7356 u64 period, runtime;
7357
7358 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7359 runtime = tg->rt_bandwidth.rt_runtime;
7360
7361 if (tg == d->tg) {
7362 period = d->rt_period;
7363 runtime = d->rt_runtime;
7364 }
7365
Peter Zijlstra4653f802008-09-23 15:33:44 +02007366 /*
7367 * Cannot have more runtime than the period.
7368 */
7369 if (runtime > period && runtime != RUNTIME_INF)
7370 return -EINVAL;
7371
7372 /*
7373 * Ensure we don't starve existing RT tasks.
7374 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007375 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
7376 return -EBUSY;
7377
7378 total = to_ratio(period, runtime);
7379
Peter Zijlstra4653f802008-09-23 15:33:44 +02007380 /*
7381 * Nobody can have more than the global setting allows.
7382 */
7383 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
7384 return -EINVAL;
7385
7386 /*
7387 * The sum of our children's runtime should not exceed our own.
7388 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007389 list_for_each_entry_rcu(child, &tg->children, siblings) {
7390 period = ktime_to_ns(child->rt_bandwidth.rt_period);
7391 runtime = child->rt_bandwidth.rt_runtime;
7392
7393 if (child == d->tg) {
7394 period = d->rt_period;
7395 runtime = d->rt_runtime;
7396 }
7397
7398 sum += to_ratio(period, runtime);
7399 }
7400
7401 if (sum > total)
7402 return -EINVAL;
7403
7404 return 0;
7405}
7406
7407static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
7408{
Paul Turner82774342011-07-21 09:43:35 -07007409 int ret;
7410
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007411 struct rt_schedulable_data data = {
7412 .tg = tg,
7413 .rt_period = period,
7414 .rt_runtime = runtime,
7415 };
7416
Paul Turner82774342011-07-21 09:43:35 -07007417 rcu_read_lock();
7418 ret = walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
7419 rcu_read_unlock();
7420
7421 return ret;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007422}
7423
Paul Turnerab84d312011-07-21 09:43:28 -07007424static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007425 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007426{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007427 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007428
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007429 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307430 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007431 err = __rt_schedulable(tg, rt_period, rt_runtime);
7432 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307433 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007434
Thomas Gleixner0986b112009-11-17 15:32:06 +01007435 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007436 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
7437 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007438
7439 for_each_possible_cpu(i) {
7440 struct rt_rq *rt_rq = tg->rt_rq[i];
7441
Thomas Gleixner0986b112009-11-17 15:32:06 +01007442 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007443 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01007444 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007445 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007446 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02007447unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307448 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007449 mutex_unlock(&rt_constraints_mutex);
7450
7451 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007452}
7453
Li Zefan25cc7da2013-03-05 16:07:33 +08007454static int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007455{
7456 u64 rt_runtime, rt_period;
7457
7458 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7459 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7460 if (rt_runtime_us < 0)
7461 rt_runtime = RUNTIME_INF;
7462
Paul Turnerab84d312011-07-21 09:43:28 -07007463 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007464}
7465
Li Zefan25cc7da2013-03-05 16:07:33 +08007466static long sched_group_rt_runtime(struct task_group *tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007467{
7468 u64 rt_runtime_us;
7469
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007470 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007471 return -1;
7472
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007473 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007474 do_div(rt_runtime_us, NSEC_PER_USEC);
7475 return rt_runtime_us;
7476}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007477
Li Zefan25cc7da2013-03-05 16:07:33 +08007478static int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007479{
7480 u64 rt_runtime, rt_period;
7481
7482 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
7483 rt_runtime = tg->rt_bandwidth.rt_runtime;
7484
Raistlin619b0482008-06-26 18:54:09 +02007485 if (rt_period == 0)
7486 return -EINVAL;
7487
Paul Turnerab84d312011-07-21 09:43:28 -07007488 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007489}
7490
Li Zefan25cc7da2013-03-05 16:07:33 +08007491static long sched_group_rt_period(struct task_group *tg)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007492{
7493 u64 rt_period_us;
7494
7495 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
7496 do_div(rt_period_us, NSEC_PER_USEC);
7497 return rt_period_us;
7498}
Dario Faggioli332ac172013-11-07 14:43:45 +01007499#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007500
Dario Faggioli332ac172013-11-07 14:43:45 +01007501#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007502static int sched_rt_global_constraints(void)
7503{
7504 int ret = 0;
7505
7506 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007507 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02007508 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007509 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007510 mutex_unlock(&rt_constraints_mutex);
7511
7512 return ret;
7513}
Dhaval Giani54e99122009-02-27 15:13:54 +05307514
Li Zefan25cc7da2013-03-05 16:07:33 +08007515static int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
Dhaval Giani54e99122009-02-27 15:13:54 +05307516{
7517 /* Don't accept realtime tasks when there is no way for them to run */
7518 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
7519 return 0;
7520
7521 return 1;
7522}
7523
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007524#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007525static int sched_rt_global_constraints(void)
7526{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007527 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007528 int i, ret = 0;
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07007529
Thomas Gleixner0986b112009-11-17 15:32:06 +01007530 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007531 for_each_possible_cpu(i) {
7532 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
7533
Thomas Gleixner0986b112009-11-17 15:32:06 +01007534 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007535 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01007536 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007537 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007538 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007539
Dario Faggioli332ac172013-11-07 14:43:45 +01007540 return ret;
7541}
7542#endif /* CONFIG_RT_GROUP_SCHED */
7543
Dario Faggioli332ac172013-11-07 14:43:45 +01007544static int sched_dl_global_constraints(void)
7545{
Peter Zijlstra17248132013-12-17 12:44:49 +01007546 u64 runtime = global_rt_runtime();
7547 u64 period = global_rt_period();
Dario Faggioli332ac172013-11-07 14:43:45 +01007548 u64 new_bw = to_ratio(period, runtime);
Peter Zijlstra17248132013-12-17 12:44:49 +01007549 int cpu, ret = 0;
Juri Lelli49516342014-02-11 09:24:27 +01007550 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007551
7552 /*
7553 * Here we want to check the bandwidth not being set to some
7554 * value smaller than the currently allocated bandwidth in
7555 * any of the root_domains.
7556 *
7557 * FIXME: Cycling on all the CPUs is overdoing, but simpler than
7558 * cycling on root_domains... Discussion on different/better
7559 * solutions is welcome!
7560 */
Peter Zijlstra17248132013-12-17 12:44:49 +01007561 for_each_possible_cpu(cpu) {
7562 struct dl_bw *dl_b = dl_bw_of(cpu);
Dario Faggioli332ac172013-11-07 14:43:45 +01007563
Juri Lelli49516342014-02-11 09:24:27 +01007564 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007565 if (new_bw < dl_b->total_bw)
7566 ret = -EBUSY;
Juri Lelli49516342014-02-11 09:24:27 +01007567 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007568
7569 if (ret)
7570 break;
Dario Faggioli332ac172013-11-07 14:43:45 +01007571 }
7572
Peter Zijlstra17248132013-12-17 12:44:49 +01007573 return ret;
7574}
7575
7576static void sched_dl_do_global(void)
7577{
7578 u64 new_bw = -1;
7579 int cpu;
Juri Lelli49516342014-02-11 09:24:27 +01007580 unsigned long flags;
Peter Zijlstra17248132013-12-17 12:44:49 +01007581
7582 def_dl_bandwidth.dl_period = global_rt_period();
7583 def_dl_bandwidth.dl_runtime = global_rt_runtime();
7584
7585 if (global_rt_runtime() != RUNTIME_INF)
7586 new_bw = to_ratio(global_rt_period(), global_rt_runtime());
7587
7588 /*
7589 * FIXME: As above...
7590 */
7591 for_each_possible_cpu(cpu) {
7592 struct dl_bw *dl_b = dl_bw_of(cpu);
7593
Juri Lelli49516342014-02-11 09:24:27 +01007594 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007595 dl_b->bw = new_bw;
Juri Lelli49516342014-02-11 09:24:27 +01007596 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007597 }
7598}
7599
7600static int sched_rt_global_validate(void)
7601{
7602 if (sysctl_sched_rt_period <= 0)
7603 return -EINVAL;
7604
Juri Lellie9e7cb32014-02-11 09:24:26 +01007605 if ((sysctl_sched_rt_runtime != RUNTIME_INF) &&
7606 (sysctl_sched_rt_runtime > sysctl_sched_rt_period))
Peter Zijlstra17248132013-12-17 12:44:49 +01007607 return -EINVAL;
7608
Dario Faggioli332ac172013-11-07 14:43:45 +01007609 return 0;
7610}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007611
Peter Zijlstra17248132013-12-17 12:44:49 +01007612static void sched_rt_do_global(void)
7613{
7614 def_rt_bandwidth.rt_runtime = global_rt_runtime();
7615 def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period());
7616}
7617
7618int sched_rt_handler(struct ctl_table *table, int write,
7619 void __user *buffer, size_t *lenp,
7620 loff_t *ppos)
7621{
7622 int old_period, old_runtime;
7623 static DEFINE_MUTEX(mutex);
7624 int ret;
7625
7626 mutex_lock(&mutex);
7627 old_period = sysctl_sched_rt_period;
7628 old_runtime = sysctl_sched_rt_runtime;
7629
7630 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7631
7632 if (!ret && write) {
7633 ret = sched_rt_global_validate();
7634 if (ret)
7635 goto undo;
7636
7637 ret = sched_rt_global_constraints();
7638 if (ret)
7639 goto undo;
7640
7641 ret = sched_dl_global_constraints();
7642 if (ret)
7643 goto undo;
7644
7645 sched_rt_do_global();
7646 sched_dl_do_global();
7647 }
7648 if (0) {
7649undo:
7650 sysctl_sched_rt_period = old_period;
7651 sysctl_sched_rt_runtime = old_runtime;
7652 }
7653 mutex_unlock(&mutex);
7654
7655 return ret;
7656}
7657
Clark Williamsce0dbbb2013-02-07 09:47:04 -06007658int sched_rr_handler(struct ctl_table *table, int write,
7659 void __user *buffer, size_t *lenp,
7660 loff_t *ppos)
7661{
7662 int ret;
7663 static DEFINE_MUTEX(mutex);
7664
7665 mutex_lock(&mutex);
7666 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7667 /* make sure that internally we keep jiffies */
7668 /* also, writing zero resets timeslice to default */
7669 if (!ret && write) {
7670 sched_rr_timeslice = sched_rr_timeslice <= 0 ?
7671 RR_TIMESLICE : msecs_to_jiffies(sched_rr_timeslice);
7672 }
7673 mutex_unlock(&mutex);
7674 return ret;
7675}
7676
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007677#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007678
Tejun Heoa7c6d552013-08-08 20:11:23 -04007679static inline struct task_group *css_tg(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007680{
Tejun Heoa7c6d552013-08-08 20:11:23 -04007681 return css ? container_of(css, struct task_group, css) : NULL;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007682}
7683
Tejun Heoeb954192013-08-08 20:11:23 -04007684static struct cgroup_subsys_state *
7685cpu_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007686{
Tejun Heoeb954192013-08-08 20:11:23 -04007687 struct task_group *parent = css_tg(parent_css);
7688 struct task_group *tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007689
Tejun Heoeb954192013-08-08 20:11:23 -04007690 if (!parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007691 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08007692 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007693 }
7694
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007695 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007696 if (IS_ERR(tg))
7697 return ERR_PTR(-ENOMEM);
7698
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007699 return &tg->css;
7700}
7701
Tejun Heoeb954192013-08-08 20:11:23 -04007702static int cpu_cgroup_css_online(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007703{
Tejun Heoeb954192013-08-08 20:11:23 -04007704 struct task_group *tg = css_tg(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04007705 struct task_group *parent = css_tg(css->parent);
Li Zefanace783b2013-01-24 14:30:48 +08007706
Tejun Heo63876982013-08-08 20:11:23 -04007707 if (parent)
7708 sched_online_group(tg, parent);
Li Zefanace783b2013-01-24 14:30:48 +08007709 return 0;
7710}
7711
Tejun Heoeb954192013-08-08 20:11:23 -04007712static void cpu_cgroup_css_free(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007713{
Tejun Heoeb954192013-08-08 20:11:23 -04007714 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007715
7716 sched_destroy_group(tg);
7717}
7718
Tejun Heoeb954192013-08-08 20:11:23 -04007719static void cpu_cgroup_css_offline(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007720{
Tejun Heoeb954192013-08-08 20:11:23 -04007721 struct task_group *tg = css_tg(css);
Li Zefanace783b2013-01-24 14:30:48 +08007722
7723 sched_offline_group(tg);
7724}
7725
Tejun Heoeb954192013-08-08 20:11:23 -04007726static int cpu_cgroup_can_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007727 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007728{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007729 struct task_struct *task;
7730
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007731 cgroup_taskset_for_each(task, tset) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007732#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heoeb954192013-08-08 20:11:23 -04007733 if (!sched_rt_can_attach(css_tg(css), task))
Tejun Heobb9d97b2011-12-12 18:12:21 -08007734 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007735#else
Tejun Heobb9d97b2011-12-12 18:12:21 -08007736 /* We don't support RT-tasks being in separate groups */
7737 if (task->sched_class != &fair_sched_class)
7738 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007739#endif
Tejun Heobb9d97b2011-12-12 18:12:21 -08007740 }
Ben Blumbe367d02009-09-23 15:56:31 -07007741 return 0;
7742}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007743
Tejun Heoeb954192013-08-08 20:11:23 -04007744static void cpu_cgroup_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007745 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007746{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007747 struct task_struct *task;
7748
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007749 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08007750 sched_move_task(task);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007751}
7752
Tejun Heoeb954192013-08-08 20:11:23 -04007753static void cpu_cgroup_exit(struct cgroup_subsys_state *css,
7754 struct cgroup_subsys_state *old_css,
7755 struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007756{
7757 /*
7758 * cgroup_exit() is called in the copy_process() failure path.
7759 * Ignore this case since the task hasn't ran yet, this avoids
7760 * trying to poke a half freed task state from generic code.
7761 */
7762 if (!(task->flags & PF_EXITING))
7763 return;
7764
7765 sched_move_task(task);
7766}
7767
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007768#ifdef CONFIG_FAIR_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007769static int cpu_shares_write_u64(struct cgroup_subsys_state *css,
7770 struct cftype *cftype, u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007771{
Tejun Heo182446d2013-08-08 20:11:24 -04007772 return sched_group_set_shares(css_tg(css), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007773}
7774
Tejun Heo182446d2013-08-08 20:11:24 -04007775static u64 cpu_shares_read_u64(struct cgroup_subsys_state *css,
7776 struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007777{
Tejun Heo182446d2013-08-08 20:11:24 -04007778 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007779
Nikhil Raoc8b28112011-05-18 14:37:48 -07007780 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007781}
Paul Turnerab84d312011-07-21 09:43:28 -07007782
7783#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07007784static DEFINE_MUTEX(cfs_constraints_mutex);
7785
Paul Turnerab84d312011-07-21 09:43:28 -07007786const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
7787const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
7788
Paul Turnera790de92011-07-21 09:43:29 -07007789static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
7790
Paul Turnerab84d312011-07-21 09:43:28 -07007791static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
7792{
Paul Turner56f570e2011-11-07 20:26:33 -08007793 int i, ret = 0, runtime_enabled, runtime_was_enabled;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007794 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnerab84d312011-07-21 09:43:28 -07007795
7796 if (tg == &root_task_group)
7797 return -EINVAL;
7798
7799 /*
7800 * Ensure we have at some amount of bandwidth every period. This is
7801 * to prevent reaching a state of large arrears when throttled via
7802 * entity_tick() resulting in prolonged exit starvation.
7803 */
7804 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
7805 return -EINVAL;
7806
7807 /*
7808 * Likewise, bound things on the otherside by preventing insane quota
7809 * periods. This also allows us to normalize in computing quota
7810 * feasibility.
7811 */
7812 if (period > max_cfs_quota_period)
7813 return -EINVAL;
7814
Paul Turnera790de92011-07-21 09:43:29 -07007815 mutex_lock(&cfs_constraints_mutex);
7816 ret = __cfs_schedulable(tg, period, quota);
7817 if (ret)
7818 goto out_unlock;
7819
Paul Turner58088ad2011-07-21 09:43:31 -07007820 runtime_enabled = quota != RUNTIME_INF;
Paul Turner56f570e2011-11-07 20:26:33 -08007821 runtime_was_enabled = cfs_b->quota != RUNTIME_INF;
Ben Segall1ee14e62013-10-16 11:16:12 -07007822 /*
7823 * If we need to toggle cfs_bandwidth_used, off->on must occur
7824 * before making related changes, and on->off must occur afterwards
7825 */
7826 if (runtime_enabled && !runtime_was_enabled)
7827 cfs_bandwidth_usage_inc();
Paul Turnerab84d312011-07-21 09:43:28 -07007828 raw_spin_lock_irq(&cfs_b->lock);
7829 cfs_b->period = ns_to_ktime(period);
7830 cfs_b->quota = quota;
Paul Turner58088ad2011-07-21 09:43:31 -07007831
Paul Turnera9cf55b2011-07-21 09:43:32 -07007832 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07007833 /* restart the period timer (if active) to handle new period expiry */
7834 if (runtime_enabled && cfs_b->timer_active) {
7835 /* force a reprogram */
Roman Gushchin09dc4ab2014-05-19 15:10:09 +04007836 __start_cfs_bandwidth(cfs_b, true);
Paul Turner58088ad2011-07-21 09:43:31 -07007837 }
Paul Turnerab84d312011-07-21 09:43:28 -07007838 raw_spin_unlock_irq(&cfs_b->lock);
7839
7840 for_each_possible_cpu(i) {
7841 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
Peter Zijlstra029632f2011-10-25 10:00:11 +02007842 struct rq *rq = cfs_rq->rq;
Paul Turnerab84d312011-07-21 09:43:28 -07007843
7844 raw_spin_lock_irq(&rq->lock);
Paul Turner58088ad2011-07-21 09:43:31 -07007845 cfs_rq->runtime_enabled = runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07007846 cfs_rq->runtime_remaining = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07007847
Peter Zijlstra029632f2011-10-25 10:00:11 +02007848 if (cfs_rq->throttled)
Paul Turner671fd9d2011-07-21 09:43:34 -07007849 unthrottle_cfs_rq(cfs_rq);
Paul Turnerab84d312011-07-21 09:43:28 -07007850 raw_spin_unlock_irq(&rq->lock);
7851 }
Ben Segall1ee14e62013-10-16 11:16:12 -07007852 if (runtime_was_enabled && !runtime_enabled)
7853 cfs_bandwidth_usage_dec();
Paul Turnera790de92011-07-21 09:43:29 -07007854out_unlock:
7855 mutex_unlock(&cfs_constraints_mutex);
Paul Turnerab84d312011-07-21 09:43:28 -07007856
Paul Turnera790de92011-07-21 09:43:29 -07007857 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07007858}
7859
7860int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
7861{
7862 u64 quota, period;
7863
Peter Zijlstra029632f2011-10-25 10:00:11 +02007864 period = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007865 if (cfs_quota_us < 0)
7866 quota = RUNTIME_INF;
7867 else
7868 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
7869
7870 return tg_set_cfs_bandwidth(tg, period, quota);
7871}
7872
7873long tg_get_cfs_quota(struct task_group *tg)
7874{
7875 u64 quota_us;
7876
Peter Zijlstra029632f2011-10-25 10:00:11 +02007877 if (tg->cfs_bandwidth.quota == RUNTIME_INF)
Paul Turnerab84d312011-07-21 09:43:28 -07007878 return -1;
7879
Peter Zijlstra029632f2011-10-25 10:00:11 +02007880 quota_us = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007881 do_div(quota_us, NSEC_PER_USEC);
7882
7883 return quota_us;
7884}
7885
7886int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
7887{
7888 u64 quota, period;
7889
7890 period = (u64)cfs_period_us * NSEC_PER_USEC;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007891 quota = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007892
Paul Turnerab84d312011-07-21 09:43:28 -07007893 return tg_set_cfs_bandwidth(tg, period, quota);
7894}
7895
7896long tg_get_cfs_period(struct task_group *tg)
7897{
7898 u64 cfs_period_us;
7899
Peter Zijlstra029632f2011-10-25 10:00:11 +02007900 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007901 do_div(cfs_period_us, NSEC_PER_USEC);
7902
7903 return cfs_period_us;
7904}
7905
Tejun Heo182446d2013-08-08 20:11:24 -04007906static s64 cpu_cfs_quota_read_s64(struct cgroup_subsys_state *css,
7907 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007908{
Tejun Heo182446d2013-08-08 20:11:24 -04007909 return tg_get_cfs_quota(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007910}
7911
Tejun Heo182446d2013-08-08 20:11:24 -04007912static int cpu_cfs_quota_write_s64(struct cgroup_subsys_state *css,
7913 struct cftype *cftype, s64 cfs_quota_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007914{
Tejun Heo182446d2013-08-08 20:11:24 -04007915 return tg_set_cfs_quota(css_tg(css), cfs_quota_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007916}
7917
Tejun Heo182446d2013-08-08 20:11:24 -04007918static u64 cpu_cfs_period_read_u64(struct cgroup_subsys_state *css,
7919 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007920{
Tejun Heo182446d2013-08-08 20:11:24 -04007921 return tg_get_cfs_period(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007922}
7923
Tejun Heo182446d2013-08-08 20:11:24 -04007924static int cpu_cfs_period_write_u64(struct cgroup_subsys_state *css,
7925 struct cftype *cftype, u64 cfs_period_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007926{
Tejun Heo182446d2013-08-08 20:11:24 -04007927 return tg_set_cfs_period(css_tg(css), cfs_period_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007928}
7929
Paul Turnera790de92011-07-21 09:43:29 -07007930struct cfs_schedulable_data {
7931 struct task_group *tg;
7932 u64 period, quota;
7933};
7934
7935/*
7936 * normalize group quota/period to be quota/max_period
7937 * note: units are usecs
7938 */
7939static u64 normalize_cfs_quota(struct task_group *tg,
7940 struct cfs_schedulable_data *d)
7941{
7942 u64 quota, period;
7943
7944 if (tg == d->tg) {
7945 period = d->period;
7946 quota = d->quota;
7947 } else {
7948 period = tg_get_cfs_period(tg);
7949 quota = tg_get_cfs_quota(tg);
7950 }
7951
7952 /* note: these should typically be equivalent */
7953 if (quota == RUNTIME_INF || quota == -1)
7954 return RUNTIME_INF;
7955
7956 return to_ratio(period, quota);
7957}
7958
7959static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
7960{
7961 struct cfs_schedulable_data *d = data;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007962 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007963 s64 quota = 0, parent_quota = -1;
7964
7965 if (!tg->parent) {
7966 quota = RUNTIME_INF;
7967 } else {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007968 struct cfs_bandwidth *parent_b = &tg->parent->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007969
7970 quota = normalize_cfs_quota(tg, d);
7971 parent_quota = parent_b->hierarchal_quota;
7972
7973 /*
7974 * ensure max(child_quota) <= parent_quota, inherit when no
7975 * limit is set
7976 */
7977 if (quota == RUNTIME_INF)
7978 quota = parent_quota;
7979 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
7980 return -EINVAL;
7981 }
7982 cfs_b->hierarchal_quota = quota;
7983
7984 return 0;
7985}
7986
7987static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
7988{
Paul Turner82774342011-07-21 09:43:35 -07007989 int ret;
Paul Turnera790de92011-07-21 09:43:29 -07007990 struct cfs_schedulable_data data = {
7991 .tg = tg,
7992 .period = period,
7993 .quota = quota,
7994 };
7995
7996 if (quota != RUNTIME_INF) {
7997 do_div(data.period, NSEC_PER_USEC);
7998 do_div(data.quota, NSEC_PER_USEC);
7999 }
8000
Paul Turner82774342011-07-21 09:43:35 -07008001 rcu_read_lock();
8002 ret = walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
8003 rcu_read_unlock();
8004
8005 return ret;
Paul Turnera790de92011-07-21 09:43:29 -07008006}
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008007
Tejun Heo2da8ca82013-12-05 12:28:04 -05008008static int cpu_stats_show(struct seq_file *sf, void *v)
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008009{
Tejun Heo2da8ca82013-12-05 12:28:04 -05008010 struct task_group *tg = css_tg(seq_css(sf));
Peter Zijlstra029632f2011-10-25 10:00:11 +02008011 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008012
Tejun Heo44ffc752013-12-05 12:28:01 -05008013 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods);
8014 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled);
8015 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008016
8017 return 0;
8018}
Paul Turnerab84d312011-07-21 09:43:28 -07008019#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008020#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008021
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008022#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04008023static int cpu_rt_runtime_write(struct cgroup_subsys_state *css,
8024 struct cftype *cft, s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008025{
Tejun Heo182446d2013-08-08 20:11:24 -04008026 return sched_group_set_rt_runtime(css_tg(css), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008027}
8028
Tejun Heo182446d2013-08-08 20:11:24 -04008029static s64 cpu_rt_runtime_read(struct cgroup_subsys_state *css,
8030 struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008031{
Tejun Heo182446d2013-08-08 20:11:24 -04008032 return sched_group_rt_runtime(css_tg(css));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008033}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008034
Tejun Heo182446d2013-08-08 20:11:24 -04008035static int cpu_rt_period_write_uint(struct cgroup_subsys_state *css,
8036 struct cftype *cftype, u64 rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008037{
Tejun Heo182446d2013-08-08 20:11:24 -04008038 return sched_group_set_rt_period(css_tg(css), rt_period_us);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008039}
8040
Tejun Heo182446d2013-08-08 20:11:24 -04008041static u64 cpu_rt_period_read_uint(struct cgroup_subsys_state *css,
8042 struct cftype *cft)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008043{
Tejun Heo182446d2013-08-08 20:11:24 -04008044 return sched_group_rt_period(css_tg(css));
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008045}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008046#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008047
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008048static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008049#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008050 {
8051 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07008052 .read_u64 = cpu_shares_read_u64,
8053 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008054 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008055#endif
Paul Turnerab84d312011-07-21 09:43:28 -07008056#ifdef CONFIG_CFS_BANDWIDTH
8057 {
8058 .name = "cfs_quota_us",
8059 .read_s64 = cpu_cfs_quota_read_s64,
8060 .write_s64 = cpu_cfs_quota_write_s64,
8061 },
8062 {
8063 .name = "cfs_period_us",
8064 .read_u64 = cpu_cfs_period_read_u64,
8065 .write_u64 = cpu_cfs_period_write_u64,
8066 },
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008067 {
8068 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05008069 .seq_show = cpu_stats_show,
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008070 },
Paul Turnerab84d312011-07-21 09:43:28 -07008071#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008072#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008073 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008074 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07008075 .read_s64 = cpu_rt_runtime_read,
8076 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008077 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008078 {
8079 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07008080 .read_u64 = cpu_rt_period_read_uint,
8081 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008082 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008083#endif
Tejun Heo4baf6e32012-04-01 12:09:55 -07008084 { } /* terminate */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008085};
8086
Tejun Heo073219e2014-02-08 10:36:58 -05008087struct cgroup_subsys cpu_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08008088 .css_alloc = cpu_cgroup_css_alloc,
8089 .css_free = cpu_cgroup_css_free,
Li Zefanace783b2013-01-24 14:30:48 +08008090 .css_online = cpu_cgroup_css_online,
8091 .css_offline = cpu_cgroup_css_offline,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008092 .can_attach = cpu_cgroup_can_attach,
8093 .attach = cpu_cgroup_attach,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01008094 .exit = cpu_cgroup_exit,
Tejun Heo4baf6e32012-04-01 12:09:55 -07008095 .base_cftypes = cpu_files,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008096 .early_init = 1,
8097};
8098
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008099#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008100
Paul E. McKenneyb637a322012-09-19 16:58:38 -07008101void dump_cpu_task(int cpu)
8102{
8103 pr_info("Task dump for CPU %d:\n", cpu);
8104 sched_show_task(cpu_curr(cpu));
8105}