blob: 866d840b99ca5a666702ed41b50e3f502380cd51 [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{
Frederic Weisbecker3882ec62014-03-18 22:54:04 +0100739 /*
740 * More than one running task need preemption.
741 * nr_running update is assumed to be visible
742 * after IPI is sent from wakers.
743 */
Viresh Kumar541b8262014-06-24 14:04:12 +0530744 if (this_rq()->nr_running > 1)
745 return false;
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200746
Viresh Kumar541b8262014-06-24 14:04:12 +0530747 return true;
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200748}
749#endif /* CONFIG_NO_HZ_FULL */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200750
Peter Zijlstra029632f2011-10-25 10:00:11 +0200751void sched_avg_update(struct rq *rq)
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200752{
753 s64 period = sched_avg_period();
754
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200755 while ((s64)(rq_clock(rq) - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -0700756 /*
757 * Inline assembly required to prevent the compiler
758 * optimising this loop into a divmod call.
759 * See __iter_div_u64_rem() for another example of this.
760 */
761 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200762 rq->age_stamp += period;
763 rq->rt_avg /= 2;
764 }
765}
766
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200767#endif /* CONFIG_SMP */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200768
Paul Turnera790de92011-07-21 09:43:29 -0700769#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
770 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
Peter Zijlstraeb755802008-08-19 12:33:05 +0200771/*
Paul Turner82774342011-07-21 09:43:35 -0700772 * Iterate task_group tree rooted at *from, calling @down when first entering a
773 * node and @up when leaving it for the final time.
774 *
775 * Caller must hold rcu_lock or sufficient equivalent.
Peter Zijlstraeb755802008-08-19 12:33:05 +0200776 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200777int walk_tg_tree_from(struct task_group *from,
Paul Turner82774342011-07-21 09:43:35 -0700778 tg_visitor down, tg_visitor up, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200779{
780 struct task_group *parent, *child;
781 int ret;
782
Paul Turner82774342011-07-21 09:43:35 -0700783 parent = from;
784
Peter Zijlstraeb755802008-08-19 12:33:05 +0200785down:
786 ret = (*down)(parent, data);
787 if (ret)
Paul Turner82774342011-07-21 09:43:35 -0700788 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200789 list_for_each_entry_rcu(child, &parent->children, siblings) {
790 parent = child;
791 goto down;
792
793up:
794 continue;
795 }
796 ret = (*up)(parent, data);
Paul Turner82774342011-07-21 09:43:35 -0700797 if (ret || parent == from)
798 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200799
800 child = parent;
801 parent = parent->parent;
802 if (parent)
803 goto up;
Paul Turner82774342011-07-21 09:43:35 -0700804out:
Peter Zijlstraeb755802008-08-19 12:33:05 +0200805 return ret;
806}
807
Peter Zijlstra029632f2011-10-25 10:00:11 +0200808int tg_nop(struct task_group *tg, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200809{
810 return 0;
811}
812#endif
813
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200814static void set_load_weight(struct task_struct *p)
815{
Nikhil Raof05998d2011-05-18 10:09:38 -0700816 int prio = p->static_prio - MAX_RT_PRIO;
817 struct load_weight *load = &p->se.load;
818
Ingo Molnardd41f592007-07-09 18:51:59 +0200819 /*
820 * SCHED_IDLE tasks get minimal weight:
821 */
822 if (p->policy == SCHED_IDLE) {
Nikhil Raoc8b28112011-05-18 14:37:48 -0700823 load->weight = scale_load(WEIGHT_IDLEPRIO);
Nikhil Raof05998d2011-05-18 10:09:38 -0700824 load->inv_weight = WMULT_IDLEPRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +0200825 return;
826 }
827
Nikhil Raoc8b28112011-05-18 14:37:48 -0700828 load->weight = scale_load(prio_to_weight[prio]);
Nikhil Raof05998d2011-05-18 10:09:38 -0700829 load->inv_weight = prio_to_wmult[prio];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200830}
831
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100832static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -0600833{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100834 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300835 sched_info_queued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100836 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200837}
838
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100839static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +0200840{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100841 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300842 sched_info_dequeued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100843 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200844}
845
Peter Zijlstra029632f2011-10-25 10:00:11 +0200846void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100847{
848 if (task_contributes_to_load(p))
849 rq->nr_uninterruptible--;
850
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100851 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100852}
853
Peter Zijlstra029632f2011-10-25 10:00:11 +0200854void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100855{
856 if (task_contributes_to_load(p))
857 rq->nr_uninterruptible++;
858
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100859 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100860}
861
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100862static void update_rq_clock_task(struct rq *rq, s64 delta)
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700863{
Glauber Costa095c0aa2011-07-11 15:28:18 -0400864/*
865 * In theory, the compile should just see 0 here, and optimize out the call
866 * to sched_rt_avg_update. But I don't trust it...
867 */
868#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
869 s64 steal = 0, irq_delta = 0;
870#endif
871#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Peter Zijlstra8e92c202010-12-09 14:15:34 +0100872 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100873
874 /*
875 * Since irq_time is only updated on {soft,}irq_exit, we might run into
876 * this case when a previous update_rq_clock() happened inside a
877 * {soft,}irq region.
878 *
879 * When this happens, we stop ->clock_task and only update the
880 * prev_irq_time stamp to account for the part that fit, so that a next
881 * update will consume the rest. This ensures ->clock_task is
882 * monotonic.
883 *
884 * It does however cause some slight miss-attribution of {soft,}irq
885 * time, a more accurate solution would be to update the irq_time using
886 * the current rq->clock timestamp, except that would require using
887 * atomic ops.
888 */
889 if (irq_delta > delta)
890 irq_delta = delta;
891
892 rq->prev_irq_time += irq_delta;
893 delta -= irq_delta;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400894#endif
895#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
Ingo Molnarc5905af2012-02-24 08:31:31 +0100896 if (static_key_false((&paravirt_steal_rq_enabled))) {
Glauber Costa095c0aa2011-07-11 15:28:18 -0400897 steal = paravirt_steal_clock(cpu_of(rq));
898 steal -= rq->prev_steal_time_rq;
899
900 if (unlikely(steal > delta))
901 steal = delta;
902
Glauber Costa095c0aa2011-07-11 15:28:18 -0400903 rq->prev_steal_time_rq += steal;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400904 delta -= steal;
905 }
906#endif
907
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100908 rq->clock_task += delta;
909
Glauber Costa095c0aa2011-07-11 15:28:18 -0400910#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -0400911 if ((irq_delta + steal) && sched_feat(NONTASK_CAPACITY))
Glauber Costa095c0aa2011-07-11 15:28:18 -0400912 sched_rt_avg_update(rq, irq_delta + steal);
913#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700914}
915
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200916void sched_set_stop_task(int cpu, struct task_struct *stop)
917{
918 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
919 struct task_struct *old_stop = cpu_rq(cpu)->stop;
920
921 if (stop) {
922 /*
923 * Make it appear like a SCHED_FIFO task, its something
924 * userspace knows about and won't get confused about.
925 *
926 * Also, it will make PI more or less work without too
927 * much confusion -- but then, stop work should not
928 * rely on PI working anyway.
929 */
930 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
931
932 stop->sched_class = &stop_sched_class;
933 }
934
935 cpu_rq(cpu)->stop = stop;
936
937 if (old_stop) {
938 /*
939 * Reset it back to a normal scheduling class so that
940 * it can die in pieces.
941 */
942 old_stop->sched_class = &rt_sched_class;
943 }
944}
945
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100946/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200947 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200948 */
Ingo Molnar14531182007-07-09 18:51:59 +0200949static inline int __normal_prio(struct task_struct *p)
950{
Ingo Molnardd41f592007-07-09 18:51:59 +0200951 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200952}
953
954/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700955 * Calculate the expected normal priority: i.e. priority
956 * without taking RT-inheritance into account. Might be
957 * boosted by interactivity modifiers. Changes upon fork,
958 * setprio syscalls, and whenever the interactivity
959 * estimator recalculates.
960 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700961static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700962{
963 int prio;
964
Dario Faggioliaab03e02013-11-28 11:14:43 +0100965 if (task_has_dl_policy(p))
966 prio = MAX_DL_PRIO-1;
967 else if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700968 prio = MAX_RT_PRIO-1 - p->rt_priority;
969 else
970 prio = __normal_prio(p);
971 return prio;
972}
973
974/*
975 * Calculate the current priority, i.e. the priority
976 * taken into account by the scheduler. This value might
977 * be boosted by RT tasks, or might be boosted by
978 * interactivity modifiers. Will be RT if the task got
979 * RT-boosted. If not then it returns p->normal_prio.
980 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700981static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700982{
983 p->normal_prio = normal_prio(p);
984 /*
985 * If we are RT tasks or we were boosted to RT priority,
986 * keep the priority unchanged. Otherwise, update priority
987 * to the normal priority:
988 */
989 if (!rt_prio(p->prio))
990 return p->normal_prio;
991 return p->prio;
992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994/**
995 * task_curr - is this task currently executing on a CPU?
996 * @p: the task in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +0200997 *
998 * Return: 1 if the task is currently executing. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001000inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
1002 return cpu_curr(task_cpu(p)) == p;
1003}
1004
Steven Rostedtcb469842008-01-25 21:08:22 +01001005static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1006 const struct sched_class *prev_class,
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001007 int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01001008{
1009 if (prev_class != p->sched_class) {
1010 if (prev_class->switched_from)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001011 prev_class->switched_from(rq, p);
1012 p->sched_class->switched_to(rq, p);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01001013 } else if (oldprio != p->prio || dl_task(p))
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001014 p->sched_class->prio_changed(rq, p, oldprio);
Steven Rostedtcb469842008-01-25 21:08:22 +01001015}
1016
Peter Zijlstra029632f2011-10-25 10:00:11 +02001017void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001018{
1019 const struct sched_class *class;
1020
1021 if (p->sched_class == rq->curr->sched_class) {
1022 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
1023 } else {
1024 for_each_class(class) {
1025 if (class == rq->curr->sched_class)
1026 break;
1027 if (class == p->sched_class) {
1028 resched_task(rq->curr);
1029 break;
1030 }
1031 }
1032 }
1033
1034 /*
1035 * A queue event has occurred, and we're going to schedule. In
1036 * this case, we can save a useless back to back clock update.
1037 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001038 if (rq->curr->on_rq && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01001039 rq->skip_clock_update = 1;
1040}
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02001043void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001044{
Peter Zijlstrae2912002009-12-16 18:04:36 +01001045#ifdef CONFIG_SCHED_DEBUG
1046 /*
1047 * We should never call set_task_cpu() on a blocked task,
1048 * ttwu() will sort out the placement.
1049 */
Peter Zijlstra077614e2009-12-17 13:16:31 +01001050 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
Peter Zijlstra01028742013-08-14 14:55:46 +02001051 !(task_preempt_count(p) & PREEMPT_ACTIVE));
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001052
1053#ifdef CONFIG_LOCKDEP
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001054 /*
1055 * The caller should hold either p->pi_lock or rq->lock, when changing
1056 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
1057 *
1058 * sched_move_task() holds both and thus holding either pins the cgroup,
Peter Zijlstra8323f262012-06-22 13:36:05 +02001059 * see task_group().
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02001060 *
1061 * Furthermore, all task_rq users should acquire both locks, see
1062 * task_rq_lock().
1063 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001064 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
1065 lockdep_is_held(&task_rq(p)->lock)));
1066#endif
Peter Zijlstrae2912002009-12-16 18:04:36 +01001067#endif
1068
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08001069 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01001070
Peter Zijlstra0c697742009-12-22 15:43:19 +01001071 if (task_cpu(p) != new_cpu) {
Paul Turner0a74bef2012-10-04 13:18:30 +02001072 if (p->sched_class->migrate_task_rq)
1073 p->sched_class->migrate_task_rq(p, new_cpu);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001074 p->se.nr_migrations++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001075 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001076 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001077
1078 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001079}
1080
Peter Zijlstraac66f542013-10-07 11:29:16 +01001081static void __migrate_swap_task(struct task_struct *p, int cpu)
1082{
1083 if (p->on_rq) {
1084 struct rq *src_rq, *dst_rq;
1085
1086 src_rq = task_rq(p);
1087 dst_rq = cpu_rq(cpu);
1088
1089 deactivate_task(src_rq, p, 0);
1090 set_task_cpu(p, cpu);
1091 activate_task(dst_rq, p, 0);
1092 check_preempt_curr(dst_rq, p, 0);
1093 } else {
1094 /*
1095 * Task isn't running anymore; make it appear like we migrated
1096 * it before it went to sleep. This means on wakeup we make the
1097 * previous cpu our targer instead of where it really is.
1098 */
1099 p->wake_cpu = cpu;
1100 }
1101}
1102
1103struct migration_swap_arg {
1104 struct task_struct *src_task, *dst_task;
1105 int src_cpu, dst_cpu;
1106};
1107
1108static int migrate_swap_stop(void *data)
1109{
1110 struct migration_swap_arg *arg = data;
1111 struct rq *src_rq, *dst_rq;
1112 int ret = -EAGAIN;
1113
1114 src_rq = cpu_rq(arg->src_cpu);
1115 dst_rq = cpu_rq(arg->dst_cpu);
1116
Peter Zijlstra74602312013-10-10 20:17:22 +02001117 double_raw_lock(&arg->src_task->pi_lock,
1118 &arg->dst_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001119 double_rq_lock(src_rq, dst_rq);
1120 if (task_cpu(arg->dst_task) != arg->dst_cpu)
1121 goto unlock;
1122
1123 if (task_cpu(arg->src_task) != arg->src_cpu)
1124 goto unlock;
1125
1126 if (!cpumask_test_cpu(arg->dst_cpu, tsk_cpus_allowed(arg->src_task)))
1127 goto unlock;
1128
1129 if (!cpumask_test_cpu(arg->src_cpu, tsk_cpus_allowed(arg->dst_task)))
1130 goto unlock;
1131
1132 __migrate_swap_task(arg->src_task, arg->dst_cpu);
1133 __migrate_swap_task(arg->dst_task, arg->src_cpu);
1134
1135 ret = 0;
1136
1137unlock:
1138 double_rq_unlock(src_rq, dst_rq);
Peter Zijlstra74602312013-10-10 20:17:22 +02001139 raw_spin_unlock(&arg->dst_task->pi_lock);
1140 raw_spin_unlock(&arg->src_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001141
1142 return ret;
1143}
1144
1145/*
1146 * Cross migrate two tasks
1147 */
1148int migrate_swap(struct task_struct *cur, struct task_struct *p)
1149{
1150 struct migration_swap_arg arg;
1151 int ret = -EINVAL;
1152
Peter Zijlstraac66f542013-10-07 11:29:16 +01001153 arg = (struct migration_swap_arg){
1154 .src_task = cur,
1155 .src_cpu = task_cpu(cur),
1156 .dst_task = p,
1157 .dst_cpu = task_cpu(p),
1158 };
1159
1160 if (arg.src_cpu == arg.dst_cpu)
1161 goto out;
1162
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001163 /*
1164 * These three tests are all lockless; this is OK since all of them
1165 * will be re-checked with proper locks held further down the line.
1166 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01001167 if (!cpu_active(arg.src_cpu) || !cpu_active(arg.dst_cpu))
1168 goto out;
1169
1170 if (!cpumask_test_cpu(arg.dst_cpu, tsk_cpus_allowed(arg.src_task)))
1171 goto out;
1172
1173 if (!cpumask_test_cpu(arg.src_cpu, tsk_cpus_allowed(arg.dst_task)))
1174 goto out;
1175
Mel Gorman286549d2014-01-21 15:51:03 -08001176 trace_sched_swap_numa(cur, arg.src_cpu, p, arg.dst_cpu);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001177 ret = stop_two_cpus(arg.dst_cpu, arg.src_cpu, migrate_swap_stop, &arg);
1178
1179out:
Peter Zijlstraac66f542013-10-07 11:29:16 +01001180 return ret;
1181}
1182
Tejun Heo969c7922010-05-06 18:49:21 +02001183struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07001184 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001186};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Tejun Heo969c7922010-05-06 18:49:21 +02001188static int migration_cpu_stop(void *data);
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 * wait_task_inactive - wait for a thread to unschedule.
1192 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001193 * If @match_state is nonzero, it's the @p->state value just checked and
1194 * not expected to change. If it changes, i.e. @p might have woken up,
1195 * then return zero. When we succeed in waiting for @p to be off its CPU,
1196 * we return a positive number (its total switch count). If a second call
1197 * a short while later returns the same number, the caller can be sure that
1198 * @p has remained unscheduled the whole time.
1199 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * The caller must ensure that the task *will* unschedule sometime soon,
1201 * else this function might spin for a *long* time. This function can't
1202 * be called with interrupts off, or it may introduce deadlock with
1203 * smp_call_function() if an IPI is sent by the same process we are
1204 * waiting to become inactive.
1205 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001206unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001209 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001210 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001211 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Andi Kleen3a5c3592007-10-15 17:00:14 +02001213 for (;;) {
1214 /*
1215 * We do the initial early heuristics without holding
1216 * any task-queue locks at all. We'll only try to get
1217 * the runqueue lock when things look like they will
1218 * work out!
1219 */
1220 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001221
Andi Kleen3a5c3592007-10-15 17:00:14 +02001222 /*
1223 * If the task is actively running on another CPU
1224 * still, just relax and busy-wait without holding
1225 * any locks.
1226 *
1227 * NOTE! Since we don't hold any locks, it's not
1228 * even sure that "rq" stays as the right runqueue!
1229 * But we don't care, since "task_running()" will
1230 * return false if the runqueue has changed and p
1231 * is actually now running somewhere else!
1232 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001233 while (task_running(rq, p)) {
1234 if (match_state && unlikely(p->state != match_state))
1235 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001236 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001237 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001238
Andi Kleen3a5c3592007-10-15 17:00:14 +02001239 /*
1240 * Ok, time to look more closely! We need the rq
1241 * lock now, to be *sure*. If we're wrong, we'll
1242 * just go back and repeat.
1243 */
1244 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02001245 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001246 running = task_running(rq, p);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001247 on_rq = p->on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001248 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001249 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001250 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001251 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001252
Andi Kleen3a5c3592007-10-15 17:00:14 +02001253 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001254 * If it changed from the expected state, bail out now.
1255 */
1256 if (unlikely(!ncsw))
1257 break;
1258
1259 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001260 * Was it really running after all now that we
1261 * checked with the proper locks actually held?
1262 *
1263 * Oops. Go back and try again..
1264 */
1265 if (unlikely(running)) {
1266 cpu_relax();
1267 continue;
1268 }
1269
1270 /*
1271 * It's not enough that it's not actively running,
1272 * it must be off the runqueue _entirely_, and not
1273 * preempted!
1274 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00001275 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02001276 * running right now), it's preempted, and we should
1277 * yield - it could be a while.
1278 */
1279 if (unlikely(on_rq)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00001280 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
1281
1282 set_current_state(TASK_UNINTERRUPTIBLE);
1283 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001284 continue;
1285 }
1286
1287 /*
1288 * Ahh, all good. It wasn't running, and it wasn't
1289 * runnable, which means that it will never become
1290 * running in the future either. We're all done!
1291 */
1292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07001294
1295 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
1298/***
1299 * kick_process - kick a running thread to enter/exit the kernel
1300 * @p: the to-be-kicked thread
1301 *
1302 * Cause a process which is running on another CPU to enter
1303 * kernel-mode, without any delay. (to get signals handled.)
1304 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001305 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 * because all it wants to ensure is that the remote task enters
1307 * the kernel. If the IPI races and the task has been migrated
1308 * to another CPU then no harm is done and the purpose has been
1309 * achieved as well.
1310 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001311void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 int cpu;
1314
1315 preempt_disable();
1316 cpu = task_cpu(p);
1317 if ((cpu != smp_processor_id()) && task_curr(p))
1318 smp_send_reschedule(cpu);
1319 preempt_enable();
1320}
Rusty Russellb43e3522009-06-12 22:27:00 -06001321EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07001322#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001324#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01001325/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001326 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01001327 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001328static int select_fallback_rq(int cpu, struct task_struct *p)
1329{
Tang Chenaa00d892013-02-22 16:33:33 -08001330 int nid = cpu_to_node(cpu);
1331 const struct cpumask *nodemask = NULL;
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001332 enum { cpuset, possible, fail } state = cpuset;
1333 int dest_cpu;
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001334
Tang Chenaa00d892013-02-22 16:33:33 -08001335 /*
1336 * If the node that the cpu is on has been offlined, cpu_to_node()
1337 * will return -1. There is no cpu on the node, and we should
1338 * select the cpu on the other node.
1339 */
1340 if (nid != -1) {
1341 nodemask = cpumask_of_node(nid);
1342
1343 /* Look for allowed, online CPU in same node. */
1344 for_each_cpu(dest_cpu, nodemask) {
1345 if (!cpu_online(dest_cpu))
1346 continue;
1347 if (!cpu_active(dest_cpu))
1348 continue;
1349 if (cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
1350 return dest_cpu;
1351 }
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001352 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001353
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001354 for (;;) {
1355 /* Any allowed, online CPU? */
Srivatsa S. Bhate3831ed2012-03-30 19:40:28 +05301356 for_each_cpu(dest_cpu, tsk_cpus_allowed(p)) {
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001357 if (!cpu_online(dest_cpu))
1358 continue;
1359 if (!cpu_active(dest_cpu))
1360 continue;
1361 goto out;
1362 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001363
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001364 switch (state) {
1365 case cpuset:
1366 /* No more Mr. Nice Guy. */
1367 cpuset_cpus_allowed_fallback(p);
1368 state = possible;
1369 break;
1370
1371 case possible:
1372 do_set_cpus_allowed(p, cpu_possible_mask);
1373 state = fail;
1374 break;
1375
1376 case fail:
1377 BUG();
1378 break;
1379 }
1380 }
1381
1382out:
1383 if (state != cpuset) {
1384 /*
1385 * Don't tell them about moving exiting tasks or
1386 * kernel threads (both mm NULL), since they never
1387 * leave kernel.
1388 */
1389 if (p->mm && printk_ratelimit()) {
John Stultzaac74dc2014-06-04 16:11:40 -07001390 printk_deferred("process %d (%s) no longer affine to cpu%d\n",
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001391 task_pid_nr(p), p->comm, cpu);
1392 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001393 }
1394
1395 return dest_cpu;
1396}
1397
Peter Zijlstrae2912002009-12-16 18:04:36 +01001398/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001399 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01001400 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001401static inline
Peter Zijlstraac66f542013-10-07 11:29:16 +01001402int select_task_rq(struct task_struct *p, int cpu, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001403{
Peter Zijlstraac66f542013-10-07 11:29:16 +01001404 cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001405
1406 /*
1407 * In order not to call set_task_cpu() on a blocking task we need
1408 * to rely on ttwu() to place the task on a valid ->cpus_allowed
1409 * cpu.
1410 *
1411 * Since this is common to all placement strategies, this lives here.
1412 *
1413 * [ this allows ->select_task() to simply return task_cpu(p) and
1414 * not worry about this generic constraint ]
1415 */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02001416 if (unlikely(!cpumask_test_cpu(cpu, tsk_cpus_allowed(p)) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01001417 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001418 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001419
1420 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001421}
Mike Galbraith09a40af2010-04-15 07:29:59 +02001422
1423static void update_avg(u64 *avg, u64 sample)
1424{
1425 s64 diff = sample - *avg;
1426 *avg += diff >> 3;
1427}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001428#endif
1429
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001430static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001431ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001432{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001433#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001434 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09001435
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001436#ifdef CONFIG_SMP
1437 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09001438
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001439 if (cpu == this_cpu) {
1440 schedstat_inc(rq, ttwu_local);
1441 schedstat_inc(p, se.statistics.nr_wakeups_local);
1442 } else {
1443 struct sched_domain *sd;
1444
1445 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001446 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001447 for_each_domain(this_cpu, sd) {
1448 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
1449 schedstat_inc(sd, ttwu_wake_remote);
1450 break;
1451 }
1452 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001453 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001454 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001455
1456 if (wake_flags & WF_MIGRATED)
1457 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
1458
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001459#endif /* CONFIG_SMP */
1460
1461 schedstat_inc(rq, ttwu_count);
1462 schedstat_inc(p, se.statistics.nr_wakeups);
1463
1464 if (wake_flags & WF_SYNC)
1465 schedstat_inc(p, se.statistics.nr_wakeups_sync);
1466
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001467#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09001468}
1469
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001470static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001471{
Tejun Heo9ed38112009-12-03 15:08:03 +09001472 activate_task(rq, p, en_flags);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001473 p->on_rq = 1;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02001474
1475 /* if a worker is waking up, notify workqueue */
1476 if (p->flags & PF_WQ_WORKER)
1477 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09001478}
1479
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001480/*
1481 * Mark the task runnable and perform wakeup-preemption.
1482 */
Peter Zijlstra89363382011-04-05 17:23:42 +02001483static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001484ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001485{
Tejun Heo9ed38112009-12-03 15:08:03 +09001486 check_preempt_curr(rq, p, wake_flags);
Peter Zijlstraa8d7ad52013-03-14 10:48:39 +01001487 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09001488
1489 p->state = TASK_RUNNING;
1490#ifdef CONFIG_SMP
1491 if (p->sched_class->task_woken)
1492 p->sched_class->task_woken(rq, p);
1493
Steven Rostedte69c6342010-12-06 17:10:31 -05001494 if (rq->idle_stamp) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001495 u64 delta = rq_clock(rq) - rq->idle_stamp;
Jason Low9bd721c2013-09-13 11:26:52 -07001496 u64 max = 2*rq->max_idle_balance_cost;
Tejun Heo9ed38112009-12-03 15:08:03 +09001497
Jason Lowabfafa52013-09-13 11:26:51 -07001498 update_avg(&rq->avg_idle, delta);
1499
1500 if (rq->avg_idle > max)
Tejun Heo9ed38112009-12-03 15:08:03 +09001501 rq->avg_idle = max;
Jason Lowabfafa52013-09-13 11:26:51 -07001502
Tejun Heo9ed38112009-12-03 15:08:03 +09001503 rq->idle_stamp = 0;
1504 }
1505#endif
1506}
1507
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001508static void
1509ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
1510{
1511#ifdef CONFIG_SMP
1512 if (p->sched_contributes_to_load)
1513 rq->nr_uninterruptible--;
1514#endif
1515
1516 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
1517 ttwu_do_wakeup(rq, p, wake_flags);
1518}
1519
1520/*
1521 * Called in case the task @p isn't fully descheduled from its runqueue,
1522 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
1523 * since all we need to do is flip p->state to TASK_RUNNING, since
1524 * the task is still ->on_rq.
1525 */
1526static int ttwu_remote(struct task_struct *p, int wake_flags)
1527{
1528 struct rq *rq;
1529 int ret = 0;
1530
1531 rq = __task_rq_lock(p);
1532 if (p->on_rq) {
Frederic Weisbecker1ad4ec02013-04-12 01:51:00 +02001533 /* check_preempt_curr() may use rq clock */
1534 update_rq_clock(rq);
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001535 ttwu_do_wakeup(rq, p, wake_flags);
1536 ret = 1;
1537 }
1538 __task_rq_unlock(rq);
1539
1540 return ret;
1541}
1542
Peter Zijlstra317f3942011-04-05 17:23:58 +02001543#ifdef CONFIG_SMP
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001544void sched_ttwu_pending(void)
Peter Zijlstra317f3942011-04-05 17:23:58 +02001545{
1546 struct rq *rq = this_rq();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001547 struct llist_node *llist = llist_del_all(&rq->wake_list);
1548 struct task_struct *p;
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001549 unsigned long flags;
Peter Zijlstra317f3942011-04-05 17:23:58 +02001550
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001551 if (!llist)
1552 return;
1553
1554 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001555
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001556 while (llist) {
1557 p = llist_entry(llist, struct task_struct, wake_entry);
1558 llist = llist_next(llist);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001559 ttwu_do_activate(rq, p, 0);
1560 }
1561
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001562 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001563}
1564
1565void scheduler_ipi(void)
1566{
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001567 /*
1568 * Fold TIF_NEED_RESCHED into the preempt_count; anybody setting
1569 * TIF_NEED_RESCHED remotely (for the first time) will also send
1570 * this IPI.
1571 */
Peter Zijlstra8cb75e02013-11-20 12:22:37 +01001572 preempt_fold_need_resched();
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001573
Frederic Weisbeckerfd2ac4f2014-03-18 21:12:53 +01001574 if (llist_empty(&this_rq()->wake_list) && !got_nohz_idle_kick())
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001575 return;
1576
1577 /*
1578 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
1579 * traditionally all their work was done from the interrupt return
1580 * path. Now that we actually do some work, we need to make sure
1581 * we do call them.
1582 *
1583 * Some archs already do call them, luckily irq_enter/exit nest
1584 * properly.
1585 *
1586 * Arguably we should visit all archs and update all handlers,
1587 * however a fair share of IPIs are still resched only so this would
1588 * somewhat pessimize the simple resched case.
1589 */
1590 irq_enter();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001591 sched_ttwu_pending();
Suresh Siddhaca380622011-10-03 15:09:00 -07001592
1593 /*
1594 * Check if someone kicked us for doing the nohz idle load balance.
1595 */
Vincent Guittot873b4c62013-06-05 10:13:11 +02001596 if (unlikely(got_nohz_idle_kick())) {
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001597 this_rq()->idle_balance = 1;
Suresh Siddhaca380622011-10-03 15:09:00 -07001598 raise_softirq_irqoff(SCHED_SOFTIRQ);
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001599 }
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001600 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02001601}
1602
1603static void ttwu_queue_remote(struct task_struct *p, int cpu)
1604{
Peter Zijlstrae3baac42014-06-04 10:31:18 -07001605 struct rq *rq = cpu_rq(cpu);
1606
1607 if (llist_add(&p->wake_entry, &cpu_rq(cpu)->wake_list)) {
1608 if (!set_nr_if_polling(rq->idle))
1609 smp_send_reschedule(cpu);
1610 else
1611 trace_sched_wake_idle_without_ipi(cpu);
1612 }
Peter Zijlstra317f3942011-04-05 17:23:58 +02001613}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001614
Peter Zijlstra39be3502012-01-26 12:44:34 +01001615bool cpus_share_cache(int this_cpu, int that_cpu)
Peter Zijlstra518cd622011-12-07 15:07:31 +01001616{
1617 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
1618}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001619#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001620
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001621static void ttwu_queue(struct task_struct *p, int cpu)
1622{
1623 struct rq *rq = cpu_rq(cpu);
1624
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00001625#if defined(CONFIG_SMP)
Peter Zijlstra39be3502012-01-26 12:44:34 +01001626 if (sched_feat(TTWU_QUEUE) && !cpus_share_cache(smp_processor_id(), cpu)) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02001627 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001628 ttwu_queue_remote(p, cpu);
1629 return;
1630 }
1631#endif
1632
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001633 raw_spin_lock(&rq->lock);
1634 ttwu_do_activate(rq, p, 0);
1635 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09001636}
1637
1638/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09001640 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09001642 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 *
1644 * Put it on the run-queue if it's not already there. The "current"
1645 * thread is always on the run-queue (except when the actual
1646 * re-schedule is in progress), and as such you're allowed to do
1647 * the simpler "current->state = TASK_RUNNING" to mark yourself
1648 * runnable without the overhead of this.
1649 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02001650 * Return: %true if @p was woken up, %false if it was already running.
Tejun Heo9ed38112009-12-03 15:08:03 +09001651 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001653static int
1654try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001657 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001658
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02001659 /*
1660 * If we are going to wake up a thread waiting for CONDITION we
1661 * need to ensure that CONDITION=1 done by the caller can not be
1662 * reordered with p->state check below. This pairs with mb() in
1663 * set_current_state() the waiting thread does.
1664 */
1665 smp_mb__before_spinlock();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001666 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001667 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 goto out;
1669
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001670 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001672
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001673 if (p->on_rq && ttwu_remote(p, wake_flags))
1674 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001677 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001678 * If the owning (remote) cpu is still in the middle of schedule() with
1679 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001680 */
Peter Zijlstraf3e94782012-09-12 11:22:00 +02001681 while (p->on_cpu)
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001682 cpu_relax();
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001683 /*
1684 * Pairs with the smp_wmb() in finish_lock_switch().
1685 */
1686 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02001688 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001689 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001690
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001691 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02001692 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01001693
Peter Zijlstraac66f542013-10-07 11:29:16 +01001694 cpu = select_task_rq(p, p->wake_cpu, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001695 if (task_cpu(p) != cpu) {
1696 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02001697 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001701 ttwu_queue(p, cpu);
1702stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001703 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001705 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 return success;
1708}
1709
David Howells50fa6102009-04-28 15:01:38 +01001710/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02001711 * try_to_wake_up_local - try to wake up a local task with rq lock held
1712 * @p: the thread to be awakened
1713 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02001714 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02001715 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02001716 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02001717 */
1718static void try_to_wake_up_local(struct task_struct *p)
1719{
1720 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001721
Tejun Heo383efcd2013-03-18 12:22:34 -07001722 if (WARN_ON_ONCE(rq != this_rq()) ||
1723 WARN_ON_ONCE(p == current))
1724 return;
1725
Tejun Heo21aa9af2010-06-08 21:40:37 +02001726 lockdep_assert_held(&rq->lock);
1727
Peter Zijlstra2acca552011-04-05 17:23:50 +02001728 if (!raw_spin_trylock(&p->pi_lock)) {
1729 raw_spin_unlock(&rq->lock);
1730 raw_spin_lock(&p->pi_lock);
1731 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001732 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02001733
Tejun Heo21aa9af2010-06-08 21:40:37 +02001734 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02001735 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02001736
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001737 if (!p->on_rq)
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001738 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
1739
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001740 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001741 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02001742out:
1743 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001744}
1745
1746/**
David Howells50fa6102009-04-28 15:01:38 +01001747 * wake_up_process - Wake up a specific process
1748 * @p: The process to be woken up.
1749 *
1750 * Attempt to wake up the nominated process and move it to the set of runnable
Yacine Belkadie69f6182013-07-12 20:45:47 +02001751 * processes.
1752 *
1753 * Return: 1 if the process was woken up, 0 if it was already running.
David Howells50fa6102009-04-28 15:01:38 +01001754 *
1755 * It may be assumed that this function implies a write memory barrier before
1756 * changing the task state if and only if any tasks are woken up.
1757 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001758int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Oleg Nesterov9067ac82013-01-21 20:48:17 +01001760 WARN_ON(task_is_stopped_or_traced(p));
1761 return try_to_wake_up(p, TASK_NORMAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763EXPORT_SYMBOL(wake_up_process);
1764
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001765int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
1767 return try_to_wake_up(p, state, 0);
1768}
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770/*
1771 * Perform scheduler related setup for a newly forked process p.
1772 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001773 *
1774 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 */
Rik van Riel5e1576e2013-10-07 11:29:26 +01001776static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001778 p->on_rq = 0;
1779
1780 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001781 p->se.exec_start = 0;
1782 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001783 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001784 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001785 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001786 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001787
1788#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03001789 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001790#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001791
Dario Faggioliaab03e02013-11-28 11:14:43 +01001792 RB_CLEAR_NODE(&p->dl.rb_node);
1793 hrtimer_init(&p->dl.dl_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1794 p->dl.dl_runtime = p->dl.runtime = 0;
1795 p->dl.dl_deadline = p->dl.deadline = 0;
Harald Gustafsson755378a2013-11-07 14:43:40 +01001796 p->dl.dl_period = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001797 p->dl.flags = 0;
1798
Peter Zijlstrafa717062008-01-25 21:08:27 +01001799 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07001800
Avi Kivitye107be32007-07-26 13:40:43 +02001801#ifdef CONFIG_PREEMPT_NOTIFIERS
1802 INIT_HLIST_HEAD(&p->preempt_notifiers);
1803#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001804
1805#ifdef CONFIG_NUMA_BALANCING
1806 if (p->mm && atomic_read(&p->mm->mm_users) == 1) {
Mel Gorman7e8d16b2013-10-07 11:28:54 +01001807 p->mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001808 p->mm->numa_scan_seq = 0;
1809 }
1810
Rik van Riel5e1576e2013-10-07 11:29:26 +01001811 if (clone_flags & CLONE_VM)
1812 p->numa_preferred_nid = current->numa_preferred_nid;
1813 else
1814 p->numa_preferred_nid = -1;
1815
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001816 p->node_stamp = 0ULL;
1817 p->numa_scan_seq = p->mm ? p->mm->numa_scan_seq : 0;
Peter Zijlstra4b96a292012-10-25 14:16:47 +02001818 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001819 p->numa_work.next = &p->numa_work;
Rik van Rielff1df892014-01-27 17:03:41 -05001820 p->numa_faults_memory = NULL;
1821 p->numa_faults_buffer_memory = NULL;
Rik van Riel7e2703e2014-01-27 17:03:45 -05001822 p->last_task_numa_placement = 0;
1823 p->last_sum_exec_runtime = 0;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01001824
1825 INIT_LIST_HEAD(&p->numa_entry);
1826 p->numa_group = NULL;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001827#endif /* CONFIG_NUMA_BALANCING */
Ingo Molnardd41f592007-07-09 18:51:59 +02001828}
1829
Mel Gorman1a687c22012-11-22 11:16:36 +00001830#ifdef CONFIG_NUMA_BALANCING
Mel Gorman3105b862012-11-23 11:23:49 +00001831#ifdef CONFIG_SCHED_DEBUG
Mel Gorman1a687c22012-11-22 11:16:36 +00001832void set_numabalancing_state(bool enabled)
1833{
1834 if (enabled)
1835 sched_feat_set("NUMA");
1836 else
1837 sched_feat_set("NO_NUMA");
1838}
Mel Gorman3105b862012-11-23 11:23:49 +00001839#else
1840__read_mostly bool numabalancing_enabled;
1841
1842void set_numabalancing_state(bool enabled)
1843{
1844 numabalancing_enabled = enabled;
1845}
1846#endif /* CONFIG_SCHED_DEBUG */
Andi Kleen54a43d52014-01-23 15:53:13 -08001847
1848#ifdef CONFIG_PROC_SYSCTL
1849int sysctl_numa_balancing(struct ctl_table *table, int write,
1850 void __user *buffer, size_t *lenp, loff_t *ppos)
1851{
1852 struct ctl_table t;
1853 int err;
1854 int state = numabalancing_enabled;
1855
1856 if (write && !capable(CAP_SYS_ADMIN))
1857 return -EPERM;
1858
1859 t = *table;
1860 t.data = &state;
1861 err = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
1862 if (err < 0)
1863 return err;
1864 if (write)
1865 set_numabalancing_state(state);
1866 return err;
1867}
1868#endif
1869#endif
Mel Gorman1a687c22012-11-22 11:16:36 +00001870
Ingo Molnardd41f592007-07-09 18:51:59 +02001871/*
1872 * fork()/clone()-time setup:
1873 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001874int sched_fork(unsigned long clone_flags, struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02001875{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001876 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001877 int cpu = get_cpu();
1878
Rik van Riel5e1576e2013-10-07 11:29:26 +01001879 __sched_fork(clone_flags, p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001880 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01001881 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001882 * nobody will actually run it, and a signal or other external
1883 * event cannot wake it up and insert it on the runqueue either.
1884 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01001885 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001886
Ingo Molnarb29739f2006-06-27 02:54:51 -07001887 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02001888 * Make sure we do not leak PI boosting priority to the child.
1889 */
1890 p->prio = current->normal_prio;
1891
1892 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001893 * Revert to default priority/policy on fork if requested.
1894 */
1895 if (unlikely(p->sched_reset_on_fork)) {
Dario Faggioliaab03e02013-11-28 11:14:43 +01001896 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001897 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001898 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02001899 p->rt_priority = 0;
1900 } else if (PRIO_TO_NICE(p->static_prio) < 0)
1901 p->static_prio = NICE_TO_PRIO(0);
1902
1903 p->prio = p->normal_prio = __normal_prio(p);
1904 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001905
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001906 /*
1907 * We don't need the reset flag anymore after the fork. It has
1908 * fulfilled its duty:
1909 */
1910 p->sched_reset_on_fork = 0;
1911 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02001912
Dario Faggioliaab03e02013-11-28 11:14:43 +01001913 if (dl_prio(p->prio)) {
1914 put_cpu();
1915 return -EAGAIN;
1916 } else if (rt_prio(p->prio)) {
1917 p->sched_class = &rt_sched_class;
1918 } else {
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001919 p->sched_class = &fair_sched_class;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001920 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001921
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001922 if (p->sched_class->task_fork)
1923 p->sched_class->task_fork(p);
1924
Peter Zijlstra86951592010-06-22 11:44:53 +02001925 /*
1926 * The child is not yet in the pid-hash so no cgroup attach races,
1927 * and the cgroup is pinned to this child due to cgroup_fork()
1928 * is ran before sched_fork().
1929 *
1930 * Silence PROVE_RCU.
1931 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001932 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001933 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001934 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001935
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001936#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001937 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001938 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001940#if defined(CONFIG_SMP)
1941 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07001942#endif
Peter Zijlstra01028742013-08-14 14:55:46 +02001943 init_task_preempt_count(p);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001944#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05001945 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001946 RB_CLEAR_NODE(&p->pushable_dl_tasks);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001947#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05001948
Nick Piggin476d1392005-06-25 14:57:29 -07001949 put_cpu();
Dario Faggioliaab03e02013-11-28 11:14:43 +01001950 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952
Dario Faggioli332ac172013-11-07 14:43:45 +01001953unsigned long to_ratio(u64 period, u64 runtime)
1954{
1955 if (runtime == RUNTIME_INF)
1956 return 1ULL << 20;
1957
1958 /*
1959 * Doing this here saves a lot of checks in all
1960 * the calling paths, and returning zero seems
1961 * safe for them anyway.
1962 */
1963 if (period == 0)
1964 return 0;
1965
1966 return div64_u64(runtime << 20, period);
1967}
1968
1969#ifdef CONFIG_SMP
1970inline struct dl_bw *dl_bw_of(int i)
1971{
1972 return &cpu_rq(i)->rd->dl_bw;
1973}
1974
Peter Zijlstrade212f12013-12-19 11:54:45 +01001975static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001976{
Peter Zijlstrade212f12013-12-19 11:54:45 +01001977 struct root_domain *rd = cpu_rq(i)->rd;
1978 int cpus = 0;
1979
1980 for_each_cpu_and(i, rd->span, cpu_active_mask)
1981 cpus++;
1982
1983 return cpus;
Dario Faggioli332ac172013-11-07 14:43:45 +01001984}
1985#else
1986inline struct dl_bw *dl_bw_of(int i)
1987{
1988 return &cpu_rq(i)->dl.dl_bw;
1989}
1990
Peter Zijlstrade212f12013-12-19 11:54:45 +01001991static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001992{
1993 return 1;
1994}
1995#endif
1996
1997static inline
1998void __dl_clear(struct dl_bw *dl_b, u64 tsk_bw)
1999{
2000 dl_b->total_bw -= tsk_bw;
2001}
2002
2003static inline
2004void __dl_add(struct dl_bw *dl_b, u64 tsk_bw)
2005{
2006 dl_b->total_bw += tsk_bw;
2007}
2008
2009static inline
2010bool __dl_overflow(struct dl_bw *dl_b, int cpus, u64 old_bw, u64 new_bw)
2011{
2012 return dl_b->bw != -1 &&
2013 dl_b->bw * cpus < dl_b->total_bw - old_bw + new_bw;
2014}
2015
2016/*
2017 * We must be sure that accepting a new task (or allowing changing the
2018 * parameters of an existing one) is consistent with the bandwidth
2019 * constraints. If yes, this function also accordingly updates the currently
2020 * allocated bandwidth to reflect the new situation.
2021 *
2022 * This function is called while holding p's rq->lock.
2023 */
2024static int dl_overflow(struct task_struct *p, int policy,
2025 const struct sched_attr *attr)
2026{
2027
2028 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
Steven Rostedt4df16382014-02-19 13:53:35 -05002029 u64 period = attr->sched_period ?: attr->sched_deadline;
Dario Faggioli332ac172013-11-07 14:43:45 +01002030 u64 runtime = attr->sched_runtime;
2031 u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
Peter Zijlstrade212f12013-12-19 11:54:45 +01002032 int cpus, err = -1;
Dario Faggioli332ac172013-11-07 14:43:45 +01002033
2034 if (new_bw == p->dl.dl_bw)
2035 return 0;
2036
2037 /*
2038 * Either if a task, enters, leave, or stays -deadline but changes
2039 * its parameters, we may need to update accordingly the total
2040 * allocated bandwidth of the container.
2041 */
2042 raw_spin_lock(&dl_b->lock);
Peter Zijlstrade212f12013-12-19 11:54:45 +01002043 cpus = dl_bw_cpus(task_cpu(p));
Dario Faggioli332ac172013-11-07 14:43:45 +01002044 if (dl_policy(policy) && !task_has_dl_policy(p) &&
2045 !__dl_overflow(dl_b, cpus, 0, new_bw)) {
2046 __dl_add(dl_b, new_bw);
2047 err = 0;
2048 } else if (dl_policy(policy) && task_has_dl_policy(p) &&
2049 !__dl_overflow(dl_b, cpus, p->dl.dl_bw, new_bw)) {
2050 __dl_clear(dl_b, p->dl.dl_bw);
2051 __dl_add(dl_b, new_bw);
2052 err = 0;
2053 } else if (!dl_policy(policy) && task_has_dl_policy(p)) {
2054 __dl_clear(dl_b, p->dl.dl_bw);
2055 err = 0;
2056 }
2057 raw_spin_unlock(&dl_b->lock);
2058
2059 return err;
2060}
2061
2062extern void init_dl_bw(struct dl_bw *dl_b);
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064/*
2065 * wake_up_new_task - wake up a newly created task for the first time.
2066 *
2067 * This function will do some initial scheduler statistics housekeeping
2068 * that must be done for every newly created context, then puts the task
2069 * on the runqueue and wakes it.
2070 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02002071void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002074 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002075
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002076 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002077#ifdef CONFIG_SMP
2078 /*
2079 * Fork balancing, do it here and not earlier because:
2080 * - cpus_allowed can change in the fork path
2081 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002082 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01002083 set_task_cpu(p, select_task_rq(p, task_cpu(p), SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002084#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Alex Shia75cdaa2013-06-20 10:18:47 +08002086 /* Initialize new task's runnable average */
2087 init_task_runnable_average(p);
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002088 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002089 activate_task(rq, p, 0);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002090 p->on_rq = 1;
Peter Zijlstra89363382011-04-05 17:23:42 +02002091 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02002092 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002093#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002094 if (p->sched_class->task_woken)
2095 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002096#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002097 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Avi Kivitye107be32007-07-26 13:40:43 +02002100#ifdef CONFIG_PREEMPT_NOTIFIERS
2101
2102/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002103 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002104 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002105 */
2106void preempt_notifier_register(struct preempt_notifier *notifier)
2107{
2108 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2109}
2110EXPORT_SYMBOL_GPL(preempt_notifier_register);
2111
2112/**
2113 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002114 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002115 *
2116 * This is safe to call from within a preemption notifier.
2117 */
2118void preempt_notifier_unregister(struct preempt_notifier *notifier)
2119{
2120 hlist_del(&notifier->link);
2121}
2122EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2123
2124static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2125{
2126 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002127
Sasha Levinb67bfe02013-02-27 17:06:00 -08002128 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002129 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2130}
2131
2132static void
2133fire_sched_out_preempt_notifiers(struct task_struct *curr,
2134 struct task_struct *next)
2135{
2136 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002137
Sasha Levinb67bfe02013-02-27 17:06:00 -08002138 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002139 notifier->ops->sched_out(notifier, next);
2140}
2141
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002142#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002143
2144static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2145{
2146}
2147
2148static void
2149fire_sched_out_preempt_notifiers(struct task_struct *curr,
2150 struct task_struct *next)
2151{
2152}
2153
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002154#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002157 * prepare_task_switch - prepare to switch tasks
2158 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002159 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002160 * @next: the task we are going to switch to.
2161 *
2162 * This is called with the rq lock held and interrupts off. It must
2163 * be paired with a subsequent finish_task_switch after the context
2164 * switch.
2165 *
2166 * prepare_task_switch sets up locking and calls architecture specific
2167 * hooks.
2168 */
Avi Kivitye107be32007-07-26 13:40:43 +02002169static inline void
2170prepare_task_switch(struct rq *rq, struct task_struct *prev,
2171 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002172{
Andrew Vagin895dd922012-07-12 14:14:29 +04002173 trace_sched_switch(prev, next);
Michael S. Tsirkin43148952013-09-22 17:20:54 +03002174 sched_info_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002175 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02002176 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002177 prepare_lock_switch(rq, next);
2178 prepare_arch_switch(next);
2179}
2180
2181/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002183 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 * @prev: the thread we just switched away from.
2185 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002186 * finish_task_switch must be called after the context switch, paired
2187 * with a prepare_task_switch call before the context switch.
2188 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2189 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 *
2191 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002192 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 * with the lock held can cause deadlocks; see schedule() for
2194 * details.)
2195 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002196static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 __releases(rq->lock)
2198{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002200 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 rq->prev_mm = NULL;
2203
2204 /*
2205 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002206 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002207 * schedule one last time. The schedule call will never return, and
2208 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002209 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 * still held, otherwise prev could be scheduled on another cpu, die
2211 * there before we look at prev->state, and then the reference would
2212 * be dropped twice.
2213 * Manfred Spraul <manfred@colorfullife.com>
2214 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002215 prev_state = prev->state;
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +02002216 vtime_task_switch(prev);
Nick Piggin4866cde2005-06-25 14:57:23 -07002217 finish_arch_switch(prev);
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002218 perf_event_task_sched_in(prev, current);
Nick Piggin4866cde2005-06-25 14:57:23 -07002219 finish_lock_switch(rq, prev);
Catalin Marinas01f23e12011-11-27 21:43:10 +00002220 finish_arch_post_lock_switch();
Steven Rostedte8fa1362008-01-25 21:08:05 +01002221
Avi Kivitye107be32007-07-26 13:40:43 +02002222 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (mm)
2224 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002225 if (unlikely(prev_state == TASK_DEAD)) {
Dario Faggiolie6c390f2013-11-07 14:43:35 +01002226 if (prev->sched_class->task_dead)
2227 prev->sched_class->task_dead(prev);
2228
bibo maoc6fd91f2006-03-26 01:38:20 -08002229 /*
2230 * Remove function-return probe instances associated with this
2231 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002232 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002233 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002235 }
Frederic Weisbecker99e5ada2013-04-20 17:11:50 +02002236
2237 tick_nohz_task_switch(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
Gregory Haskins3f029d32009-07-29 11:08:47 -04002240#ifdef CONFIG_SMP
2241
Gregory Haskins3f029d32009-07-29 11:08:47 -04002242/* rq->lock is NOT held, but preemption is disabled */
2243static inline void post_schedule(struct rq *rq)
2244{
2245 if (rq->post_schedule) {
2246 unsigned long flags;
2247
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002248 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002249 if (rq->curr->sched_class->post_schedule)
2250 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002251 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002252
2253 rq->post_schedule = 0;
2254 }
2255}
2256
2257#else
2258
Gregory Haskins3f029d32009-07-29 11:08:47 -04002259static inline void post_schedule(struct rq *rq)
2260{
2261}
2262
2263#endif
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265/**
2266 * schedule_tail - first thing a freshly forked thread must call.
2267 * @prev: the thread we just switched away from.
2268 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002269asmlinkage __visible void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 __releases(rq->lock)
2271{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002272 struct rq *rq = this_rq();
2273
Nick Piggin4866cde2005-06-25 14:57:23 -07002274 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002275
Gregory Haskins3f029d32009-07-29 11:08:47 -04002276 /*
2277 * FIXME: do we need to worry about rq being invalidated by the
2278 * task_switch?
2279 */
2280 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002281
Nick Piggin4866cde2005-06-25 14:57:23 -07002282#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2283 /* In this case, finish_task_switch does not reenable preemption */
2284 preempt_enable();
2285#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002287 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288}
2289
2290/*
2291 * context_switch - switch to the new MM and the new
2292 * thread's register state.
2293 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002294static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002295context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002296 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
Ingo Molnardd41f592007-07-09 18:51:59 +02002298 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Avi Kivitye107be32007-07-26 13:40:43 +02002300 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002301
Ingo Molnardd41f592007-07-09 18:51:59 +02002302 mm = next->mm;
2303 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002304 /*
2305 * For paravirt, this is coupled with an exit in switch_to to
2306 * combine the page table reload and the switch backend into
2307 * one hypercall.
2308 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002309 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002310
Heiko Carstens31915ab2010-09-16 14:42:25 +02002311 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 next->active_mm = oldmm;
2313 atomic_inc(&oldmm->mm_count);
2314 enter_lazy_tlb(oldmm, next);
2315 } else
2316 switch_mm(oldmm, mm, next);
2317
Heiko Carstens31915ab2010-09-16 14:42:25 +02002318 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 rq->prev_mm = oldmm;
2321 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002322 /*
2323 * Since the runqueue lock will be released by the next
2324 * task (which is an invalid locking op but in the case
2325 * of the scheduler it's an obvious special-case), so we
2326 * do an early lockdep release here:
2327 */
2328#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002329 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002332 context_tracking_task_switch(prev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 /* Here we just switch the register state and the stack. */
2334 switch_to(prev, next, prev);
2335
Ingo Molnardd41f592007-07-09 18:51:59 +02002336 barrier();
2337 /*
2338 * this_rq must be evaluated again because prev may have moved
2339 * CPUs since it called schedule(), thus the 'rq' on its stack
2340 * frame will be invalid.
2341 */
2342 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
2344
2345/*
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002346 * nr_running and nr_context_switches:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 *
2348 * externally visible scheduler statistics: current number of runnable
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002349 * threads, total number of context switches performed since bootup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 */
2351unsigned long nr_running(void)
2352{
2353 unsigned long i, sum = 0;
2354
2355 for_each_online_cpu(i)
2356 sum += cpu_rq(i)->nr_running;
2357
2358 return sum;
2359}
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361unsigned long long nr_context_switches(void)
2362{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002363 int i;
2364 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002366 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 sum += cpu_rq(i)->nr_switches;
2368
2369 return sum;
2370}
2371
2372unsigned long nr_iowait(void)
2373{
2374 unsigned long i, sum = 0;
2375
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002376 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2378
2379 return sum;
2380}
2381
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002382unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07002383{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002384 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07002385 return atomic_read(&this->nr_iowait);
2386}
2387
Ingo Molnardd41f592007-07-09 18:51:59 +02002388#ifdef CONFIG_SMP
2389
Ingo Molnar48f24c42006-07-03 00:25:40 -07002390/*
Peter Zijlstra38022902009-12-16 18:04:37 +01002391 * sched_exec - execve() is a valuable balancing opportunity, because at
2392 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 */
Peter Zijlstra38022902009-12-16 18:04:37 +01002394void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Peter Zijlstra38022902009-12-16 18:04:37 +01002396 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01002398 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01002399
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002400 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstraac66f542013-10-07 11:29:16 +01002401 dest_cpu = p->sched_class->select_task_rq(p, task_cpu(p), SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002402 if (dest_cpu == smp_processor_id())
2403 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01002404
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002405 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02002406 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07002407
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002408 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
2409 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 return;
2411 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01002412unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002413 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416#endif
2417
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418DEFINE_PER_CPU(struct kernel_stat, kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002419DEFINE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421EXPORT_PER_CPU_SYMBOL(kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002422EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002425 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07002426 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002427 *
2428 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002430static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
2431{
2432 u64 ns = 0;
2433
2434 if (task_current(rq, p)) {
2435 update_rq_clock(rq);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02002436 ns = rq_clock_task(rq) - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002437 if ((s64)ns < 0)
2438 ns = 0;
2439 }
2440
2441 return ns;
2442}
2443
Frank Mayharbb34d922008-09-12 09:54:39 -07002444unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02002447 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07002448 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002449
Ingo Molnar41b86e92007-07-09 18:51:58 +02002450 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002451 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002452 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02002453
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002454 return ns;
2455}
Frank Mayharf06febc2008-09-12 09:54:39 -07002456
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002457/*
2458 * Return accounted runtime for the task.
2459 * In case the task is currently running, return the runtime plus current's
2460 * pending runtime that have not been accounted yet.
2461 */
2462unsigned long long task_sched_runtime(struct task_struct *p)
2463{
2464 unsigned long flags;
2465 struct rq *rq;
2466 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002467
Peter Zijlstra911b2892013-11-11 18:21:56 +01002468#if defined(CONFIG_64BIT) && defined(CONFIG_SMP)
2469 /*
2470 * 64-bit doesn't need locks to atomically read a 64bit value.
2471 * So we have a optimization chance when the task's delta_exec is 0.
2472 * Reading ->on_cpu is racy, but this is ok.
2473 *
2474 * If we race with it leaving cpu, we'll take a lock. So we're correct.
2475 * If we race with it entering cpu, unaccounted time is 0. This is
2476 * indistinguishable from the read occurring a few cycles earlier.
2477 */
2478 if (!p->on_cpu)
2479 return p->se.sum_exec_runtime;
2480#endif
2481
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002482 rq = task_rq_lock(p, &flags);
2483 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002484 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002485
2486 return ns;
2487}
2488
Balbir Singh49048622008-09-05 18:12:23 +02002489/*
Christoph Lameter7835b982006-12-10 02:20:22 -08002490 * This function gets called by the timer code, with HZ frequency.
2491 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08002492 */
2493void scheduler_tick(void)
2494{
Christoph Lameter7835b982006-12-10 02:20:22 -08002495 int cpu = smp_processor_id();
2496 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002497 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002498
2499 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08002500
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002501 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002502 update_rq_clock(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01002503 curr->sched_class->task_tick(rq, curr, 0);
Alex Shi83dfd522013-06-20 10:18:49 +08002504 update_cpu_load_active(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002505 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02002506
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002507 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002508
Christoph Lametere418e1c2006-12-10 02:20:23 -08002509#ifdef CONFIG_SMP
Suresh Siddha6eb57e02011-10-03 15:09:01 -07002510 rq->idle_balance = idle_cpu(cpu);
Daniel Lezcano7caff662014-01-06 12:34:38 +01002511 trigger_load_balance(rq);
Christoph Lametere418e1c2006-12-10 02:20:23 -08002512#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002513 rq_last_tick_reset(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002516#ifdef CONFIG_NO_HZ_FULL
2517/**
2518 * scheduler_tick_max_deferment
2519 *
2520 * Keep at least one tick per second when a single
2521 * active task is running because the scheduler doesn't
2522 * yet completely support full dynticks environment.
2523 *
2524 * This makes sure that uptime, CFS vruntime, load
2525 * balancing, etc... continue to move forward, even
2526 * with a very low granularity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02002527 *
2528 * Return: Maximum deferment in nanoseconds.
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002529 */
2530u64 scheduler_tick_max_deferment(void)
2531{
2532 struct rq *rq = this_rq();
2533 unsigned long next, now = ACCESS_ONCE(jiffies);
2534
2535 next = rq->last_sched_tick + HZ;
2536
2537 if (time_before_eq(next, now))
2538 return 0;
2539
Kevin Hilman8fe8ff02014-01-15 14:51:38 +01002540 return jiffies_to_nsecs(next - now);
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002541}
2542#endif
2543
Lai Jiangshan132380a2009-04-02 14:18:25 +08002544notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002545{
2546 if (in_lock_functions(addr)) {
2547 addr = CALLER_ADDR2;
2548 if (in_lock_functions(addr))
2549 addr = CALLER_ADDR3;
2550 }
2551 return addr;
2552}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05002554#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
2555 defined(CONFIG_PREEMPT_TRACER))
2556
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002557void preempt_count_add(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002559#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 /*
2561 * Underflow?
2562 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002563 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
2564 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002565#endif
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002566 __preempt_count_add(val);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002567#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 /*
2569 * Spinlock count overflowing soon?
2570 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002571 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
2572 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002573#endif
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002574 if (preempt_count() == val) {
2575 unsigned long ip = get_parent_ip(CALLER_ADDR1);
2576#ifdef CONFIG_DEBUG_PREEMPT
2577 current->preempt_disable_ip = ip;
2578#endif
2579 trace_preempt_off(CALLER_ADDR0, ip);
2580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002582EXPORT_SYMBOL(preempt_count_add);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002583NOKPROBE_SYMBOL(preempt_count_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002585void preempt_count_sub(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002587#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 /*
2589 * Underflow?
2590 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01002591 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002592 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 /*
2594 * Is the spinlock portion underflowing?
2595 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002596 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
2597 !(preempt_count() & PREEMPT_MASK)))
2598 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002599#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002600
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002601 if (preempt_count() == val)
2602 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002603 __preempt_count_sub(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002605EXPORT_SYMBOL(preempt_count_sub);
Masami Hiramatsuedafe3a2014-04-17 17:18:42 +09002606NOKPROBE_SYMBOL(preempt_count_sub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
2608#endif
2609
2610/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002611 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002613static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
Dave Jones664dfa62011-12-22 16:39:30 -05002615 if (oops_in_progress)
2616 return;
2617
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01002618 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
2619 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02002620
Ingo Molnardd41f592007-07-09 18:51:59 +02002621 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07002622 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02002623 if (irqs_disabled())
2624 print_irqtrace_events(prev);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01002625#ifdef CONFIG_DEBUG_PREEMPT
2626 if (in_atomic_preempt_off()) {
2627 pr_err("Preemption disabled at:");
2628 print_ip_sym(current->preempt_disable_ip);
2629 pr_cont("\n");
2630 }
2631#endif
Stephen Boyd6135fc12012-03-28 17:10:47 -07002632 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +10302633 add_taint(TAINT_WARN, LOCKDEP_STILL_OK);
Ingo Molnardd41f592007-07-09 18:51:59 +02002634}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Ingo Molnardd41f592007-07-09 18:51:59 +02002636/*
2637 * Various schedule()-time debugging checks and statistics:
2638 */
2639static inline void schedule_debug(struct task_struct *prev)
2640{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002642 * Test if we are atomic. Since do_exit() needs to call into
Oleg Nesterov192301e2013-11-13 16:45:38 +01002643 * schedule() atomically, we ignore that path. Otherwise whine
2644 * if we are scheduling when we should not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 */
Oleg Nesterov192301e2013-11-13 16:45:38 +01002646 if (unlikely(in_atomic_preempt_off() && prev->state != TASK_DEAD))
Ingo Molnardd41f592007-07-09 18:51:59 +02002647 __schedule_bug(prev);
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07002648 rcu_sleep_check();
Ingo Molnardd41f592007-07-09 18:51:59 +02002649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2651
Ingo Molnar2d723762007-10-15 17:00:12 +02002652 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02002653}
2654
2655/*
2656 * Pick up the highest-prio task:
2657 */
2658static inline struct task_struct *
Peter Zijlstra606dba22012-02-11 06:05:00 +01002659pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02002660{
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002661 const struct sched_class *class = &fair_sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02002662 struct task_struct *p;
2663
2664 /*
2665 * Optimization: we know that if all tasks are in
2666 * the fair class we can call that function directly:
2667 */
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002668 if (likely(prev->sched_class == class &&
Peter Zijlstra38033c32014-01-23 20:32:21 +01002669 rq->nr_running == rq->cfs.h_nr_running)) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002670 p = fair_sched_class.pick_next_task(rq, prev);
Peter Zijlstra6ccdc842014-04-24 12:00:47 +02002671 if (unlikely(p == RETRY_TASK))
2672 goto again;
2673
2674 /* assumes fair_sched_class->next == idle_sched_class */
2675 if (unlikely(!p))
2676 p = idle_sched_class.pick_next_task(rq, prev);
2677
2678 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02002679 }
2680
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002681again:
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002682 for_each_class(class) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002683 p = class->pick_next_task(rq, prev);
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002684 if (p) {
2685 if (unlikely(p == RETRY_TASK))
2686 goto again;
Ingo Molnardd41f592007-07-09 18:51:59 +02002687 return p;
Peter Zijlstra37e117c2014-02-14 12:25:08 +01002688 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002689 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002690
2691 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02002692}
2693
2694/*
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002695 * __schedule() is the main scheduler function.
Pekka Enbergedde96e2012-08-04 11:49:47 +03002696 *
2697 * The main means of driving the scheduler and thus entering this function are:
2698 *
2699 * 1. Explicit blocking: mutex, semaphore, waitqueue, etc.
2700 *
2701 * 2. TIF_NEED_RESCHED flag is checked on interrupt and userspace return
2702 * paths. For example, see arch/x86/entry_64.S.
2703 *
2704 * To drive preemption between tasks, the scheduler sets the flag in timer
2705 * interrupt handler scheduler_tick().
2706 *
2707 * 3. Wakeups don't really cause entry into schedule(). They add a
2708 * task to the run-queue and that's it.
2709 *
2710 * Now, if the new task added to the run-queue preempts the current
2711 * task, then the wakeup sets TIF_NEED_RESCHED and schedule() gets
2712 * called on the nearest possible occasion:
2713 *
2714 * - If the kernel is preemptible (CONFIG_PREEMPT=y):
2715 *
2716 * - in syscall or exception context, at the next outmost
2717 * preempt_enable(). (this might be as soon as the wake_up()'s
2718 * spin_unlock()!)
2719 *
2720 * - in IRQ context, return from interrupt-handler to
2721 * preemptible context
2722 *
2723 * - If the kernel is not preemptible (CONFIG_PREEMPT is not set)
2724 * then at the next:
2725 *
2726 * - cond_resched() call
2727 * - explicit schedule() call
2728 * - return from syscall or exception to user-space
2729 * - return from interrupt-handler to user-space
Ingo Molnardd41f592007-07-09 18:51:59 +02002730 */
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002731static void __sched __schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02002732{
2733 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08002734 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02002735 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02002736 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002737
Peter Zijlstraff743342009-03-13 12:21:26 +01002738need_resched:
2739 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02002740 cpu = smp_processor_id();
2741 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07002742 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002743 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02002744
Ingo Molnardd41f592007-07-09 18:51:59 +02002745 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Peter Zijlstra31656512008-07-18 18:01:23 +02002747 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02002748 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002749
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02002750 /*
2751 * Make sure that signal_pending_state()->signal_pending() below
2752 * can't be reordered with __set_current_state(TASK_INTERRUPTIBLE)
2753 * done by the caller to avoid the race with signal_wake_up().
2754 */
2755 smp_mb__before_spinlock();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002756 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002758 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02002759 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02002760 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002761 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002762 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02002763 deactivate_task(rq, prev, DEQUEUE_SLEEP);
2764 prev->on_rq = 0;
2765
Tejun Heo21aa9af2010-06-08 21:40:37 +02002766 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02002767 * If a worker went to sleep, notify and ask workqueue
2768 * whether it wants to wake up a task to maintain
2769 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002770 */
2771 if (prev->flags & PF_WQ_WORKER) {
2772 struct task_struct *to_wakeup;
2773
2774 to_wakeup = wq_worker_sleeping(prev, cpu);
2775 if (to_wakeup)
2776 try_to_wake_up_local(to_wakeup);
2777 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02002778 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002779 switch_count = &prev->nvcsw;
2780 }
2781
Peter Zijlstra606dba22012-02-11 06:05:00 +01002782 if (prev->on_rq || rq->skip_clock_update < 0)
2783 update_rq_clock(rq);
2784
2785 next = pick_next_task(rq, prev);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002786 clear_tsk_need_resched(prev);
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002787 clear_preempt_need_resched();
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002788 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 rq->nr_switches++;
2792 rq->curr = next;
2793 ++*switch_count;
2794
Ingo Molnardd41f592007-07-09 18:51:59 +02002795 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002796 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002797 * The context switch have flipped the stack from under us
2798 * and restored the local variables which were saved when
2799 * this task called schedule() in the past. prev == current
2800 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002801 */
2802 cpu = smp_processor_id();
2803 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002805 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Gregory Haskins3f029d32009-07-29 11:08:47 -04002807 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002809 sched_preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01002810 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 goto need_resched;
2812}
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002813
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002814static inline void sched_submit_work(struct task_struct *tsk)
2815{
Thomas Gleixner3c7d5182011-07-17 20:46:52 +02002816 if (!tsk->state || tsk_is_pi_blocked(tsk))
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002817 return;
2818 /*
2819 * If we are going to sleep and we have plugged IO queued,
2820 * make sure to submit it to avoid deadlocks.
2821 */
2822 if (blk_needs_flush_plug(tsk))
2823 blk_schedule_flush_plug(tsk);
2824}
2825
Andi Kleen722a9f92014-05-02 00:44:38 +02002826asmlinkage __visible void __sched schedule(void)
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002827{
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002828 struct task_struct *tsk = current;
2829
2830 sched_submit_work(tsk);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002831 __schedule();
2832}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833EXPORT_SYMBOL(schedule);
2834
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002835#ifdef CONFIG_CONTEXT_TRACKING
Andi Kleen722a9f92014-05-02 00:44:38 +02002836asmlinkage __visible void __sched schedule_user(void)
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002837{
2838 /*
2839 * If we come here after a random call to set_need_resched(),
2840 * or we have been woken up remotely but the IPI has not yet arrived,
2841 * we haven't yet exited the RCU idle mode. Do it here manually until
2842 * we find a better solution.
2843 */
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002844 user_exit();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002845 schedule();
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002846 user_enter();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002847}
2848#endif
2849
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002850/**
2851 * schedule_preempt_disabled - called with preemption disabled
2852 *
2853 * Returns with preemption disabled. Note: preempt_count must be 1
2854 */
2855void __sched schedule_preempt_disabled(void)
2856{
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002857 sched_preempt_enable_no_resched();
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002858 schedule();
2859 preempt_disable();
2860}
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862#ifdef CONFIG_PREEMPT
2863/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002864 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002865 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 * occur there and call schedule directly.
2867 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002868asmlinkage __visible void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 /*
2871 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002872 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 */
Frederic Weisbeckerfbb00b52013-06-19 23:56:22 +02002874 if (likely(!preemptible()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 return;
2876
Andi Kleen3a5c3592007-10-15 17:00:14 +02002877 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002878 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002879 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002880 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002881
2882 /*
2883 * Check again in case we missed a preemption opportunity
2884 * between schedule and now.
2885 */
2886 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002887 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002889NOKPROBE_SYMBOL(preempt_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890EXPORT_SYMBOL(preempt_schedule);
Thomas Gleixner32e475d2013-11-21 12:41:44 +01002891#endif /* CONFIG_PREEMPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002894 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 * off of irq context.
2896 * Note, that this is called and return with irqs disabled. This will
2897 * protect us against recursive calling from irq.
2898 */
Andi Kleen722a9f92014-05-02 00:44:38 +02002899asmlinkage __visible void __sched preempt_schedule_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002901 enum ctx_state prev_state;
Ingo Molnar6478d882008-01-25 21:08:33 +01002902
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002903 /* Catch callers which need to be fixed */
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002904 BUG_ON(preempt_count() || !irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002906 prev_state = exception_enter();
2907
Andi Kleen3a5c3592007-10-15 17:00:14 +02002908 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002909 __preempt_count_add(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002910 local_irq_enable();
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002911 __schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02002912 local_irq_disable();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002913 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002914
2915 /*
2916 * Check again in case we missed a preemption opportunity
2917 * between schedule and now.
2918 */
2919 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002920 } while (need_resched());
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002921
2922 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923}
2924
Peter Zijlstra63859d42009-09-15 19:14:42 +02002925int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002926 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
Peter Zijlstra63859d42009-09-15 19:14:42 +02002928 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930EXPORT_SYMBOL(default_wake_function);
2931
Ingo Molnarb29739f2006-06-27 02:54:51 -07002932#ifdef CONFIG_RT_MUTEXES
2933
2934/*
2935 * rt_mutex_setprio - set the current priority of a task
2936 * @p: task
2937 * @prio: prio value (kernel-internal form)
2938 *
2939 * This function changes the 'effective' priority of a task. It does
2940 * not touch ->normal_prio like __setscheduler().
2941 *
Thomas Gleixnerc365c292014-02-07 20:58:42 +01002942 * Used by the rt_mutex code to implement priority inheritance
2943 * logic. Call site only calls if the priority of the task changed.
Ingo Molnarb29739f2006-06-27 02:54:51 -07002944 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002945void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002946{
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002947 int oldprio, on_rq, running, enqueue_flag = 0;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002948 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002949 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002950
Dario Faggioliaab03e02013-11-28 11:14:43 +01002951 BUG_ON(prio > MAX_PRIO);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002952
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002953 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002954
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02002955 /*
2956 * Idle task boosting is a nono in general. There is one
2957 * exception, when PREEMPT_RT and NOHZ is active:
2958 *
2959 * The idle task calls get_next_timer_interrupt() and holds
2960 * the timer wheel base->lock on the CPU and another CPU wants
2961 * to access the timer (probably to cancel it). We can safely
2962 * ignore the boosting request, as the idle CPU runs this code
2963 * with interrupts disabled and will complete the lock
2964 * protected section without being interrupted. So there is no
2965 * real need to boost.
2966 */
2967 if (unlikely(p == rq->idle)) {
2968 WARN_ON(p != rq->curr);
2969 WARN_ON(p->pi_blocked_on);
2970 goto out_unlock;
2971 }
2972
Steven Rostedta8027072010-09-20 15:13:34 -04002973 trace_sched_pi_setprio(p, prio);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002974 p->pi_top_task = rt_mutex_get_top_task(p);
Andrew Mortond5f9f942007-05-08 20:27:06 -07002975 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002976 prev_class = p->sched_class;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002977 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01002978 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002979 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02002980 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002981 if (running)
2982 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02002983
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002984 /*
2985 * Boosting condition are:
2986 * 1. -rt task is running and holds mutex A
2987 * --> -dl task blocks on mutex A
2988 *
2989 * 2. -dl task is running and holds mutex A
2990 * --> -dl task blocks on mutex A and could preempt the
2991 * running task
2992 */
2993 if (dl_prio(prio)) {
2994 if (!dl_prio(p->normal_prio) || (p->pi_top_task &&
2995 dl_entity_preempt(&p->pi_top_task->dl, &p->dl))) {
2996 p->dl.dl_boosted = 1;
2997 p->dl.dl_throttled = 0;
2998 enqueue_flag = ENQUEUE_REPLENISH;
2999 } else
3000 p->dl.dl_boosted = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003001 p->sched_class = &dl_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003002 } else if (rt_prio(prio)) {
3003 if (dl_prio(oldprio))
3004 p->dl.dl_boosted = 0;
3005 if (oldprio < prio)
3006 enqueue_flag = ENQUEUE_HEAD;
Ingo Molnardd41f592007-07-09 18:51:59 +02003007 p->sched_class = &rt_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003008 } else {
3009 if (dl_prio(oldprio))
3010 p->dl.dl_boosted = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02003011 p->sched_class = &fair_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003012 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003013
Ingo Molnarb29739f2006-06-27 02:54:51 -07003014 p->prio = prio;
3015
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003016 if (running)
3017 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003018 if (on_rq)
Dario Faggioli2d3d8912013-11-07 14:43:44 +01003019 enqueue_task(rq, p, enqueue_flag);
Steven Rostedtcb469842008-01-25 21:08:22 +01003020
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003021 check_class_changed(rq, p, prev_class, oldprio);
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02003022out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003023 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003024}
Ingo Molnarb29739f2006-06-27 02:54:51 -07003025#endif
Dario Faggiolid50dde52013-11-07 14:43:36 +01003026
Ingo Molnar36c8b582006-07-03 00:25:41 -07003027void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
Ingo Molnardd41f592007-07-09 18:51:59 +02003029 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003031 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003033 if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 return;
3035 /*
3036 * We have to be careful, if called from sys_setpriority(),
3037 * the task might be in the middle of scheduling on another CPU.
3038 */
3039 rq = task_rq_lock(p, &flags);
3040 /*
3041 * The RT priorities are set via sched_setscheduler(), but we still
3042 * allow the 'normal' nice value to be set - but as expected
3043 * it wont have any effect on scheduling until the task is
Dario Faggioliaab03e02013-11-28 11:14:43 +01003044 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01003046 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 p->static_prio = NICE_TO_PRIO(nice);
3048 goto out_unlock;
3049 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003050 on_rq = p->on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003051 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02003052 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003055 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003056 old_prio = p->prio;
3057 p->prio = effective_prio(p);
3058 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Ingo Molnardd41f592007-07-09 18:51:59 +02003060 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01003061 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07003063 * If the task increased its priority or is running and
3064 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003066 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 resched_task(rq->curr);
3068 }
3069out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003070 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072EXPORT_SYMBOL(set_user_nice);
3073
Matt Mackalle43379f2005-05-01 08:59:00 -07003074/*
3075 * can_nice - check if a task can reduce its nice value
3076 * @p: task
3077 * @nice: nice value
3078 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003079int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07003080{
Matt Mackall024f4742005-08-18 11:24:19 -07003081 /* convert nice value [19,-20] to rlimit style value [1,40] */
Dongsheng Yang7aa2c012014-05-08 18:33:49 +09003082 int nice_rlim = nice_to_rlimit(nice);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003083
Jiri Slaby78d7d402010-03-05 13:42:54 -08003084 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07003085 capable(CAP_SYS_NICE));
3086}
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088#ifdef __ARCH_WANT_SYS_NICE
3089
3090/*
3091 * sys_nice - change the priority of the current process.
3092 * @increment: priority increment
3093 *
3094 * sys_setpriority is a more generic, but much slower function that
3095 * does similar things.
3096 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003097SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003099 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 /*
3102 * Setpriority might change our priority at the same moment.
3103 * We don't have to worry. Conceptually one call occurs first
3104 * and we have a single winner.
3105 */
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003106 increment = clamp(increment, -NICE_WIDTH, NICE_WIDTH);
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003107 nice = task_nice(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Dongsheng Yanga9467fa2014-05-08 18:35:15 +09003109 nice = clamp_val(nice, MIN_NICE, MAX_NICE);
Matt Mackalle43379f2005-05-01 08:59:00 -07003110 if (increment < 0 && !can_nice(current, nice))
3111 return -EPERM;
3112
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 retval = security_task_setnice(current, nice);
3114 if (retval)
3115 return retval;
3116
3117 set_user_nice(current, nice);
3118 return 0;
3119}
3120
3121#endif
3122
3123/**
3124 * task_prio - return the priority value of a given task.
3125 * @p: the task in question.
3126 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003127 * Return: The priority value as seen by users in /proc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 * RT tasks are offset by -200. Normal tasks are centered
3129 * around 0, value goes from -16 to +15.
3130 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003131int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132{
3133 return p->prio - MAX_RT_PRIO;
3134}
3135
3136/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 * idle_cpu - is a given cpu idle currently?
3138 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003139 *
3140 * Return: 1 if the CPU is currently idle. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 */
3142int idle_cpu(int cpu)
3143{
Thomas Gleixner908a3282011-09-15 15:32:06 +02003144 struct rq *rq = cpu_rq(cpu);
3145
3146 if (rq->curr != rq->idle)
3147 return 0;
3148
3149 if (rq->nr_running)
3150 return 0;
3151
3152#ifdef CONFIG_SMP
3153 if (!llist_empty(&rq->wake_list))
3154 return 0;
3155#endif
3156
3157 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158}
3159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160/**
3161 * idle_task - return the idle task for a given cpu.
3162 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003163 *
3164 * Return: The idle task for the cpu @cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003166struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167{
3168 return cpu_rq(cpu)->idle;
3169}
3170
3171/**
3172 * find_process_by_pid - find a process with a matching PID value.
3173 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003174 *
3175 * The task of @pid, if found. %NULL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003177static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07003179 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180}
3181
Dario Faggioliaab03e02013-11-28 11:14:43 +01003182/*
3183 * This function initializes the sched_dl_entity of a newly becoming
3184 * SCHED_DEADLINE task.
3185 *
3186 * Only the static values are considered here, the actual runtime and the
3187 * absolute deadline will be properly calculated when the task is enqueued
3188 * for the first time with its new policy.
3189 */
3190static void
3191__setparam_dl(struct task_struct *p, const struct sched_attr *attr)
3192{
3193 struct sched_dl_entity *dl_se = &p->dl;
3194
3195 init_dl_task_timer(dl_se);
3196 dl_se->dl_runtime = attr->sched_runtime;
3197 dl_se->dl_deadline = attr->sched_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003198 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003199 dl_se->flags = attr->sched_flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01003200 dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
Dario Faggioliaab03e02013-11-28 11:14:43 +01003201 dl_se->dl_throttled = 0;
3202 dl_se->dl_new = 1;
Juri Lelli5bfd1262014-04-15 13:49:04 +02003203 dl_se->dl_yielded = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003204}
3205
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003206static void __setscheduler_params(struct task_struct *p,
3207 const struct sched_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003209 int policy = attr->sched_policy;
3210
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003211 if (policy == -1) /* setparam */
3212 policy = p->policy;
3213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 p->policy = policy;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003215
Dario Faggioliaab03e02013-11-28 11:14:43 +01003216 if (dl_policy(policy))
3217 __setparam_dl(p, attr);
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003218 else if (fair_policy(policy))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003219 p->static_prio = NICE_TO_PRIO(attr->sched_nice);
3220
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003221 /*
3222 * __sched_setscheduler() ensures attr->sched_priority == 0 when
3223 * !rt_policy. Always setting this ensures that things like
3224 * getparam()/getattr() don't report silly values for !rt tasks.
3225 */
3226 p->rt_priority = attr->sched_priority;
Steven Rostedt383afd02014-03-11 19:24:20 -04003227 p->normal_prio = normal_prio(p);
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003228 set_load_weight(p);
3229}
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003230
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003231/* Actually do priority change: must hold pi & rq lock. */
3232static void __setscheduler(struct rq *rq, struct task_struct *p,
3233 const struct sched_attr *attr)
3234{
3235 __setscheduler_params(p, attr);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003236
Steven Rostedt383afd02014-03-11 19:24:20 -04003237 /*
3238 * If we get here, there was no pi waiters boosting the
3239 * task. It is safe to use the normal prio.
3240 */
3241 p->prio = normal_prio(p);
3242
Dario Faggioliaab03e02013-11-28 11:14:43 +01003243 if (dl_prio(p->prio))
3244 p->sched_class = &dl_sched_class;
3245 else if (rt_prio(p->prio))
Peter Zijlstraffd44db2009-11-10 20:12:01 +01003246 p->sched_class = &rt_sched_class;
3247 else
3248 p->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249}
Dario Faggioliaab03e02013-11-28 11:14:43 +01003250
3251static void
3252__getparam_dl(struct task_struct *p, struct sched_attr *attr)
3253{
3254 struct sched_dl_entity *dl_se = &p->dl;
3255
3256 attr->sched_priority = p->rt_priority;
3257 attr->sched_runtime = dl_se->dl_runtime;
3258 attr->sched_deadline = dl_se->dl_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003259 attr->sched_period = dl_se->dl_period;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003260 attr->sched_flags = dl_se->flags;
3261}
3262
3263/*
3264 * This function validates the new parameters of a -deadline task.
3265 * We ask for the deadline not being zero, and greater or equal
Harald Gustafsson755378a2013-11-07 14:43:40 +01003266 * than the runtime, as well as the period of being zero or
Dario Faggioli332ac172013-11-07 14:43:45 +01003267 * greater than deadline. Furthermore, we have to be sure that
Juri Lellib08278192014-05-13 14:11:31 +02003268 * user parameters are above the internal resolution of 1us (we
3269 * check sched_runtime only since it is always the smaller one) and
3270 * below 2^63 ns (we have to check both sched_deadline and
3271 * sched_period, as the latter can be zero).
Dario Faggioliaab03e02013-11-28 11:14:43 +01003272 */
3273static bool
3274__checkparam_dl(const struct sched_attr *attr)
3275{
Juri Lellib08278192014-05-13 14:11:31 +02003276 /* deadline != 0 */
3277 if (attr->sched_deadline == 0)
3278 return false;
3279
3280 /*
3281 * Since we truncate DL_SCALE bits, make sure we're at least
3282 * that big.
3283 */
3284 if (attr->sched_runtime < (1ULL << DL_SCALE))
3285 return false;
3286
3287 /*
3288 * Since we use the MSB for wrap-around and sign issues, make
3289 * sure it's not set (mind that period can be equal to zero).
3290 */
3291 if (attr->sched_deadline & (1ULL << 63) ||
3292 attr->sched_period & (1ULL << 63))
3293 return false;
3294
3295 /* runtime <= deadline <= period (if period != 0) */
3296 if ((attr->sched_period != 0 &&
3297 attr->sched_period < attr->sched_deadline) ||
3298 attr->sched_deadline < attr->sched_runtime)
3299 return false;
3300
3301 return true;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003302}
3303
David Howellsc69e8d92008-11-14 10:39:19 +11003304/*
3305 * check the target process has a UID that matches the current process's
3306 */
3307static bool check_same_owner(struct task_struct *p)
3308{
3309 const struct cred *cred = current_cred(), *pcred;
3310 bool match;
3311
3312 rcu_read_lock();
3313 pcred = __task_cred(p);
Eric W. Biederman9c806aa2012-02-02 18:54:02 -08003314 match = (uid_eq(cred->euid, pcred->euid) ||
3315 uid_eq(cred->euid, pcred->uid));
David Howellsc69e8d92008-11-14 10:39:19 +11003316 rcu_read_unlock();
3317 return match;
3318}
3319
Dario Faggiolid50dde52013-11-07 14:43:36 +01003320static int __sched_setscheduler(struct task_struct *p,
3321 const struct sched_attr *attr,
3322 bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323{
Steven Rostedt383afd02014-03-11 19:24:20 -04003324 int newprio = dl_policy(attr->sched_policy) ? MAX_DL_PRIO - 1 :
3325 MAX_RT_PRIO - 1 - attr->sched_priority;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003326 int retval, oldprio, oldpolicy = -1, on_rq, running;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003327 int policy = attr->sched_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003329 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003330 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003331 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Steven Rostedt66e53932006-06-27 02:54:44 -07003333 /* may grab non-irq protected spin_locks */
3334 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335recheck:
3336 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02003337 if (policy < 0) {
3338 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003340 } else {
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003341 reset_on_fork = !!(attr->sched_flags & SCHED_FLAG_RESET_ON_FORK);
Lennart Poetteringca94c442009-06-15 17:17:47 +02003342
Dario Faggioliaab03e02013-11-28 11:14:43 +01003343 if (policy != SCHED_DEADLINE &&
3344 policy != SCHED_FIFO && policy != SCHED_RR &&
Lennart Poetteringca94c442009-06-15 17:17:47 +02003345 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
3346 policy != SCHED_IDLE)
3347 return -EINVAL;
3348 }
3349
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003350 if (attr->sched_flags & ~(SCHED_FLAG_RESET_ON_FORK))
3351 return -EINVAL;
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 /*
3354 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02003355 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
3356 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 */
Peter Zijlstra0bb040a2014-01-15 17:15:13 +01003358 if ((p->mm && attr->sched_priority > MAX_USER_RT_PRIO-1) ||
Dario Faggiolid50dde52013-11-07 14:43:36 +01003359 (!p->mm && attr->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 return -EINVAL;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003361 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
3362 (rt_policy(policy) != (attr->sched_priority != 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 return -EINVAL;
3364
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003365 /*
3366 * Allow unprivileged RT tasks to decrease priority:
3367 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10003368 if (user && !capable(CAP_SYS_NICE)) {
Dario Faggiolid50dde52013-11-07 14:43:36 +01003369 if (fair_policy(policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003370 if (attr->sched_nice < task_nice(p) &&
Peter Zijlstraeaad4512014-01-16 17:54:25 +01003371 !can_nice(p, attr->sched_nice))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003372 return -EPERM;
3373 }
3374
Ingo Molnare05606d2007-07-09 18:51:59 +02003375 if (rt_policy(policy)) {
Oleg Nesterova44702e82010-06-11 01:09:44 +02003376 unsigned long rlim_rtprio =
3377 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003378
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003379 /* can't set/change the rt policy */
3380 if (policy != p->policy && !rlim_rtprio)
3381 return -EPERM;
3382
3383 /* can't increase priority */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003384 if (attr->sched_priority > p->rt_priority &&
3385 attr->sched_priority > rlim_rtprio)
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003386 return -EPERM;
3387 }
Darren Hartc02aa732011-02-17 15:37:07 -08003388
Juri Lellid44753b2014-03-03 12:09:21 +01003389 /*
3390 * Can't set/change SCHED_DEADLINE policy at all for now
3391 * (safest behavior); in the future we would like to allow
3392 * unprivileged DL tasks to increase their relative deadline
3393 * or reduce their runtime (both ways reducing utilization)
3394 */
3395 if (dl_policy(policy))
3396 return -EPERM;
3397
Ingo Molnardd41f592007-07-09 18:51:59 +02003398 /*
Darren Hartc02aa732011-02-17 15:37:07 -08003399 * Treat SCHED_IDLE as nice 20. Only allow a switch to
3400 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02003401 */
Darren Hartc02aa732011-02-17 15:37:07 -08003402 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003403 if (!can_nice(p, task_nice(p)))
Darren Hartc02aa732011-02-17 15:37:07 -08003404 return -EPERM;
3405 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003406
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003407 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11003408 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003409 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003410
3411 /* Normal users shall not reset the sched_reset_on_fork flag */
3412 if (p->sched_reset_on_fork && !reset_on_fork)
3413 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003416 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003417 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003418 if (retval)
3419 return retval;
3420 }
3421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07003423 * make sure no PI-waiters arrive (or leave) while we are
3424 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003425 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003426 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 * runqueue lock must be held.
3428 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003429 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003430
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003431 /*
3432 * Changing the policy of the stop threads its a very bad idea
3433 */
3434 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003435 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003436 return -EINVAL;
3437 }
3438
Dario Faggiolia51e9192011-03-24 14:00:18 +01003439 /*
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003440 * If not changing anything there's no need to proceed further,
3441 * but store a possible modification of reset_on_fork.
Dario Faggiolia51e9192011-03-24 14:00:18 +01003442 */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003443 if (unlikely(policy == p->policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003444 if (fair_policy(policy) && attr->sched_nice != task_nice(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003445 goto change;
3446 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
3447 goto change;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003448 if (dl_policy(policy))
3449 goto change;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003450
Thomas Gleixnerd6b1e912014-02-07 20:58:40 +01003451 p->sched_reset_on_fork = reset_on_fork;
Namhyung Kim45afb172012-07-07 16:49:02 +09003452 task_rq_unlock(rq, p, &flags);
Dario Faggiolia51e9192011-03-24 14:00:18 +01003453 return 0;
3454 }
Dario Faggiolid50dde52013-11-07 14:43:36 +01003455change:
Dario Faggiolia51e9192011-03-24 14:00:18 +01003456
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003457 if (user) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003458#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003459 /*
3460 * Do not allow realtime tasks into groups that have no runtime
3461 * assigned.
3462 */
3463 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01003464 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
3465 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003466 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003467 return -EPERM;
3468 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003469#endif
Dario Faggioli332ac172013-11-07 14:43:45 +01003470#ifdef CONFIG_SMP
3471 if (dl_bandwidth_enabled() && dl_policy(policy)) {
3472 cpumask_t *span = rq->rd->span;
Dario Faggioli332ac172013-11-07 14:43:45 +01003473
3474 /*
3475 * Don't allow tasks with an affinity mask smaller than
3476 * the entire root_domain to become SCHED_DEADLINE. We
3477 * will also fail if there's no bandwidth available.
3478 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003479 if (!cpumask_subset(span, &p->cpus_allowed) ||
3480 rq->rd->dl_bw.bw == 0) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003481 task_rq_unlock(rq, p, &flags);
3482 return -EPERM;
3483 }
3484 }
3485#endif
3486 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 /* recheck policy now with rq lock held */
3489 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3490 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003491 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 goto recheck;
3493 }
Dario Faggioli332ac172013-11-07 14:43:45 +01003494
3495 /*
3496 * If setscheduling to SCHED_DEADLINE (or changing the parameters
3497 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
3498 * is available.
3499 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003500 if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003501 task_rq_unlock(rq, p, &flags);
3502 return -EBUSY;
3503 }
3504
Thomas Gleixnerc365c292014-02-07 20:58:42 +01003505 p->sched_reset_on_fork = reset_on_fork;
3506 oldprio = p->prio;
3507
3508 /*
3509 * Special case for priority boosted tasks.
3510 *
3511 * If the new priority is lower or equal (user space view)
3512 * than the current (boosted) priority, we just store the new
3513 * normal parameters and do not touch the scheduler class and
3514 * the runqueue. This will be done when the task deboost
3515 * itself.
3516 */
3517 if (rt_mutex_check_prio(p, newprio)) {
3518 __setscheduler_params(p, attr);
3519 task_rq_unlock(rq, p, &flags);
3520 return 0;
3521 }
3522
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003523 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003524 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003525 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003526 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003527 if (running)
3528 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003529
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003530 prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003531 __setscheduler(rq, p, attr);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003532
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003533 if (running)
3534 p->sched_class->set_curr_task(rq);
Thomas Gleixner81a44c52014-02-07 20:58:41 +01003535 if (on_rq) {
3536 /*
3537 * We enqueue to tail when the priority of a task is
3538 * increased (user space view).
3539 */
3540 enqueue_task(rq, p, oldprio <= p->prio ? ENQUEUE_HEAD : 0);
3541 }
Steven Rostedtcb469842008-01-25 21:08:22 +01003542
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003543 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003544 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003545
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07003546 rt_mutex_adjust_pi(p);
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 return 0;
3549}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003550
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003551static int _sched_setscheduler(struct task_struct *p, int policy,
3552 const struct sched_param *param, bool check)
3553{
3554 struct sched_attr attr = {
3555 .sched_policy = policy,
3556 .sched_priority = param->sched_priority,
3557 .sched_nice = PRIO_TO_NICE(p->static_prio),
3558 };
3559
3560 /*
3561 * Fixup the legacy SCHED_RESET_ON_FORK hack
3562 */
3563 if (policy & SCHED_RESET_ON_FORK) {
3564 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
3565 policy &= ~SCHED_RESET_ON_FORK;
3566 attr.sched_policy = policy;
3567 }
3568
3569 return __sched_setscheduler(p, &attr, check);
3570}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003571/**
3572 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
3573 * @p: the task in question.
3574 * @policy: new policy.
3575 * @param: structure containing the new RT priority.
3576 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003577 * Return: 0 on success. An error code otherwise.
3578 *
Rusty Russell961ccdd2008-06-23 13:55:38 +10003579 * NOTE that the task may be already dead.
3580 */
3581int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003582 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003583{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003584 return _sched_setscheduler(p, policy, param, true);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003585}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586EXPORT_SYMBOL_GPL(sched_setscheduler);
3587
Dario Faggiolid50dde52013-11-07 14:43:36 +01003588int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
3589{
3590 return __sched_setscheduler(p, attr, true);
3591}
3592EXPORT_SYMBOL_GPL(sched_setattr);
3593
Rusty Russell961ccdd2008-06-23 13:55:38 +10003594/**
3595 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
3596 * @p: the task in question.
3597 * @policy: new policy.
3598 * @param: structure containing the new RT priority.
3599 *
3600 * Just like sched_setscheduler, only don't bother checking if the
3601 * current context has permission. For example, this is needed in
3602 * stop_machine(): we create temporary high priority worker threads,
3603 * but our caller might not have that capability.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003604 *
3605 * Return: 0 on success. An error code otherwise.
Rusty Russell961ccdd2008-06-23 13:55:38 +10003606 */
3607int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003608 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003609{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003610 return _sched_setscheduler(p, policy, param, false);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003611}
3612
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003613static int
3614do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 struct sched_param lparam;
3617 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003618 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
3620 if (!param || pid < 0)
3621 return -EINVAL;
3622 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3623 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003624
3625 rcu_read_lock();
3626 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003628 if (p != NULL)
3629 retval = sched_setscheduler(p, policy, &lparam);
3630 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07003631
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 return retval;
3633}
3634
Dario Faggiolid50dde52013-11-07 14:43:36 +01003635/*
3636 * Mimics kernel/events/core.c perf_copy_attr().
3637 */
3638static int sched_copy_attr(struct sched_attr __user *uattr,
3639 struct sched_attr *attr)
3640{
3641 u32 size;
3642 int ret;
3643
3644 if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0))
3645 return -EFAULT;
3646
3647 /*
3648 * zero the full structure, so that a short copy will be nice.
3649 */
3650 memset(attr, 0, sizeof(*attr));
3651
3652 ret = get_user(size, &uattr->size);
3653 if (ret)
3654 return ret;
3655
3656 if (size > PAGE_SIZE) /* silly large */
3657 goto err_size;
3658
3659 if (!size) /* abi compat */
3660 size = SCHED_ATTR_SIZE_VER0;
3661
3662 if (size < SCHED_ATTR_SIZE_VER0)
3663 goto err_size;
3664
3665 /*
3666 * If we're handed a bigger struct than we know of,
3667 * ensure all the unknown bits are 0 - i.e. new
3668 * user-space does not rely on any kernel feature
3669 * extensions we dont know about yet.
3670 */
3671 if (size > sizeof(*attr)) {
3672 unsigned char __user *addr;
3673 unsigned char __user *end;
3674 unsigned char val;
3675
3676 addr = (void __user *)uattr + sizeof(*attr);
3677 end = (void __user *)uattr + size;
3678
3679 for (; addr < end; addr++) {
3680 ret = get_user(val, addr);
3681 if (ret)
3682 return ret;
3683 if (val)
3684 goto err_size;
3685 }
3686 size = sizeof(*attr);
3687 }
3688
3689 ret = copy_from_user(attr, uattr, size);
3690 if (ret)
3691 return -EFAULT;
3692
3693 /*
3694 * XXX: do we want to be lenient like existing syscalls; or do we want
3695 * to be strict and return an error on out-of-bounds values?
3696 */
Dongsheng Yang75e45d52014-02-11 15:34:50 +08003697 attr->sched_nice = clamp(attr->sched_nice, MIN_NICE, MAX_NICE);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003698
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003699 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003700
3701err_size:
3702 put_user(sizeof(*attr), &uattr->size);
Michael Kerriske78c7bc2014-05-09 16:54:28 +02003703 return -E2BIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003704}
3705
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706/**
3707 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3708 * @pid: the pid in question.
3709 * @policy: new policy.
3710 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003711 *
3712 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003714SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
3715 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716{
Jason Baronc21761f2006-01-18 17:43:03 -08003717 /* negative values for policy are not valid */
3718 if (policy < 0)
3719 return -EINVAL;
3720
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 return do_sched_setscheduler(pid, policy, param);
3722}
3723
3724/**
3725 * sys_sched_setparam - set/change the RT priority of a thread
3726 * @pid: the pid in question.
3727 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003728 *
3729 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003731SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732{
3733 return do_sched_setscheduler(pid, -1, param);
3734}
3735
3736/**
Dario Faggiolid50dde52013-11-07 14:43:36 +01003737 * sys_sched_setattr - same as above, but with extended sched_attr
3738 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003739 * @uattr: structure containing the extended parameters.
Masanari Iidadb66d752014-04-18 01:59:15 +09003740 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003741 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003742SYSCALL_DEFINE3(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr,
3743 unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003744{
3745 struct sched_attr attr;
3746 struct task_struct *p;
3747 int retval;
3748
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003749 if (!uattr || pid < 0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003750 return -EINVAL;
3751
Michael Kerrisk143cf232014-05-09 16:54:15 +02003752 retval = sched_copy_attr(uattr, &attr);
3753 if (retval)
3754 return retval;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003755
Richard Weinbergerb14ed2c2014-06-02 22:38:34 +02003756 if ((int)attr.sched_policy < 0)
Peter Zijlstradbdb2272014-05-09 10:49:03 +02003757 return -EINVAL;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003758
3759 rcu_read_lock();
3760 retval = -ESRCH;
3761 p = find_process_by_pid(pid);
3762 if (p != NULL)
3763 retval = sched_setattr(p, &attr);
3764 rcu_read_unlock();
3765
3766 return retval;
3767}
3768
3769/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3771 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003772 *
3773 * Return: On success, the policy of the thread. Otherwise, a negative error
3774 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003776SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003778 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003779 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
3781 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003782 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003785 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 p = find_process_by_pid(pid);
3787 if (p) {
3788 retval = security_task_getscheduler(p);
3789 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02003790 retval = p->policy
3791 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003793 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 return retval;
3795}
3796
3797/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02003798 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 * @pid: the pid in question.
3800 * @param: structure containing the RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003801 *
3802 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
3803 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003805SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806{
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003807 struct sched_param lp = { .sched_priority = 0 };
Ingo Molnar36c8b582006-07-03 00:25:41 -07003808 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003809 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
3811 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003812 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003814 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 p = find_process_by_pid(pid);
3816 retval = -ESRCH;
3817 if (!p)
3818 goto out_unlock;
3819
3820 retval = security_task_getscheduler(p);
3821 if (retval)
3822 goto out_unlock;
3823
Peter Zijlstrace5f7f82014-05-12 22:50:34 +02003824 if (task_has_rt_policy(p))
3825 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003826 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
3828 /*
3829 * This one might sleep, we cannot do it with a spinlock held ...
3830 */
3831 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3832
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 return retval;
3834
3835out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003836 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 return retval;
3838}
3839
Dario Faggiolid50dde52013-11-07 14:43:36 +01003840static int sched_read_attr(struct sched_attr __user *uattr,
3841 struct sched_attr *attr,
3842 unsigned int usize)
3843{
3844 int ret;
3845
3846 if (!access_ok(VERIFY_WRITE, uattr, usize))
3847 return -EFAULT;
3848
3849 /*
3850 * If we're handed a smaller struct than we know of,
3851 * ensure all the unknown bits are 0 - i.e. old
3852 * user-space does not get uncomplete information.
3853 */
3854 if (usize < sizeof(*attr)) {
3855 unsigned char *addr;
3856 unsigned char *end;
3857
3858 addr = (void *)attr + usize;
3859 end = (void *)attr + sizeof(*attr);
3860
3861 for (; addr < end; addr++) {
3862 if (*addr)
Michael Kerrisk22400672014-05-09 16:54:33 +02003863 return -EFBIG;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003864 }
3865
3866 attr->size = usize;
3867 }
3868
Vegard Nossum4efbc452014-02-16 22:24:17 +01003869 ret = copy_to_user(uattr, attr, attr->size);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003870 if (ret)
3871 return -EFAULT;
3872
Michael Kerrisk22400672014-05-09 16:54:33 +02003873 return 0;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003874}
3875
3876/**
Dario Faggioliaab03e02013-11-28 11:14:43 +01003877 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
Dario Faggiolid50dde52013-11-07 14:43:36 +01003878 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003879 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003880 * @size: sizeof(attr) for fwd/bwd comp.
Masanari Iidadb66d752014-04-18 01:59:15 +09003881 * @flags: for future extension.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003882 */
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003883SYSCALL_DEFINE4(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
3884 unsigned int, size, unsigned int, flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003885{
3886 struct sched_attr attr = {
3887 .size = sizeof(struct sched_attr),
3888 };
3889 struct task_struct *p;
3890 int retval;
3891
3892 if (!uattr || pid < 0 || size > PAGE_SIZE ||
Peter Zijlstra6d35ab42014-02-14 17:19:29 +01003893 size < SCHED_ATTR_SIZE_VER0 || flags)
Dario Faggiolid50dde52013-11-07 14:43:36 +01003894 return -EINVAL;
3895
3896 rcu_read_lock();
3897 p = find_process_by_pid(pid);
3898 retval = -ESRCH;
3899 if (!p)
3900 goto out_unlock;
3901
3902 retval = security_task_getscheduler(p);
3903 if (retval)
3904 goto out_unlock;
3905
3906 attr.sched_policy = p->policy;
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003907 if (p->sched_reset_on_fork)
3908 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003909 if (task_has_dl_policy(p))
3910 __getparam_dl(p, &attr);
3911 else if (task_has_rt_policy(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003912 attr.sched_priority = p->rt_priority;
3913 else
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003914 attr.sched_nice = task_nice(p);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003915
3916 rcu_read_unlock();
3917
3918 retval = sched_read_attr(uattr, &attr, size);
3919 return retval;
3920
3921out_unlock:
3922 rcu_read_unlock();
3923 return retval;
3924}
3925
Rusty Russell96f874e22008-11-25 02:35:14 +10303926long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303928 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003929 struct task_struct *p;
3930 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003932 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
3934 p = find_process_by_pid(pid);
3935 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003936 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 return -ESRCH;
3938 }
3939
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003940 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003942 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
Tejun Heo14a40ff2013-03-19 13:45:20 -07003944 if (p->flags & PF_NO_SETAFFINITY) {
3945 retval = -EINVAL;
3946 goto out_put_task;
3947 }
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303948 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
3949 retval = -ENOMEM;
3950 goto out_put_task;
3951 }
3952 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
3953 retval = -ENOMEM;
3954 goto out_free_cpus_allowed;
3955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 retval = -EPERM;
Eric W. Biederman4c44aaa2012-07-26 05:05:21 -07003957 if (!check_same_owner(p)) {
3958 rcu_read_lock();
3959 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
3960 rcu_read_unlock();
3961 goto out_unlock;
3962 }
3963 rcu_read_unlock();
3964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003966 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07003967 if (retval)
3968 goto out_unlock;
3969
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003970
3971 cpuset_cpus_allowed(p, cpus_allowed);
3972 cpumask_and(new_mask, in_mask, cpus_allowed);
3973
Dario Faggioli332ac172013-11-07 14:43:45 +01003974 /*
3975 * Since bandwidth control happens on root_domain basis,
3976 * if admission test is enabled, we only admit -deadline
3977 * tasks allowed to run on all the CPUs in the task's
3978 * root_domain.
3979 */
3980#ifdef CONFIG_SMP
3981 if (task_has_dl_policy(p)) {
3982 const struct cpumask *span = task_rq(p)->rd->span;
3983
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003984 if (dl_bandwidth_enabled() && !cpumask_subset(span, new_mask)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003985 retval = -EBUSY;
3986 goto out_unlock;
3987 }
3988 }
3989#endif
Peter Zijlstra49246272010-10-17 21:46:10 +02003990again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303991 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
Paul Menage8707d8b2007-10-18 23:40:22 -07003993 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303994 cpuset_cpus_allowed(p, cpus_allowed);
3995 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07003996 /*
3997 * We must have raced with a concurrent cpuset
3998 * update. Just reset the cpus_allowed to the
3999 * cpuset's cpus_allowed
4000 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304001 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004002 goto again;
4003 }
4004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304006 free_cpumask_var(new_mask);
4007out_free_cpus_allowed:
4008 free_cpumask_var(cpus_allowed);
4009out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 return retval;
4012}
4013
4014static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10304015 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016{
Rusty Russell96f874e22008-11-25 02:35:14 +10304017 if (len < cpumask_size())
4018 cpumask_clear(new_mask);
4019 else if (len > cpumask_size())
4020 len = cpumask_size();
4021
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4023}
4024
4025/**
4026 * sys_sched_setaffinity - set the cpu affinity of a process
4027 * @pid: pid of the process
4028 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4029 * @user_mask_ptr: user-space pointer to the new cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004030 *
4031 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004033SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
4034 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304036 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 int retval;
4038
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304039 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
4040 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Rusty Russell5a16f3d2008-11-25 02:35:11 +10304042 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
4043 if (retval == 0)
4044 retval = sched_setaffinity(pid, new_mask);
4045 free_cpumask_var(new_mask);
4046 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047}
4048
Rusty Russell96f874e22008-11-25 02:35:14 +10304049long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004051 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00004052 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004055 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056
4057 retval = -ESRCH;
4058 p = find_process_by_pid(pid);
4059 if (!p)
4060 goto out_unlock;
4061
David Quigleye7834f82006-06-23 02:03:59 -07004062 retval = security_task_getscheduler(p);
4063 if (retval)
4064 goto out_unlock;
4065
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004066 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02004067 cpumask_and(mask, &p->cpus_allowed, cpu_active_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02004068 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
4070out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00004071 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Ulrich Drepper9531b622007-08-09 11:16:46 +02004073 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074}
4075
4076/**
4077 * sys_sched_getaffinity - get the cpu affinity of a process
4078 * @pid: pid of the process
4079 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4080 * @user_mask_ptr: user-space pointer to hold the current cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02004081 *
4082 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004084SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
4085 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086{
4087 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10304088 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Anton Blanchard84fba5e2010-04-06 17:02:19 +10004090 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004091 return -EINVAL;
4092 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 return -EINVAL;
4094
Rusty Russellf17c8602008-11-25 02:35:11 +10304095 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
4096 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
Rusty Russellf17c8602008-11-25 02:35:11 +10304098 ret = sched_getaffinity(pid, mask);
4099 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09004100 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004101
4102 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10304103 ret = -EFAULT;
4104 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09004105 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10304106 }
4107 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
Rusty Russellf17c8602008-11-25 02:35:11 +10304109 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110}
4111
4112/**
4113 * sys_sched_yield - yield the current processor to other threads.
4114 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004115 * This function yields the current CPU to other tasks. If there are no
4116 * other threads running on this CPU then this function will return.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004117 *
4118 * Return: 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004120SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004122 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123
Ingo Molnar2d723762007-10-15 17:00:12 +02004124 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004125 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
4127 /*
4128 * Since we are going to call schedule() anyway, there's
4129 * no need to preempt or enable interrupts:
4130 */
4131 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004132 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01004133 do_raw_spin_unlock(&rq->lock);
Thomas Gleixnerba74c142011-03-21 13:32:17 +01004134 sched_preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
4136 schedule();
4137
4138 return 0;
4139}
4140
Andrew Mortone7b38402006-06-30 01:56:00 -07004141static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142{
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004143 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02004144 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004145 __preempt_count_sub(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146}
4147
Herbert Xu02b67cc32008-01-25 21:08:28 +01004148int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149{
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004150 rcu_cond_resched();
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004151 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 __cond_resched();
4153 return 1;
4154 }
4155 return 0;
4156}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004157EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
4159/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004160 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 * call schedule, and on return reacquire the lock.
4162 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004163 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 * operations here to prevent schedule() from being called twice (once via
4165 * spin_unlock(), once by hand).
4166 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004167int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168{
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004169 bool need_rcu_resched = rcu_should_resched();
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004170 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004171 int ret = 0;
4172
Peter Zijlstraf607c662009-07-20 19:16:29 +02004173 lockdep_assert_held(lock);
4174
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004175 if (spin_needbreak(lock) || resched || need_rcu_resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004177 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01004178 __cond_resched();
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004179 else if (unlikely(need_rcu_resched))
4180 rcu_resched();
Nick Piggin95c354f2008-01-30 13:31:20 +01004181 else
4182 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004183 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004186 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004188EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004190int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191{
4192 BUG_ON(!in_softirq());
4193
Paul E. McKenneyac1bea82014-03-16 21:36:25 -07004194 rcu_cond_resched(); /* BH disabled OK, just recording QSes. */
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004195 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004196 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 __cond_resched();
4198 local_bh_disable();
4199 return 1;
4200 }
4201 return 0;
4202}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004203EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205/**
4206 * yield - yield the current processor to other threads.
4207 *
Peter Zijlstra8e3fabf2012-03-06 18:54:26 +01004208 * Do not ever use this function, there's a 99% chance you're doing it wrong.
4209 *
4210 * The scheduler is at all times free to pick the calling task as the most
4211 * eligible task to run, if removing the yield() call from your code breaks
4212 * it, its already broken.
4213 *
4214 * Typical broken usage is:
4215 *
4216 * while (!event)
4217 * yield();
4218 *
4219 * where one assumes that yield() will let 'the other' process run that will
4220 * make event true. If the current task is a SCHED_FIFO task that will never
4221 * happen. Never use yield() as a progress guarantee!!
4222 *
4223 * If you want to use yield() to wait for something, use wait_event().
4224 * If you want to use yield() to be 'nice' for others, use cond_resched().
4225 * If you still want to use yield(), do not!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 */
4227void __sched yield(void)
4228{
4229 set_current_state(TASK_RUNNING);
4230 sys_sched_yield();
4231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232EXPORT_SYMBOL(yield);
4233
Mike Galbraithd95f4122011-02-01 09:50:51 -05004234/**
4235 * yield_to - yield the current processor to another thread in
4236 * your thread group, or accelerate that thread toward the
4237 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07004238 * @p: target task
4239 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05004240 *
4241 * It's the caller's job to ensure that the target task struct
4242 * can't go away on us before we can do any checks.
4243 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004244 * Return:
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304245 * true (>0) if we indeed boosted the target task.
4246 * false (0) if we failed to boost the target.
4247 * -ESRCH if there's no task to yield to.
Mike Galbraithd95f4122011-02-01 09:50:51 -05004248 */
Dan Carpenterfa933842014-05-23 13:20:42 +03004249int __sched yield_to(struct task_struct *p, bool preempt)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004250{
4251 struct task_struct *curr = current;
4252 struct rq *rq, *p_rq;
4253 unsigned long flags;
Dan Carpenterc3c18642013-02-05 14:37:51 +03004254 int yielded = 0;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004255
4256 local_irq_save(flags);
4257 rq = this_rq();
4258
4259again:
4260 p_rq = task_rq(p);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304261 /*
4262 * If we're the only runnable task on the rq and target rq also
4263 * has only one task, there's absolutely no point in yielding.
4264 */
4265 if (rq->nr_running == 1 && p_rq->nr_running == 1) {
4266 yielded = -ESRCH;
4267 goto out_irq;
4268 }
4269
Mike Galbraithd95f4122011-02-01 09:50:51 -05004270 double_rq_lock(rq, p_rq);
Shigeru Yoshida39e24d8f2013-11-23 18:38:01 +09004271 if (task_rq(p) != p_rq) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004272 double_rq_unlock(rq, p_rq);
4273 goto again;
4274 }
4275
4276 if (!curr->sched_class->yield_to_task)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304277 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004278
4279 if (curr->sched_class != p->sched_class)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304280 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004281
4282 if (task_running(p_rq, p) || p->state)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304283 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004284
4285 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004286 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004287 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004288 /*
4289 * Make p's CPU reschedule; pick_next_entity takes care of
4290 * fairness.
4291 */
4292 if (preempt && rq != p_rq)
4293 resched_task(p_rq->curr);
4294 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05004295
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304296out_unlock:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004297 double_rq_unlock(rq, p_rq);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304298out_irq:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004299 local_irq_restore(flags);
4300
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304301 if (yielded > 0)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004302 schedule();
4303
4304 return yielded;
4305}
4306EXPORT_SYMBOL_GPL(yield_to);
4307
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004309 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 */
4312void __sched io_schedule(void)
4313{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004314 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004316 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004318 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004319 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004321 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004323 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325EXPORT_SYMBOL(io_schedule);
4326
4327long __sched io_schedule_timeout(long timeout)
4328{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004329 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 long ret;
4331
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004332 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004334 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004335 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004337 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004339 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 return ret;
4341}
4342
4343/**
4344 * sys_sched_get_priority_max - return maximum RT priority.
4345 * @policy: scheduling class.
4346 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004347 * Return: On success, this syscall returns the maximum
4348 * rt_priority that can be used by a given scheduling class.
4349 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004351SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352{
4353 int ret = -EINVAL;
4354
4355 switch (policy) {
4356 case SCHED_FIFO:
4357 case SCHED_RR:
4358 ret = MAX_USER_RT_PRIO-1;
4359 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004360 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004362 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004363 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 ret = 0;
4365 break;
4366 }
4367 return ret;
4368}
4369
4370/**
4371 * sys_sched_get_priority_min - return minimum RT priority.
4372 * @policy: scheduling class.
4373 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004374 * Return: On success, this syscall returns the minimum
4375 * rt_priority that can be used by a given scheduling class.
4376 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004378SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379{
4380 int ret = -EINVAL;
4381
4382 switch (policy) {
4383 case SCHED_FIFO:
4384 case SCHED_RR:
4385 ret = 1;
4386 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004387 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004389 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004390 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 ret = 0;
4392 }
4393 return ret;
4394}
4395
4396/**
4397 * sys_sched_rr_get_interval - return the default timeslice of a process.
4398 * @pid: pid of the process.
4399 * @interval: userspace pointer to the timeslice value.
4400 *
4401 * this syscall writes the default timeslice value of a given process
4402 * into the user-space timespec buffer. A value of '0' means infinity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004403 *
4404 * Return: On success, 0 and the timeslice is in @interval. Otherwise,
4405 * an error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01004407SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01004408 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004410 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004411 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004412 unsigned long flags;
4413 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004414 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
4417 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004418 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
4420 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004421 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 p = find_process_by_pid(pid);
4423 if (!p)
4424 goto out_unlock;
4425
4426 retval = security_task_getscheduler(p);
4427 if (retval)
4428 goto out_unlock;
4429
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004430 rq = task_rq_lock(p, &flags);
Peter Zijlstraa57beec2014-01-27 11:54:13 +01004431 time_slice = 0;
4432 if (p->sched_class->get_rr_interval)
4433 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004434 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004435
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004436 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004437 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004440
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004442 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 return retval;
4444}
4445
Steven Rostedt7c731e02008-05-12 21:20:41 +02004446static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004447
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004448void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 unsigned long free = 0;
Paul E. McKenney4e797522012-11-07 13:35:32 -08004451 int ppid;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004452 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08004455 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004456 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004457#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004459 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004461 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462#else
4463 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004464 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004466 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467#endif
4468#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05004469 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470#endif
Paul E. McKenney4e797522012-11-07 13:35:32 -08004471 rcu_read_lock();
4472 ppid = task_pid_nr(rcu_dereference(p->real_parent));
4473 rcu_read_unlock();
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004474 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
Paul E. McKenney4e797522012-11-07 13:35:32 -08004475 task_pid_nr(p), ppid,
David Rientjesaa47b7e2009-05-04 01:38:05 -07004476 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Tejun Heo3d1cb202013-04-30 15:27:22 -07004478 print_worker_info(KERN_INFO, p);
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01004479 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480}
4481
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004482void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004484 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
Ingo Molnar4bd77322007-07-11 21:21:47 +02004486#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004487 printk(KERN_INFO
4488 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004490 printk(KERN_INFO
4491 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004493 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 do_each_thread(g, p) {
4495 /*
4496 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004497 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 */
4499 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004500 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004501 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 } while_each_thread(g, p);
4503
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004504 touch_all_softlockup_watchdogs();
4505
Ingo Molnardd41f592007-07-09 18:51:59 +02004506#ifdef CONFIG_SCHED_DEBUG
4507 sysrq_sched_debug_show();
4508#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004509 rcu_read_unlock();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004510 /*
4511 * Only show locks if all tasks are dumped:
4512 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02004513 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004514 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515}
4516
Paul Gortmaker0db06282013-06-19 14:53:51 -04004517void init_idle_bootup_task(struct task_struct *idle)
Ingo Molnar1df21052007-07-09 18:51:58 +02004518{
Ingo Molnardd41f592007-07-09 18:51:59 +02004519 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004520}
4521
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004522/**
4523 * init_idle - set up an idle thread for a given CPU
4524 * @idle: task in question
4525 * @cpu: cpu the idle task belongs to
4526 *
4527 * NOTE: this function does not set the idle thread's NEED_RESCHED
4528 * flag, to make booting more robust.
4529 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004530void init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004532 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 unsigned long flags;
4534
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004535 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01004536
Rik van Riel5e1576e2013-10-07 11:29:26 +01004537 __sched_fork(0, idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01004538 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02004539 idle->se.exec_start = sched_clock();
4540
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004541 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004542 /*
4543 * We're having a chicken and egg problem, even though we are
4544 * holding rq->lock, the cpu isn't yet set to this cpu so the
4545 * lockdep check in task_group() will fail.
4546 *
4547 * Similar case to sched_fork(). / Alternatively we could
4548 * use task_rq_lock() here and obtain the other rq->lock.
4549 *
4550 * Silence PROVE_RCU
4551 */
4552 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02004553 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004554 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 rq->curr = rq->idle = idle;
Thomas Gleixner77177852014-02-07 20:58:37 +01004557 idle->on_rq = 1;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02004558#if defined(CONFIG_SMP)
4559 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07004560#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004561 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
4563 /* Set the preempt count _outside_ the spinlocks! */
Peter Zijlstra01028742013-08-14 14:55:46 +02004564 init_idle_preempt_count(idle, cpu);
Jonathan Corbet625f2a32011-04-22 11:19:10 -06004565
Ingo Molnardd41f592007-07-09 18:51:59 +02004566 /*
4567 * The idle tasks have their own, simple scheduling class:
4568 */
4569 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05004570 ftrace_graph_init_idle_task(idle, cpu);
Frederic Weisbecker45eacc62013-05-15 22:16:32 +02004571 vtime_init_idle(idle, cpu);
Carsten Emdef1c6f1a2011-10-26 23:14:16 +02004572#if defined(CONFIG_SMP)
4573 sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
4574#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575}
4576
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577#ifdef CONFIG_SMP
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004578void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
4579{
4580 if (p->sched_class && p->sched_class->set_cpus_allowed)
4581 p->sched_class->set_cpus_allowed(p, new_mask);
Peter Zijlstra49396022011-06-25 15:45:46 +02004582
4583 cpumask_copy(&p->cpus_allowed, new_mask);
Peter Zijlstra29baa742012-04-23 12:11:21 +02004584 p->nr_cpus_allowed = cpumask_weight(new_mask);
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004585}
4586
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587/*
4588 * This is how migration works:
4589 *
Tejun Heo969c7922010-05-06 18:49:21 +02004590 * 1) we invoke migration_cpu_stop() on the target CPU using
4591 * stop_one_cpu().
4592 * 2) stopper starts to run (implicitly forcing the migrated thread
4593 * off the CPU)
4594 * 3) it checks whether the migrated task is still in the wrong runqueue.
4595 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02004597 * 5) stopper completes and stop_one_cpu() returns and the migration
4598 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 */
4600
4601/*
4602 * Change a given task's CPU affinity. Migrate the thread to a
4603 * proper CPU and schedule it away if the CPU it's executing on
4604 * is removed from the allowed bitmask.
4605 *
4606 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004607 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 * call is not atomic; no spinlocks may be held.
4609 */
Rusty Russell96f874e22008-11-25 02:35:14 +10304610int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611{
4612 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004613 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02004614 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004615 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
4617 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004618
Yong Zhangdb44fc02011-05-09 22:07:05 +08004619 if (cpumask_equal(&p->cpus_allowed, new_mask))
4620 goto out;
4621
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004622 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 ret = -EINVAL;
4624 goto out;
4625 }
4626
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004627 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01004628
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10304630 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 goto out;
4632
Tejun Heo969c7922010-05-06 18:49:21 +02004633 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Peter Zijlstrabd8e7dd2011-04-05 17:23:59 +02004634 if (p->on_rq) {
Tejun Heo969c7922010-05-06 18:49:21 +02004635 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004637 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02004638 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 tlb_migrate_finish(p->mm);
4640 return 0;
4641 }
4642out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004643 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004644
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 return ret;
4646}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07004647EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
4649/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004650 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 * this because either it can't run here any more (set_cpus_allowed()
4652 * away from this CPU, or CPU going down), or because we're
4653 * attempting to rebalance this task on exec (sched_exec).
4654 *
4655 * So we race with normal scheduler movements, but that's OK, as long
4656 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004657 *
4658 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004660static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004662 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01004663 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
Max Krasnyanskye761b772008-07-15 04:43:49 -07004665 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004666 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
4668 rq_src = cpu_rq(src_cpu);
4669 rq_dest = cpu_rq(dest_cpu);
4670
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004671 raw_spin_lock(&p->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 double_rq_lock(rq_src, rq_dest);
4673 /* Already moved. */
4674 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004675 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 /* Affinity changed (again). */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02004677 if (!cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004678 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
Peter Zijlstrae2912002009-12-16 18:04:36 +01004680 /*
4681 * If we're not on a rq, the next wake-up will ensure we're
4682 * placed properly.
4683 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004684 if (p->on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004685 dequeue_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004686 set_task_cpu(p, dest_cpu);
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004687 enqueue_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02004688 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004690done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07004691 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004692fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 double_rq_unlock(rq_src, rq_dest);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004694 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004695 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696}
4697
Mel Gormane6628d52013-10-07 11:29:02 +01004698#ifdef CONFIG_NUMA_BALANCING
4699/* Migrate current task p to target_cpu */
4700int migrate_task_to(struct task_struct *p, int target_cpu)
4701{
4702 struct migration_arg arg = { p, target_cpu };
4703 int curr_cpu = task_cpu(p);
4704
4705 if (curr_cpu == target_cpu)
4706 return 0;
4707
4708 if (!cpumask_test_cpu(target_cpu, tsk_cpus_allowed(p)))
4709 return -EINVAL;
4710
4711 /* TODO: This is not properly updating schedstats */
4712
Mel Gorman286549d2014-01-21 15:51:03 -08004713 trace_sched_move_numa(p, curr_cpu, target_cpu);
Mel Gormane6628d52013-10-07 11:29:02 +01004714 return stop_one_cpu(curr_cpu, migration_cpu_stop, &arg);
4715}
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004716
4717/*
4718 * Requeue a task on a given node and accurately track the number of NUMA
4719 * tasks on the runqueues
4720 */
4721void sched_setnuma(struct task_struct *p, int nid)
4722{
4723 struct rq *rq;
4724 unsigned long flags;
4725 bool on_rq, running;
4726
4727 rq = task_rq_lock(p, &flags);
4728 on_rq = p->on_rq;
4729 running = task_current(rq, p);
4730
4731 if (on_rq)
4732 dequeue_task(rq, p, 0);
4733 if (running)
4734 p->sched_class->put_prev_task(rq, p);
4735
4736 p->numa_preferred_nid = nid;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004737
4738 if (running)
4739 p->sched_class->set_curr_task(rq);
4740 if (on_rq)
4741 enqueue_task(rq, p, 0);
4742 task_rq_unlock(rq, p, &flags);
4743}
Mel Gormane6628d52013-10-07 11:29:02 +01004744#endif
4745
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746/*
Tejun Heo969c7922010-05-06 18:49:21 +02004747 * migration_cpu_stop - this will be executed by a highprio stopper thread
4748 * and performs thread migration by bumping thread off CPU then
4749 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 */
Tejun Heo969c7922010-05-06 18:49:21 +02004751static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752{
Tejun Heo969c7922010-05-06 18:49:21 +02004753 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754
Tejun Heo969c7922010-05-06 18:49:21 +02004755 /*
4756 * The original target cpu might have gone down and we might
4757 * be on another cpu but it doesn't matter.
4758 */
4759 local_irq_disable();
4760 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
4761 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 return 0;
4763}
4764
4765#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Ingo Molnar48f24c42006-07-03 00:25:40 -07004767/*
4768 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 * offline.
4770 */
4771void idle_task_exit(void)
4772{
4773 struct mm_struct *mm = current->active_mm;
4774
4775 BUG_ON(cpu_online(smp_processor_id()));
4776
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004777 if (mm != &init_mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 switch_mm(mm, &init_mm, current);
Martin Schwidefskya53efe52012-10-26 17:17:44 +02004779 finish_arch_post_lock_switch();
4780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 mmdrop(mm);
4782}
4783
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004784/*
Peter Zijlstra5d180232012-08-20 11:26:57 +02004785 * Since this CPU is going 'away' for a while, fold any nr_active delta
4786 * we might have. Assumes we're called after migrate_tasks() so that the
4787 * nr_active count is stable.
4788 *
4789 * Also see the comment "Global load-average calculations".
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004790 */
Peter Zijlstra5d180232012-08-20 11:26:57 +02004791static void calc_load_migrate(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792{
Peter Zijlstra5d180232012-08-20 11:26:57 +02004793 long delta = calc_load_fold_active(rq);
4794 if (delta)
4795 atomic_long_add(delta, &calc_load_tasks);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02004796}
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004797
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004798static void put_prev_task_fake(struct rq *rq, struct task_struct *prev)
4799{
4800}
4801
4802static const struct sched_class fake_sched_class = {
4803 .put_prev_task = put_prev_task_fake,
4804};
4805
4806static struct task_struct fake_task = {
4807 /*
4808 * Avoid pull_{rt,dl}_task()
4809 */
4810 .prio = MAX_PRIO + 1,
4811 .sched_class = &fake_sched_class,
4812};
4813
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004814/*
4815 * Migrate all tasks from the rq, sleeping tasks will be migrated by
4816 * try_to_wake_up()->select_task_rq().
4817 *
4818 * Called with rq->lock held even though we'er in stop_machine() and
4819 * there's no concurrency possible, we hold the required locks anyway
4820 * because of lock validation efforts.
4821 */
4822static void migrate_tasks(unsigned int dead_cpu)
4823{
4824 struct rq *rq = cpu_rq(dead_cpu);
4825 struct task_struct *next, *stop = rq->stop;
4826 int dest_cpu;
4827
4828 /*
4829 * Fudge the rq selection such that the below task selection loop
4830 * doesn't get stuck on the currently eligible stop task.
4831 *
4832 * We're currently inside stop_machine() and the rq is either stuck
4833 * in the stop_machine_cpu_stop() loop, or we're executing this code,
4834 * either way we should never end up calling schedule() until we're
4835 * done here.
4836 */
4837 rq->stop = NULL;
4838
Frederic Weisbecker77bd3972013-04-12 01:50:58 +02004839 /*
4840 * put_prev_task() and pick_next_task() sched
4841 * class method both need to have an up-to-date
4842 * value of rq->clock[_task]
4843 */
4844 update_rq_clock(rq);
4845
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004846 for ( ; ; ) {
4847 /*
4848 * There's this thread running, bail when that's the only
4849 * remaining thread.
4850 */
4851 if (rq->nr_running == 1)
4852 break;
4853
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004854 next = pick_next_task(rq, &fake_task);
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004855 BUG_ON(!next);
4856 next->sched_class->put_prev_task(rq, next);
4857
4858 /* Find suitable destination for @next, with force if needed. */
4859 dest_cpu = select_fallback_rq(dead_cpu, next);
4860 raw_spin_unlock(&rq->lock);
4861
4862 __migrate_task(next, dead_cpu, dest_cpu);
4863
4864 raw_spin_lock(&rq->lock);
4865 }
4866
4867 rq->stop = stop;
4868}
4869
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870#endif /* CONFIG_HOTPLUG_CPU */
4871
Nick Piggine692ab52007-07-26 13:40:43 +02004872#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
4873
4874static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004875 {
4876 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004877 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004878 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004879 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004880};
4881
4882static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004883 {
4884 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004885 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004886 .child = sd_ctl_dir,
4887 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004888 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004889};
4890
4891static struct ctl_table *sd_alloc_ctl_entry(int n)
4892{
4893 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02004894 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02004895
Nick Piggine692ab52007-07-26 13:40:43 +02004896 return entry;
4897}
4898
Milton Miller6382bc92007-10-15 17:00:19 +02004899static void sd_free_ctl_entry(struct ctl_table **tablep)
4900{
Milton Millercd7900762007-10-17 16:55:11 +02004901 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02004902
Milton Millercd7900762007-10-17 16:55:11 +02004903 /*
4904 * In the intermediate directories, both the child directory and
4905 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004906 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02004907 * static strings and all have proc handlers.
4908 */
4909 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02004910 if (entry->child)
4911 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02004912 if (entry->proc_handler == NULL)
4913 kfree(entry->procname);
4914 }
Milton Miller6382bc92007-10-15 17:00:19 +02004915
4916 kfree(*tablep);
4917 *tablep = NULL;
4918}
4919
Namhyung Kim201c3732012-08-16 17:03:24 +09004920static int min_load_idx = 0;
libinfd9b86d2013-04-08 14:39:12 +08004921static int max_load_idx = CPU_LOAD_IDX_MAX-1;
Namhyung Kim201c3732012-08-16 17:03:24 +09004922
Nick Piggine692ab52007-07-26 13:40:43 +02004923static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02004924set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02004925 const char *procname, void *data, int maxlen,
Namhyung Kim201c3732012-08-16 17:03:24 +09004926 umode_t mode, proc_handler *proc_handler,
4927 bool load_idx)
Nick Piggine692ab52007-07-26 13:40:43 +02004928{
Nick Piggine692ab52007-07-26 13:40:43 +02004929 entry->procname = procname;
4930 entry->data = data;
4931 entry->maxlen = maxlen;
4932 entry->mode = mode;
4933 entry->proc_handler = proc_handler;
Namhyung Kim201c3732012-08-16 17:03:24 +09004934
4935 if (load_idx) {
4936 entry->extra1 = &min_load_idx;
4937 entry->extra2 = &max_load_idx;
4938 }
Nick Piggine692ab52007-07-26 13:40:43 +02004939}
4940
4941static struct ctl_table *
4942sd_alloc_ctl_domain_table(struct sched_domain *sd)
4943{
Alex Shi37e6bae2014-01-23 18:39:54 +08004944 struct ctl_table *table = sd_alloc_ctl_entry(14);
Nick Piggine692ab52007-07-26 13:40:43 +02004945
Milton Millerad1cdc12007-10-15 17:00:19 +02004946 if (table == NULL)
4947 return NULL;
4948
Alexey Dobriyane0361852007-08-09 11:16:46 +02004949 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004950 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004951 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004952 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004953 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004954 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004955 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004956 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004957 set_table_entry(&table[4], "newidle_idx", &sd->newidle_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[5], "wake_idx", &sd->wake_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[6], "forkexec_idx", &sd->forkexec_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[7], "busy_factor", &sd->busy_factor,
Namhyung Kim201c3732012-08-16 17:03:24 +09004964 sizeof(int), 0644, proc_dointvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004965 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Namhyung Kim201c3732012-08-16 17:03:24 +09004966 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004967 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02004968 &sd->cache_nice_tries,
Namhyung Kim201c3732012-08-16 17:03:24 +09004969 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004970 set_table_entry(&table[10], "flags", &sd->flags,
Namhyung Kim201c3732012-08-16 17:03:24 +09004971 sizeof(int), 0644, proc_dointvec_minmax, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004972 set_table_entry(&table[11], "max_newidle_lb_cost",
4973 &sd->max_newidle_lb_cost,
4974 sizeof(long), 0644, proc_doulongvec_minmax, false);
4975 set_table_entry(&table[12], "name", sd->name,
Namhyung Kim201c3732012-08-16 17:03:24 +09004976 CORENAME_MAX_SIZE, 0444, proc_dostring, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004977 /* &table[13] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02004978
4979 return table;
4980}
4981
Joe Perchesbe7002e2013-06-12 11:55:36 -07004982static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02004983{
4984 struct ctl_table *entry, *table;
4985 struct sched_domain *sd;
4986 int domain_num = 0, i;
4987 char buf[32];
4988
4989 for_each_domain(cpu, sd)
4990 domain_num++;
4991 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02004992 if (table == NULL)
4993 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02004994
4995 i = 0;
4996 for_each_domain(cpu, sd) {
4997 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02004998 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004999 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005000 entry->child = sd_alloc_ctl_domain_table(sd);
5001 entry++;
5002 i++;
5003 }
5004 return table;
5005}
5006
5007static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005008static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005009{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005010 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02005011 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5012 char buf[32];
5013
Milton Miller73785472007-10-24 18:23:48 +02005014 WARN_ON(sd_ctl_dir[0].child);
5015 sd_ctl_dir[0].child = entry;
5016
Milton Millerad1cdc12007-10-15 17:00:19 +02005017 if (entry == NULL)
5018 return;
5019
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005020 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005021 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005022 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005023 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005024 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005025 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005026 }
Milton Miller73785472007-10-24 18:23:48 +02005027
5028 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005029 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5030}
Milton Miller6382bc92007-10-15 17:00:19 +02005031
Milton Miller73785472007-10-24 18:23:48 +02005032/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005033static void unregister_sched_domain_sysctl(void)
5034{
Milton Miller73785472007-10-24 18:23:48 +02005035 if (sd_sysctl_header)
5036 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005037 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005038 if (sd_ctl_dir[0].child)
5039 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005040}
Nick Piggine692ab52007-07-26 13:40:43 +02005041#else
Milton Miller6382bc92007-10-15 17:00:19 +02005042static void register_sched_domain_sysctl(void)
5043{
5044}
5045static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005046{
5047}
5048#endif
5049
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005050static void set_rq_online(struct rq *rq)
5051{
5052 if (!rq->online) {
5053 const struct sched_class *class;
5054
Rusty Russellc6c49272008-11-25 02:35:05 +10305055 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005056 rq->online = 1;
5057
5058 for_each_class(class) {
5059 if (class->rq_online)
5060 class->rq_online(rq);
5061 }
5062 }
5063}
5064
5065static void set_rq_offline(struct rq *rq)
5066{
5067 if (rq->online) {
5068 const struct sched_class *class;
5069
5070 for_each_class(class) {
5071 if (class->rq_offline)
5072 class->rq_offline(rq);
5073 }
5074
Rusty Russellc6c49272008-11-25 02:35:05 +10305075 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005076 rq->online = 0;
5077 }
5078}
5079
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080/*
5081 * migration_call - callback that gets triggered when a CPU is added.
5082 * Here we can start up the necessary migration thread for the new CPU.
5083 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005084static int
Ingo Molnar48f24c42006-07-03 00:25:40 -07005085migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005087 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02005089 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005091 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005092
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02005094 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005098 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005099 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005100 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305101 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005102
5103 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04005104 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005105 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005107
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04005109 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02005110 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01005111 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005112 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005113 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305114 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005115 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005116 }
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005117 migrate_tasks(cpu);
5118 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005119 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra5d180232012-08-20 11:26:57 +02005120 break;
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005121
Peter Zijlstra5d180232012-08-20 11:26:57 +02005122 case CPU_DEAD:
Peter Zijlstraf319da02012-08-20 11:26:57 +02005123 calc_load_migrate(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005124 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125#endif
5126 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02005127
5128 update_max_interval();
5129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 return NOTIFY_OK;
5131}
5132
Paul Mackerrasf38b0822009-06-02 21:05:16 +10005133/*
5134 * Register at high priority so that task migration (migrate_all_tasks)
5135 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005136 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005138static struct notifier_block migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02005140 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141};
5142
Corey Minyarda803f022014-05-08 13:47:39 -05005143static void __cpuinit set_cpu_rq_start_time(void)
5144{
5145 int cpu = smp_processor_id();
5146 struct rq *rq = cpu_rq(cpu);
5147 rq->age_stamp = sched_clock_cpu(cpu);
5148}
5149
Paul Gortmaker0db06282013-06-19 14:53:51 -04005150static int sched_cpu_active(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005151 unsigned long action, void *hcpu)
5152{
5153 switch (action & ~CPU_TASKS_FROZEN) {
Corey Minyarda803f022014-05-08 13:47:39 -05005154 case CPU_STARTING:
5155 set_cpu_rq_start_time();
5156 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005157 case CPU_DOWN_FAILED:
5158 set_cpu_active((long)hcpu, true);
5159 return NOTIFY_OK;
5160 default:
5161 return NOTIFY_DONE;
5162 }
5163}
5164
Paul Gortmaker0db06282013-06-19 14:53:51 -04005165static int sched_cpu_inactive(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005166 unsigned long action, void *hcpu)
5167{
Peter Zijlstrade212f12013-12-19 11:54:45 +01005168 unsigned long flags;
5169 long cpu = (long)hcpu;
5170
Tejun Heo3a101d02010-06-08 21:40:36 +02005171 switch (action & ~CPU_TASKS_FROZEN) {
5172 case CPU_DOWN_PREPARE:
Peter Zijlstrade212f12013-12-19 11:54:45 +01005173 set_cpu_active(cpu, false);
5174
5175 /* explicitly allow suspend */
5176 if (!(action & CPU_TASKS_FROZEN)) {
5177 struct dl_bw *dl_b = dl_bw_of(cpu);
5178 bool overflow;
5179 int cpus;
5180
5181 raw_spin_lock_irqsave(&dl_b->lock, flags);
5182 cpus = dl_bw_cpus(cpu);
5183 overflow = __dl_overflow(dl_b, cpus, 0, 0);
5184 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
5185
5186 if (overflow)
5187 return notifier_from_errno(-EBUSY);
5188 }
Tejun Heo3a101d02010-06-08 21:40:36 +02005189 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005190 }
Peter Zijlstrade212f12013-12-19 11:54:45 +01005191
5192 return NOTIFY_DONE;
Tejun Heo3a101d02010-06-08 21:40:36 +02005193}
5194
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005195static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196{
5197 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005198 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005199
Tejun Heo3a101d02010-06-08 21:40:36 +02005200 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005201 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5202 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5204 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005205
Tejun Heo3a101d02010-06-08 21:40:36 +02005206 /* Register cpu active notifiers */
5207 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
5208 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
5209
Thomas Gleixnera004cd42009-07-21 09:54:05 +02005210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005212early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213#endif
5214
5215#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005216
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005217static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
5218
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005219#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005220
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005221static __read_mostly int sched_debug_enabled;
Mike Travisf6630112009-11-17 18:22:15 -06005222
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005223static int __init sched_debug_setup(char *str)
Mike Travisf6630112009-11-17 18:22:15 -06005224{
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005225 sched_debug_enabled = 1;
Mike Travisf6630112009-11-17 18:22:15 -06005226
5227 return 0;
5228}
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005229early_param("sched_debug", sched_debug_setup);
5230
5231static inline bool sched_debug(void)
5232{
5233 return sched_debug_enabled;
5234}
Mike Travisf6630112009-11-17 18:22:15 -06005235
Mike Travis7c16ec52008-04-04 18:11:11 -07005236static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10305237 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005238{
5239 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07005240 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005241
Rusty Russell968ea6d2008-12-13 21:55:51 +10305242 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10305243 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005244
5245 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5246
5247 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005248 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005249 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005250 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5251 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005252 return -1;
5253 }
5254
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005255 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005256
Rusty Russell758b2cd2008-11-25 02:35:04 +10305257 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005258 printk(KERN_ERR "ERROR: domain->span does not contain "
5259 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005260 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10305261 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005262 printk(KERN_ERR "ERROR: domain->groups does not contain"
5263 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005264 }
5265
5266 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5267 do {
5268 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005269 printk("\n");
5270 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005271 break;
5272 }
5273
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005274 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005275 * Even though we initialize ->capacity to something semi-sane,
5276 * we leave capacity_orig unset. This allows us to detect if
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005277 * domain iteration is still funny without causing /0 traps.
5278 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005279 if (!group->sgc->capacity_orig) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005280 printk(KERN_CONT "\n");
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005281 printk(KERN_ERR "ERROR: domain->cpu_capacity not set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005282 break;
5283 }
5284
Rusty Russell758b2cd2008-11-25 02:35:04 +10305285 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005286 printk(KERN_CONT "\n");
5287 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005288 break;
5289 }
5290
Peter Zijlstracb83b622012-04-17 15:49:36 +02005291 if (!(sd->flags & SD_OVERLAP) &&
5292 cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005293 printk(KERN_CONT "\n");
5294 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005295 break;
5296 }
5297
Rusty Russell758b2cd2008-11-25 02:35:04 +10305298 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005299
Rusty Russell968ea6d2008-12-13 21:55:51 +10305300 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305301
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005302 printk(KERN_CONT " %s", str);
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005303 if (group->sgc->capacity != SCHED_CAPACITY_SCALE) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005304 printk(KERN_CONT " (cpu_capacity = %d)",
5305 group->sgc->capacity);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305306 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005307
5308 group = group->next;
5309 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005310 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005311
Rusty Russell758b2cd2008-11-25 02:35:04 +10305312 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005313 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005314
Rusty Russell758b2cd2008-11-25 02:35:04 +10305315 if (sd->parent &&
5316 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005317 printk(KERN_ERR "ERROR: parent span is not a superset "
5318 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005319 return 0;
5320}
5321
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322static void sched_domain_debug(struct sched_domain *sd, int cpu)
5323{
5324 int level = 0;
5325
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005326 if (!sched_debug_enabled)
Mike Travisf6630112009-11-17 18:22:15 -06005327 return;
5328
Nick Piggin41c7ce92005-06-25 14:57:24 -07005329 if (!sd) {
5330 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5331 return;
5332 }
5333
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5335
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005336 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005337 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 level++;
5340 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005341 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005342 break;
5343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005345#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005346# define sched_domain_debug(sd, cpu) do { } while (0)
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005347static inline bool sched_debug(void)
5348{
5349 return false;
5350}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005351#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005353static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005354{
Rusty Russell758b2cd2008-11-25 02:35:04 +10305355 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005356 return 1;
5357
5358 /* Following flags need at least 2 groups */
5359 if (sd->flags & (SD_LOAD_BALANCE |
5360 SD_BALANCE_NEWIDLE |
5361 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005362 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005363 SD_SHARE_CPUCAPACITY |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005364 SD_SHARE_PKG_RESOURCES |
5365 SD_SHARE_POWERDOMAIN)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005366 if (sd->groups != sd->groups->next)
5367 return 0;
5368 }
5369
5370 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005371 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005372 return 0;
5373
5374 return 1;
5375}
5376
Ingo Molnar48f24c42006-07-03 00:25:40 -07005377static int
5378sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005379{
5380 unsigned long cflags = sd->flags, pflags = parent->flags;
5381
5382 if (sd_degenerate(parent))
5383 return 1;
5384
Rusty Russell758b2cd2008-11-25 02:35:04 +10305385 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005386 return 0;
5387
Suresh Siddha245af2c2005-06-25 14:57:25 -07005388 /* Flags needing groups don't count if only 1 group in parent */
5389 if (parent->groups == parent->groups->next) {
5390 pflags &= ~(SD_LOAD_BALANCE |
5391 SD_BALANCE_NEWIDLE |
5392 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005393 SD_BALANCE_EXEC |
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04005394 SD_SHARE_CPUCAPACITY |
Peter Zijlstra10866e622013-08-19 16:57:04 +02005395 SD_SHARE_PKG_RESOURCES |
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02005396 SD_PREFER_SIBLING |
5397 SD_SHARE_POWERDOMAIN);
Ken Chen54364992008-12-07 18:47:37 -08005398 if (nr_node_ids == 1)
5399 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005400 }
5401 if (~cflags & pflags)
5402 return 0;
5403
5404 return 1;
5405}
5406
Peter Zijlstradce840a2011-04-07 14:09:50 +02005407static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10305408{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005409 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01005410
Rusty Russell68e74562008-11-25 02:35:13 +10305411 cpupri_cleanup(&rd->cpupri);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005412 cpudl_cleanup(&rd->cpudl);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005413 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305414 free_cpumask_var(rd->rto_mask);
5415 free_cpumask_var(rd->online);
5416 free_cpumask_var(rd->span);
5417 kfree(rd);
5418}
5419
Gregory Haskins57d885f2008-01-25 21:08:18 +01005420static void rq_attach_root(struct rq *rq, struct root_domain *rd)
5421{
Ingo Molnara0490fa2009-02-12 11:35:40 +01005422 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005423 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005424
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005425 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005426
5427 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01005428 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005429
Rusty Russellc6c49272008-11-25 02:35:05 +10305430 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005431 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005432
Rusty Russellc6c49272008-11-25 02:35:05 +10305433 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01005434
Ingo Molnara0490fa2009-02-12 11:35:40 +01005435 /*
Shigeru Yoshida05159732013-11-17 12:12:36 +09005436 * If we dont want to free the old_rd yet then
Ingo Molnara0490fa2009-02-12 11:35:40 +01005437 * set old_rd to NULL to skip the freeing later
5438 * in this function:
5439 */
5440 if (!atomic_dec_and_test(&old_rd->refcount))
5441 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005442 }
5443
5444 atomic_inc(&rd->refcount);
5445 rq->rd = rd;
5446
Rusty Russellc6c49272008-11-25 02:35:05 +10305447 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04005448 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005449 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005450
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005451 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01005452
5453 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02005454 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005455}
5456
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005457static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005458{
5459 memset(rd, 0, sizeof(*rd));
5460
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005461 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08005462 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005463 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305464 goto free_span;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005465 if (!alloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305466 goto free_online;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005467 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
5468 goto free_dlo_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02005469
Dario Faggioli332ac172013-11-07 14:43:45 +01005470 init_dl_bw(&rd->dl_bw);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005471 if (cpudl_init(&rd->cpudl) != 0)
5472 goto free_dlo_mask;
Dario Faggioli332ac172013-11-07 14:43:45 +01005473
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005474 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10305475 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10305476 return 0;
5477
Rusty Russell68e74562008-11-25 02:35:13 +10305478free_rto_mask:
5479 free_cpumask_var(rd->rto_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005480free_dlo_mask:
5481 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305482free_online:
5483 free_cpumask_var(rd->online);
5484free_span:
5485 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08005486out:
Rusty Russellc6c49272008-11-25 02:35:05 +10305487 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005488}
5489
Peter Zijlstra029632f2011-10-25 10:00:11 +02005490/*
5491 * By default the system creates a single root-domain with all cpus as
5492 * members (mimicking the global state we have today).
5493 */
5494struct root_domain def_root_domain;
5495
Gregory Haskins57d885f2008-01-25 21:08:18 +01005496static void init_defrootdomain(void)
5497{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005498 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10305499
Gregory Haskins57d885f2008-01-25 21:08:18 +01005500 atomic_set(&def_root_domain.refcount, 1);
5501}
5502
Gregory Haskinsdc938522008-01-25 21:08:26 +01005503static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005504{
5505 struct root_domain *rd;
5506
5507 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
5508 if (!rd)
5509 return NULL;
5510
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005511 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305512 kfree(rd);
5513 return NULL;
5514 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01005515
5516 return rd;
5517}
5518
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005519static void free_sched_groups(struct sched_group *sg, int free_sgc)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005520{
5521 struct sched_group *tmp, *first;
5522
5523 if (!sg)
5524 return;
5525
5526 first = sg;
5527 do {
5528 tmp = sg->next;
5529
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005530 if (free_sgc && atomic_dec_and_test(&sg->sgc->ref))
5531 kfree(sg->sgc);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005532
5533 kfree(sg);
5534 sg = tmp;
5535 } while (sg != first);
5536}
5537
Peter Zijlstradce840a2011-04-07 14:09:50 +02005538static void free_sched_domain(struct rcu_head *rcu)
5539{
5540 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005541
5542 /*
5543 * If its an overlapping domain it has private groups, iterate and
5544 * nuke them all.
5545 */
5546 if (sd->flags & SD_OVERLAP) {
5547 free_sched_groups(sd->groups, 1);
5548 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005549 kfree(sd->groups->sgc);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005550 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005551 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005552 kfree(sd);
5553}
5554
5555static void destroy_sched_domain(struct sched_domain *sd, int cpu)
5556{
5557 call_rcu(&sd->rcu, free_sched_domain);
5558}
5559
5560static void destroy_sched_domains(struct sched_domain *sd, int cpu)
5561{
5562 for (; sd; sd = sd->parent)
5563 destroy_sched_domain(sd, cpu);
5564}
5565
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566/*
Peter Zijlstra518cd622011-12-07 15:07:31 +01005567 * Keep a special pointer to the highest sched_domain that has
5568 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
5569 * allows us to avoid some pointer chasing select_idle_sibling().
5570 *
5571 * Also keep a unique ID per domain (we use the first cpu number in
5572 * the cpumask of the domain), this allows us to quickly tell if
Peter Zijlstra39be3502012-01-26 12:44:34 +01005573 * two cpus are in the same cache domain, see cpus_share_cache().
Peter Zijlstra518cd622011-12-07 15:07:31 +01005574 */
5575DEFINE_PER_CPU(struct sched_domain *, sd_llc);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005576DEFINE_PER_CPU(int, sd_llc_size);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005577DEFINE_PER_CPU(int, sd_llc_id);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005578DEFINE_PER_CPU(struct sched_domain *, sd_numa);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305579DEFINE_PER_CPU(struct sched_domain *, sd_busy);
5580DEFINE_PER_CPU(struct sched_domain *, sd_asym);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005581
5582static void update_top_cache_domain(int cpu)
5583{
5584 struct sched_domain *sd;
Mel Gorman5d4cf992013-12-17 09:21:25 +00005585 struct sched_domain *busy_sd = NULL;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005586 int id = cpu;
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005587 int size = 1;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005588
5589 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005590 if (sd) {
Peter Zijlstra518cd622011-12-07 15:07:31 +01005591 id = cpumask_first(sched_domain_span(sd));
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005592 size = cpumask_weight(sched_domain_span(sd));
Mel Gorman5d4cf992013-12-17 09:21:25 +00005593 busy_sd = sd->parent; /* sd_busy */
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005594 }
Mel Gorman5d4cf992013-12-17 09:21:25 +00005595 rcu_assign_pointer(per_cpu(sd_busy, cpu), busy_sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005596
5597 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005598 per_cpu(sd_llc_size, cpu) = size;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005599 per_cpu(sd_llc_id, cpu) = id;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005600
5601 sd = lowest_flag_domain(cpu, SD_NUMA);
5602 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305603
5604 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
5605 rcu_assign_pointer(per_cpu(sd_asym, cpu), sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005606}
5607
5608/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01005609 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 * hold the hotplug lock.
5611 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01005612static void
5613cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005615 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005616 struct sched_domain *tmp;
5617
5618 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08005619 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005620 struct sched_domain *parent = tmp->parent;
5621 if (!parent)
5622 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08005623
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005624 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005625 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005626 if (parent->parent)
5627 parent->parent->child = tmp;
Peter Zijlstra10866e622013-08-19 16:57:04 +02005628 /*
5629 * Transfer SD_PREFER_SIBLING down in case of a
5630 * degenerate parent; the spans match for this
5631 * so the property transfers.
5632 */
5633 if (parent->flags & SD_PREFER_SIBLING)
5634 tmp->flags |= SD_PREFER_SIBLING;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005635 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08005636 } else
5637 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005638 }
5639
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005640 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005641 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005642 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005643 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005644 if (sd)
5645 sd->child = NULL;
5646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005648 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649
Gregory Haskins57d885f2008-01-25 21:08:18 +01005650 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005651 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07005652 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005653 destroy_sched_domains(tmp, cpu);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005654
5655 update_top_cache_domain(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656}
5657
5658/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10305659static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
5661/* Setup the mask of cpus configured for isolated domains */
5662static int __init isolated_cpu_setup(char *str)
5663{
Rusty Russellbdddd292009-12-02 14:09:16 +10305664 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10305665 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 return 1;
5667}
5668
Ingo Molnar8927f492007-10-15 17:00:13 +02005669__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005671struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005672 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005673 struct root_domain *rd;
5674};
5675
Andreas Herrmann2109b992009-08-18 12:53:00 +02005676enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005677 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005678 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02005679 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02005680 sa_none,
5681};
5682
Peter Zijlstrac1174872012-05-31 14:47:33 +02005683/*
5684 * Build an iteration mask that can exclude certain CPUs from the upwards
5685 * domain traversal.
5686 *
5687 * Asymmetric node setups can result in situations where the domain tree is of
5688 * unequal depth, make sure to skip domains that already cover the entire
5689 * range.
5690 *
5691 * In that case build_sched_domains() will have terminated the iteration early
5692 * and our sibling sd spans will be empty. Domains should always include the
5693 * cpu they're built on, so check that.
5694 *
5695 */
5696static void build_group_mask(struct sched_domain *sd, struct sched_group *sg)
5697{
5698 const struct cpumask *span = sched_domain_span(sd);
5699 struct sd_data *sdd = sd->private;
5700 struct sched_domain *sibling;
5701 int i;
5702
5703 for_each_cpu(i, span) {
5704 sibling = *per_cpu_ptr(sdd->sd, i);
5705 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
5706 continue;
5707
5708 cpumask_set_cpu(i, sched_group_mask(sg));
5709 }
5710}
5711
5712/*
5713 * Return the canonical balance cpu for this group, this is the first cpu
5714 * of this group that's also in the iteration mask.
5715 */
5716int group_balance_cpu(struct sched_group *sg)
5717{
5718 return cpumask_first_and(sched_group_cpus(sg), sched_group_mask(sg));
5719}
5720
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005721static int
5722build_overlap_sched_groups(struct sched_domain *sd, int cpu)
5723{
5724 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
5725 const struct cpumask *span = sched_domain_span(sd);
5726 struct cpumask *covered = sched_domains_tmpmask;
5727 struct sd_data *sdd = sd->private;
5728 struct sched_domain *child;
5729 int i;
5730
5731 cpumask_clear(covered);
5732
5733 for_each_cpu(i, span) {
5734 struct cpumask *sg_span;
5735
5736 if (cpumask_test_cpu(i, covered))
5737 continue;
5738
Peter Zijlstrac1174872012-05-31 14:47:33 +02005739 child = *per_cpu_ptr(sdd->sd, i);
5740
5741 /* See the comment near build_group_mask(). */
5742 if (!cpumask_test_cpu(i, sched_domain_span(child)))
5743 continue;
5744
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005745 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
Suresh Siddha4d78a222011-11-18 15:03:29 -08005746 GFP_KERNEL, cpu_to_node(cpu));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005747
5748 if (!sg)
5749 goto fail;
5750
5751 sg_span = sched_group_cpus(sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005752 if (child->child) {
5753 child = child->child;
5754 cpumask_copy(sg_span, sched_domain_span(child));
5755 } else
5756 cpumask_set_cpu(i, sg_span);
5757
5758 cpumask_or(covered, covered, sg_span);
5759
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005760 sg->sgc = *per_cpu_ptr(sdd->sgc, i);
5761 if (atomic_inc_return(&sg->sgc->ref) == 1)
Peter Zijlstrac1174872012-05-31 14:47:33 +02005762 build_group_mask(sd, sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005763
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005764 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005765 * Initialize sgc->capacity such that even if we mess up the
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005766 * domains and no possible iteration will get us here, we won't
5767 * die on a /0 trap.
5768 */
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04005769 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005770 sg->sgc->capacity_orig = sg->sgc->capacity;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005771
5772 /*
5773 * Make sure the first group of this domain contains the
5774 * canonical balance cpu. Otherwise the sched_domain iteration
5775 * breaks. See update_sg_lb_stats().
5776 */
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005777 if ((!groups && cpumask_test_cpu(cpu, sg_span)) ||
Peter Zijlstrac1174872012-05-31 14:47:33 +02005778 group_balance_cpu(sg) == cpu)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005779 groups = sg;
5780
5781 if (!first)
5782 first = sg;
5783 if (last)
5784 last->next = sg;
5785 last = sg;
5786 last->next = first;
5787 }
5788 sd->groups = groups;
5789
5790 return 0;
5791
5792fail:
5793 free_sched_groups(first, 0);
5794
5795 return -ENOMEM;
5796}
5797
Peter Zijlstradce840a2011-04-07 14:09:50 +02005798static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005800 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
5801 struct sched_domain *child = sd->child;
5802
5803 if (child)
5804 cpu = cpumask_first(sched_domain_span(child));
5805
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005806 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005807 *sg = *per_cpu_ptr(sdd->sg, cpu);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005808 (*sg)->sgc = *per_cpu_ptr(sdd->sgc, cpu);
5809 atomic_set(&(*sg)->sgc->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005810 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005811
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 return cpu;
5813}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Ingo Molnar48f24c42006-07-03 00:25:40 -07005815/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02005816 * build_sched_groups will build a circular linked list of the groups
5817 * covered by the given span, and will set each group's ->cpumask correctly,
Nicolas Pitreced549f2014-05-26 18:19:38 -04005818 * and ->cpu_capacity to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005819 *
5820 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07005821 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005822static int
5823build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005824{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005825 struct sched_group *first = NULL, *last = NULL;
5826 struct sd_data *sdd = sd->private;
5827 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005828 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005829 int i;
5830
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005831 get_group(cpu, sdd, &sd->groups);
5832 atomic_inc(&sd->groups->ref);
5833
Viresh Kumar09366292013-06-11 16:32:43 +05305834 if (cpu != cpumask_first(span))
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005835 return 0;
5836
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005837 lockdep_assert_held(&sched_domains_mutex);
5838 covered = sched_domains_tmpmask;
5839
Peter Zijlstradce840a2011-04-07 14:09:50 +02005840 cpumask_clear(covered);
5841
5842 for_each_cpu(i, span) {
5843 struct sched_group *sg;
Viresh Kumarcd08e922013-06-11 16:32:44 +05305844 int group, j;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005845
5846 if (cpumask_test_cpu(i, covered))
5847 continue;
5848
Viresh Kumarcd08e922013-06-11 16:32:44 +05305849 group = get_group(i, sdd, &sg);
Peter Zijlstrac1174872012-05-31 14:47:33 +02005850 cpumask_setall(sched_group_mask(sg));
Peter Zijlstradce840a2011-04-07 14:09:50 +02005851
5852 for_each_cpu(j, span) {
5853 if (get_group(j, sdd, NULL) != group)
5854 continue;
5855
5856 cpumask_set_cpu(j, covered);
5857 cpumask_set_cpu(j, sched_group_cpus(sg));
5858 }
5859
5860 if (!first)
5861 first = sg;
5862 if (last)
5863 last->next = sg;
5864 last = sg;
5865 }
5866 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005867
5868 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005869}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005870
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871/*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005872 * Initialize sched groups cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005873 *
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005874 * cpu_capacity indicates the capacity of sched group, which is used while
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005875 * distributing the load between different sched groups in a sched domain.
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005876 * Typically cpu_capacity for all the groups in a sched domain will be same
5877 * unless there are asymmetries in the topology. If there are asymmetries,
5878 * group having more cpu_capacity will pickup more load compared to the
5879 * group having less cpu_capacity.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005880 */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005881static void init_sched_groups_capacity(int cpu, struct sched_domain *sd)
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005882{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005883 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005884
Viresh Kumar94c95ba2013-06-11 16:32:45 +05305885 WARN_ON(!sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005886
5887 do {
5888 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
5889 sg = sg->next;
5890 } while (sg != sd->groups);
5891
Peter Zijlstrac1174872012-05-31 14:47:33 +02005892 if (cpu != group_balance_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005893 return;
5894
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005895 update_group_capacity(sd, cpu);
5896 atomic_set(&sg->sgc->nr_busy_cpus, sg->group_weight);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005897}
5898
5899/*
Mike Travis7c16ec52008-04-04 18:11:11 -07005900 * Initializers for schedule domains
5901 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
5902 */
5903
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005904static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02005905int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005906
5907static int __init setup_relax_domain_level(char *str)
5908{
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05005909 if (kstrtoint(str, 0, &default_relax_domain_level))
5910 pr_warn("Unable to set relax_domain_level\n");
Li Zefan30e0e172008-05-13 10:27:17 +08005911
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005912 return 1;
5913}
5914__setup("relax_domain_level=", setup_relax_domain_level);
5915
5916static void set_domain_attribute(struct sched_domain *sd,
5917 struct sched_domain_attr *attr)
5918{
5919 int request;
5920
5921 if (!attr || attr->relax_domain_level < 0) {
5922 if (default_relax_domain_level < 0)
5923 return;
5924 else
5925 request = default_relax_domain_level;
5926 } else
5927 request = attr->relax_domain_level;
5928 if (request < sd->level) {
5929 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005930 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005931 } else {
5932 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005933 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005934 }
5935}
5936
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005937static void __sdt_free(const struct cpumask *cpu_map);
5938static int __sdt_alloc(const struct cpumask *cpu_map);
5939
Andreas Herrmann2109b992009-08-18 12:53:00 +02005940static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
5941 const struct cpumask *cpu_map)
5942{
5943 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005944 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02005945 if (!atomic_read(&d->rd->refcount))
5946 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005947 case sa_sd:
5948 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02005949 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005950 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02005951 case sa_none:
5952 break;
5953 }
5954}
5955
5956static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
5957 const struct cpumask *cpu_map)
5958{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005959 memset(d, 0, sizeof(*d));
5960
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005961 if (__sdt_alloc(cpu_map))
5962 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005963 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005964 if (!d->sd)
5965 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005966 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02005967 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005968 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005969 return sa_rootdomain;
5970}
5971
Peter Zijlstradce840a2011-04-07 14:09:50 +02005972/*
5973 * NULL the sd_data elements we've used to build the sched_domain and
5974 * sched_group structure so that the subsequent __free_domain_allocs()
5975 * will not free the data we're using.
5976 */
5977static void claim_allocations(int cpu, struct sched_domain *sd)
5978{
5979 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005980
5981 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
5982 *per_cpu_ptr(sdd->sd, cpu) = NULL;
5983
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005984 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02005985 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005986
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04005987 if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref))
5988 *per_cpu_ptr(sdd->sgc, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005989}
5990
Peter Zijlstracb83b622012-04-17 15:49:36 +02005991#ifdef CONFIG_NUMA
Peter Zijlstracb83b622012-04-17 15:49:36 +02005992static int sched_domains_numa_levels;
Peter Zijlstracb83b622012-04-17 15:49:36 +02005993static int *sched_domains_numa_distance;
5994static struct cpumask ***sched_domains_numa_masks;
5995static int sched_domains_curr_level;
Vincent Guittot143e1e22014-04-11 11:44:37 +02005996#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02005997
Vincent Guittot143e1e22014-04-11 11:44:37 +02005998/*
5999 * SD_flags allowed in topology descriptions.
6000 *
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006001 * SD_SHARE_CPUCAPACITY - describes SMT topologies
Vincent Guittot143e1e22014-04-11 11:44:37 +02006002 * SD_SHARE_PKG_RESOURCES - describes shared caches
6003 * SD_NUMA - describes NUMA topologies
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006004 * SD_SHARE_POWERDOMAIN - describes shared power domain
Vincent Guittot143e1e22014-04-11 11:44:37 +02006005 *
6006 * Odd one out:
6007 * SD_ASYM_PACKING - describes SMT quirks
6008 */
6009#define TOPOLOGY_SD_FLAGS \
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006010 (SD_SHARE_CPUCAPACITY | \
Vincent Guittot143e1e22014-04-11 11:44:37 +02006011 SD_SHARE_PKG_RESOURCES | \
6012 SD_NUMA | \
Vincent Guittotd77b3ed2014-04-11 11:44:40 +02006013 SD_ASYM_PACKING | \
6014 SD_SHARE_POWERDOMAIN)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006015
6016static struct sched_domain *
Vincent Guittot143e1e22014-04-11 11:44:37 +02006017sd_init(struct sched_domain_topology_level *tl, int cpu)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006018{
6019 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu);
Vincent Guittot143e1e22014-04-11 11:44:37 +02006020 int sd_weight, sd_flags = 0;
6021
6022#ifdef CONFIG_NUMA
6023 /*
6024 * Ugly hack to pass state to sd_numa_mask()...
6025 */
6026 sched_domains_curr_level = tl->numa_level;
6027#endif
6028
6029 sd_weight = cpumask_weight(tl->mask(cpu));
6030
6031 if (tl->sd_flags)
6032 sd_flags = (*tl->sd_flags)();
6033 if (WARN_ONCE(sd_flags & ~TOPOLOGY_SD_FLAGS,
6034 "wrong sd_flags in topology description\n"))
6035 sd_flags &= ~TOPOLOGY_SD_FLAGS;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006036
6037 *sd = (struct sched_domain){
6038 .min_interval = sd_weight,
6039 .max_interval = 2*sd_weight,
6040 .busy_factor = 32,
Peter Zijlstra870a0bb2012-05-11 00:26:27 +02006041 .imbalance_pct = 125,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006042
6043 .cache_nice_tries = 0,
6044 .busy_idx = 0,
6045 .idle_idx = 0,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006046 .newidle_idx = 0,
6047 .wake_idx = 0,
6048 .forkexec_idx = 0,
6049
6050 .flags = 1*SD_LOAD_BALANCE
6051 | 1*SD_BALANCE_NEWIDLE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006052 | 1*SD_BALANCE_EXEC
6053 | 1*SD_BALANCE_FORK
Peter Zijlstracb83b622012-04-17 15:49:36 +02006054 | 0*SD_BALANCE_WAKE
Vincent Guittot143e1e22014-04-11 11:44:37 +02006055 | 1*SD_WAKE_AFFINE
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006056 | 0*SD_SHARE_CPUCAPACITY
Peter Zijlstracb83b622012-04-17 15:49:36 +02006057 | 0*SD_SHARE_PKG_RESOURCES
Vincent Guittot143e1e22014-04-11 11:44:37 +02006058 | 0*SD_SERIALIZE
Peter Zijlstracb83b622012-04-17 15:49:36 +02006059 | 0*SD_PREFER_SIBLING
Vincent Guittot143e1e22014-04-11 11:44:37 +02006060 | 0*SD_NUMA
6061 | sd_flags
Peter Zijlstracb83b622012-04-17 15:49:36 +02006062 ,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006063
Peter Zijlstracb83b622012-04-17 15:49:36 +02006064 .last_balance = jiffies,
6065 .balance_interval = sd_weight,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006066 .smt_gain = 0,
Jason Low2b4cfe62014-04-23 18:30:34 -07006067 .max_newidle_lb_cost = 0,
6068 .next_decay_max_lb_cost = jiffies,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006069#ifdef CONFIG_SCHED_DEBUG
6070 .name = tl->name,
6071#endif
Peter Zijlstracb83b622012-04-17 15:49:36 +02006072 };
Peter Zijlstracb83b622012-04-17 15:49:36 +02006073
6074 /*
Vincent Guittot143e1e22014-04-11 11:44:37 +02006075 * Convert topological properties into behaviour.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006076 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006077
Nicolas Pitre5d4dfdd2014-05-27 13:50:41 -04006078 if (sd->flags & SD_SHARE_CPUCAPACITY) {
Vincent Guittot143e1e22014-04-11 11:44:37 +02006079 sd->imbalance_pct = 110;
6080 sd->smt_gain = 1178; /* ~15% */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006081
6082 } else if (sd->flags & SD_SHARE_PKG_RESOURCES) {
6083 sd->imbalance_pct = 117;
6084 sd->cache_nice_tries = 1;
6085 sd->busy_idx = 2;
6086
6087#ifdef CONFIG_NUMA
6088 } else if (sd->flags & SD_NUMA) {
6089 sd->cache_nice_tries = 2;
6090 sd->busy_idx = 3;
6091 sd->idle_idx = 2;
6092
6093 sd->flags |= SD_SERIALIZE;
6094 if (sched_domains_numa_distance[tl->numa_level] > RECLAIM_DISTANCE) {
6095 sd->flags &= ~(SD_BALANCE_EXEC |
6096 SD_BALANCE_FORK |
6097 SD_WAKE_AFFINE);
6098 }
6099
6100#endif
6101 } else {
6102 sd->flags |= SD_PREFER_SIBLING;
6103 sd->cache_nice_tries = 1;
6104 sd->busy_idx = 2;
6105 sd->idle_idx = 1;
6106 }
6107
6108 sd->private = &tl->data;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006109
6110 return sd;
6111}
6112
Vincent Guittot143e1e22014-04-11 11:44:37 +02006113/*
6114 * Topology list, bottom-up.
6115 */
6116static struct sched_domain_topology_level default_topology[] = {
6117#ifdef CONFIG_SCHED_SMT
6118 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
6119#endif
6120#ifdef CONFIG_SCHED_MC
6121 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
6122#endif
Vincent Guittot143e1e22014-04-11 11:44:37 +02006123 { cpu_cpu_mask, SD_INIT_NAME(DIE) },
6124 { NULL, },
6125};
6126
6127struct sched_domain_topology_level *sched_domain_topology = default_topology;
6128
6129#define for_each_sd_topology(tl) \
6130 for (tl = sched_domain_topology; tl->mask; tl++)
6131
6132void set_sched_topology(struct sched_domain_topology_level *tl)
6133{
6134 sched_domain_topology = tl;
6135}
6136
6137#ifdef CONFIG_NUMA
6138
Peter Zijlstracb83b622012-04-17 15:49:36 +02006139static const struct cpumask *sd_numa_mask(int cpu)
6140{
6141 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
6142}
6143
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006144static void sched_numa_warn(const char *str)
6145{
6146 static int done = false;
6147 int i,j;
6148
6149 if (done)
6150 return;
6151
6152 done = true;
6153
6154 printk(KERN_WARNING "ERROR: %s\n\n", str);
6155
6156 for (i = 0; i < nr_node_ids; i++) {
6157 printk(KERN_WARNING " ");
6158 for (j = 0; j < nr_node_ids; j++)
6159 printk(KERN_CONT "%02d ", node_distance(i,j));
6160 printk(KERN_CONT "\n");
6161 }
6162 printk(KERN_WARNING "\n");
6163}
6164
6165static bool find_numa_distance(int distance)
6166{
6167 int i;
6168
6169 if (distance == node_distance(0, 0))
6170 return true;
6171
6172 for (i = 0; i < sched_domains_numa_levels; i++) {
6173 if (sched_domains_numa_distance[i] == distance)
6174 return true;
6175 }
6176
6177 return false;
6178}
6179
Peter Zijlstracb83b622012-04-17 15:49:36 +02006180static void sched_init_numa(void)
6181{
6182 int next_distance, curr_distance = node_distance(0, 0);
6183 struct sched_domain_topology_level *tl;
6184 int level = 0;
6185 int i, j, k;
6186
Peter Zijlstracb83b622012-04-17 15:49:36 +02006187 sched_domains_numa_distance = kzalloc(sizeof(int) * nr_node_ids, GFP_KERNEL);
6188 if (!sched_domains_numa_distance)
6189 return;
6190
6191 /*
6192 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
6193 * unique distances in the node_distance() table.
6194 *
6195 * Assumes node_distance(0,j) includes all distances in
6196 * node_distance(i,j) in order to avoid cubic time.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006197 */
6198 next_distance = curr_distance;
6199 for (i = 0; i < nr_node_ids; i++) {
6200 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006201 for (k = 0; k < nr_node_ids; k++) {
6202 int distance = node_distance(i, k);
6203
6204 if (distance > curr_distance &&
6205 (distance < next_distance ||
6206 next_distance == curr_distance))
6207 next_distance = distance;
6208
6209 /*
6210 * While not a strong assumption it would be nice to know
6211 * about cases where if node A is connected to B, B is not
6212 * equally connected to A.
6213 */
6214 if (sched_debug() && node_distance(k, i) != distance)
6215 sched_numa_warn("Node-distance not symmetric");
6216
6217 if (sched_debug() && i && !find_numa_distance(distance))
6218 sched_numa_warn("Node-0 not representative");
6219 }
6220 if (next_distance != curr_distance) {
6221 sched_domains_numa_distance[level++] = next_distance;
6222 sched_domains_numa_levels = level;
6223 curr_distance = next_distance;
6224 } else break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006225 }
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006226
6227 /*
6228 * In case of sched_debug() we verify the above assumption.
6229 */
6230 if (!sched_debug())
6231 break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006232 }
6233 /*
6234 * 'level' contains the number of unique distances, excluding the
6235 * identity distance node_distance(i,i).
6236 *
Viresh Kumar28b4a522013-04-05 16:26:46 +05306237 * The sched_domains_numa_distance[] array includes the actual distance
Peter Zijlstracb83b622012-04-17 15:49:36 +02006238 * numbers.
6239 */
6240
Tang Chen5f7865f2012-09-25 21:12:30 +08006241 /*
6242 * Here, we should temporarily reset sched_domains_numa_levels to 0.
6243 * If it fails to allocate memory for array sched_domains_numa_masks[][],
6244 * the array will contain less then 'level' members. This could be
6245 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
6246 * in other functions.
6247 *
6248 * We reset it to 'level' at the end of this function.
6249 */
6250 sched_domains_numa_levels = 0;
6251
Peter Zijlstracb83b622012-04-17 15:49:36 +02006252 sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL);
6253 if (!sched_domains_numa_masks)
6254 return;
6255
6256 /*
6257 * Now for each level, construct a mask per node which contains all
6258 * cpus of nodes that are that many hops away from us.
6259 */
6260 for (i = 0; i < level; i++) {
6261 sched_domains_numa_masks[i] =
6262 kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
6263 if (!sched_domains_numa_masks[i])
6264 return;
6265
6266 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstra2ea45802012-05-25 09:26:43 +02006267 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
Peter Zijlstracb83b622012-04-17 15:49:36 +02006268 if (!mask)
6269 return;
6270
6271 sched_domains_numa_masks[i][j] = mask;
6272
6273 for (k = 0; k < nr_node_ids; k++) {
Peter Zijlstradd7d8632012-05-11 00:56:20 +02006274 if (node_distance(j, k) > sched_domains_numa_distance[i])
Peter Zijlstracb83b622012-04-17 15:49:36 +02006275 continue;
6276
6277 cpumask_or(mask, mask, cpumask_of_node(k));
6278 }
6279 }
6280 }
6281
Vincent Guittot143e1e22014-04-11 11:44:37 +02006282 /* Compute default topology size */
6283 for (i = 0; sched_domain_topology[i].mask; i++);
6284
Vincent Guittotc515db82014-05-13 11:11:01 +02006285 tl = kzalloc((i + level + 1) *
Peter Zijlstracb83b622012-04-17 15:49:36 +02006286 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
6287 if (!tl)
6288 return;
6289
6290 /*
6291 * Copy the default topology bits..
6292 */
Vincent Guittot143e1e22014-04-11 11:44:37 +02006293 for (i = 0; sched_domain_topology[i].mask; i++)
6294 tl[i] = sched_domain_topology[i];
Peter Zijlstracb83b622012-04-17 15:49:36 +02006295
6296 /*
6297 * .. and append 'j' levels of NUMA goodness.
6298 */
6299 for (j = 0; j < level; i++, j++) {
6300 tl[i] = (struct sched_domain_topology_level){
Peter Zijlstracb83b622012-04-17 15:49:36 +02006301 .mask = sd_numa_mask,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006302 .sd_flags = cpu_numa_flags,
Peter Zijlstracb83b622012-04-17 15:49:36 +02006303 .flags = SDTL_OVERLAP,
6304 .numa_level = j,
Vincent Guittot143e1e22014-04-11 11:44:37 +02006305 SD_INIT_NAME(NUMA)
Peter Zijlstracb83b622012-04-17 15:49:36 +02006306 };
6307 }
6308
6309 sched_domain_topology = tl;
Tang Chen5f7865f2012-09-25 21:12:30 +08006310
6311 sched_domains_numa_levels = level;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006312}
Tang Chen301a5cb2012-09-25 21:12:31 +08006313
6314static void sched_domains_numa_masks_set(int cpu)
6315{
6316 int i, j;
6317 int node = cpu_to_node(cpu);
6318
6319 for (i = 0; i < sched_domains_numa_levels; i++) {
6320 for (j = 0; j < nr_node_ids; j++) {
6321 if (node_distance(j, node) <= sched_domains_numa_distance[i])
6322 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
6323 }
6324 }
6325}
6326
6327static void sched_domains_numa_masks_clear(int cpu)
6328{
6329 int i, j;
6330 for (i = 0; i < sched_domains_numa_levels; i++) {
6331 for (j = 0; j < nr_node_ids; j++)
6332 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
6333 }
6334}
6335
6336/*
6337 * Update sched_domains_numa_masks[level][node] array when new cpus
6338 * are onlined.
6339 */
6340static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6341 unsigned long action,
6342 void *hcpu)
6343{
6344 int cpu = (long)hcpu;
6345
6346 switch (action & ~CPU_TASKS_FROZEN) {
6347 case CPU_ONLINE:
6348 sched_domains_numa_masks_set(cpu);
6349 break;
6350
6351 case CPU_DEAD:
6352 sched_domains_numa_masks_clear(cpu);
6353 break;
6354
6355 default:
6356 return NOTIFY_DONE;
6357 }
6358
6359 return NOTIFY_OK;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006360}
6361#else
6362static inline void sched_init_numa(void)
6363{
6364}
Tang Chen301a5cb2012-09-25 21:12:31 +08006365
6366static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6367 unsigned long action,
6368 void *hcpu)
6369{
6370 return 0;
6371}
Peter Zijlstracb83b622012-04-17 15:49:36 +02006372#endif /* CONFIG_NUMA */
6373
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006374static int __sdt_alloc(const struct cpumask *cpu_map)
6375{
6376 struct sched_domain_topology_level *tl;
6377 int j;
6378
Viresh Kumar27723a62013-06-10 16:27:20 +05306379 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006380 struct sd_data *sdd = &tl->data;
6381
6382 sdd->sd = alloc_percpu(struct sched_domain *);
6383 if (!sdd->sd)
6384 return -ENOMEM;
6385
6386 sdd->sg = alloc_percpu(struct sched_group *);
6387 if (!sdd->sg)
6388 return -ENOMEM;
6389
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006390 sdd->sgc = alloc_percpu(struct sched_group_capacity *);
6391 if (!sdd->sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006392 return -ENOMEM;
6393
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006394 for_each_cpu(j, cpu_map) {
6395 struct sched_domain *sd;
6396 struct sched_group *sg;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006397 struct sched_group_capacity *sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006398
6399 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
6400 GFP_KERNEL, cpu_to_node(j));
6401 if (!sd)
6402 return -ENOMEM;
6403
6404 *per_cpu_ptr(sdd->sd, j) = sd;
6405
6406 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
6407 GFP_KERNEL, cpu_to_node(j));
6408 if (!sg)
6409 return -ENOMEM;
6410
Igor Mammedov30b4e9e2012-05-09 12:38:28 +02006411 sg->next = sg;
6412
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006413 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006414
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006415 sgc = kzalloc_node(sizeof(struct sched_group_capacity) + cpumask_size(),
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006416 GFP_KERNEL, cpu_to_node(j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006417 if (!sgc)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006418 return -ENOMEM;
6419
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006420 *per_cpu_ptr(sdd->sgc, j) = sgc;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006421 }
6422 }
6423
6424 return 0;
6425}
6426
6427static void __sdt_free(const struct cpumask *cpu_map)
6428{
6429 struct sched_domain_topology_level *tl;
6430 int j;
6431
Viresh Kumar27723a62013-06-10 16:27:20 +05306432 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006433 struct sd_data *sdd = &tl->data;
6434
6435 for_each_cpu(j, cpu_map) {
he, bofb2cf2c2012-04-25 19:59:21 +08006436 struct sched_domain *sd;
6437
6438 if (sdd->sd) {
6439 sd = *per_cpu_ptr(sdd->sd, j);
6440 if (sd && (sd->flags & SD_OVERLAP))
6441 free_sched_groups(sd->groups, 0);
6442 kfree(*per_cpu_ptr(sdd->sd, j));
6443 }
6444
6445 if (sdd->sg)
6446 kfree(*per_cpu_ptr(sdd->sg, j));
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006447 if (sdd->sgc)
6448 kfree(*per_cpu_ptr(sdd->sgc, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006449 }
6450 free_percpu(sdd->sd);
he, bofb2cf2c2012-04-25 19:59:21 +08006451 sdd->sd = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006452 free_percpu(sdd->sg);
he, bofb2cf2c2012-04-25 19:59:21 +08006453 sdd->sg = NULL;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006454 free_percpu(sdd->sgc);
6455 sdd->sgc = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006456 }
6457}
6458
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006459struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306460 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
6461 struct sched_domain *child, int cpu)
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006462{
Vincent Guittot143e1e22014-04-11 11:44:37 +02006463 struct sched_domain *sd = sd_init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006464 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02006465 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006466
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006467 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02006468 if (child) {
6469 sd->level = child->level + 1;
6470 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02006471 child->parent = sd;
Viresh Kumarc75e0122013-06-10 16:27:19 +05306472 sd->child = child;
Peter Zijlstra60495e72011-04-07 14:10:04 +02006473 }
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05006474 set_domain_attribute(sd, attr);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006475
6476 return sd;
6477}
6478
Mike Travis7c16ec52008-04-04 18:11:11 -07006479/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006480 * Build sched domains for a given set of cpus and attach the sched domains
6481 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006483static int build_sched_domains(const struct cpumask *cpu_map,
6484 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485{
Viresh Kumar1c632162013-06-10 16:27:18 +05306486 enum s_alloc alloc_state;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006487 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006488 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02006489 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10306490
Andreas Herrmann2109b992009-08-18 12:53:00 +02006491 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
6492 if (alloc_state != sa_rootdomain)
6493 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07006494
Peter Zijlstradce840a2011-04-07 14:09:50 +02006495 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10306496 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02006497 struct sched_domain_topology_level *tl;
6498
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02006499 sd = NULL;
Viresh Kumar27723a62013-06-10 16:27:20 +05306500 for_each_sd_topology(tl) {
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306501 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
Viresh Kumar22da9562013-06-04 15:41:15 +05306502 if (tl == sched_domain_topology)
6503 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006504 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
6505 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02006506 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
6507 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006508 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006509 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006510
Peter Zijlstradce840a2011-04-07 14:09:50 +02006511 /* Build the groups for the domains */
6512 for_each_cpu(i, cpu_map) {
6513 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6514 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006515 if (sd->flags & SD_OVERLAP) {
6516 if (build_overlap_sched_groups(sd, i))
6517 goto error;
6518 } else {
6519 if (build_sched_groups(sd, i))
6520 goto error;
6521 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02006522 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02006523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524
Nicolas Pitreced549f2014-05-26 18:19:38 -04006525 /* Calculate CPU capacity for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02006526 for (i = nr_cpumask_bits-1; i >= 0; i--) {
6527 if (!cpumask_test_cpu(i, cpu_map))
6528 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529
Peter Zijlstradce840a2011-04-07 14:09:50 +02006530 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6531 claim_allocations(i, sd);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04006532 init_sched_groups_capacity(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006533 }
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006534 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006535
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006537 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306538 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006539 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006540 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006542 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006543
Peter Zijlstra822ff792011-04-07 14:09:51 +02006544 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006545error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02006546 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02006547 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548}
Paul Jackson029190c2007-10-18 23:40:20 -07006549
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306550static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07006551static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02006552static struct sched_domain_attr *dattr_cur;
6553 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07006554
6555/*
6556 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10306557 * cpumask) fails, then fallback to a single sched domain,
6558 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07006559 */
Rusty Russell42128232008-11-25 02:35:12 +10306560static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07006561
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006562/*
6563 * arch_update_cpu_topology lets virtualized architectures update the
6564 * cpu core maps. It is supposed to return 1 if the topology changed
6565 * or 0 if it stayed the same.
6566 */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -07006567int __weak arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01006568{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006569 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01006570}
6571
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306572cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
6573{
6574 int i;
6575 cpumask_var_t *doms;
6576
6577 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
6578 if (!doms)
6579 return NULL;
6580 for (i = 0; i < ndoms; i++) {
6581 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
6582 free_sched_domains(doms, i);
6583 return NULL;
6584 }
6585 }
6586 return doms;
6587}
6588
6589void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
6590{
6591 unsigned int i;
6592 for (i = 0; i < ndoms; i++)
6593 free_cpumask_var(doms[i]);
6594 kfree(doms);
6595}
6596
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006597/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006598 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006599 * For now this just excludes isolated cpus, but could be used to
6600 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006601 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006602static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006603{
Milton Miller73785472007-10-24 18:23:48 +02006604 int err;
6605
Heiko Carstens22e52b02008-03-12 18:31:59 +01006606 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006607 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306608 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07006609 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306610 doms_cur = &fallback_doms;
6611 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006612 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02006613 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006614
6615 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006616}
6617
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006618/*
6619 * Detach sched domains from a group of cpus specified in cpu_map
6620 * These cpus will now be attached to the NULL domain
6621 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306622static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006623{
6624 int i;
6625
Peter Zijlstradce840a2011-04-07 14:09:50 +02006626 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306627 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006628 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006629 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006630}
6631
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006632/* handle null as "default" */
6633static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
6634 struct sched_domain_attr *new, int idx_new)
6635{
6636 struct sched_domain_attr tmp;
6637
6638 /* fast path */
6639 if (!new && !cur)
6640 return 1;
6641
6642 tmp = SD_ATTR_INIT;
6643 return !memcmp(cur ? (cur + idx_cur) : &tmp,
6644 new ? (new + idx_new) : &tmp,
6645 sizeof(struct sched_domain_attr));
6646}
6647
Paul Jackson029190c2007-10-18 23:40:20 -07006648/*
6649 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006650 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006651 * doms_new[] to the current sched domain partitioning, doms_cur[].
6652 * It destroys each deleted domain and builds each new domain.
6653 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306654 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006655 * The masks don't intersect (don't overlap.) We should setup one
6656 * sched domain for each mask. CPUs not in any of the cpumasks will
6657 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006658 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6659 * it as it is.
6660 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306661 * The passed in 'doms_new' should be allocated using
6662 * alloc_sched_domains. This routine takes ownership of it and will
6663 * free_sched_domains it when done with it. If the caller failed the
6664 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
6665 * and partition_sched_domains() will fallback to the single partition
6666 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07006667 *
Rusty Russell96f874e22008-11-25 02:35:14 +10306668 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08006669 * ndoms_new == 0 is a special case for destroying existing domains,
6670 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006671 *
Paul Jackson029190c2007-10-18 23:40:20 -07006672 * Call with hotplug lock held
6673 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306674void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006675 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07006676{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006677 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006678 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07006679
Heiko Carstens712555e2008-04-28 11:33:07 +02006680 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006681
Milton Miller73785472007-10-24 18:23:48 +02006682 /* always unregister in case we don't destroy any domains */
6683 unregister_sched_domain_sysctl();
6684
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006685 /* Let architecture update cpu core mappings. */
6686 new_topology = arch_update_cpu_topology();
6687
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006688 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07006689
6690 /* Destroy deleted domains */
6691 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006692 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306693 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006694 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006695 goto match1;
6696 }
6697 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306698 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07006699match1:
6700 ;
6701 }
6702
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006703 n = ndoms_cur;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006704 if (doms_new == NULL) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006705 n = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306706 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006707 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08006708 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006709 }
6710
Paul Jackson029190c2007-10-18 23:40:20 -07006711 /* Build new domains */
6712 for (i = 0; i < ndoms_new; i++) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006713 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306714 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006715 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006716 goto match2;
6717 }
6718 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006719 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07006720match2:
6721 ;
6722 }
6723
6724 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306725 if (doms_cur != &fallback_doms)
6726 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006727 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07006728 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006729 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07006730 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006731
6732 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006733
Heiko Carstens712555e2008-04-28 11:33:07 +02006734 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07006735}
6736
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306737static int num_cpus_frozen; /* used to mark begin/end of suspend/resume */
6738
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739/*
Tejun Heo3a101d02010-06-08 21:40:36 +02006740 * Update cpusets according to cpu_active mask. If cpusets are
6741 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
6742 * around partition_sched_domains().
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306743 *
6744 * If we come here as part of a suspend/resume, don't touch cpusets because we
6745 * want to restore it back to its original state upon resume anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02006747static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
6748 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306750 switch (action) {
6751 case CPU_ONLINE_FROZEN:
6752 case CPU_DOWN_FAILED_FROZEN:
6753
6754 /*
6755 * num_cpus_frozen tracks how many CPUs are involved in suspend
6756 * resume sequence. As long as this is not the last online
6757 * operation in the resume sequence, just build a single sched
6758 * domain, ignoring cpusets.
6759 */
6760 num_cpus_frozen--;
6761 if (likely(num_cpus_frozen)) {
6762 partition_sched_domains(1, NULL, NULL);
6763 break;
6764 }
6765
6766 /*
6767 * This is the last CPU online operation. So fall through and
6768 * restore the original sched domains by considering the
6769 * cpuset configurations.
6770 */
6771
Max Krasnyanskye761b772008-07-15 04:43:49 -07006772 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006773 case CPU_DOWN_FAILED:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306774 cpuset_update_active_cpus(true);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306775 break;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006776 default:
6777 return NOTIFY_DONE;
6778 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306779 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006780}
Tejun Heo3a101d02010-06-08 21:40:36 +02006781
Tejun Heo0b2e9182010-06-21 23:53:31 +02006782static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
6783 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02006784{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306785 switch (action) {
Tejun Heo3a101d02010-06-08 21:40:36 +02006786 case CPU_DOWN_PREPARE:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306787 cpuset_update_active_cpus(false);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306788 break;
6789 case CPU_DOWN_PREPARE_FROZEN:
6790 num_cpus_frozen++;
6791 partition_sched_domains(1, NULL, NULL);
6792 break;
Tejun Heo3a101d02010-06-08 21:40:36 +02006793 default:
6794 return NOTIFY_DONE;
6795 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306796 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02006797}
Max Krasnyanskye761b772008-07-15 04:43:49 -07006798
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799void __init sched_init_smp(void)
6800{
Rusty Russelldcc30a32008-11-25 02:35:12 +10306801 cpumask_var_t non_isolated_cpus;
6802
6803 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08006804 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006805
Peter Zijlstracb83b622012-04-17 15:49:36 +02006806 sched_init_numa();
6807
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02006808 /*
6809 * There's no userspace yet to cause hotplug operations; hence all the
6810 * cpu masks are stable and all blatant races in the below code cannot
6811 * happen.
6812 */
Heiko Carstens712555e2008-04-28 11:33:07 +02006813 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006814 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10306815 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
6816 if (cpumask_empty(non_isolated_cpus))
6817 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02006818 mutex_unlock(&sched_domains_mutex);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006819
Tang Chen301a5cb2012-09-25 21:12:31 +08006820 hotcpu_notifier(sched_domains_numa_masks_update, CPU_PRI_SCHED_ACTIVE);
Tejun Heo3a101d02010-06-08 21:40:36 +02006821 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
6822 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006823
Peter Zijlstrab328ca12008-04-29 10:02:46 +02006824 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07006825
6826 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306827 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07006828 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006829 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10306830 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10306831
Rusty Russell0e3900e2008-11-25 02:35:13 +10306832 init_sched_rt_class();
Juri Lelli1baca4c2013-11-07 14:43:38 +01006833 init_sched_dl_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834}
6835#else
6836void __init sched_init_smp(void)
6837{
Ingo Molnar19978ca2007-11-09 22:39:38 +01006838 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839}
6840#endif /* CONFIG_SMP */
6841
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05306842const_debug unsigned int sysctl_timer_migration = 1;
6843
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844int in_sched_functions(unsigned long addr)
6845{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846 return in_lock_functions(addr) ||
6847 (addr >= (unsigned long)__sched_text_start
6848 && addr < (unsigned long)__sched_text_end);
6849}
6850
Peter Zijlstra029632f2011-10-25 10:00:11 +02006851#ifdef CONFIG_CGROUP_SCHED
Li Zefan27b4b932013-03-05 16:07:52 +08006852/*
6853 * Default task group.
6854 * Every task in system belongs to this group at bootup.
6855 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02006856struct task_group root_task_group;
Mike Galbraith35cf4e52012-08-07 05:00:13 +02006857LIST_HEAD(task_groups);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006858#endif
6859
Joonsoo Kime6252c32013-04-23 17:27:41 +09006860DECLARE_PER_CPU(cpumask_var_t, load_balance_mask);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006861
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862void __init sched_init(void)
6863{
Ingo Molnardd41f592007-07-09 18:51:59 +02006864 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07006865 unsigned long alloc_size = 0, ptr;
6866
6867#ifdef CONFIG_FAIR_GROUP_SCHED
6868 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6869#endif
6870#ifdef CONFIG_RT_GROUP_SCHED
6871 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6872#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306873#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10306874 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306875#endif
Mike Travis434d53b2008-04-04 18:11:04 -07006876 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03006877 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07006878
6879#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006880 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006881 ptr += nr_cpu_ids * sizeof(void **);
6882
Yong Zhang07e06b02011-01-07 15:17:36 +08006883 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006884 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006885
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006886#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07006887#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006888 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006889 ptr += nr_cpu_ids * sizeof(void **);
6890
Yong Zhang07e06b02011-01-07 15:17:36 +08006891 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006892 ptr += nr_cpu_ids * sizeof(void **);
6893
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006894#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306895#ifdef CONFIG_CPUMASK_OFFSTACK
6896 for_each_possible_cpu(i) {
Joonsoo Kime6252c32013-04-23 17:27:41 +09006897 per_cpu(load_balance_mask, i) = (void *)ptr;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306898 ptr += cpumask_size();
6899 }
6900#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07006901 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006902
Dario Faggioli332ac172013-11-07 14:43:45 +01006903 init_rt_bandwidth(&def_rt_bandwidth,
6904 global_rt_period(), global_rt_runtime());
6905 init_dl_bandwidth(&def_dl_bandwidth,
Peter Zijlstra17248132013-12-17 12:44:49 +01006906 global_rt_period(), global_rt_runtime());
Dario Faggioli332ac172013-11-07 14:43:45 +01006907
Gregory Haskins57d885f2008-01-25 21:08:18 +01006908#ifdef CONFIG_SMP
6909 init_defrootdomain();
6910#endif
6911
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006912#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006913 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006914 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006915#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006916
Dhaval Giani7c941432010-01-20 13:26:18 +01006917#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006918 list_add(&root_task_group.list, &task_groups);
6919 INIT_LIST_HEAD(&root_task_group.children);
Glauber Costaf4d6f6c2011-11-01 19:19:07 -02006920 INIT_LIST_HEAD(&root_task_group.siblings);
Mike Galbraith5091faa2010-11-30 14:18:03 +01006921 autogroup_init(&init_task);
Glauber Costa54c707e2011-11-28 14:45:19 -02006922
Dhaval Giani7c941432010-01-20 13:26:18 +01006923#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006924
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006925 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006926 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927
6928 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006929 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07006930 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006931 rq->calc_load_active = 0;
6932 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02006933 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006934 init_rt_rq(&rq->rt, rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01006935 init_dl_rq(&rq->dl, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006936#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02006937 root_task_group.shares = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006938 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006939 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08006940 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02006941 *
6942 * In case of task-groups formed thr' the cgroup filesystem, it
6943 * gets 100% of the cpu resources in the system. This overall
6944 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08006945 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02006946 * based on each entity's (task or task-group's) weight
6947 * (se->load.weight).
6948 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006949 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02006950 * 1024) and two child groups A0 and A1 (of weight 1024 each),
6951 * then A0's share of the cpu resource is:
6952 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02006953 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02006954 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006955 * We achieve this by letting root_task_group's tasks sit
6956 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02006957 */
Paul Turnerab84d312011-07-21 09:43:28 -07006958 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08006959 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006960#endif /* CONFIG_FAIR_GROUP_SCHED */
6961
6962 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01006963#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006964 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006965#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966
Ingo Molnardd41f592007-07-09 18:51:59 +02006967 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6968 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07006969
6970 rq->last_load_update_tick = jiffies;
6971
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006973 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006974 rq->rd = NULL;
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04006975 rq->cpu_capacity = SCHED_CAPACITY_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04006976 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006978 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006980 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006981 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01006982 rq->idle_stamp = 0;
6983 rq->avg_idle = 2*sysctl_sched_migration_cost;
Jason Low9bd721c2013-09-13 11:26:52 -07006984 rq->max_idle_balance_cost = sysctl_sched_migration_cost;
Peter Zijlstra367456c2012-02-20 21:49:09 +01006985
6986 INIT_LIST_HEAD(&rq->cfs_tasks);
6987
Gregory Haskinsdc938522008-01-25 21:08:26 +01006988 rq_attach_root(rq, &def_root_domain);
Frederic Weisbecker3451d022011-08-10 23:21:01 +02006989#ifdef CONFIG_NO_HZ_COMMON
Suresh Siddha1c792db2011-12-01 17:07:32 -08006990 rq->nohz_flags = 0;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07006991#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02006992#ifdef CONFIG_NO_HZ_FULL
6993 rq->last_sched_tick = 0;
6994#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01006996 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998 }
6999
Peter Williams2dd73a42006-06-27 02:54:34 -07007000 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007001
Avi Kivitye107be32007-07-26 13:40:43 +02007002#ifdef CONFIG_PREEMPT_NOTIFIERS
7003 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7004#endif
7005
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006 /*
7007 * The boot idle thread does lazy MMU switching as well:
7008 */
7009 atomic_inc(&init_mm.mm_count);
7010 enter_lazy_tlb(&init_mm, current);
7011
7012 /*
7013 * Make us the idle thread. Technically, schedule() should not be
7014 * called from this thread, however somewhere below it might be,
7015 * but because we are the idle thread, we just pick up running again
7016 * when this runqueue becomes "idle".
7017 */
7018 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02007019
7020 calc_load_update = jiffies + LOAD_FREQ;
7021
Ingo Molnardd41f592007-07-09 18:51:59 +02007022 /*
7023 * During early bootup we pretend to be a normal task:
7024 */
7025 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007026
Rusty Russellbf4d83f2008-11-25 09:57:51 +10307027#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02007028 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russellbdddd292009-12-02 14:09:16 +10307029 /* May be allocated at isolcpus cmdline parse time */
7030 if (cpu_isolated_map == NULL)
7031 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Thomas Gleixner29d5e042012-04-20 13:05:45 +00007032 idle_thread_set_boot_cpu();
Corey Minyarda803f022014-05-08 13:47:39 -05007033 set_cpu_rq_start_time();
Peter Zijlstra029632f2011-10-25 10:00:11 +02007034#endif
7035 init_sched_fair_class();
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10307036
Ingo Molnar6892b752008-02-13 14:02:36 +01007037 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038}
7039
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02007040#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007041static inline int preempt_count_equals(int preempt_offset)
7042{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01007043 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007044
Arnd Bergmann4ba82162011-01-25 22:52:22 +01007045 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007046}
7047
Simon Kagstromd8948372009-12-23 11:08:18 +01007048void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050 static unsigned long prev_jiffy; /* ratelimiting */
7051
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07007052 rcu_sleep_check(); /* WARN_ON_ONCE() by default, no rate limit reqd. */
Thomas Gleixnerdb273be2014-02-07 20:58:38 +01007053 if ((preempt_count_equals(preempt_offset) && !irqs_disabled() &&
7054 !is_idle_task(current)) ||
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02007055 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02007056 return;
7057 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7058 return;
7059 prev_jiffy = jiffies;
7060
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01007061 printk(KERN_ERR
7062 "BUG: sleeping function called from invalid context at %s:%d\n",
7063 file, line);
7064 printk(KERN_ERR
7065 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
7066 in_atomic(), irqs_disabled(),
7067 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02007068
7069 debug_show_held_locks(current);
7070 if (irqs_disabled())
7071 print_irqtrace_events(current);
Thomas Gleixner8f47b182014-02-07 20:58:39 +01007072#ifdef CONFIG_DEBUG_PREEMPT
7073 if (!preempt_count_equals(preempt_offset)) {
7074 pr_err("Preemption disabled at:");
7075 print_ip_sym(current->preempt_disable_ip);
7076 pr_cont("\n");
7077 }
7078#endif
Ingo Molnaraef745f2008-08-28 11:34:43 +02007079 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080}
7081EXPORT_SYMBOL(__might_sleep);
7082#endif
7083
7084#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007085static void normalize_task(struct rq *rq, struct task_struct *p)
7086{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007087 const struct sched_class *prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01007088 struct sched_attr attr = {
7089 .sched_policy = SCHED_NORMAL,
7090 };
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007091 int old_prio = p->prio;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007092 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02007093
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007094 on_rq = p->on_rq;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007095 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007096 dequeue_task(rq, p, 0);
Dario Faggiolid50dde52013-11-07 14:43:36 +01007097 __setscheduler(rq, p, &attr);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007098 if (on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01007099 enqueue_task(rq, p, 0);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007100 resched_task(rq->curr);
7101 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01007102
7103 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007104}
7105
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106void normalize_rt_tasks(void)
7107{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007108 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007110 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007112 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007113 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007114 /*
7115 * Only normalize user tasks:
7116 */
7117 if (!p->mm)
7118 continue;
7119
Ingo Molnardd41f592007-07-09 18:51:59 +02007120 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007121#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03007122 p->se.statistics.wait_start = 0;
7123 p->se.statistics.sleep_start = 0;
7124 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007125#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007126
Dario Faggioliaab03e02013-11-28 11:14:43 +01007127 if (!dl_task(p) && !rt_task(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007128 /*
7129 * Renice negative nice level userspace
7130 * tasks back to 0:
7131 */
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05007132 if (task_nice(p) < 0 && p->mm)
Ingo Molnardd41f592007-07-09 18:51:59 +02007133 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136
Thomas Gleixner1d615482009-11-17 14:54:03 +01007137 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007138 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007139
Ingo Molnar178be792007-10-15 17:00:18 +02007140 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007141
Ingo Molnarb29739f2006-06-27 02:54:51 -07007142 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01007143 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007144 } while_each_thread(g, p);
7145
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007146 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147}
7148
7149#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007150
Jason Wessel67fc4e02010-05-20 21:04:21 -05007151#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007152/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05007153 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007154 *
7155 * They can only be called when the whole system has been
7156 * stopped - every CPU needs to be quiescent, and no scheduling
7157 * activity can take place. Using them for anything else would
7158 * be a serious bug, and as a result, they aren't even visible
7159 * under any other configuration.
7160 */
7161
7162/**
7163 * curr_task - return the current task for a given cpu.
7164 * @cpu: the processor in question.
7165 *
7166 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
Yacine Belkadie69f6182013-07-12 20:45:47 +02007167 *
7168 * Return: The current task for @cpu.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007169 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007170struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007171{
7172 return cpu_curr(cpu);
7173}
7174
Jason Wessel67fc4e02010-05-20 21:04:21 -05007175#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
7176
7177#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07007178/**
7179 * set_curr_task - set the current task for a given cpu.
7180 * @cpu: the processor in question.
7181 * @p: the task pointer to set.
7182 *
7183 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007184 * are serviced on a separate stack. It allows the architecture to switch the
7185 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007186 * must be called with all CPU's synchronized, and interrupts disabled, the
7187 * and caller must save the original value of the current task (see
7188 * curr_task() above) and restore that value before reenabling interrupts and
7189 * re-starting the system.
7190 *
7191 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7192 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007193void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007194{
7195 cpu_curr(cpu) = p;
7196}
7197
7198#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007199
Dhaval Giani7c941432010-01-20 13:26:18 +01007200#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02007201/* task_group_lock serializes the addition/removal of task groups */
7202static DEFINE_SPINLOCK(task_group_lock);
7203
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007204static void free_sched_group(struct task_group *tg)
7205{
7206 free_fair_sched_group(tg);
7207 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01007208 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007209 kfree(tg);
7210}
7211
7212/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007213struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007214{
7215 struct task_group *tg;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007216
7217 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7218 if (!tg)
7219 return ERR_PTR(-ENOMEM);
7220
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007221 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007222 goto err;
7223
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007224 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007225 goto err;
7226
Li Zefanace783b2013-01-24 14:30:48 +08007227 return tg;
7228
7229err:
7230 free_sched_group(tg);
7231 return ERR_PTR(-ENOMEM);
7232}
7233
7234void sched_online_group(struct task_group *tg, struct task_group *parent)
7235{
7236 unsigned long flags;
7237
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007238 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007239 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007240
7241 WARN_ON(!parent); /* root should already exist */
7242
7243 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007244 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08007245 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007246 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007247}
7248
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007249/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007250static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007251{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007252 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007253 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007254}
7255
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007256/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007257void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007258{
Li Zefanace783b2013-01-24 14:30:48 +08007259 /* wait for possible concurrent references to cfs_rqs complete */
7260 call_rcu(&tg->rcu, free_sched_group_rcu);
7261}
7262
7263void sched_offline_group(struct task_group *tg)
7264{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007265 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007266 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007267
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007268 /* end participation in shares distribution */
7269 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007270 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007271
7272 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007273 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007274 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007275 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007276}
7277
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007278/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007279 * The caller of this function should have put the task in its new group
7280 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7281 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007282 */
7283void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007284{
Peter Zijlstra8323f262012-06-22 13:36:05 +02007285 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007286 int on_rq, running;
7287 unsigned long flags;
7288 struct rq *rq;
7289
7290 rq = task_rq_lock(tsk, &flags);
7291
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007292 running = task_current(rq, tsk);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007293 on_rq = tsk->on_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007294
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007295 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007296 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007297 if (unlikely(running))
7298 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007299
Tejun Heo073219e2014-02-08 10:36:58 -05007300 tg = container_of(task_css_check(tsk, cpu_cgrp_id,
Peter Zijlstra8323f262012-06-22 13:36:05 +02007301 lockdep_is_held(&tsk->sighand->siglock)),
7302 struct task_group, css);
7303 tg = autogroup_task_group(tsk, tg);
7304 tsk->sched_task_group = tg;
7305
Peter Zijlstra810b3812008-02-29 15:21:01 -05007306#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007307 if (tsk->sched_class->task_move_group)
7308 tsk->sched_class->task_move_group(tsk, on_rq);
7309 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05007310#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007311 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05007312
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007313 if (unlikely(running))
7314 tsk->sched_class->set_curr_task(rq);
7315 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01007316 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007317
Peter Zijlstra0122ec52011-04-05 17:23:51 +02007318 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007319}
Dhaval Giani7c941432010-01-20 13:26:18 +01007320#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007321
Paul Turnera790de92011-07-21 09:43:29 -07007322#ifdef CONFIG_RT_GROUP_SCHED
7323/*
7324 * Ensure that the real time constraints are schedulable.
7325 */
7326static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007327
Dhaval Giani521f1a242008-02-28 15:21:56 +05307328/* Must be called with tasklist_lock held */
7329static inline int tg_has_rt_tasks(struct task_group *tg)
7330{
7331 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007332
Dhaval Giani521f1a242008-02-28 15:21:56 +05307333 do_each_thread(g, p) {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007334 if (rt_task(p) && task_rq(p)->rt.tg == tg)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307335 return 1;
7336 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007337
Dhaval Giani521f1a242008-02-28 15:21:56 +05307338 return 0;
7339}
7340
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007341struct rt_schedulable_data {
7342 struct task_group *tg;
7343 u64 rt_period;
7344 u64 rt_runtime;
7345};
7346
Paul Turnera790de92011-07-21 09:43:29 -07007347static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007348{
7349 struct rt_schedulable_data *d = data;
7350 struct task_group *child;
7351 unsigned long total, sum = 0;
7352 u64 period, runtime;
7353
7354 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7355 runtime = tg->rt_bandwidth.rt_runtime;
7356
7357 if (tg == d->tg) {
7358 period = d->rt_period;
7359 runtime = d->rt_runtime;
7360 }
7361
Peter Zijlstra4653f802008-09-23 15:33:44 +02007362 /*
7363 * Cannot have more runtime than the period.
7364 */
7365 if (runtime > period && runtime != RUNTIME_INF)
7366 return -EINVAL;
7367
7368 /*
7369 * Ensure we don't starve existing RT tasks.
7370 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007371 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
7372 return -EBUSY;
7373
7374 total = to_ratio(period, runtime);
7375
Peter Zijlstra4653f802008-09-23 15:33:44 +02007376 /*
7377 * Nobody can have more than the global setting allows.
7378 */
7379 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
7380 return -EINVAL;
7381
7382 /*
7383 * The sum of our children's runtime should not exceed our own.
7384 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007385 list_for_each_entry_rcu(child, &tg->children, siblings) {
7386 period = ktime_to_ns(child->rt_bandwidth.rt_period);
7387 runtime = child->rt_bandwidth.rt_runtime;
7388
7389 if (child == d->tg) {
7390 period = d->rt_period;
7391 runtime = d->rt_runtime;
7392 }
7393
7394 sum += to_ratio(period, runtime);
7395 }
7396
7397 if (sum > total)
7398 return -EINVAL;
7399
7400 return 0;
7401}
7402
7403static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
7404{
Paul Turner82774342011-07-21 09:43:35 -07007405 int ret;
7406
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007407 struct rt_schedulable_data data = {
7408 .tg = tg,
7409 .rt_period = period,
7410 .rt_runtime = runtime,
7411 };
7412
Paul Turner82774342011-07-21 09:43:35 -07007413 rcu_read_lock();
7414 ret = walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
7415 rcu_read_unlock();
7416
7417 return ret;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007418}
7419
Paul Turnerab84d312011-07-21 09:43:28 -07007420static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007421 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007422{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007423 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007424
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007425 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307426 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007427 err = __rt_schedulable(tg, rt_period, rt_runtime);
7428 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307429 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007430
Thomas Gleixner0986b112009-11-17 15:32:06 +01007431 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007432 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
7433 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007434
7435 for_each_possible_cpu(i) {
7436 struct rt_rq *rt_rq = tg->rt_rq[i];
7437
Thomas Gleixner0986b112009-11-17 15:32:06 +01007438 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007439 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01007440 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007441 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007442 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02007443unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307444 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007445 mutex_unlock(&rt_constraints_mutex);
7446
7447 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007448}
7449
Li Zefan25cc7da2013-03-05 16:07:33 +08007450static int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007451{
7452 u64 rt_runtime, rt_period;
7453
7454 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7455 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7456 if (rt_runtime_us < 0)
7457 rt_runtime = RUNTIME_INF;
7458
Paul Turnerab84d312011-07-21 09:43:28 -07007459 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007460}
7461
Li Zefan25cc7da2013-03-05 16:07:33 +08007462static long sched_group_rt_runtime(struct task_group *tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007463{
7464 u64 rt_runtime_us;
7465
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007466 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007467 return -1;
7468
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007469 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007470 do_div(rt_runtime_us, NSEC_PER_USEC);
7471 return rt_runtime_us;
7472}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007473
Li Zefan25cc7da2013-03-05 16:07:33 +08007474static int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007475{
7476 u64 rt_runtime, rt_period;
7477
7478 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
7479 rt_runtime = tg->rt_bandwidth.rt_runtime;
7480
Raistlin619b0482008-06-26 18:54:09 +02007481 if (rt_period == 0)
7482 return -EINVAL;
7483
Paul Turnerab84d312011-07-21 09:43:28 -07007484 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007485}
7486
Li Zefan25cc7da2013-03-05 16:07:33 +08007487static long sched_group_rt_period(struct task_group *tg)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007488{
7489 u64 rt_period_us;
7490
7491 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
7492 do_div(rt_period_us, NSEC_PER_USEC);
7493 return rt_period_us;
7494}
Dario Faggioli332ac172013-11-07 14:43:45 +01007495#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007496
Dario Faggioli332ac172013-11-07 14:43:45 +01007497#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007498static int sched_rt_global_constraints(void)
7499{
7500 int ret = 0;
7501
7502 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007503 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02007504 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007505 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007506 mutex_unlock(&rt_constraints_mutex);
7507
7508 return ret;
7509}
Dhaval Giani54e99122009-02-27 15:13:54 +05307510
Li Zefan25cc7da2013-03-05 16:07:33 +08007511static int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
Dhaval Giani54e99122009-02-27 15:13:54 +05307512{
7513 /* Don't accept realtime tasks when there is no way for them to run */
7514 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
7515 return 0;
7516
7517 return 1;
7518}
7519
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007520#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007521static int sched_rt_global_constraints(void)
7522{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007523 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007524 int i, ret = 0;
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07007525
Thomas Gleixner0986b112009-11-17 15:32:06 +01007526 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007527 for_each_possible_cpu(i) {
7528 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
7529
Thomas Gleixner0986b112009-11-17 15:32:06 +01007530 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007531 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01007532 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007533 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007534 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007535
Dario Faggioli332ac172013-11-07 14:43:45 +01007536 return ret;
7537}
7538#endif /* CONFIG_RT_GROUP_SCHED */
7539
Dario Faggioli332ac172013-11-07 14:43:45 +01007540static int sched_dl_global_constraints(void)
7541{
Peter Zijlstra17248132013-12-17 12:44:49 +01007542 u64 runtime = global_rt_runtime();
7543 u64 period = global_rt_period();
Dario Faggioli332ac172013-11-07 14:43:45 +01007544 u64 new_bw = to_ratio(period, runtime);
Peter Zijlstra17248132013-12-17 12:44:49 +01007545 int cpu, ret = 0;
Juri Lelli49516342014-02-11 09:24:27 +01007546 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007547
7548 /*
7549 * Here we want to check the bandwidth not being set to some
7550 * value smaller than the currently allocated bandwidth in
7551 * any of the root_domains.
7552 *
7553 * FIXME: Cycling on all the CPUs is overdoing, but simpler than
7554 * cycling on root_domains... Discussion on different/better
7555 * solutions is welcome!
7556 */
Peter Zijlstra17248132013-12-17 12:44:49 +01007557 for_each_possible_cpu(cpu) {
7558 struct dl_bw *dl_b = dl_bw_of(cpu);
Dario Faggioli332ac172013-11-07 14:43:45 +01007559
Juri Lelli49516342014-02-11 09:24:27 +01007560 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007561 if (new_bw < dl_b->total_bw)
7562 ret = -EBUSY;
Juri Lelli49516342014-02-11 09:24:27 +01007563 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007564
7565 if (ret)
7566 break;
Dario Faggioli332ac172013-11-07 14:43:45 +01007567 }
7568
Peter Zijlstra17248132013-12-17 12:44:49 +01007569 return ret;
7570}
7571
7572static void sched_dl_do_global(void)
7573{
7574 u64 new_bw = -1;
7575 int cpu;
Juri Lelli49516342014-02-11 09:24:27 +01007576 unsigned long flags;
Peter Zijlstra17248132013-12-17 12:44:49 +01007577
7578 def_dl_bandwidth.dl_period = global_rt_period();
7579 def_dl_bandwidth.dl_runtime = global_rt_runtime();
7580
7581 if (global_rt_runtime() != RUNTIME_INF)
7582 new_bw = to_ratio(global_rt_period(), global_rt_runtime());
7583
7584 /*
7585 * FIXME: As above...
7586 */
7587 for_each_possible_cpu(cpu) {
7588 struct dl_bw *dl_b = dl_bw_of(cpu);
7589
Juri Lelli49516342014-02-11 09:24:27 +01007590 raw_spin_lock_irqsave(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007591 dl_b->bw = new_bw;
Juri Lelli49516342014-02-11 09:24:27 +01007592 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
Peter Zijlstra17248132013-12-17 12:44:49 +01007593 }
7594}
7595
7596static int sched_rt_global_validate(void)
7597{
7598 if (sysctl_sched_rt_period <= 0)
7599 return -EINVAL;
7600
Juri Lellie9e7cb32014-02-11 09:24:26 +01007601 if ((sysctl_sched_rt_runtime != RUNTIME_INF) &&
7602 (sysctl_sched_rt_runtime > sysctl_sched_rt_period))
Peter Zijlstra17248132013-12-17 12:44:49 +01007603 return -EINVAL;
7604
Dario Faggioli332ac172013-11-07 14:43:45 +01007605 return 0;
7606}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007607
Peter Zijlstra17248132013-12-17 12:44:49 +01007608static void sched_rt_do_global(void)
7609{
7610 def_rt_bandwidth.rt_runtime = global_rt_runtime();
7611 def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period());
7612}
7613
7614int sched_rt_handler(struct ctl_table *table, int write,
7615 void __user *buffer, size_t *lenp,
7616 loff_t *ppos)
7617{
7618 int old_period, old_runtime;
7619 static DEFINE_MUTEX(mutex);
7620 int ret;
7621
7622 mutex_lock(&mutex);
7623 old_period = sysctl_sched_rt_period;
7624 old_runtime = sysctl_sched_rt_runtime;
7625
7626 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7627
7628 if (!ret && write) {
7629 ret = sched_rt_global_validate();
7630 if (ret)
7631 goto undo;
7632
7633 ret = sched_rt_global_constraints();
7634 if (ret)
7635 goto undo;
7636
7637 ret = sched_dl_global_constraints();
7638 if (ret)
7639 goto undo;
7640
7641 sched_rt_do_global();
7642 sched_dl_do_global();
7643 }
7644 if (0) {
7645undo:
7646 sysctl_sched_rt_period = old_period;
7647 sysctl_sched_rt_runtime = old_runtime;
7648 }
7649 mutex_unlock(&mutex);
7650
7651 return ret;
7652}
7653
Clark Williamsce0dbbb2013-02-07 09:47:04 -06007654int sched_rr_handler(struct ctl_table *table, int write,
7655 void __user *buffer, size_t *lenp,
7656 loff_t *ppos)
7657{
7658 int ret;
7659 static DEFINE_MUTEX(mutex);
7660
7661 mutex_lock(&mutex);
7662 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7663 /* make sure that internally we keep jiffies */
7664 /* also, writing zero resets timeslice to default */
7665 if (!ret && write) {
7666 sched_rr_timeslice = sched_rr_timeslice <= 0 ?
7667 RR_TIMESLICE : msecs_to_jiffies(sched_rr_timeslice);
7668 }
7669 mutex_unlock(&mutex);
7670 return ret;
7671}
7672
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007673#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007674
Tejun Heoa7c6d552013-08-08 20:11:23 -04007675static inline struct task_group *css_tg(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007676{
Tejun Heoa7c6d552013-08-08 20:11:23 -04007677 return css ? container_of(css, struct task_group, css) : NULL;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007678}
7679
Tejun Heoeb954192013-08-08 20:11:23 -04007680static struct cgroup_subsys_state *
7681cpu_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007682{
Tejun Heoeb954192013-08-08 20:11:23 -04007683 struct task_group *parent = css_tg(parent_css);
7684 struct task_group *tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007685
Tejun Heoeb954192013-08-08 20:11:23 -04007686 if (!parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007687 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08007688 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007689 }
7690
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007691 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007692 if (IS_ERR(tg))
7693 return ERR_PTR(-ENOMEM);
7694
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007695 return &tg->css;
7696}
7697
Tejun Heoeb954192013-08-08 20:11:23 -04007698static int cpu_cgroup_css_online(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007699{
Tejun Heoeb954192013-08-08 20:11:23 -04007700 struct task_group *tg = css_tg(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -04007701 struct task_group *parent = css_tg(css->parent);
Li Zefanace783b2013-01-24 14:30:48 +08007702
Tejun Heo63876982013-08-08 20:11:23 -04007703 if (parent)
7704 sched_online_group(tg, parent);
Li Zefanace783b2013-01-24 14:30:48 +08007705 return 0;
7706}
7707
Tejun Heoeb954192013-08-08 20:11:23 -04007708static void cpu_cgroup_css_free(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007709{
Tejun Heoeb954192013-08-08 20:11:23 -04007710 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007711
7712 sched_destroy_group(tg);
7713}
7714
Tejun Heoeb954192013-08-08 20:11:23 -04007715static void cpu_cgroup_css_offline(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007716{
Tejun Heoeb954192013-08-08 20:11:23 -04007717 struct task_group *tg = css_tg(css);
Li Zefanace783b2013-01-24 14:30:48 +08007718
7719 sched_offline_group(tg);
7720}
7721
Tejun Heoeb954192013-08-08 20:11:23 -04007722static int cpu_cgroup_can_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007723 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007724{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007725 struct task_struct *task;
7726
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007727 cgroup_taskset_for_each(task, tset) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007728#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heoeb954192013-08-08 20:11:23 -04007729 if (!sched_rt_can_attach(css_tg(css), task))
Tejun Heobb9d97b2011-12-12 18:12:21 -08007730 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007731#else
Tejun Heobb9d97b2011-12-12 18:12:21 -08007732 /* We don't support RT-tasks being in separate groups */
7733 if (task->sched_class != &fair_sched_class)
7734 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007735#endif
Tejun Heobb9d97b2011-12-12 18:12:21 -08007736 }
Ben Blumbe367d02009-09-23 15:56:31 -07007737 return 0;
7738}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007739
Tejun Heoeb954192013-08-08 20:11:23 -04007740static void cpu_cgroup_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007741 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007742{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007743 struct task_struct *task;
7744
Tejun Heo924f0d9a2014-02-13 06:58:41 -05007745 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08007746 sched_move_task(task);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007747}
7748
Tejun Heoeb954192013-08-08 20:11:23 -04007749static void cpu_cgroup_exit(struct cgroup_subsys_state *css,
7750 struct cgroup_subsys_state *old_css,
7751 struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007752{
7753 /*
7754 * cgroup_exit() is called in the copy_process() failure path.
7755 * Ignore this case since the task hasn't ran yet, this avoids
7756 * trying to poke a half freed task state from generic code.
7757 */
7758 if (!(task->flags & PF_EXITING))
7759 return;
7760
7761 sched_move_task(task);
7762}
7763
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007764#ifdef CONFIG_FAIR_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007765static int cpu_shares_write_u64(struct cgroup_subsys_state *css,
7766 struct cftype *cftype, u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007767{
Tejun Heo182446d2013-08-08 20:11:24 -04007768 return sched_group_set_shares(css_tg(css), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007769}
7770
Tejun Heo182446d2013-08-08 20:11:24 -04007771static u64 cpu_shares_read_u64(struct cgroup_subsys_state *css,
7772 struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007773{
Tejun Heo182446d2013-08-08 20:11:24 -04007774 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007775
Nikhil Raoc8b28112011-05-18 14:37:48 -07007776 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007777}
Paul Turnerab84d312011-07-21 09:43:28 -07007778
7779#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07007780static DEFINE_MUTEX(cfs_constraints_mutex);
7781
Paul Turnerab84d312011-07-21 09:43:28 -07007782const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
7783const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
7784
Paul Turnera790de92011-07-21 09:43:29 -07007785static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
7786
Paul Turnerab84d312011-07-21 09:43:28 -07007787static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
7788{
Paul Turner56f570e2011-11-07 20:26:33 -08007789 int i, ret = 0, runtime_enabled, runtime_was_enabled;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007790 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnerab84d312011-07-21 09:43:28 -07007791
7792 if (tg == &root_task_group)
7793 return -EINVAL;
7794
7795 /*
7796 * Ensure we have at some amount of bandwidth every period. This is
7797 * to prevent reaching a state of large arrears when throttled via
7798 * entity_tick() resulting in prolonged exit starvation.
7799 */
7800 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
7801 return -EINVAL;
7802
7803 /*
7804 * Likewise, bound things on the otherside by preventing insane quota
7805 * periods. This also allows us to normalize in computing quota
7806 * feasibility.
7807 */
7808 if (period > max_cfs_quota_period)
7809 return -EINVAL;
7810
Paul Turnera790de92011-07-21 09:43:29 -07007811 mutex_lock(&cfs_constraints_mutex);
7812 ret = __cfs_schedulable(tg, period, quota);
7813 if (ret)
7814 goto out_unlock;
7815
Paul Turner58088ad2011-07-21 09:43:31 -07007816 runtime_enabled = quota != RUNTIME_INF;
Paul Turner56f570e2011-11-07 20:26:33 -08007817 runtime_was_enabled = cfs_b->quota != RUNTIME_INF;
Ben Segall1ee14e62013-10-16 11:16:12 -07007818 /*
7819 * If we need to toggle cfs_bandwidth_used, off->on must occur
7820 * before making related changes, and on->off must occur afterwards
7821 */
7822 if (runtime_enabled && !runtime_was_enabled)
7823 cfs_bandwidth_usage_inc();
Paul Turnerab84d312011-07-21 09:43:28 -07007824 raw_spin_lock_irq(&cfs_b->lock);
7825 cfs_b->period = ns_to_ktime(period);
7826 cfs_b->quota = quota;
Paul Turner58088ad2011-07-21 09:43:31 -07007827
Paul Turnera9cf55b2011-07-21 09:43:32 -07007828 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07007829 /* restart the period timer (if active) to handle new period expiry */
7830 if (runtime_enabled && cfs_b->timer_active) {
7831 /* force a reprogram */
Roman Gushchin09dc4ab2014-05-19 15:10:09 +04007832 __start_cfs_bandwidth(cfs_b, true);
Paul Turner58088ad2011-07-21 09:43:31 -07007833 }
Paul Turnerab84d312011-07-21 09:43:28 -07007834 raw_spin_unlock_irq(&cfs_b->lock);
7835
7836 for_each_possible_cpu(i) {
7837 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
Peter Zijlstra029632f2011-10-25 10:00:11 +02007838 struct rq *rq = cfs_rq->rq;
Paul Turnerab84d312011-07-21 09:43:28 -07007839
7840 raw_spin_lock_irq(&rq->lock);
Paul Turner58088ad2011-07-21 09:43:31 -07007841 cfs_rq->runtime_enabled = runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07007842 cfs_rq->runtime_remaining = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07007843
Peter Zijlstra029632f2011-10-25 10:00:11 +02007844 if (cfs_rq->throttled)
Paul Turner671fd9d2011-07-21 09:43:34 -07007845 unthrottle_cfs_rq(cfs_rq);
Paul Turnerab84d312011-07-21 09:43:28 -07007846 raw_spin_unlock_irq(&rq->lock);
7847 }
Ben Segall1ee14e62013-10-16 11:16:12 -07007848 if (runtime_was_enabled && !runtime_enabled)
7849 cfs_bandwidth_usage_dec();
Paul Turnera790de92011-07-21 09:43:29 -07007850out_unlock:
7851 mutex_unlock(&cfs_constraints_mutex);
Paul Turnerab84d312011-07-21 09:43:28 -07007852
Paul Turnera790de92011-07-21 09:43:29 -07007853 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07007854}
7855
7856int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
7857{
7858 u64 quota, period;
7859
Peter Zijlstra029632f2011-10-25 10:00:11 +02007860 period = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007861 if (cfs_quota_us < 0)
7862 quota = RUNTIME_INF;
7863 else
7864 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
7865
7866 return tg_set_cfs_bandwidth(tg, period, quota);
7867}
7868
7869long tg_get_cfs_quota(struct task_group *tg)
7870{
7871 u64 quota_us;
7872
Peter Zijlstra029632f2011-10-25 10:00:11 +02007873 if (tg->cfs_bandwidth.quota == RUNTIME_INF)
Paul Turnerab84d312011-07-21 09:43:28 -07007874 return -1;
7875
Peter Zijlstra029632f2011-10-25 10:00:11 +02007876 quota_us = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007877 do_div(quota_us, NSEC_PER_USEC);
7878
7879 return quota_us;
7880}
7881
7882int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
7883{
7884 u64 quota, period;
7885
7886 period = (u64)cfs_period_us * NSEC_PER_USEC;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007887 quota = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007888
Paul Turnerab84d312011-07-21 09:43:28 -07007889 return tg_set_cfs_bandwidth(tg, period, quota);
7890}
7891
7892long tg_get_cfs_period(struct task_group *tg)
7893{
7894 u64 cfs_period_us;
7895
Peter Zijlstra029632f2011-10-25 10:00:11 +02007896 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007897 do_div(cfs_period_us, NSEC_PER_USEC);
7898
7899 return cfs_period_us;
7900}
7901
Tejun Heo182446d2013-08-08 20:11:24 -04007902static s64 cpu_cfs_quota_read_s64(struct cgroup_subsys_state *css,
7903 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007904{
Tejun Heo182446d2013-08-08 20:11:24 -04007905 return tg_get_cfs_quota(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007906}
7907
Tejun Heo182446d2013-08-08 20:11:24 -04007908static int cpu_cfs_quota_write_s64(struct cgroup_subsys_state *css,
7909 struct cftype *cftype, s64 cfs_quota_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007910{
Tejun Heo182446d2013-08-08 20:11:24 -04007911 return tg_set_cfs_quota(css_tg(css), cfs_quota_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007912}
7913
Tejun Heo182446d2013-08-08 20:11:24 -04007914static u64 cpu_cfs_period_read_u64(struct cgroup_subsys_state *css,
7915 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007916{
Tejun Heo182446d2013-08-08 20:11:24 -04007917 return tg_get_cfs_period(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007918}
7919
Tejun Heo182446d2013-08-08 20:11:24 -04007920static int cpu_cfs_period_write_u64(struct cgroup_subsys_state *css,
7921 struct cftype *cftype, u64 cfs_period_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007922{
Tejun Heo182446d2013-08-08 20:11:24 -04007923 return tg_set_cfs_period(css_tg(css), cfs_period_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007924}
7925
Paul Turnera790de92011-07-21 09:43:29 -07007926struct cfs_schedulable_data {
7927 struct task_group *tg;
7928 u64 period, quota;
7929};
7930
7931/*
7932 * normalize group quota/period to be quota/max_period
7933 * note: units are usecs
7934 */
7935static u64 normalize_cfs_quota(struct task_group *tg,
7936 struct cfs_schedulable_data *d)
7937{
7938 u64 quota, period;
7939
7940 if (tg == d->tg) {
7941 period = d->period;
7942 quota = d->quota;
7943 } else {
7944 period = tg_get_cfs_period(tg);
7945 quota = tg_get_cfs_quota(tg);
7946 }
7947
7948 /* note: these should typically be equivalent */
7949 if (quota == RUNTIME_INF || quota == -1)
7950 return RUNTIME_INF;
7951
7952 return to_ratio(period, quota);
7953}
7954
7955static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
7956{
7957 struct cfs_schedulable_data *d = data;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007958 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007959 s64 quota = 0, parent_quota = -1;
7960
7961 if (!tg->parent) {
7962 quota = RUNTIME_INF;
7963 } else {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007964 struct cfs_bandwidth *parent_b = &tg->parent->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007965
7966 quota = normalize_cfs_quota(tg, d);
7967 parent_quota = parent_b->hierarchal_quota;
7968
7969 /*
7970 * ensure max(child_quota) <= parent_quota, inherit when no
7971 * limit is set
7972 */
7973 if (quota == RUNTIME_INF)
7974 quota = parent_quota;
7975 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
7976 return -EINVAL;
7977 }
7978 cfs_b->hierarchal_quota = quota;
7979
7980 return 0;
7981}
7982
7983static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
7984{
Paul Turner82774342011-07-21 09:43:35 -07007985 int ret;
Paul Turnera790de92011-07-21 09:43:29 -07007986 struct cfs_schedulable_data data = {
7987 .tg = tg,
7988 .period = period,
7989 .quota = quota,
7990 };
7991
7992 if (quota != RUNTIME_INF) {
7993 do_div(data.period, NSEC_PER_USEC);
7994 do_div(data.quota, NSEC_PER_USEC);
7995 }
7996
Paul Turner82774342011-07-21 09:43:35 -07007997 rcu_read_lock();
7998 ret = walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
7999 rcu_read_unlock();
8000
8001 return ret;
Paul Turnera790de92011-07-21 09:43:29 -07008002}
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008003
Tejun Heo2da8ca82013-12-05 12:28:04 -05008004static int cpu_stats_show(struct seq_file *sf, void *v)
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008005{
Tejun Heo2da8ca82013-12-05 12:28:04 -05008006 struct task_group *tg = css_tg(seq_css(sf));
Peter Zijlstra029632f2011-10-25 10:00:11 +02008007 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008008
Tejun Heo44ffc752013-12-05 12:28:01 -05008009 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods);
8010 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled);
8011 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008012
8013 return 0;
8014}
Paul Turnerab84d312011-07-21 09:43:28 -07008015#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008016#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008017
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008018#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04008019static int cpu_rt_runtime_write(struct cgroup_subsys_state *css,
8020 struct cftype *cft, s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008021{
Tejun Heo182446d2013-08-08 20:11:24 -04008022 return sched_group_set_rt_runtime(css_tg(css), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008023}
8024
Tejun Heo182446d2013-08-08 20:11:24 -04008025static s64 cpu_rt_runtime_read(struct cgroup_subsys_state *css,
8026 struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008027{
Tejun Heo182446d2013-08-08 20:11:24 -04008028 return sched_group_rt_runtime(css_tg(css));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008029}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008030
Tejun Heo182446d2013-08-08 20:11:24 -04008031static int cpu_rt_period_write_uint(struct cgroup_subsys_state *css,
8032 struct cftype *cftype, u64 rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008033{
Tejun Heo182446d2013-08-08 20:11:24 -04008034 return sched_group_set_rt_period(css_tg(css), rt_period_us);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008035}
8036
Tejun Heo182446d2013-08-08 20:11:24 -04008037static u64 cpu_rt_period_read_uint(struct cgroup_subsys_state *css,
8038 struct cftype *cft)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008039{
Tejun Heo182446d2013-08-08 20:11:24 -04008040 return sched_group_rt_period(css_tg(css));
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008041}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008042#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008043
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008044static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008045#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008046 {
8047 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07008048 .read_u64 = cpu_shares_read_u64,
8049 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008050 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008051#endif
Paul Turnerab84d312011-07-21 09:43:28 -07008052#ifdef CONFIG_CFS_BANDWIDTH
8053 {
8054 .name = "cfs_quota_us",
8055 .read_s64 = cpu_cfs_quota_read_s64,
8056 .write_s64 = cpu_cfs_quota_write_s64,
8057 },
8058 {
8059 .name = "cfs_period_us",
8060 .read_u64 = cpu_cfs_period_read_u64,
8061 .write_u64 = cpu_cfs_period_write_u64,
8062 },
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008063 {
8064 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05008065 .seq_show = cpu_stats_show,
Nikhil Raoe8da1b12011-07-21 09:43:40 -07008066 },
Paul Turnerab84d312011-07-21 09:43:28 -07008067#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008068#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008069 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008070 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07008071 .read_s64 = cpu_rt_runtime_read,
8072 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008073 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008074 {
8075 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07008076 .read_u64 = cpu_rt_period_read_uint,
8077 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008078 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008079#endif
Tejun Heo4baf6e32012-04-01 12:09:55 -07008080 { } /* terminate */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008081};
8082
Tejun Heo073219e2014-02-08 10:36:58 -05008083struct cgroup_subsys cpu_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08008084 .css_alloc = cpu_cgroup_css_alloc,
8085 .css_free = cpu_cgroup_css_free,
Li Zefanace783b2013-01-24 14:30:48 +08008086 .css_online = cpu_cgroup_css_online,
8087 .css_offline = cpu_cgroup_css_offline,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008088 .can_attach = cpu_cgroup_can_attach,
8089 .attach = cpu_cgroup_attach,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01008090 .exit = cpu_cgroup_exit,
Tejun Heo4baf6e32012-04-01 12:09:55 -07008091 .base_cftypes = cpu_files,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008092 .early_init = 1,
8093};
8094
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008095#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008096
Paul E. McKenneyb637a322012-09-19 16:58:38 -07008097void dump_cpu_task(int cpu)
8098{
8099 pr_info("Task dump for CPU %d:\n", cpu);
8100 sched_show_task(cpu_curr(cpu));
8101}