blob: e9212eb354b89e6ca5cb3607cf1034019deb3a97 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
David Howells96f951e2012-03-28 18:30:03 +010077#include <asm/switch_to.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070078#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020079#include <asm/irq_regs.h>
Christian Borntraegerdb7e5272012-01-11 08:58:16 +010080#include <asm/mutex.h>
Glauber Costae6e66852011-07-11 15:28:17 -040081#ifdef CONFIG_PARAVIRT
82#include <asm/paravirt.h>
83#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Peter Zijlstra029632f2011-10-25 10:00:11 +020085#include "sched.h"
Tejun Heoea138442013-01-18 14:05:55 -080086#include "../workqueue_internal.h"
Thomas Gleixner29d5e042012-04-20 13:05:45 +000087#include "../smpboot.h"
Gregory Haskins6e0534f2008-05-12 21:21:01 +020088
Steven Rostedta8d154b2009-04-10 09:36:00 -040089#define CREATE_TRACE_POINTS
Steven Rostedtad8d75f2009-04-14 19:39:12 -040090#include <trace/events/sched.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040091
Peter Zijlstra029632f2011-10-25 10:00:11 +020092void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period)
Paul Turner58088ad2011-07-21 09:43:31 -070093{
94 unsigned long delta;
95 ktime_t soft, hard, now;
96
97 for (;;) {
98 if (hrtimer_active(period_timer))
99 break;
100
101 now = hrtimer_cb_get_time(period_timer);
102 hrtimer_forward(period_timer, now, period);
103
104 soft = hrtimer_get_softexpires(period_timer);
105 hard = hrtimer_get_expires(period_timer);
106 delta = ktime_to_ns(ktime_sub(hard, soft));
107 __hrtimer_start_range_ns(period_timer, soft, delta,
108 HRTIMER_MODE_ABS_PINNED, 0);
109 }
110}
111
Peter Zijlstra029632f2011-10-25 10:00:11 +0200112DEFINE_MUTEX(sched_domains_mutex);
113DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200114
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100115static void update_rq_clock_task(struct rq *rq, s64 delta);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700116
Peter Zijlstra029632f2011-10-25 10:00:11 +0200117void update_rq_clock(struct rq *rq)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200118{
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100119 s64 delta;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700120
Mike Galbraith61eadef2011-04-29 08:36:50 +0200121 if (rq->skip_clock_update > 0)
Mike Galbraithf26f9af2010-12-08 11:05:42 +0100122 return;
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700123
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100124 delta = sched_clock_cpu(cpu_of(rq)) - rq->clock;
125 rq->clock += delta;
126 update_rq_clock_task(rq, delta);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200127}
128
Ingo Molnare436d802007-07-19 21:28:35 +0200129/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200130 * Debugging: various feature bits
131 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200132
133#define SCHED_FEAT(name, enabled) \
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200134 (1UL << __SCHED_FEAT_##name) * enabled |
135
136const_debug unsigned int sysctl_sched_features =
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100137#include "features.h"
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200138 0;
139
140#undef SCHED_FEAT
141
142#ifdef CONFIG_SCHED_DEBUG
143#define SCHED_FEAT(name, enabled) \
144 #name ,
145
Hiroshi Shimamoto12925312012-05-25 15:41:54 +0900146static const char * const sched_feat_names[] = {
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100147#include "features.h"
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200148};
149
150#undef SCHED_FEAT
151
Li Zefan34f3a812008-10-30 15:23:32 +0800152static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200153{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200154 int i;
155
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200156 for (i = 0; i < __SCHED_FEAT_NR; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800157 if (!(sysctl_sched_features & (1UL << i)))
158 seq_puts(m, "NO_");
159 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200160 }
Li Zefan34f3a812008-10-30 15:23:32 +0800161 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200162
Li Zefan34f3a812008-10-30 15:23:32 +0800163 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200164}
165
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200166#ifdef HAVE_JUMP_LABEL
167
Ingo Molnarc5905af2012-02-24 08:31:31 +0100168#define jump_label_key__true STATIC_KEY_INIT_TRUE
169#define jump_label_key__false STATIC_KEY_INIT_FALSE
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200170
171#define SCHED_FEAT(name, enabled) \
172 jump_label_key__##enabled ,
173
Ingo Molnarc5905af2012-02-24 08:31:31 +0100174struct static_key sched_feat_keys[__SCHED_FEAT_NR] = {
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200175#include "features.h"
176};
177
178#undef SCHED_FEAT
179
180static void sched_feat_disable(int i)
181{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100182 if (static_key_enabled(&sched_feat_keys[i]))
183 static_key_slow_dec(&sched_feat_keys[i]);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200184}
185
186static void sched_feat_enable(int i)
187{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100188 if (!static_key_enabled(&sched_feat_keys[i]))
189 static_key_slow_inc(&sched_feat_keys[i]);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200190}
191#else
192static void sched_feat_disable(int i) { };
193static void sched_feat_enable(int i) { };
194#endif /* HAVE_JUMP_LABEL */
195
Mel Gorman1a687c22012-11-22 11:16:36 +0000196static int sched_feat_set(char *cmp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200197{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200198 int i;
Mel Gorman1a687c22012-11-22 11:16:36 +0000199 int neg = 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200200
Hillf Danton524429c2011-01-06 20:58:12 +0800201 if (strncmp(cmp, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200202 neg = 1;
203 cmp += 3;
204 }
205
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200206 for (i = 0; i < __SCHED_FEAT_NR; i++) {
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400207 if (strcmp(cmp, sched_feat_names[i]) == 0) {
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200208 if (neg) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200209 sysctl_sched_features &= ~(1UL << i);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200210 sched_feat_disable(i);
211 } else {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200212 sysctl_sched_features |= (1UL << i);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200213 sched_feat_enable(i);
214 }
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200215 break;
216 }
217 }
218
Mel Gorman1a687c22012-11-22 11:16:36 +0000219 return i;
220}
221
222static ssize_t
223sched_feat_write(struct file *filp, const char __user *ubuf,
224 size_t cnt, loff_t *ppos)
225{
226 char buf[64];
227 char *cmp;
228 int i;
229
230 if (cnt > 63)
231 cnt = 63;
232
233 if (copy_from_user(&buf, ubuf, cnt))
234 return -EFAULT;
235
236 buf[cnt] = 0;
237 cmp = strstrip(buf);
238
239 i = sched_feat_set(cmp);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200240 if (i == __SCHED_FEAT_NR)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200241 return -EINVAL;
242
Jan Blunck42994722009-11-20 17:40:37 +0100243 *ppos += cnt;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200244
245 return cnt;
246}
247
Li Zefan34f3a812008-10-30 15:23:32 +0800248static int sched_feat_open(struct inode *inode, struct file *filp)
249{
250 return single_open(filp, sched_feat_show, NULL);
251}
252
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700253static const struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800254 .open = sched_feat_open,
255 .write = sched_feat_write,
256 .read = seq_read,
257 .llseek = seq_lseek,
258 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200259};
260
261static __init int sched_init_debug(void)
262{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200263 debugfs_create_file("sched_features", 0644, NULL, NULL,
264 &sched_feat_fops);
265
266 return 0;
267}
268late_initcall(sched_init_debug);
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200269#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200270
271/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100272 * Number of tasks to iterate in a single balance run.
273 * Limited because this is done with IRQs disabled.
274 */
275const_debug unsigned int sysctl_sched_nr_migrate = 32;
276
277/*
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200278 * period over which we average the RT time consumption, measured
279 * in ms.
280 *
281 * default: 1s
282 */
283const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
284
285/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100286 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100287 * default: 1s
288 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100289unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100290
Peter Zijlstra029632f2011-10-25 10:00:11 +0200291__read_mostly int scheduler_running;
Ingo Molnar6892b752008-02-13 14:02:36 +0100292
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100293/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100294 * part of the period that we allow rt tasks to run in us.
295 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100296 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100297int sysctl_sched_rt_runtime = 950000;
298
Dario Faggioli332ac172013-11-07 14:43:45 +0100299/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200300 * __task_rq_lock - lock the rq @p resides on.
Ingo Molnarb29739f2006-06-27 02:54:51 -0700301 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700302static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700303 __acquires(rq->lock)
304{
Peter Zijlstra0970d292010-02-15 14:45:54 +0100305 struct rq *rq;
306
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200307 lockdep_assert_held(&p->pi_lock);
308
Andi Kleen3a5c3592007-10-15 17:00:14 +0200309 for (;;) {
Peter Zijlstra0970d292010-02-15 14:45:54 +0100310 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100311 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100312 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200313 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100314 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700315 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700316}
317
318/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200319 * task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700321static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200322 __acquires(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 __acquires(rq->lock)
324{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700325 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Andi Kleen3a5c3592007-10-15 17:00:14 +0200327 for (;;) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200328 raw_spin_lock_irqsave(&p->pi_lock, *flags);
Andi Kleen3a5c3592007-10-15 17:00:14 +0200329 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100330 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100331 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200332 return rq;
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200333 raw_spin_unlock(&rq->lock);
334 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Alexey Dobriyana9957442007-10-15 17:00:13 +0200338static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700339 __releases(rq->lock)
340{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100341 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700342}
343
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200344static inline void
345task_rq_unlock(struct rq *rq, struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 __releases(rq->lock)
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200347 __releases(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200349 raw_spin_unlock(&rq->lock);
350 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800354 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200356static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 __acquires(rq->lock)
358{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700359 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 local_irq_disable();
362 rq = this_rq();
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100363 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 return rq;
366}
367
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100368#ifdef CONFIG_SCHED_HRTICK
369/*
370 * Use HR-timers to deliver accurate preemption points.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100371 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100372
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100373static void hrtick_clear(struct rq *rq)
374{
375 if (hrtimer_active(&rq->hrtick_timer))
376 hrtimer_cancel(&rq->hrtick_timer);
377}
378
379/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100380 * High-resolution timer tick.
381 * Runs from hardirq context with interrupts disabled.
382 */
383static enum hrtimer_restart hrtick(struct hrtimer *timer)
384{
385 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
386
387 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
388
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100389 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200390 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100391 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100392 raw_spin_unlock(&rq->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100393
394 return HRTIMER_NORESTART;
395}
396
Rabin Vincent95e904c2008-05-11 05:55:33 +0530397#ifdef CONFIG_SMP
Peter Zijlstra971ee282013-06-28 11:18:53 +0200398
399static int __hrtick_restart(struct rq *rq)
400{
401 struct hrtimer *timer = &rq->hrtick_timer;
402 ktime_t time = hrtimer_get_softexpires(timer);
403
404 return __hrtimer_start_range_ns(timer, time, 0, HRTIMER_MODE_ABS_PINNED, 0);
405}
406
Peter Zijlstra31656512008-07-18 18:01:23 +0200407/*
408 * called from hardirq (IPI) context
409 */
410static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200411{
Peter Zijlstra31656512008-07-18 18:01:23 +0200412 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200413
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100414 raw_spin_lock(&rq->lock);
Peter Zijlstra971ee282013-06-28 11:18:53 +0200415 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200416 rq->hrtick_csd_pending = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100417 raw_spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200418}
419
Peter Zijlstra31656512008-07-18 18:01:23 +0200420/*
421 * Called to set the hrtick timer state.
422 *
423 * called with rq->lock held and irqs disabled
424 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200425void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200426{
Peter Zijlstra31656512008-07-18 18:01:23 +0200427 struct hrtimer *timer = &rq->hrtick_timer;
428 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200429
Arjan van de Vencc584b22008-09-01 15:02:30 -0700430 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +0200431
432 if (rq == this_rq()) {
Peter Zijlstra971ee282013-06-28 11:18:53 +0200433 __hrtick_restart(rq);
Peter Zijlstra31656512008-07-18 18:01:23 +0200434 } else if (!rq->hrtick_csd_pending) {
Peter Zijlstra6e275632009-02-25 13:59:48 +0100435 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +0200436 rq->hrtick_csd_pending = 1;
437 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200438}
439
440static int
441hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
442{
443 int cpu = (int)(long)hcpu;
444
445 switch (action) {
446 case CPU_UP_CANCELED:
447 case CPU_UP_CANCELED_FROZEN:
448 case CPU_DOWN_PREPARE:
449 case CPU_DOWN_PREPARE_FROZEN:
450 case CPU_DEAD:
451 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +0200452 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200453 return NOTIFY_OK;
454 }
455
456 return NOTIFY_DONE;
457}
458
Rakib Mullickfa748202008-09-22 14:55:45 -0700459static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200460{
461 hotcpu_notifier(hotplug_hrtick, 0);
462}
Peter Zijlstra31656512008-07-18 18:01:23 +0200463#else
464/*
465 * Called to set the hrtick timer state.
466 *
467 * called with rq->lock held and irqs disabled
468 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200469void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstra31656512008-07-18 18:01:23 +0200470{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100471 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530472 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +0200473}
474
Andrew Morton006c75f2008-09-22 14:55:46 -0700475static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +0200476{
477}
Rabin Vincent95e904c2008-05-11 05:55:33 +0530478#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200479
480static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100481{
Peter Zijlstra31656512008-07-18 18:01:23 +0200482#ifdef CONFIG_SMP
483 rq->hrtick_csd_pending = 0;
484
485 rq->hrtick_csd.flags = 0;
486 rq->hrtick_csd.func = __hrtick_start;
487 rq->hrtick_csd.info = rq;
488#endif
489
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100490 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
491 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100492}
Andrew Morton006c75f2008-09-22 14:55:46 -0700493#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100494static inline void hrtick_clear(struct rq *rq)
495{
496}
497
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100498static inline void init_rq_hrtick(struct rq *rq)
499{
500}
501
Peter Zijlstrab328ca12008-04-29 10:02:46 +0200502static inline void init_hrtick(void)
503{
504}
Andrew Morton006c75f2008-09-22 14:55:46 -0700505#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100506
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200507/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200508 * resched_task - mark a task 'to be rescheduled now'.
509 *
510 * On UP this means the setting of the need_resched flag, on SMP it
511 * might also involve a cross-CPU call to trigger the scheduler on
512 * the target CPU.
513 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200514void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200515{
516 int cpu;
517
Peter Zijlstrab021fe32013-09-17 09:30:55 +0200518 lockdep_assert_held(&task_rq(p)->lock);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200519
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +0800520 if (test_tsk_need_resched(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200521 return;
522
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +0800523 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200524
525 cpu = task_cpu(p);
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200526 if (cpu == smp_processor_id()) {
527 set_preempt_need_resched();
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200528 return;
Peter Zijlstraf27dde82013-08-14 14:55:31 +0200529 }
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200530
531 /* NEED_RESCHED must be visible before we test polling */
532 smp_mb();
533 if (!tsk_is_polling(p))
534 smp_send_reschedule(cpu);
535}
536
Peter Zijlstra029632f2011-10-25 10:00:11 +0200537void resched_cpu(int cpu)
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200538{
539 struct rq *rq = cpu_rq(cpu);
540 unsigned long flags;
541
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100542 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200543 return;
544 resched_task(cpu_curr(cpu));
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100545 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200546}
Thomas Gleixner06d83082008-03-22 09:20:24 +0100547
Peter Zijlstrab021fe32013-09-17 09:30:55 +0200548#ifdef CONFIG_SMP
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200549#ifdef CONFIG_NO_HZ_COMMON
Thomas Gleixner06d83082008-03-22 09:20:24 +0100550/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700551 * In the semi idle case, use the nearest busy cpu for migrating timers
552 * from an idle cpu. This is good for power-savings.
553 *
554 * We don't do similar optimization for completely idle system, as
555 * selecting an idle cpu will add more delays to the timers than intended
556 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
557 */
558int get_nohz_timer_target(void)
559{
560 int cpu = smp_processor_id();
561 int i;
562 struct sched_domain *sd;
563
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200564 rcu_read_lock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700565 for_each_domain(cpu, sd) {
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200566 for_each_cpu(i, sched_domain_span(sd)) {
567 if (!idle_cpu(i)) {
568 cpu = i;
569 goto unlock;
570 }
571 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700572 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +0200573unlock:
574 rcu_read_unlock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700575 return cpu;
576}
577/*
Thomas Gleixner06d83082008-03-22 09:20:24 +0100578 * When add_timer_on() enqueues a timer into the timer wheel of an
579 * idle CPU then this timer might expire before the next timer event
580 * which is scheduled to wake up that CPU. In case of a completely
581 * idle system the next event might even be infinite time into the
582 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
583 * leaves the inner idle loop so the newly added timer is taken into
584 * account when the CPU goes back to idle and evaluates the timer
585 * wheel for the next timer event.
586 */
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200587static void wake_up_idle_cpu(int cpu)
Thomas Gleixner06d83082008-03-22 09:20:24 +0100588{
589 struct rq *rq = cpu_rq(cpu);
590
591 if (cpu == smp_processor_id())
592 return;
593
594 /*
595 * This is safe, as this function is called with the timer
596 * wheel base lock of (cpu) held. When the CPU is on the way
597 * to idle and has not yet set rq->curr to idle then it will
598 * be serialized on the timer wheel base lock and take the new
599 * timer into account automatically.
600 */
601 if (rq->curr != rq->idle)
602 return;
603
604 /*
605 * We can set TIF_RESCHED on the idle task of the other CPU
606 * lockless. The worst case is that the other CPU runs the
607 * idle task through an additional NOOP schedule()
608 */
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +0800609 set_tsk_need_resched(rq->idle);
Thomas Gleixner06d83082008-03-22 09:20:24 +0100610
611 /* NEED_RESCHED must be visible before we test polling */
612 smp_mb();
613 if (!tsk_is_polling(rq->idle))
614 smp_send_reschedule(cpu);
615}
Mike Galbraith39c0cbe2010-03-11 17:17:13 +0100616
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200617static bool wake_up_full_nohz_cpu(int cpu)
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200618{
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200619 if (tick_nohz_full_cpu(cpu)) {
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200620 if (cpu != smp_processor_id() ||
621 tick_nohz_tick_stopped())
622 smp_send_reschedule(cpu);
623 return true;
624 }
625
626 return false;
627}
628
629void wake_up_nohz_cpu(int cpu)
630{
Frederic Weisbeckerc5bfece2013-04-12 16:45:34 +0200631 if (!wake_up_full_nohz_cpu(cpu))
Frederic Weisbecker1c200912011-08-10 23:21:01 +0200632 wake_up_idle_cpu(cpu);
633}
634
Suresh Siddhaca380622011-10-03 15:09:00 -0700635static inline bool got_nohz_idle_kick(void)
636{
Suresh Siddha1c792db2011-12-01 17:07:32 -0800637 int cpu = smp_processor_id();
Vincent Guittot873b4c62013-06-05 10:13:11 +0200638
639 if (!test_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu)))
640 return false;
641
642 if (idle_cpu(cpu) && !need_resched())
643 return true;
644
645 /*
646 * We can't run Idle Load Balance on this CPU for this time so we
647 * cancel it and clear NOHZ_BALANCE_KICK
648 */
649 clear_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu));
650 return false;
Suresh Siddhaca380622011-10-03 15:09:00 -0700651}
652
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200653#else /* CONFIG_NO_HZ_COMMON */
Suresh Siddhaca380622011-10-03 15:09:00 -0700654
655static inline bool got_nohz_idle_kick(void)
656{
657 return false;
658}
659
Frederic Weisbecker3451d022011-08-10 23:21:01 +0200660#endif /* CONFIG_NO_HZ_COMMON */
Thomas Gleixner06d83082008-03-22 09:20:24 +0100661
Frederic Weisbeckerce831b32013-04-20 15:15:35 +0200662#ifdef CONFIG_NO_HZ_FULL
663bool sched_can_stop_tick(void)
664{
665 struct rq *rq;
666
667 rq = this_rq();
668
669 /* Make sure rq->nr_running update is visible after the IPI */
670 smp_rmb();
671
672 /* More than one running task need preemption */
673 if (rq->nr_running > 1)
674 return false;
675
676 return true;
677}
678#endif /* CONFIG_NO_HZ_FULL */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200679
Peter Zijlstra029632f2011-10-25 10:00:11 +0200680void sched_avg_update(struct rq *rq)
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200681{
682 s64 period = sched_avg_period();
683
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200684 while ((s64)(rq_clock(rq) - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -0700685 /*
686 * Inline assembly required to prevent the compiler
687 * optimising this loop into a divmod call.
688 * See __iter_div_u64_rem() for another example of this.
689 */
690 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200691 rq->age_stamp += period;
692 rq->rt_avg /= 2;
693 }
694}
695
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200696#endif /* CONFIG_SMP */
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200697
Paul Turnera790de92011-07-21 09:43:29 -0700698#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
699 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
Peter Zijlstraeb755802008-08-19 12:33:05 +0200700/*
Paul Turner82774342011-07-21 09:43:35 -0700701 * Iterate task_group tree rooted at *from, calling @down when first entering a
702 * node and @up when leaving it for the final time.
703 *
704 * Caller must hold rcu_lock or sufficient equivalent.
Peter Zijlstraeb755802008-08-19 12:33:05 +0200705 */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200706int walk_tg_tree_from(struct task_group *from,
Paul Turner82774342011-07-21 09:43:35 -0700707 tg_visitor down, tg_visitor up, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200708{
709 struct task_group *parent, *child;
710 int ret;
711
Paul Turner82774342011-07-21 09:43:35 -0700712 parent = from;
713
Peter Zijlstraeb755802008-08-19 12:33:05 +0200714down:
715 ret = (*down)(parent, data);
716 if (ret)
Paul Turner82774342011-07-21 09:43:35 -0700717 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200718 list_for_each_entry_rcu(child, &parent->children, siblings) {
719 parent = child;
720 goto down;
721
722up:
723 continue;
724 }
725 ret = (*up)(parent, data);
Paul Turner82774342011-07-21 09:43:35 -0700726 if (ret || parent == from)
727 goto out;
Peter Zijlstraeb755802008-08-19 12:33:05 +0200728
729 child = parent;
730 parent = parent->parent;
731 if (parent)
732 goto up;
Paul Turner82774342011-07-21 09:43:35 -0700733out:
Peter Zijlstraeb755802008-08-19 12:33:05 +0200734 return ret;
735}
736
Peter Zijlstra029632f2011-10-25 10:00:11 +0200737int tg_nop(struct task_group *tg, void *data)
Peter Zijlstraeb755802008-08-19 12:33:05 +0200738{
739 return 0;
740}
741#endif
742
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200743static void set_load_weight(struct task_struct *p)
744{
Nikhil Raof05998d2011-05-18 10:09:38 -0700745 int prio = p->static_prio - MAX_RT_PRIO;
746 struct load_weight *load = &p->se.load;
747
Ingo Molnardd41f592007-07-09 18:51:59 +0200748 /*
749 * SCHED_IDLE tasks get minimal weight:
750 */
751 if (p->policy == SCHED_IDLE) {
Nikhil Raoc8b28112011-05-18 14:37:48 -0700752 load->weight = scale_load(WEIGHT_IDLEPRIO);
Nikhil Raof05998d2011-05-18 10:09:38 -0700753 load->inv_weight = WMULT_IDLEPRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +0200754 return;
755 }
756
Nikhil Raoc8b28112011-05-18 14:37:48 -0700757 load->weight = scale_load(prio_to_weight[prio]);
Nikhil Raof05998d2011-05-18 10:09:38 -0700758 load->inv_weight = prio_to_wmult[prio];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200759}
760
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100761static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -0600762{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100763 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300764 sched_info_queued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100765 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200766}
767
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100768static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +0200769{
Mike Galbraitha64692a2010-03-11 17:16:20 +0100770 update_rq_clock(rq);
Michael S. Tsirkin43148952013-09-22 17:20:54 +0300771 sched_info_dequeued(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100772 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200773}
774
Peter Zijlstra029632f2011-10-25 10:00:11 +0200775void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100776{
777 if (task_contributes_to_load(p))
778 rq->nr_uninterruptible--;
779
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100780 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100781}
782
Peter Zijlstra029632f2011-10-25 10:00:11 +0200783void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100784{
785 if (task_contributes_to_load(p))
786 rq->nr_uninterruptible++;
787
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100788 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100789}
790
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100791static void update_rq_clock_task(struct rq *rq, s64 delta)
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700792{
Glauber Costa095c0aa2011-07-11 15:28:18 -0400793/*
794 * In theory, the compile should just see 0 here, and optimize out the call
795 * to sched_rt_avg_update. But I don't trust it...
796 */
797#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
798 s64 steal = 0, irq_delta = 0;
799#endif
800#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Peter Zijlstra8e92c202010-12-09 14:15:34 +0100801 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100802
803 /*
804 * Since irq_time is only updated on {soft,}irq_exit, we might run into
805 * this case when a previous update_rq_clock() happened inside a
806 * {soft,}irq region.
807 *
808 * When this happens, we stop ->clock_task and only update the
809 * prev_irq_time stamp to account for the part that fit, so that a next
810 * update will consume the rest. This ensures ->clock_task is
811 * monotonic.
812 *
813 * It does however cause some slight miss-attribution of {soft,}irq
814 * time, a more accurate solution would be to update the irq_time using
815 * the current rq->clock timestamp, except that would require using
816 * atomic ops.
817 */
818 if (irq_delta > delta)
819 irq_delta = delta;
820
821 rq->prev_irq_time += irq_delta;
822 delta -= irq_delta;
Glauber Costa095c0aa2011-07-11 15:28:18 -0400823#endif
824#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
Ingo Molnarc5905af2012-02-24 08:31:31 +0100825 if (static_key_false((&paravirt_steal_rq_enabled))) {
Glauber Costa095c0aa2011-07-11 15:28:18 -0400826 u64 st;
827
828 steal = paravirt_steal_clock(cpu_of(rq));
829 steal -= rq->prev_steal_time_rq;
830
831 if (unlikely(steal > delta))
832 steal = delta;
833
834 st = steal_ticks(steal);
835 steal = st * TICK_NSEC;
836
837 rq->prev_steal_time_rq += steal;
838
839 delta -= steal;
840 }
841#endif
842
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100843 rq->clock_task += delta;
844
Glauber Costa095c0aa2011-07-11 15:28:18 -0400845#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
846 if ((irq_delta + steal) && sched_feat(NONTASK_POWER))
847 sched_rt_avg_update(rq, irq_delta + steal);
848#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700849}
850
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200851void sched_set_stop_task(int cpu, struct task_struct *stop)
852{
853 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
854 struct task_struct *old_stop = cpu_rq(cpu)->stop;
855
856 if (stop) {
857 /*
858 * Make it appear like a SCHED_FIFO task, its something
859 * userspace knows about and won't get confused about.
860 *
861 * Also, it will make PI more or less work without too
862 * much confusion -- but then, stop work should not
863 * rely on PI working anyway.
864 */
865 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
866
867 stop->sched_class = &stop_sched_class;
868 }
869
870 cpu_rq(cpu)->stop = stop;
871
872 if (old_stop) {
873 /*
874 * Reset it back to a normal scheduling class so that
875 * it can die in pieces.
876 */
877 old_stop->sched_class = &rt_sched_class;
878 }
879}
880
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +0100881/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200882 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200883 */
Ingo Molnar14531182007-07-09 18:51:59 +0200884static inline int __normal_prio(struct task_struct *p)
885{
Ingo Molnardd41f592007-07-09 18:51:59 +0200886 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200887}
888
889/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700890 * Calculate the expected normal priority: i.e. priority
891 * without taking RT-inheritance into account. Might be
892 * boosted by interactivity modifiers. Changes upon fork,
893 * setprio syscalls, and whenever the interactivity
894 * estimator recalculates.
895 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700896static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700897{
898 int prio;
899
Dario Faggioliaab03e02013-11-28 11:14:43 +0100900 if (task_has_dl_policy(p))
901 prio = MAX_DL_PRIO-1;
902 else if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700903 prio = MAX_RT_PRIO-1 - p->rt_priority;
904 else
905 prio = __normal_prio(p);
906 return prio;
907}
908
909/*
910 * Calculate the current priority, i.e. the priority
911 * taken into account by the scheduler. This value might
912 * be boosted by RT tasks, or might be boosted by
913 * interactivity modifiers. Will be RT if the task got
914 * RT-boosted. If not then it returns p->normal_prio.
915 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700916static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700917{
918 p->normal_prio = normal_prio(p);
919 /*
920 * If we are RT tasks or we were boosted to RT priority,
921 * keep the priority unchanged. Otherwise, update priority
922 * to the normal priority:
923 */
924 if (!rt_prio(p->prio))
925 return p->normal_prio;
926 return p->prio;
927}
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929/**
930 * task_curr - is this task currently executing on a CPU?
931 * @p: the task in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +0200932 *
933 * Return: 1 if the task is currently executing. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700935inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 return cpu_curr(task_cpu(p)) == p;
938}
939
Steven Rostedtcb469842008-01-25 21:08:22 +0100940static inline void check_class_changed(struct rq *rq, struct task_struct *p,
941 const struct sched_class *prev_class,
Peter Zijlstrada7a7352011-01-17 17:03:27 +0100942 int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +0100943{
944 if (prev_class != p->sched_class) {
945 if (prev_class->switched_from)
Peter Zijlstrada7a7352011-01-17 17:03:27 +0100946 prev_class->switched_from(rq, p);
947 p->sched_class->switched_to(rq, p);
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100948 } else if (oldprio != p->prio || dl_task(p))
Peter Zijlstrada7a7352011-01-17 17:03:27 +0100949 p->sched_class->prio_changed(rq, p, oldprio);
Steven Rostedtcb469842008-01-25 21:08:22 +0100950}
951
Peter Zijlstra029632f2011-10-25 10:00:11 +0200952void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e5a7402010-10-31 12:37:04 +0100953{
954 const struct sched_class *class;
955
956 if (p->sched_class == rq->curr->sched_class) {
957 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
958 } else {
959 for_each_class(class) {
960 if (class == rq->curr->sched_class)
961 break;
962 if (class == p->sched_class) {
963 resched_task(rq->curr);
964 break;
965 }
966 }
967 }
968
969 /*
970 * A queue event has occurred, and we're going to schedule. In
971 * this case, we can save a useless back to back clock update.
972 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +0200973 if (rq->curr->on_rq && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +0100974 rq->skip_clock_update = 1;
975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +0200978void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +0200979{
Peter Zijlstrae2912002009-12-16 18:04:36 +0100980#ifdef CONFIG_SCHED_DEBUG
981 /*
982 * We should never call set_task_cpu() on a blocked task,
983 * ttwu() will sort out the placement.
984 */
Peter Zijlstra077614e2009-12-17 13:16:31 +0100985 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
Peter Zijlstra01028742013-08-14 14:55:46 +0200986 !(task_preempt_count(p) & PREEMPT_ACTIVE));
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200987
988#ifdef CONFIG_LOCKDEP
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +0200989 /*
990 * The caller should hold either p->pi_lock or rq->lock, when changing
991 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
992 *
993 * sched_move_task() holds both and thus holding either pins the cgroup,
Peter Zijlstra8323f262012-06-22 13:36:05 +0200994 * see task_group().
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +0200995 *
996 * Furthermore, all task_rq users should acquire both locks, see
997 * task_rq_lock().
998 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200999 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
1000 lockdep_is_held(&task_rq(p)->lock)));
1001#endif
Peter Zijlstrae2912002009-12-16 18:04:36 +01001002#endif
1003
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08001004 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01001005
Peter Zijlstra0c697742009-12-22 15:43:19 +01001006 if (task_cpu(p) != new_cpu) {
Paul Turner0a74bef2012-10-04 13:18:30 +02001007 if (p->sched_class->migrate_task_rq)
1008 p->sched_class->migrate_task_rq(p, new_cpu);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001009 p->se.nr_migrations++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001010 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0);
Peter Zijlstra0c697742009-12-22 15:43:19 +01001011 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001012
1013 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001014}
1015
Peter Zijlstraac66f542013-10-07 11:29:16 +01001016static void __migrate_swap_task(struct task_struct *p, int cpu)
1017{
1018 if (p->on_rq) {
1019 struct rq *src_rq, *dst_rq;
1020
1021 src_rq = task_rq(p);
1022 dst_rq = cpu_rq(cpu);
1023
1024 deactivate_task(src_rq, p, 0);
1025 set_task_cpu(p, cpu);
1026 activate_task(dst_rq, p, 0);
1027 check_preempt_curr(dst_rq, p, 0);
1028 } else {
1029 /*
1030 * Task isn't running anymore; make it appear like we migrated
1031 * it before it went to sleep. This means on wakeup we make the
1032 * previous cpu our targer instead of where it really is.
1033 */
1034 p->wake_cpu = cpu;
1035 }
1036}
1037
1038struct migration_swap_arg {
1039 struct task_struct *src_task, *dst_task;
1040 int src_cpu, dst_cpu;
1041};
1042
1043static int migrate_swap_stop(void *data)
1044{
1045 struct migration_swap_arg *arg = data;
1046 struct rq *src_rq, *dst_rq;
1047 int ret = -EAGAIN;
1048
1049 src_rq = cpu_rq(arg->src_cpu);
1050 dst_rq = cpu_rq(arg->dst_cpu);
1051
Peter Zijlstra74602312013-10-10 20:17:22 +02001052 double_raw_lock(&arg->src_task->pi_lock,
1053 &arg->dst_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001054 double_rq_lock(src_rq, dst_rq);
1055 if (task_cpu(arg->dst_task) != arg->dst_cpu)
1056 goto unlock;
1057
1058 if (task_cpu(arg->src_task) != arg->src_cpu)
1059 goto unlock;
1060
1061 if (!cpumask_test_cpu(arg->dst_cpu, tsk_cpus_allowed(arg->src_task)))
1062 goto unlock;
1063
1064 if (!cpumask_test_cpu(arg->src_cpu, tsk_cpus_allowed(arg->dst_task)))
1065 goto unlock;
1066
1067 __migrate_swap_task(arg->src_task, arg->dst_cpu);
1068 __migrate_swap_task(arg->dst_task, arg->src_cpu);
1069
1070 ret = 0;
1071
1072unlock:
1073 double_rq_unlock(src_rq, dst_rq);
Peter Zijlstra74602312013-10-10 20:17:22 +02001074 raw_spin_unlock(&arg->dst_task->pi_lock);
1075 raw_spin_unlock(&arg->src_task->pi_lock);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001076
1077 return ret;
1078}
1079
1080/*
1081 * Cross migrate two tasks
1082 */
1083int migrate_swap(struct task_struct *cur, struct task_struct *p)
1084{
1085 struct migration_swap_arg arg;
1086 int ret = -EINVAL;
1087
Peter Zijlstraac66f542013-10-07 11:29:16 +01001088 arg = (struct migration_swap_arg){
1089 .src_task = cur,
1090 .src_cpu = task_cpu(cur),
1091 .dst_task = p,
1092 .dst_cpu = task_cpu(p),
1093 };
1094
1095 if (arg.src_cpu == arg.dst_cpu)
1096 goto out;
1097
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001098 /*
1099 * These three tests are all lockless; this is OK since all of them
1100 * will be re-checked with proper locks held further down the line.
1101 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01001102 if (!cpu_active(arg.src_cpu) || !cpu_active(arg.dst_cpu))
1103 goto out;
1104
1105 if (!cpumask_test_cpu(arg.dst_cpu, tsk_cpus_allowed(arg.src_task)))
1106 goto out;
1107
1108 if (!cpumask_test_cpu(arg.src_cpu, tsk_cpus_allowed(arg.dst_task)))
1109 goto out;
1110
1111 ret = stop_two_cpus(arg.dst_cpu, arg.src_cpu, migrate_swap_stop, &arg);
1112
1113out:
Peter Zijlstraac66f542013-10-07 11:29:16 +01001114 return ret;
1115}
1116
Tejun Heo969c7922010-05-06 18:49:21 +02001117struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07001118 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001120};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Tejun Heo969c7922010-05-06 18:49:21 +02001122static int migration_cpu_stop(void *data);
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 * wait_task_inactive - wait for a thread to unschedule.
1126 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001127 * If @match_state is nonzero, it's the @p->state value just checked and
1128 * not expected to change. If it changes, i.e. @p might have woken up,
1129 * then return zero. When we succeed in waiting for @p to be off its CPU,
1130 * we return a positive number (its total switch count). If a second call
1131 * a short while later returns the same number, the caller can be sure that
1132 * @p has remained unscheduled the whole time.
1133 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 * The caller must ensure that the task *will* unschedule sometime soon,
1135 * else this function might spin for a *long* time. This function can't
1136 * be called with interrupts off, or it may introduce deadlock with
1137 * smp_call_function() if an IPI is sent by the same process we are
1138 * waiting to become inactive.
1139 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001140unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
1142 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001143 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001144 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001145 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Andi Kleen3a5c3592007-10-15 17:00:14 +02001147 for (;;) {
1148 /*
1149 * We do the initial early heuristics without holding
1150 * any task-queue locks at all. We'll only try to get
1151 * the runqueue lock when things look like they will
1152 * work out!
1153 */
1154 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001155
Andi Kleen3a5c3592007-10-15 17:00:14 +02001156 /*
1157 * If the task is actively running on another CPU
1158 * still, just relax and busy-wait without holding
1159 * any locks.
1160 *
1161 * NOTE! Since we don't hold any locks, it's not
1162 * even sure that "rq" stays as the right runqueue!
1163 * But we don't care, since "task_running()" will
1164 * return false if the runqueue has changed and p
1165 * is actually now running somewhere else!
1166 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001167 while (task_running(rq, p)) {
1168 if (match_state && unlikely(p->state != match_state))
1169 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001170 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001171 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001172
Andi Kleen3a5c3592007-10-15 17:00:14 +02001173 /*
1174 * Ok, time to look more closely! We need the rq
1175 * lock now, to be *sure*. If we're wrong, we'll
1176 * just go back and repeat.
1177 */
1178 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02001179 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001180 running = task_running(rq, p);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001181 on_rq = p->on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001182 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001183 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001184 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001185 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001186
Andi Kleen3a5c3592007-10-15 17:00:14 +02001187 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001188 * If it changed from the expected state, bail out now.
1189 */
1190 if (unlikely(!ncsw))
1191 break;
1192
1193 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001194 * Was it really running after all now that we
1195 * checked with the proper locks actually held?
1196 *
1197 * Oops. Go back and try again..
1198 */
1199 if (unlikely(running)) {
1200 cpu_relax();
1201 continue;
1202 }
1203
1204 /*
1205 * It's not enough that it's not actively running,
1206 * it must be off the runqueue _entirely_, and not
1207 * preempted!
1208 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00001209 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02001210 * running right now), it's preempted, and we should
1211 * yield - it could be a while.
1212 */
1213 if (unlikely(on_rq)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00001214 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
1215
1216 set_current_state(TASK_UNINTERRUPTIBLE);
1217 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001218 continue;
1219 }
1220
1221 /*
1222 * Ahh, all good. It wasn't running, and it wasn't
1223 * runnable, which means that it will never become
1224 * running in the future either. We're all done!
1225 */
1226 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07001228
1229 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
1232/***
1233 * kick_process - kick a running thread to enter/exit the kernel
1234 * @p: the to-be-kicked thread
1235 *
1236 * Cause a process which is running on another CPU to enter
1237 * kernel-mode, without any delay. (to get signals handled.)
1238 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001239 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 * because all it wants to ensure is that the remote task enters
1241 * the kernel. If the IPI races and the task has been migrated
1242 * to another CPU then no harm is done and the purpose has been
1243 * achieved as well.
1244 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001245void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 int cpu;
1248
1249 preempt_disable();
1250 cpu = task_cpu(p);
1251 if ((cpu != smp_processor_id()) && task_curr(p))
1252 smp_send_reschedule(cpu);
1253 preempt_enable();
1254}
Rusty Russellb43e3522009-06-12 22:27:00 -06001255EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07001256#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001258#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01001259/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001260 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01001261 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001262static int select_fallback_rq(int cpu, struct task_struct *p)
1263{
Tang Chenaa00d892013-02-22 16:33:33 -08001264 int nid = cpu_to_node(cpu);
1265 const struct cpumask *nodemask = NULL;
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001266 enum { cpuset, possible, fail } state = cpuset;
1267 int dest_cpu;
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001268
Tang Chenaa00d892013-02-22 16:33:33 -08001269 /*
1270 * If the node that the cpu is on has been offlined, cpu_to_node()
1271 * will return -1. There is no cpu on the node, and we should
1272 * select the cpu on the other node.
1273 */
1274 if (nid != -1) {
1275 nodemask = cpumask_of_node(nid);
1276
1277 /* Look for allowed, online CPU in same node. */
1278 for_each_cpu(dest_cpu, nodemask) {
1279 if (!cpu_online(dest_cpu))
1280 continue;
1281 if (!cpu_active(dest_cpu))
1282 continue;
1283 if (cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
1284 return dest_cpu;
1285 }
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001286 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001287
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001288 for (;;) {
1289 /* Any allowed, online CPU? */
Srivatsa S. Bhate3831ed2012-03-30 19:40:28 +05301290 for_each_cpu(dest_cpu, tsk_cpus_allowed(p)) {
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001291 if (!cpu_online(dest_cpu))
1292 continue;
1293 if (!cpu_active(dest_cpu))
1294 continue;
1295 goto out;
1296 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001297
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001298 switch (state) {
1299 case cpuset:
1300 /* No more Mr. Nice Guy. */
1301 cpuset_cpus_allowed_fallback(p);
1302 state = possible;
1303 break;
1304
1305 case possible:
1306 do_set_cpus_allowed(p, cpu_possible_mask);
1307 state = fail;
1308 break;
1309
1310 case fail:
1311 BUG();
1312 break;
1313 }
1314 }
1315
1316out:
1317 if (state != cpuset) {
1318 /*
1319 * Don't tell them about moving exiting tasks or
1320 * kernel threads (both mm NULL), since they never
1321 * leave kernel.
1322 */
1323 if (p->mm && printk_ratelimit()) {
1324 printk_sched("process %d (%s) no longer affine to cpu%d\n",
1325 task_pid_nr(p), p->comm, cpu);
1326 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001327 }
1328
1329 return dest_cpu;
1330}
1331
Peter Zijlstrae2912002009-12-16 18:04:36 +01001332/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001333 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01001334 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001335static inline
Peter Zijlstraac66f542013-10-07 11:29:16 +01001336int select_task_rq(struct task_struct *p, int cpu, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001337{
Peter Zijlstraac66f542013-10-07 11:29:16 +01001338 cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001339
1340 /*
1341 * In order not to call set_task_cpu() on a blocking task we need
1342 * to rely on ttwu() to place the task on a valid ->cpus_allowed
1343 * cpu.
1344 *
1345 * Since this is common to all placement strategies, this lives here.
1346 *
1347 * [ this allows ->select_task() to simply return task_cpu(p) and
1348 * not worry about this generic constraint ]
1349 */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02001350 if (unlikely(!cpumask_test_cpu(cpu, tsk_cpus_allowed(p)) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01001351 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001352 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001353
1354 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001355}
Mike Galbraith09a40af2010-04-15 07:29:59 +02001356
1357static void update_avg(u64 *avg, u64 sample)
1358{
1359 s64 diff = sample - *avg;
1360 *avg += diff >> 3;
1361}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001362#endif
1363
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001364static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001365ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001366{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001367#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001368 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09001369
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001370#ifdef CONFIG_SMP
1371 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09001372
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001373 if (cpu == this_cpu) {
1374 schedstat_inc(rq, ttwu_local);
1375 schedstat_inc(p, se.statistics.nr_wakeups_local);
1376 } else {
1377 struct sched_domain *sd;
1378
1379 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001380 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001381 for_each_domain(this_cpu, sd) {
1382 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
1383 schedstat_inc(sd, ttwu_wake_remote);
1384 break;
1385 }
1386 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001387 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001388 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001389
1390 if (wake_flags & WF_MIGRATED)
1391 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
1392
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001393#endif /* CONFIG_SMP */
1394
1395 schedstat_inc(rq, ttwu_count);
1396 schedstat_inc(p, se.statistics.nr_wakeups);
1397
1398 if (wake_flags & WF_SYNC)
1399 schedstat_inc(p, se.statistics.nr_wakeups_sync);
1400
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001401#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09001402}
1403
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001404static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001405{
Tejun Heo9ed38112009-12-03 15:08:03 +09001406 activate_task(rq, p, en_flags);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001407 p->on_rq = 1;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02001408
1409 /* if a worker is waking up, notify workqueue */
1410 if (p->flags & PF_WQ_WORKER)
1411 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09001412}
1413
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001414/*
1415 * Mark the task runnable and perform wakeup-preemption.
1416 */
Peter Zijlstra89363382011-04-05 17:23:42 +02001417static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001418ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001419{
Tejun Heo9ed38112009-12-03 15:08:03 +09001420 check_preempt_curr(rq, p, wake_flags);
Peter Zijlstraa8d7ad52013-03-14 10:48:39 +01001421 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09001422
1423 p->state = TASK_RUNNING;
1424#ifdef CONFIG_SMP
1425 if (p->sched_class->task_woken)
1426 p->sched_class->task_woken(rq, p);
1427
Steven Rostedte69c6342010-12-06 17:10:31 -05001428 if (rq->idle_stamp) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001429 u64 delta = rq_clock(rq) - rq->idle_stamp;
Jason Low9bd721c2013-09-13 11:26:52 -07001430 u64 max = 2*rq->max_idle_balance_cost;
Tejun Heo9ed38112009-12-03 15:08:03 +09001431
Jason Lowabfafa52013-09-13 11:26:51 -07001432 update_avg(&rq->avg_idle, delta);
1433
1434 if (rq->avg_idle > max)
Tejun Heo9ed38112009-12-03 15:08:03 +09001435 rq->avg_idle = max;
Jason Lowabfafa52013-09-13 11:26:51 -07001436
Tejun Heo9ed38112009-12-03 15:08:03 +09001437 rq->idle_stamp = 0;
1438 }
1439#endif
1440}
1441
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001442static void
1443ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
1444{
1445#ifdef CONFIG_SMP
1446 if (p->sched_contributes_to_load)
1447 rq->nr_uninterruptible--;
1448#endif
1449
1450 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
1451 ttwu_do_wakeup(rq, p, wake_flags);
1452}
1453
1454/*
1455 * Called in case the task @p isn't fully descheduled from its runqueue,
1456 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
1457 * since all we need to do is flip p->state to TASK_RUNNING, since
1458 * the task is still ->on_rq.
1459 */
1460static int ttwu_remote(struct task_struct *p, int wake_flags)
1461{
1462 struct rq *rq;
1463 int ret = 0;
1464
1465 rq = __task_rq_lock(p);
1466 if (p->on_rq) {
Frederic Weisbecker1ad4ec02013-04-12 01:51:00 +02001467 /* check_preempt_curr() may use rq clock */
1468 update_rq_clock(rq);
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001469 ttwu_do_wakeup(rq, p, wake_flags);
1470 ret = 1;
1471 }
1472 __task_rq_unlock(rq);
1473
1474 return ret;
1475}
1476
Peter Zijlstra317f3942011-04-05 17:23:58 +02001477#ifdef CONFIG_SMP
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001478static void sched_ttwu_pending(void)
Peter Zijlstra317f3942011-04-05 17:23:58 +02001479{
1480 struct rq *rq = this_rq();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001481 struct llist_node *llist = llist_del_all(&rq->wake_list);
1482 struct task_struct *p;
Peter Zijlstra317f3942011-04-05 17:23:58 +02001483
1484 raw_spin_lock(&rq->lock);
1485
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001486 while (llist) {
1487 p = llist_entry(llist, struct task_struct, wake_entry);
1488 llist = llist_next(llist);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001489 ttwu_do_activate(rq, p, 0);
1490 }
1491
1492 raw_spin_unlock(&rq->lock);
1493}
1494
1495void scheduler_ipi(void)
1496{
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001497 /*
1498 * Fold TIF_NEED_RESCHED into the preempt_count; anybody setting
1499 * TIF_NEED_RESCHED remotely (for the first time) will also send
1500 * this IPI.
1501 */
Peter Zijlstra8cb75e02013-11-20 12:22:37 +01001502 preempt_fold_need_resched();
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001503
Vincent Guittot873b4c62013-06-05 10:13:11 +02001504 if (llist_empty(&this_rq()->wake_list)
1505 && !tick_nohz_full_cpu(smp_processor_id())
1506 && !got_nohz_idle_kick())
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001507 return;
1508
1509 /*
1510 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
1511 * traditionally all their work was done from the interrupt return
1512 * path. Now that we actually do some work, we need to make sure
1513 * we do call them.
1514 *
1515 * Some archs already do call them, luckily irq_enter/exit nest
1516 * properly.
1517 *
1518 * Arguably we should visit all archs and update all handlers,
1519 * however a fair share of IPIs are still resched only so this would
1520 * somewhat pessimize the simple resched case.
1521 */
1522 irq_enter();
Frederic Weisbeckerff442c52013-04-20 15:27:08 +02001523 tick_nohz_full_check();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001524 sched_ttwu_pending();
Suresh Siddhaca380622011-10-03 15:09:00 -07001525
1526 /*
1527 * Check if someone kicked us for doing the nohz idle load balance.
1528 */
Vincent Guittot873b4c62013-06-05 10:13:11 +02001529 if (unlikely(got_nohz_idle_kick())) {
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001530 this_rq()->idle_balance = 1;
Suresh Siddhaca380622011-10-03 15:09:00 -07001531 raise_softirq_irqoff(SCHED_SOFTIRQ);
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001532 }
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001533 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02001534}
1535
1536static void ttwu_queue_remote(struct task_struct *p, int cpu)
1537{
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001538 if (llist_add(&p->wake_entry, &cpu_rq(cpu)->wake_list))
Peter Zijlstra317f3942011-04-05 17:23:58 +02001539 smp_send_reschedule(cpu);
1540}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001541
Peter Zijlstra39be3502012-01-26 12:44:34 +01001542bool cpus_share_cache(int this_cpu, int that_cpu)
Peter Zijlstra518cd622011-12-07 15:07:31 +01001543{
1544 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
1545}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001546#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001547
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001548static void ttwu_queue(struct task_struct *p, int cpu)
1549{
1550 struct rq *rq = cpu_rq(cpu);
1551
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00001552#if defined(CONFIG_SMP)
Peter Zijlstra39be3502012-01-26 12:44:34 +01001553 if (sched_feat(TTWU_QUEUE) && !cpus_share_cache(smp_processor_id(), cpu)) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02001554 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001555 ttwu_queue_remote(p, cpu);
1556 return;
1557 }
1558#endif
1559
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001560 raw_spin_lock(&rq->lock);
1561 ttwu_do_activate(rq, p, 0);
1562 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09001563}
1564
1565/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09001567 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09001569 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 *
1571 * Put it on the run-queue if it's not already there. The "current"
1572 * thread is always on the run-queue (except when the actual
1573 * re-schedule is in progress), and as such you're allowed to do
1574 * the simpler "current->state = TASK_RUNNING" to mark yourself
1575 * runnable without the overhead of this.
1576 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02001577 * Return: %true if @p was woken up, %false if it was already running.
Tejun Heo9ed38112009-12-03 15:08:03 +09001578 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001580static int
1581try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001584 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001585
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02001586 /*
1587 * If we are going to wake up a thread waiting for CONDITION we
1588 * need to ensure that CONDITION=1 done by the caller can not be
1589 * reordered with p->state check below. This pairs with mb() in
1590 * set_current_state() the waiting thread does.
1591 */
1592 smp_mb__before_spinlock();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001593 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001594 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 goto out;
1596
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001597 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001599
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001600 if (p->on_rq && ttwu_remote(p, wake_flags))
1601 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001604 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001605 * If the owning (remote) cpu is still in the middle of schedule() with
1606 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001607 */
Peter Zijlstraf3e94782012-09-12 11:22:00 +02001608 while (p->on_cpu)
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001609 cpu_relax();
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001610 /*
1611 * Pairs with the smp_wmb() in finish_lock_switch().
1612 */
1613 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02001615 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001616 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001617
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001618 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02001619 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01001620
Peter Zijlstraac66f542013-10-07 11:29:16 +01001621 cpu = select_task_rq(p, p->wake_cpu, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001622 if (task_cpu(p) != cpu) {
1623 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02001624 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001628 ttwu_queue(p, cpu);
1629stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001630 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001632 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 return success;
1635}
1636
David Howells50fa6102009-04-28 15:01:38 +01001637/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02001638 * try_to_wake_up_local - try to wake up a local task with rq lock held
1639 * @p: the thread to be awakened
1640 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02001641 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02001642 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02001643 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02001644 */
1645static void try_to_wake_up_local(struct task_struct *p)
1646{
1647 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001648
Tejun Heo383efcd2013-03-18 12:22:34 -07001649 if (WARN_ON_ONCE(rq != this_rq()) ||
1650 WARN_ON_ONCE(p == current))
1651 return;
1652
Tejun Heo21aa9af2010-06-08 21:40:37 +02001653 lockdep_assert_held(&rq->lock);
1654
Peter Zijlstra2acca552011-04-05 17:23:50 +02001655 if (!raw_spin_trylock(&p->pi_lock)) {
1656 raw_spin_unlock(&rq->lock);
1657 raw_spin_lock(&p->pi_lock);
1658 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001659 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02001660
Tejun Heo21aa9af2010-06-08 21:40:37 +02001661 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02001662 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02001663
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001664 if (!p->on_rq)
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001665 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
1666
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001667 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001668 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02001669out:
1670 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001671}
1672
1673/**
David Howells50fa6102009-04-28 15:01:38 +01001674 * wake_up_process - Wake up a specific process
1675 * @p: The process to be woken up.
1676 *
1677 * Attempt to wake up the nominated process and move it to the set of runnable
Yacine Belkadie69f6182013-07-12 20:45:47 +02001678 * processes.
1679 *
1680 * Return: 1 if the process was woken up, 0 if it was already running.
David Howells50fa6102009-04-28 15:01:38 +01001681 *
1682 * It may be assumed that this function implies a write memory barrier before
1683 * changing the task state if and only if any tasks are woken up.
1684 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001685int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
Oleg Nesterov9067ac82013-01-21 20:48:17 +01001687 WARN_ON(task_is_stopped_or_traced(p));
1688 return try_to_wake_up(p, TASK_NORMAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690EXPORT_SYMBOL(wake_up_process);
1691
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001692int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
1694 return try_to_wake_up(p, state, 0);
1695}
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697/*
1698 * Perform scheduler related setup for a newly forked process p.
1699 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001700 *
1701 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 */
Rik van Riel5e1576e2013-10-07 11:29:26 +01001703static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001705 p->on_rq = 0;
1706
1707 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001708 p->se.exec_start = 0;
1709 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001710 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001711 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001712 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001713 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001714
1715#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03001716 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001717#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001718
Dario Faggioliaab03e02013-11-28 11:14:43 +01001719 RB_CLEAR_NODE(&p->dl.rb_node);
1720 hrtimer_init(&p->dl.dl_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1721 p->dl.dl_runtime = p->dl.runtime = 0;
1722 p->dl.dl_deadline = p->dl.deadline = 0;
Harald Gustafsson755378a2013-11-07 14:43:40 +01001723 p->dl.dl_period = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001724 p->dl.flags = 0;
1725
Peter Zijlstrafa717062008-01-25 21:08:27 +01001726 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07001727
Avi Kivitye107be32007-07-26 13:40:43 +02001728#ifdef CONFIG_PREEMPT_NOTIFIERS
1729 INIT_HLIST_HEAD(&p->preempt_notifiers);
1730#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001731
1732#ifdef CONFIG_NUMA_BALANCING
1733 if (p->mm && atomic_read(&p->mm->mm_users) == 1) {
Mel Gorman7e8d16b2013-10-07 11:28:54 +01001734 p->mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001735 p->mm->numa_scan_seq = 0;
1736 }
1737
Rik van Riel5e1576e2013-10-07 11:29:26 +01001738 if (clone_flags & CLONE_VM)
1739 p->numa_preferred_nid = current->numa_preferred_nid;
1740 else
1741 p->numa_preferred_nid = -1;
1742
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001743 p->node_stamp = 0ULL;
1744 p->numa_scan_seq = p->mm ? p->mm->numa_scan_seq : 0;
Peter Zijlstra4b96a292012-10-25 14:16:47 +02001745 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001746 p->numa_work.next = &p->numa_work;
Mel Gormanf809ca92013-10-07 11:28:57 +01001747 p->numa_faults = NULL;
Mel Gorman745d6142013-10-07 11:28:59 +01001748 p->numa_faults_buffer = NULL;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01001749
1750 INIT_LIST_HEAD(&p->numa_entry);
1751 p->numa_group = NULL;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001752#endif /* CONFIG_NUMA_BALANCING */
Ingo Molnardd41f592007-07-09 18:51:59 +02001753}
1754
Mel Gorman1a687c22012-11-22 11:16:36 +00001755#ifdef CONFIG_NUMA_BALANCING
Mel Gorman3105b862012-11-23 11:23:49 +00001756#ifdef CONFIG_SCHED_DEBUG
Mel Gorman1a687c22012-11-22 11:16:36 +00001757void set_numabalancing_state(bool enabled)
1758{
1759 if (enabled)
1760 sched_feat_set("NUMA");
1761 else
1762 sched_feat_set("NO_NUMA");
1763}
Mel Gorman3105b862012-11-23 11:23:49 +00001764#else
1765__read_mostly bool numabalancing_enabled;
1766
1767void set_numabalancing_state(bool enabled)
1768{
1769 numabalancing_enabled = enabled;
1770}
1771#endif /* CONFIG_SCHED_DEBUG */
Mel Gorman1a687c22012-11-22 11:16:36 +00001772#endif /* CONFIG_NUMA_BALANCING */
1773
Ingo Molnardd41f592007-07-09 18:51:59 +02001774/*
1775 * fork()/clone()-time setup:
1776 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001777int sched_fork(unsigned long clone_flags, struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02001778{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001779 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001780 int cpu = get_cpu();
1781
Rik van Riel5e1576e2013-10-07 11:29:26 +01001782 __sched_fork(clone_flags, p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001783 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01001784 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001785 * nobody will actually run it, and a signal or other external
1786 * event cannot wake it up and insert it on the runqueue either.
1787 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01001788 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001789
Ingo Molnarb29739f2006-06-27 02:54:51 -07001790 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02001791 * Make sure we do not leak PI boosting priority to the child.
1792 */
1793 p->prio = current->normal_prio;
1794
1795 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001796 * Revert to default priority/policy on fork if requested.
1797 */
1798 if (unlikely(p->sched_reset_on_fork)) {
Dario Faggioliaab03e02013-11-28 11:14:43 +01001799 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001800 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001801 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02001802 p->rt_priority = 0;
1803 } else if (PRIO_TO_NICE(p->static_prio) < 0)
1804 p->static_prio = NICE_TO_PRIO(0);
1805
1806 p->prio = p->normal_prio = __normal_prio(p);
1807 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001808
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001809 /*
1810 * We don't need the reset flag anymore after the fork. It has
1811 * fulfilled its duty:
1812 */
1813 p->sched_reset_on_fork = 0;
1814 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02001815
Dario Faggioliaab03e02013-11-28 11:14:43 +01001816 if (dl_prio(p->prio)) {
1817 put_cpu();
1818 return -EAGAIN;
1819 } else if (rt_prio(p->prio)) {
1820 p->sched_class = &rt_sched_class;
1821 } else {
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001822 p->sched_class = &fair_sched_class;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001823 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001824
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001825 if (p->sched_class->task_fork)
1826 p->sched_class->task_fork(p);
1827
Peter Zijlstra86951592010-06-22 11:44:53 +02001828 /*
1829 * The child is not yet in the pid-hash so no cgroup attach races,
1830 * and the cgroup is pinned to this child due to cgroup_fork()
1831 * is ran before sched_fork().
1832 *
1833 * Silence PROVE_RCU.
1834 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001835 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001836 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001837 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001838
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001839#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001840 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001841 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001843#if defined(CONFIG_SMP)
1844 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07001845#endif
Peter Zijlstra01028742013-08-14 14:55:46 +02001846 init_task_preempt_count(p);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001847#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05001848 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001849 RB_CLEAR_NODE(&p->pushable_dl_tasks);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001850#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05001851
Nick Piggin476d1392005-06-25 14:57:29 -07001852 put_cpu();
Dario Faggioliaab03e02013-11-28 11:14:43 +01001853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
1855
Dario Faggioli332ac172013-11-07 14:43:45 +01001856unsigned long to_ratio(u64 period, u64 runtime)
1857{
1858 if (runtime == RUNTIME_INF)
1859 return 1ULL << 20;
1860
1861 /*
1862 * Doing this here saves a lot of checks in all
1863 * the calling paths, and returning zero seems
1864 * safe for them anyway.
1865 */
1866 if (period == 0)
1867 return 0;
1868
1869 return div64_u64(runtime << 20, period);
1870}
1871
1872#ifdef CONFIG_SMP
1873inline struct dl_bw *dl_bw_of(int i)
1874{
1875 return &cpu_rq(i)->rd->dl_bw;
1876}
1877
Peter Zijlstrade212f12013-12-19 11:54:45 +01001878static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001879{
Peter Zijlstrade212f12013-12-19 11:54:45 +01001880 struct root_domain *rd = cpu_rq(i)->rd;
1881 int cpus = 0;
1882
1883 for_each_cpu_and(i, rd->span, cpu_active_mask)
1884 cpus++;
1885
1886 return cpus;
Dario Faggioli332ac172013-11-07 14:43:45 +01001887}
1888#else
1889inline struct dl_bw *dl_bw_of(int i)
1890{
1891 return &cpu_rq(i)->dl.dl_bw;
1892}
1893
Peter Zijlstrade212f12013-12-19 11:54:45 +01001894static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001895{
1896 return 1;
1897}
1898#endif
1899
1900static inline
1901void __dl_clear(struct dl_bw *dl_b, u64 tsk_bw)
1902{
1903 dl_b->total_bw -= tsk_bw;
1904}
1905
1906static inline
1907void __dl_add(struct dl_bw *dl_b, u64 tsk_bw)
1908{
1909 dl_b->total_bw += tsk_bw;
1910}
1911
1912static inline
1913bool __dl_overflow(struct dl_bw *dl_b, int cpus, u64 old_bw, u64 new_bw)
1914{
1915 return dl_b->bw != -1 &&
1916 dl_b->bw * cpus < dl_b->total_bw - old_bw + new_bw;
1917}
1918
1919/*
1920 * We must be sure that accepting a new task (or allowing changing the
1921 * parameters of an existing one) is consistent with the bandwidth
1922 * constraints. If yes, this function also accordingly updates the currently
1923 * allocated bandwidth to reflect the new situation.
1924 *
1925 * This function is called while holding p's rq->lock.
1926 */
1927static int dl_overflow(struct task_struct *p, int policy,
1928 const struct sched_attr *attr)
1929{
1930
1931 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
1932 u64 period = attr->sched_period;
1933 u64 runtime = attr->sched_runtime;
1934 u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
Peter Zijlstrade212f12013-12-19 11:54:45 +01001935 int cpus, err = -1;
Dario Faggioli332ac172013-11-07 14:43:45 +01001936
1937 if (new_bw == p->dl.dl_bw)
1938 return 0;
1939
1940 /*
1941 * Either if a task, enters, leave, or stays -deadline but changes
1942 * its parameters, we may need to update accordingly the total
1943 * allocated bandwidth of the container.
1944 */
1945 raw_spin_lock(&dl_b->lock);
Peter Zijlstrade212f12013-12-19 11:54:45 +01001946 cpus = dl_bw_cpus(task_cpu(p));
Dario Faggioli332ac172013-11-07 14:43:45 +01001947 if (dl_policy(policy) && !task_has_dl_policy(p) &&
1948 !__dl_overflow(dl_b, cpus, 0, new_bw)) {
1949 __dl_add(dl_b, new_bw);
1950 err = 0;
1951 } else if (dl_policy(policy) && task_has_dl_policy(p) &&
1952 !__dl_overflow(dl_b, cpus, p->dl.dl_bw, new_bw)) {
1953 __dl_clear(dl_b, p->dl.dl_bw);
1954 __dl_add(dl_b, new_bw);
1955 err = 0;
1956 } else if (!dl_policy(policy) && task_has_dl_policy(p)) {
1957 __dl_clear(dl_b, p->dl.dl_bw);
1958 err = 0;
1959 }
1960 raw_spin_unlock(&dl_b->lock);
1961
1962 return err;
1963}
1964
1965extern void init_dl_bw(struct dl_bw *dl_b);
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/*
1968 * wake_up_new_task - wake up a newly created task for the first time.
1969 *
1970 * This function will do some initial scheduler statistics housekeeping
1971 * that must be done for every newly created context, then puts the task
1972 * on the runqueue and wakes it.
1973 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02001974void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
1976 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001977 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01001978
Peter Zijlstraab2515c2011-04-05 17:23:52 +02001979 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01001980#ifdef CONFIG_SMP
1981 /*
1982 * Fork balancing, do it here and not earlier because:
1983 * - cpus_allowed can change in the fork path
1984 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01001985 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01001986 set_task_cpu(p, select_task_rq(p, task_cpu(p), SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01001987#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Alex Shia75cdaa2013-06-20 10:18:47 +08001989 /* Initialize new task's runnable average */
1990 init_task_runnable_average(p);
Peter Zijlstraab2515c2011-04-05 17:23:52 +02001991 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001992 activate_task(rq, p, 0);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001993 p->on_rq = 1;
Peter Zijlstra89363382011-04-05 17:23:42 +02001994 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02001995 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001996#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001997 if (p->sched_class->task_woken)
1998 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001999#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002000 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}
2002
Avi Kivitye107be32007-07-26 13:40:43 +02002003#ifdef CONFIG_PREEMPT_NOTIFIERS
2004
2005/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002006 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002007 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002008 */
2009void preempt_notifier_register(struct preempt_notifier *notifier)
2010{
2011 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2012}
2013EXPORT_SYMBOL_GPL(preempt_notifier_register);
2014
2015/**
2016 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002017 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002018 *
2019 * This is safe to call from within a preemption notifier.
2020 */
2021void preempt_notifier_unregister(struct preempt_notifier *notifier)
2022{
2023 hlist_del(&notifier->link);
2024}
2025EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2026
2027static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2028{
2029 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002030
Sasha Levinb67bfe02013-02-27 17:06:00 -08002031 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002032 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2033}
2034
2035static void
2036fire_sched_out_preempt_notifiers(struct task_struct *curr,
2037 struct task_struct *next)
2038{
2039 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002040
Sasha Levinb67bfe02013-02-27 17:06:00 -08002041 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002042 notifier->ops->sched_out(notifier, next);
2043}
2044
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002045#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002046
2047static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2048{
2049}
2050
2051static void
2052fire_sched_out_preempt_notifiers(struct task_struct *curr,
2053 struct task_struct *next)
2054{
2055}
2056
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002057#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002060 * prepare_task_switch - prepare to switch tasks
2061 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002062 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002063 * @next: the task we are going to switch to.
2064 *
2065 * This is called with the rq lock held and interrupts off. It must
2066 * be paired with a subsequent finish_task_switch after the context
2067 * switch.
2068 *
2069 * prepare_task_switch sets up locking and calls architecture specific
2070 * hooks.
2071 */
Avi Kivitye107be32007-07-26 13:40:43 +02002072static inline void
2073prepare_task_switch(struct rq *rq, struct task_struct *prev,
2074 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002075{
Andrew Vagin895dd922012-07-12 14:14:29 +04002076 trace_sched_switch(prev, next);
Michael S. Tsirkin43148952013-09-22 17:20:54 +03002077 sched_info_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002078 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02002079 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002080 prepare_lock_switch(rq, next);
2081 prepare_arch_switch(next);
2082}
2083
2084/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002086 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 * @prev: the thread we just switched away from.
2088 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002089 * finish_task_switch must be called after the context switch, paired
2090 * with a prepare_task_switch call before the context switch.
2091 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2092 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 *
2094 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002095 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 * with the lock held can cause deadlocks; see schedule() for
2097 * details.)
2098 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002099static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 __releases(rq->lock)
2101{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002103 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 rq->prev_mm = NULL;
2106
2107 /*
2108 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002109 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002110 * schedule one last time. The schedule call will never return, and
2111 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002112 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 * still held, otherwise prev could be scheduled on another cpu, die
2114 * there before we look at prev->state, and then the reference would
2115 * be dropped twice.
2116 * Manfred Spraul <manfred@colorfullife.com>
2117 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002118 prev_state = prev->state;
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +02002119 vtime_task_switch(prev);
Nick Piggin4866cde2005-06-25 14:57:23 -07002120 finish_arch_switch(prev);
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002121 perf_event_task_sched_in(prev, current);
Nick Piggin4866cde2005-06-25 14:57:23 -07002122 finish_lock_switch(rq, prev);
Catalin Marinas01f23e12011-11-27 21:43:10 +00002123 finish_arch_post_lock_switch();
Steven Rostedte8fa1362008-01-25 21:08:05 +01002124
Avi Kivitye107be32007-07-26 13:40:43 +02002125 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 if (mm)
2127 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002128 if (unlikely(prev_state == TASK_DEAD)) {
Mel Gormanf809ca92013-10-07 11:28:57 +01002129 task_numa_free(prev);
2130
Dario Faggiolie6c390f2013-11-07 14:43:35 +01002131 if (prev->sched_class->task_dead)
2132 prev->sched_class->task_dead(prev);
2133
bibo maoc6fd91f2006-03-26 01:38:20 -08002134 /*
2135 * Remove function-return probe instances associated with this
2136 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002137 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002138 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002140 }
Frederic Weisbecker99e5ada2013-04-20 17:11:50 +02002141
2142 tick_nohz_task_switch(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
Gregory Haskins3f029d32009-07-29 11:08:47 -04002145#ifdef CONFIG_SMP
2146
2147/* assumes rq->lock is held */
2148static inline void pre_schedule(struct rq *rq, struct task_struct *prev)
2149{
2150 if (prev->sched_class->pre_schedule)
2151 prev->sched_class->pre_schedule(rq, prev);
2152}
2153
2154/* rq->lock is NOT held, but preemption is disabled */
2155static inline void post_schedule(struct rq *rq)
2156{
2157 if (rq->post_schedule) {
2158 unsigned long flags;
2159
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002160 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002161 if (rq->curr->sched_class->post_schedule)
2162 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002163 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002164
2165 rq->post_schedule = 0;
2166 }
2167}
2168
2169#else
2170
2171static inline void pre_schedule(struct rq *rq, struct task_struct *p)
2172{
2173}
2174
2175static inline void post_schedule(struct rq *rq)
2176{
2177}
2178
2179#endif
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181/**
2182 * schedule_tail - first thing a freshly forked thread must call.
2183 * @prev: the thread we just switched away from.
2184 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002185asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 __releases(rq->lock)
2187{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002188 struct rq *rq = this_rq();
2189
Nick Piggin4866cde2005-06-25 14:57:23 -07002190 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002191
Gregory Haskins3f029d32009-07-29 11:08:47 -04002192 /*
2193 * FIXME: do we need to worry about rq being invalidated by the
2194 * task_switch?
2195 */
2196 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002197
Nick Piggin4866cde2005-06-25 14:57:23 -07002198#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2199 /* In this case, finish_task_switch does not reenable preemption */
2200 preempt_enable();
2201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002203 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
2206/*
2207 * context_switch - switch to the new MM and the new
2208 * thread's register state.
2209 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002210static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002211context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002212 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Ingo Molnardd41f592007-07-09 18:51:59 +02002214 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Avi Kivitye107be32007-07-26 13:40:43 +02002216 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002217
Ingo Molnardd41f592007-07-09 18:51:59 +02002218 mm = next->mm;
2219 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002220 /*
2221 * For paravirt, this is coupled with an exit in switch_to to
2222 * combine the page table reload and the switch backend into
2223 * one hypercall.
2224 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002225 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002226
Heiko Carstens31915ab2010-09-16 14:42:25 +02002227 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 next->active_mm = oldmm;
2229 atomic_inc(&oldmm->mm_count);
2230 enter_lazy_tlb(oldmm, next);
2231 } else
2232 switch_mm(oldmm, mm, next);
2233
Heiko Carstens31915ab2010-09-16 14:42:25 +02002234 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 rq->prev_mm = oldmm;
2237 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002238 /*
2239 * Since the runqueue lock will be released by the next
2240 * task (which is an invalid locking op but in the case
2241 * of the scheduler it's an obvious special-case), so we
2242 * do an early lockdep release here:
2243 */
2244#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002245 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002246#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002248 context_tracking_task_switch(prev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 /* Here we just switch the register state and the stack. */
2250 switch_to(prev, next, prev);
2251
Ingo Molnardd41f592007-07-09 18:51:59 +02002252 barrier();
2253 /*
2254 * this_rq must be evaluated again because prev may have moved
2255 * CPUs since it called schedule(), thus the 'rq' on its stack
2256 * frame will be invalid.
2257 */
2258 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259}
2260
2261/*
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002262 * nr_running and nr_context_switches:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 *
2264 * externally visible scheduler statistics: current number of runnable
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002265 * threads, total number of context switches performed since bootup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 */
2267unsigned long nr_running(void)
2268{
2269 unsigned long i, sum = 0;
2270
2271 for_each_online_cpu(i)
2272 sum += cpu_rq(i)->nr_running;
2273
2274 return sum;
2275}
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277unsigned long long nr_context_switches(void)
2278{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002279 int i;
2280 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002282 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 sum += cpu_rq(i)->nr_switches;
2284
2285 return sum;
2286}
2287
2288unsigned long nr_iowait(void)
2289{
2290 unsigned long i, sum = 0;
2291
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002292 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2294
2295 return sum;
2296}
2297
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002298unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07002299{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002300 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07002301 return atomic_read(&this->nr_iowait);
2302}
2303
Ingo Molnardd41f592007-07-09 18:51:59 +02002304#ifdef CONFIG_SMP
2305
Ingo Molnar48f24c42006-07-03 00:25:40 -07002306/*
Peter Zijlstra38022902009-12-16 18:04:37 +01002307 * sched_exec - execve() is a valuable balancing opportunity, because at
2308 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 */
Peter Zijlstra38022902009-12-16 18:04:37 +01002310void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
Peter Zijlstra38022902009-12-16 18:04:37 +01002312 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01002314 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01002315
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002316 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstraac66f542013-10-07 11:29:16 +01002317 dest_cpu = p->sched_class->select_task_rq(p, task_cpu(p), SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002318 if (dest_cpu == smp_processor_id())
2319 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01002320
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002321 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02002322 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07002323
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002324 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
2325 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return;
2327 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01002328unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002329 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330}
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332#endif
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334DEFINE_PER_CPU(struct kernel_stat, kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002335DEFINE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337EXPORT_PER_CPU_SYMBOL(kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002338EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002341 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07002342 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002343 *
2344 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002346static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
2347{
2348 u64 ns = 0;
2349
2350 if (task_current(rq, p)) {
2351 update_rq_clock(rq);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02002352 ns = rq_clock_task(rq) - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002353 if ((s64)ns < 0)
2354 ns = 0;
2355 }
2356
2357 return ns;
2358}
2359
Frank Mayharbb34d922008-09-12 09:54:39 -07002360unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02002363 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07002364 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002365
Ingo Molnar41b86e92007-07-09 18:51:58 +02002366 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002367 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002368 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02002369
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002370 return ns;
2371}
Frank Mayharf06febc2008-09-12 09:54:39 -07002372
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002373/*
2374 * Return accounted runtime for the task.
2375 * In case the task is currently running, return the runtime plus current's
2376 * pending runtime that have not been accounted yet.
2377 */
2378unsigned long long task_sched_runtime(struct task_struct *p)
2379{
2380 unsigned long flags;
2381 struct rq *rq;
2382 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002383
Peter Zijlstra911b2892013-11-11 18:21:56 +01002384#if defined(CONFIG_64BIT) && defined(CONFIG_SMP)
2385 /*
2386 * 64-bit doesn't need locks to atomically read a 64bit value.
2387 * So we have a optimization chance when the task's delta_exec is 0.
2388 * Reading ->on_cpu is racy, but this is ok.
2389 *
2390 * If we race with it leaving cpu, we'll take a lock. So we're correct.
2391 * If we race with it entering cpu, unaccounted time is 0. This is
2392 * indistinguishable from the read occurring a few cycles earlier.
2393 */
2394 if (!p->on_cpu)
2395 return p->se.sum_exec_runtime;
2396#endif
2397
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002398 rq = task_rq_lock(p, &flags);
2399 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002400 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002401
2402 return ns;
2403}
2404
Balbir Singh49048622008-09-05 18:12:23 +02002405/*
Christoph Lameter7835b982006-12-10 02:20:22 -08002406 * This function gets called by the timer code, with HZ frequency.
2407 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08002408 */
2409void scheduler_tick(void)
2410{
Christoph Lameter7835b982006-12-10 02:20:22 -08002411 int cpu = smp_processor_id();
2412 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002413 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002414
2415 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08002416
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002417 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002418 update_rq_clock(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01002419 curr->sched_class->task_tick(rq, curr, 0);
Alex Shi83dfd522013-06-20 10:18:49 +08002420 update_cpu_load_active(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002421 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02002422
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002423 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002424
Christoph Lametere418e1c2006-12-10 02:20:23 -08002425#ifdef CONFIG_SMP
Suresh Siddha6eb57e02011-10-03 15:09:01 -07002426 rq->idle_balance = idle_cpu(cpu);
Daniel Lezcano7caff662014-01-06 12:34:38 +01002427 trigger_load_balance(rq);
Christoph Lametere418e1c2006-12-10 02:20:23 -08002428#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002429 rq_last_tick_reset(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002432#ifdef CONFIG_NO_HZ_FULL
2433/**
2434 * scheduler_tick_max_deferment
2435 *
2436 * Keep at least one tick per second when a single
2437 * active task is running because the scheduler doesn't
2438 * yet completely support full dynticks environment.
2439 *
2440 * This makes sure that uptime, CFS vruntime, load
2441 * balancing, etc... continue to move forward, even
2442 * with a very low granularity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02002443 *
2444 * Return: Maximum deferment in nanoseconds.
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002445 */
2446u64 scheduler_tick_max_deferment(void)
2447{
2448 struct rq *rq = this_rq();
2449 unsigned long next, now = ACCESS_ONCE(jiffies);
2450
2451 next = rq->last_sched_tick + HZ;
2452
2453 if (time_before_eq(next, now))
2454 return 0;
2455
2456 return jiffies_to_usecs(next - now) * NSEC_PER_USEC;
2457}
2458#endif
2459
Lai Jiangshan132380a2009-04-02 14:18:25 +08002460notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002461{
2462 if (in_lock_functions(addr)) {
2463 addr = CALLER_ADDR2;
2464 if (in_lock_functions(addr))
2465 addr = CALLER_ADDR3;
2466 }
2467 return addr;
2468}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05002470#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
2471 defined(CONFIG_PREEMPT_TRACER))
2472
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002473void __kprobes preempt_count_add(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002475#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 /*
2477 * Underflow?
2478 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002479 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
2480 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002481#endif
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002482 __preempt_count_add(val);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002483#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 /*
2485 * Spinlock count overflowing soon?
2486 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002487 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
2488 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002489#endif
2490 if (preempt_count() == val)
2491 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002493EXPORT_SYMBOL(preempt_count_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002495void __kprobes preempt_count_sub(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002497#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 /*
2499 * Underflow?
2500 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01002501 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002502 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 /*
2504 * Is the spinlock portion underflowing?
2505 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002506 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
2507 !(preempt_count() & PREEMPT_MASK)))
2508 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002509#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002510
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002511 if (preempt_count() == val)
2512 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002513 __preempt_count_sub(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002515EXPORT_SYMBOL(preempt_count_sub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517#endif
2518
2519/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002520 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002522static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523{
Dave Jones664dfa62011-12-22 16:39:30 -05002524 if (oops_in_progress)
2525 return;
2526
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01002527 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
2528 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02002529
Ingo Molnardd41f592007-07-09 18:51:59 +02002530 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07002531 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02002532 if (irqs_disabled())
2533 print_irqtrace_events(prev);
Stephen Boyd6135fc12012-03-28 17:10:47 -07002534 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +10302535 add_taint(TAINT_WARN, LOCKDEP_STILL_OK);
Ingo Molnardd41f592007-07-09 18:51:59 +02002536}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Ingo Molnardd41f592007-07-09 18:51:59 +02002538/*
2539 * Various schedule()-time debugging checks and statistics:
2540 */
2541static inline void schedule_debug(struct task_struct *prev)
2542{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002544 * Test if we are atomic. Since do_exit() needs to call into
Oleg Nesterov192301e2013-11-13 16:45:38 +01002545 * schedule() atomically, we ignore that path. Otherwise whine
2546 * if we are scheduling when we should not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 */
Oleg Nesterov192301e2013-11-13 16:45:38 +01002548 if (unlikely(in_atomic_preempt_off() && prev->state != TASK_DEAD))
Ingo Molnardd41f592007-07-09 18:51:59 +02002549 __schedule_bug(prev);
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07002550 rcu_sleep_check();
Ingo Molnardd41f592007-07-09 18:51:59 +02002551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2553
Ingo Molnar2d723762007-10-15 17:00:12 +02002554 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02002555}
2556
Peter Zijlstra6cecd082009-11-30 13:00:37 +01002557static void put_prev_task(struct rq *rq, struct task_struct *prev)
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01002558{
Mike Galbraith61eadef2011-04-29 08:36:50 +02002559 if (prev->on_rq || rq->skip_clock_update < 0)
Mike Galbraitha64692a2010-03-11 17:16:20 +01002560 update_rq_clock(rq);
Peter Zijlstra6cecd082009-11-30 13:00:37 +01002561 prev->sched_class->put_prev_task(rq, prev);
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01002562}
2563
Ingo Molnardd41f592007-07-09 18:51:59 +02002564/*
2565 * Pick up the highest-prio task:
2566 */
2567static inline struct task_struct *
Wang Chenb67802e2009-03-02 13:55:26 +08002568pick_next_task(struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02002569{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002570 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02002571 struct task_struct *p;
2572
2573 /*
2574 * Optimization: we know that if all tasks are in
2575 * the fair class we can call that function directly:
2576 */
Paul Turner953bfcd2011-07-21 09:43:27 -07002577 if (likely(rq->nr_running == rq->cfs.h_nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02002578 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002579 if (likely(p))
2580 return p;
2581 }
2582
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002583 for_each_class(class) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02002584 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002585 if (p)
2586 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02002587 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002588
2589 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02002590}
2591
2592/*
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002593 * __schedule() is the main scheduler function.
Pekka Enbergedde96e2012-08-04 11:49:47 +03002594 *
2595 * The main means of driving the scheduler and thus entering this function are:
2596 *
2597 * 1. Explicit blocking: mutex, semaphore, waitqueue, etc.
2598 *
2599 * 2. TIF_NEED_RESCHED flag is checked on interrupt and userspace return
2600 * paths. For example, see arch/x86/entry_64.S.
2601 *
2602 * To drive preemption between tasks, the scheduler sets the flag in timer
2603 * interrupt handler scheduler_tick().
2604 *
2605 * 3. Wakeups don't really cause entry into schedule(). They add a
2606 * task to the run-queue and that's it.
2607 *
2608 * Now, if the new task added to the run-queue preempts the current
2609 * task, then the wakeup sets TIF_NEED_RESCHED and schedule() gets
2610 * called on the nearest possible occasion:
2611 *
2612 * - If the kernel is preemptible (CONFIG_PREEMPT=y):
2613 *
2614 * - in syscall or exception context, at the next outmost
2615 * preempt_enable(). (this might be as soon as the wake_up()'s
2616 * spin_unlock()!)
2617 *
2618 * - in IRQ context, return from interrupt-handler to
2619 * preemptible context
2620 *
2621 * - If the kernel is not preemptible (CONFIG_PREEMPT is not set)
2622 * then at the next:
2623 *
2624 * - cond_resched() call
2625 * - explicit schedule() call
2626 * - return from syscall or exception to user-space
2627 * - return from interrupt-handler to user-space
Ingo Molnardd41f592007-07-09 18:51:59 +02002628 */
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002629static void __sched __schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02002630{
2631 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08002632 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02002633 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02002634 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002635
Peter Zijlstraff743342009-03-13 12:21:26 +01002636need_resched:
2637 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02002638 cpu = smp_processor_id();
2639 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07002640 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002641 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02002642
Ingo Molnardd41f592007-07-09 18:51:59 +02002643 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Peter Zijlstra31656512008-07-18 18:01:23 +02002645 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02002646 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002647
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02002648 /*
2649 * Make sure that signal_pending_state()->signal_pending() below
2650 * can't be reordered with __set_current_state(TASK_INTERRUPTIBLE)
2651 * done by the caller to avoid the race with signal_wake_up().
2652 */
2653 smp_mb__before_spinlock();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002654 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002656 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02002657 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02002658 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002659 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002660 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02002661 deactivate_task(rq, prev, DEQUEUE_SLEEP);
2662 prev->on_rq = 0;
2663
Tejun Heo21aa9af2010-06-08 21:40:37 +02002664 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02002665 * If a worker went to sleep, notify and ask workqueue
2666 * whether it wants to wake up a task to maintain
2667 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002668 */
2669 if (prev->flags & PF_WQ_WORKER) {
2670 struct task_struct *to_wakeup;
2671
2672 to_wakeup = wq_worker_sleeping(prev, cpu);
2673 if (to_wakeup)
2674 try_to_wake_up_local(to_wakeup);
2675 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02002676 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002677 switch_count = &prev->nvcsw;
2678 }
2679
Gregory Haskins3f029d32009-07-29 11:08:47 -04002680 pre_schedule(rq, prev);
Steven Rostedtf65eda42008-01-25 21:08:07 +01002681
Ingo Molnardd41f592007-07-09 18:51:59 +02002682 if (unlikely(!rq->nr_running))
2683 idle_balance(cpu, rq);
2684
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01002685 put_prev_task(rq, prev);
Wang Chenb67802e2009-03-02 13:55:26 +08002686 next = pick_next_task(rq);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002687 clear_tsk_need_resched(prev);
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002688 clear_preempt_need_resched();
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002689 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 rq->nr_switches++;
2693 rq->curr = next;
2694 ++*switch_count;
2695
Ingo Molnardd41f592007-07-09 18:51:59 +02002696 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002697 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002698 * The context switch have flipped the stack from under us
2699 * and restored the local variables which were saved when
2700 * this task called schedule() in the past. prev == current
2701 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002702 */
2703 cpu = smp_processor_id();
2704 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002706 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Gregory Haskins3f029d32009-07-29 11:08:47 -04002708 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002710 sched_preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01002711 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 goto need_resched;
2713}
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002714
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002715static inline void sched_submit_work(struct task_struct *tsk)
2716{
Thomas Gleixner3c7d5182011-07-17 20:46:52 +02002717 if (!tsk->state || tsk_is_pi_blocked(tsk))
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002718 return;
2719 /*
2720 * If we are going to sleep and we have plugged IO queued,
2721 * make sure to submit it to avoid deadlocks.
2722 */
2723 if (blk_needs_flush_plug(tsk))
2724 blk_schedule_flush_plug(tsk);
2725}
2726
Simon Kirby6ebbe7a2011-09-22 17:03:46 -07002727asmlinkage void __sched schedule(void)
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002728{
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002729 struct task_struct *tsk = current;
2730
2731 sched_submit_work(tsk);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002732 __schedule();
2733}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734EXPORT_SYMBOL(schedule);
2735
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002736#ifdef CONFIG_CONTEXT_TRACKING
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002737asmlinkage void __sched schedule_user(void)
2738{
2739 /*
2740 * If we come here after a random call to set_need_resched(),
2741 * or we have been woken up remotely but the IPI has not yet arrived,
2742 * we haven't yet exited the RCU idle mode. Do it here manually until
2743 * we find a better solution.
2744 */
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002745 user_exit();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002746 schedule();
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002747 user_enter();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002748}
2749#endif
2750
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002751/**
2752 * schedule_preempt_disabled - called with preemption disabled
2753 *
2754 * Returns with preemption disabled. Note: preempt_count must be 1
2755 */
2756void __sched schedule_preempt_disabled(void)
2757{
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002758 sched_preempt_enable_no_resched();
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002759 schedule();
2760 preempt_disable();
2761}
2762
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763#ifdef CONFIG_PREEMPT
2764/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002765 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002766 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 * occur there and call schedule directly.
2768 */
Steven Rostedtd1f74e22010-06-02 21:52:29 -04002769asmlinkage void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 /*
2772 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002773 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 */
Frederic Weisbeckerfbb00b52013-06-19 23:56:22 +02002775 if (likely(!preemptible()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 return;
2777
Andi Kleen3a5c3592007-10-15 17:00:14 +02002778 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002779 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002780 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002781 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002782
2783 /*
2784 * Check again in case we missed a preemption opportunity
2785 * between schedule and now.
2786 */
2787 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002788 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790EXPORT_SYMBOL(preempt_schedule);
Thomas Gleixner32e475d2013-11-21 12:41:44 +01002791#endif /* CONFIG_PREEMPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
2793/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002794 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 * off of irq context.
2796 * Note, that this is called and return with irqs disabled. This will
2797 * protect us against recursive calling from irq.
2798 */
2799asmlinkage void __sched preempt_schedule_irq(void)
2800{
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002801 enum ctx_state prev_state;
Ingo Molnar6478d882008-01-25 21:08:33 +01002802
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002803 /* Catch callers which need to be fixed */
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002804 BUG_ON(preempt_count() || !irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002806 prev_state = exception_enter();
2807
Andi Kleen3a5c3592007-10-15 17:00:14 +02002808 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002809 __preempt_count_add(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002810 local_irq_enable();
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002811 __schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02002812 local_irq_disable();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002813 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002814
2815 /*
2816 * Check again in case we missed a preemption opportunity
2817 * between schedule and now.
2818 */
2819 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002820 } while (need_resched());
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002821
2822 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
Peter Zijlstra63859d42009-09-15 19:14:42 +02002825int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002826 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827{
Peter Zijlstra63859d42009-09-15 19:14:42 +02002828 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830EXPORT_SYMBOL(default_wake_function);
2831
Andi Kleen8cbbe862007-10-15 17:00:14 +02002832static long __sched
2833sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02002834{
2835 unsigned long flags;
2836 wait_queue_t wait;
2837
2838 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Andi Kleen8cbbe862007-10-15 17:00:14 +02002840 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Andi Kleen8cbbe862007-10-15 17:00:14 +02002842 spin_lock_irqsave(&q->lock, flags);
2843 __add_wait_queue(q, &wait);
2844 spin_unlock(&q->lock);
2845 timeout = schedule_timeout(timeout);
2846 spin_lock_irq(&q->lock);
2847 __remove_wait_queue(q, &wait);
2848 spin_unlock_irqrestore(&q->lock, flags);
2849
2850 return timeout;
2851}
2852
2853void __sched interruptible_sleep_on(wait_queue_head_t *q)
2854{
2855 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857EXPORT_SYMBOL(interruptible_sleep_on);
2858
Ingo Molnar0fec1712007-07-09 18:52:01 +02002859long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002860interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
Andi Kleen8cbbe862007-10-15 17:00:14 +02002862 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864EXPORT_SYMBOL(interruptible_sleep_on_timeout);
2865
Ingo Molnar0fec1712007-07-09 18:52:01 +02002866void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
Andi Kleen8cbbe862007-10-15 17:00:14 +02002868 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870EXPORT_SYMBOL(sleep_on);
2871
Ingo Molnar0fec1712007-07-09 18:52:01 +02002872long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
Andi Kleen8cbbe862007-10-15 17:00:14 +02002874 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876EXPORT_SYMBOL(sleep_on_timeout);
2877
Ingo Molnarb29739f2006-06-27 02:54:51 -07002878#ifdef CONFIG_RT_MUTEXES
2879
2880/*
2881 * rt_mutex_setprio - set the current priority of a task
2882 * @p: task
2883 * @prio: prio value (kernel-internal form)
2884 *
2885 * This function changes the 'effective' priority of a task. It does
2886 * not touch ->normal_prio like __setscheduler().
2887 *
2888 * Used by the rt_mutex code to implement priority inheritance logic.
2889 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002890void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002891{
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002892 int oldprio, on_rq, running, enqueue_flag = 0;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002893 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002894 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002895
Dario Faggioliaab03e02013-11-28 11:14:43 +01002896 BUG_ON(prio > MAX_PRIO);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002897
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002898 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002899
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02002900 /*
2901 * Idle task boosting is a nono in general. There is one
2902 * exception, when PREEMPT_RT and NOHZ is active:
2903 *
2904 * The idle task calls get_next_timer_interrupt() and holds
2905 * the timer wheel base->lock on the CPU and another CPU wants
2906 * to access the timer (probably to cancel it). We can safely
2907 * ignore the boosting request, as the idle CPU runs this code
2908 * with interrupts disabled and will complete the lock
2909 * protected section without being interrupted. So there is no
2910 * real need to boost.
2911 */
2912 if (unlikely(p == rq->idle)) {
2913 WARN_ON(p != rq->curr);
2914 WARN_ON(p->pi_blocked_on);
2915 goto out_unlock;
2916 }
2917
Steven Rostedta8027072010-09-20 15:13:34 -04002918 trace_sched_pi_setprio(p, prio);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002919 p->pi_top_task = rt_mutex_get_top_task(p);
Andrew Mortond5f9f942007-05-08 20:27:06 -07002920 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002921 prev_class = p->sched_class;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002922 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01002923 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002924 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02002925 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002926 if (running)
2927 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02002928
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002929 /*
2930 * Boosting condition are:
2931 * 1. -rt task is running and holds mutex A
2932 * --> -dl task blocks on mutex A
2933 *
2934 * 2. -dl task is running and holds mutex A
2935 * --> -dl task blocks on mutex A and could preempt the
2936 * running task
2937 */
2938 if (dl_prio(prio)) {
2939 if (!dl_prio(p->normal_prio) || (p->pi_top_task &&
2940 dl_entity_preempt(&p->pi_top_task->dl, &p->dl))) {
2941 p->dl.dl_boosted = 1;
2942 p->dl.dl_throttled = 0;
2943 enqueue_flag = ENQUEUE_REPLENISH;
2944 } else
2945 p->dl.dl_boosted = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01002946 p->sched_class = &dl_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002947 } else if (rt_prio(prio)) {
2948 if (dl_prio(oldprio))
2949 p->dl.dl_boosted = 0;
2950 if (oldprio < prio)
2951 enqueue_flag = ENQUEUE_HEAD;
Ingo Molnardd41f592007-07-09 18:51:59 +02002952 p->sched_class = &rt_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002953 } else {
2954 if (dl_prio(oldprio))
2955 p->dl.dl_boosted = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002956 p->sched_class = &fair_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002957 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002958
Ingo Molnarb29739f2006-06-27 02:54:51 -07002959 p->prio = prio;
2960
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002961 if (running)
2962 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002963 if (on_rq)
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002964 enqueue_task(rq, p, enqueue_flag);
Steven Rostedtcb469842008-01-25 21:08:22 +01002965
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002966 check_class_changed(rq, p, prev_class, oldprio);
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02002967out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002968 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002969}
Ingo Molnarb29739f2006-06-27 02:54:51 -07002970#endif
Dario Faggiolid50dde52013-11-07 14:43:36 +01002971
Ingo Molnar36c8b582006-07-03 00:25:41 -07002972void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
Ingo Molnardd41f592007-07-09 18:51:59 +02002974 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002976 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
2979 return;
2980 /*
2981 * We have to be careful, if called from sys_setpriority(),
2982 * the task might be in the middle of scheduling on another CPU.
2983 */
2984 rq = task_rq_lock(p, &flags);
2985 /*
2986 * The RT priorities are set via sched_setscheduler(), but we still
2987 * allow the 'normal' nice value to be set - but as expected
2988 * it wont have any effect on scheduling until the task is
Dario Faggioliaab03e02013-11-28 11:14:43 +01002989 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01002991 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 p->static_prio = NICE_TO_PRIO(nice);
2993 goto out_unlock;
2994 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002995 on_rq = p->on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002996 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02002997 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003000 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003001 old_prio = p->prio;
3002 p->prio = effective_prio(p);
3003 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Ingo Molnardd41f592007-07-09 18:51:59 +02003005 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01003006 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07003008 * If the task increased its priority or is running and
3009 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003011 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 resched_task(rq->curr);
3013 }
3014out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003015 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017EXPORT_SYMBOL(set_user_nice);
3018
Matt Mackalle43379f2005-05-01 08:59:00 -07003019/*
3020 * can_nice - check if a task can reduce its nice value
3021 * @p: task
3022 * @nice: nice value
3023 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003024int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07003025{
Matt Mackall024f4742005-08-18 11:24:19 -07003026 /* convert nice value [19,-20] to rlimit style value [1,40] */
3027 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003028
Jiri Slaby78d7d402010-03-05 13:42:54 -08003029 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07003030 capable(CAP_SYS_NICE));
3031}
3032
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033#ifdef __ARCH_WANT_SYS_NICE
3034
3035/*
3036 * sys_nice - change the priority of the current process.
3037 * @increment: priority increment
3038 *
3039 * sys_setpriority is a more generic, but much slower function that
3040 * does similar things.
3041 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003042SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003044 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
3046 /*
3047 * Setpriority might change our priority at the same moment.
3048 * We don't have to worry. Conceptually one call occurs first
3049 * and we have a single winner.
3050 */
Matt Mackalle43379f2005-05-01 08:59:00 -07003051 if (increment < -40)
3052 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 if (increment > 40)
3054 increment = 40;
3055
Américo Wang2b8f8362009-02-16 18:54:21 +08003056 nice = TASK_NICE(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 if (nice < -20)
3058 nice = -20;
3059 if (nice > 19)
3060 nice = 19;
3061
Matt Mackalle43379f2005-05-01 08:59:00 -07003062 if (increment < 0 && !can_nice(current, nice))
3063 return -EPERM;
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 retval = security_task_setnice(current, nice);
3066 if (retval)
3067 return retval;
3068
3069 set_user_nice(current, nice);
3070 return 0;
3071}
3072
3073#endif
3074
3075/**
3076 * task_prio - return the priority value of a given task.
3077 * @p: the task in question.
3078 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003079 * Return: The priority value as seen by users in /proc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 * RT tasks are offset by -200. Normal tasks are centered
3081 * around 0, value goes from -16 to +15.
3082 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003083int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 return p->prio - MAX_RT_PRIO;
3086}
3087
3088/**
3089 * task_nice - return the nice value of a given task.
3090 * @p: the task in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003091 *
3092 * Return: The nice value [ -20 ... 0 ... 19 ].
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003094int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095{
3096 return TASK_NICE(p);
3097}
Pavel Roskin150d8be2008-03-05 16:56:37 -05003098EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
3100/**
3101 * idle_cpu - is a given cpu idle currently?
3102 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003103 *
3104 * Return: 1 if the CPU is currently idle. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 */
3106int idle_cpu(int cpu)
3107{
Thomas Gleixner908a3282011-09-15 15:32:06 +02003108 struct rq *rq = cpu_rq(cpu);
3109
3110 if (rq->curr != rq->idle)
3111 return 0;
3112
3113 if (rq->nr_running)
3114 return 0;
3115
3116#ifdef CONFIG_SMP
3117 if (!llist_empty(&rq->wake_list))
3118 return 0;
3119#endif
3120
3121 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
3123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124/**
3125 * idle_task - return the idle task for a given cpu.
3126 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003127 *
3128 * Return: The idle task for the cpu @cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003130struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131{
3132 return cpu_rq(cpu)->idle;
3133}
3134
3135/**
3136 * find_process_by_pid - find a process with a matching PID value.
3137 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003138 *
3139 * The task of @pid, if found. %NULL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003141static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07003143 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
3145
Dario Faggioliaab03e02013-11-28 11:14:43 +01003146/*
3147 * This function initializes the sched_dl_entity of a newly becoming
3148 * SCHED_DEADLINE task.
3149 *
3150 * Only the static values are considered here, the actual runtime and the
3151 * absolute deadline will be properly calculated when the task is enqueued
3152 * for the first time with its new policy.
3153 */
3154static void
3155__setparam_dl(struct task_struct *p, const struct sched_attr *attr)
3156{
3157 struct sched_dl_entity *dl_se = &p->dl;
3158
3159 init_dl_task_timer(dl_se);
3160 dl_se->dl_runtime = attr->sched_runtime;
3161 dl_se->dl_deadline = attr->sched_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003162 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003163 dl_se->flags = attr->sched_flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01003164 dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
Dario Faggioliaab03e02013-11-28 11:14:43 +01003165 dl_se->dl_throttled = 0;
3166 dl_se->dl_new = 1;
3167}
3168
Dario Faggiolid50dde52013-11-07 14:43:36 +01003169/* Actually do priority change: must hold pi & rq lock. */
3170static void __setscheduler(struct rq *rq, struct task_struct *p,
3171 const struct sched_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003173 int policy = attr->sched_policy;
3174
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003175 if (policy == -1) /* setparam */
3176 policy = p->policy;
3177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 p->policy = policy;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003179
Dario Faggioliaab03e02013-11-28 11:14:43 +01003180 if (dl_policy(policy))
3181 __setparam_dl(p, attr);
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003182 else if (fair_policy(policy))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003183 p->static_prio = NICE_TO_PRIO(attr->sched_nice);
3184
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003185 /*
3186 * __sched_setscheduler() ensures attr->sched_priority == 0 when
3187 * !rt_policy. Always setting this ensures that things like
3188 * getparam()/getattr() don't report silly values for !rt tasks.
3189 */
3190 p->rt_priority = attr->sched_priority;
3191
Ingo Molnarb29739f2006-06-27 02:54:51 -07003192 p->normal_prio = normal_prio(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003193 p->prio = rt_mutex_getprio(p);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003194
Dario Faggioliaab03e02013-11-28 11:14:43 +01003195 if (dl_prio(p->prio))
3196 p->sched_class = &dl_sched_class;
3197 else if (rt_prio(p->prio))
Peter Zijlstraffd44db2009-11-10 20:12:01 +01003198 p->sched_class = &rt_sched_class;
3199 else
3200 p->sched_class = &fair_sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003201
Peter Williams2dd73a42006-06-27 02:54:34 -07003202 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203}
Dario Faggioliaab03e02013-11-28 11:14:43 +01003204
3205static void
3206__getparam_dl(struct task_struct *p, struct sched_attr *attr)
3207{
3208 struct sched_dl_entity *dl_se = &p->dl;
3209
3210 attr->sched_priority = p->rt_priority;
3211 attr->sched_runtime = dl_se->dl_runtime;
3212 attr->sched_deadline = dl_se->dl_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003213 attr->sched_period = dl_se->dl_period;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003214 attr->sched_flags = dl_se->flags;
3215}
3216
3217/*
3218 * This function validates the new parameters of a -deadline task.
3219 * We ask for the deadline not being zero, and greater or equal
Harald Gustafsson755378a2013-11-07 14:43:40 +01003220 * than the runtime, as well as the period of being zero or
Dario Faggioli332ac172013-11-07 14:43:45 +01003221 * greater than deadline. Furthermore, we have to be sure that
3222 * user parameters are above the internal resolution (1us); we
3223 * check sched_runtime only since it is always the smaller one.
Dario Faggioliaab03e02013-11-28 11:14:43 +01003224 */
3225static bool
3226__checkparam_dl(const struct sched_attr *attr)
3227{
3228 return attr && attr->sched_deadline != 0 &&
Harald Gustafsson755378a2013-11-07 14:43:40 +01003229 (attr->sched_period == 0 ||
3230 (s64)(attr->sched_period - attr->sched_deadline) >= 0) &&
Dario Faggioli332ac172013-11-07 14:43:45 +01003231 (s64)(attr->sched_deadline - attr->sched_runtime ) >= 0 &&
3232 attr->sched_runtime >= (2 << (DL_SCALE - 1));
Dario Faggioliaab03e02013-11-28 11:14:43 +01003233}
3234
David Howellsc69e8d92008-11-14 10:39:19 +11003235/*
3236 * check the target process has a UID that matches the current process's
3237 */
3238static bool check_same_owner(struct task_struct *p)
3239{
3240 const struct cred *cred = current_cred(), *pcred;
3241 bool match;
3242
3243 rcu_read_lock();
3244 pcred = __task_cred(p);
Eric W. Biederman9c806aa2012-02-02 18:54:02 -08003245 match = (uid_eq(cred->euid, pcred->euid) ||
3246 uid_eq(cred->euid, pcred->uid));
David Howellsc69e8d92008-11-14 10:39:19 +11003247 rcu_read_unlock();
3248 return match;
3249}
3250
Dario Faggiolid50dde52013-11-07 14:43:36 +01003251static int __sched_setscheduler(struct task_struct *p,
3252 const struct sched_attr *attr,
3253 bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003255 int retval, oldprio, oldpolicy = -1, on_rq, running;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003256 int policy = attr->sched_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003258 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003259 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003260 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Steven Rostedt66e53932006-06-27 02:54:44 -07003262 /* may grab non-irq protected spin_locks */
3263 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264recheck:
3265 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02003266 if (policy < 0) {
3267 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003269 } else {
3270 reset_on_fork = !!(policy & SCHED_RESET_ON_FORK);
3271 policy &= ~SCHED_RESET_ON_FORK;
3272
Dario Faggioliaab03e02013-11-28 11:14:43 +01003273 if (policy != SCHED_DEADLINE &&
3274 policy != SCHED_FIFO && policy != SCHED_RR &&
Lennart Poetteringca94c442009-06-15 17:17:47 +02003275 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
3276 policy != SCHED_IDLE)
3277 return -EINVAL;
3278 }
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 /*
3281 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02003282 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
3283 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003285 if (attr->sched_priority < 0 ||
3286 (p->mm && attr->sched_priority > MAX_USER_RT_PRIO-1) ||
3287 (!p->mm && attr->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 return -EINVAL;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003289 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
3290 (rt_policy(policy) != (attr->sched_priority != 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 return -EINVAL;
3292
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003293 /*
3294 * Allow unprivileged RT tasks to decrease priority:
3295 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10003296 if (user && !capable(CAP_SYS_NICE)) {
Dario Faggiolid50dde52013-11-07 14:43:36 +01003297 if (fair_policy(policy)) {
3298 if (!can_nice(p, attr->sched_nice))
3299 return -EPERM;
3300 }
3301
Ingo Molnare05606d2007-07-09 18:51:59 +02003302 if (rt_policy(policy)) {
Oleg Nesterova44702e82010-06-11 01:09:44 +02003303 unsigned long rlim_rtprio =
3304 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003305
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003306 /* can't set/change the rt policy */
3307 if (policy != p->policy && !rlim_rtprio)
3308 return -EPERM;
3309
3310 /* can't increase priority */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003311 if (attr->sched_priority > p->rt_priority &&
3312 attr->sched_priority > rlim_rtprio)
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003313 return -EPERM;
3314 }
Darren Hartc02aa732011-02-17 15:37:07 -08003315
Ingo Molnardd41f592007-07-09 18:51:59 +02003316 /*
Darren Hartc02aa732011-02-17 15:37:07 -08003317 * Treat SCHED_IDLE as nice 20. Only allow a switch to
3318 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02003319 */
Darren Hartc02aa732011-02-17 15:37:07 -08003320 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
3321 if (!can_nice(p, TASK_NICE(p)))
3322 return -EPERM;
3323 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003324
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003325 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11003326 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003327 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003328
3329 /* Normal users shall not reset the sched_reset_on_fork flag */
3330 if (p->sched_reset_on_fork && !reset_on_fork)
3331 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003334 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003335 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003336 if (retval)
3337 return retval;
3338 }
3339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07003341 * make sure no PI-waiters arrive (or leave) while we are
3342 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003343 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003344 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 * runqueue lock must be held.
3346 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003347 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003348
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003349 /*
3350 * Changing the policy of the stop threads its a very bad idea
3351 */
3352 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003353 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003354 return -EINVAL;
3355 }
3356
Dario Faggiolia51e9192011-03-24 14:00:18 +01003357 /*
3358 * If not changing anything there's no need to proceed further:
3359 */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003360 if (unlikely(policy == p->policy)) {
3361 if (fair_policy(policy) && attr->sched_nice != TASK_NICE(p))
3362 goto change;
3363 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
3364 goto change;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003365 if (dl_policy(policy))
3366 goto change;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003367
Namhyung Kim45afb172012-07-07 16:49:02 +09003368 task_rq_unlock(rq, p, &flags);
Dario Faggiolia51e9192011-03-24 14:00:18 +01003369 return 0;
3370 }
Dario Faggiolid50dde52013-11-07 14:43:36 +01003371change:
Dario Faggiolia51e9192011-03-24 14:00:18 +01003372
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003373 if (user) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003374#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003375 /*
3376 * Do not allow realtime tasks into groups that have no runtime
3377 * assigned.
3378 */
3379 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01003380 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
3381 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003382 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003383 return -EPERM;
3384 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003385#endif
Dario Faggioli332ac172013-11-07 14:43:45 +01003386#ifdef CONFIG_SMP
3387 if (dl_bandwidth_enabled() && dl_policy(policy)) {
3388 cpumask_t *span = rq->rd->span;
Dario Faggioli332ac172013-11-07 14:43:45 +01003389
3390 /*
3391 * Don't allow tasks with an affinity mask smaller than
3392 * the entire root_domain to become SCHED_DEADLINE. We
3393 * will also fail if there's no bandwidth available.
3394 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003395 if (!cpumask_subset(span, &p->cpus_allowed) ||
3396 rq->rd->dl_bw.bw == 0) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003397 task_rq_unlock(rq, p, &flags);
3398 return -EPERM;
3399 }
3400 }
3401#endif
3402 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 /* recheck policy now with rq lock held */
3405 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3406 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003407 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 goto recheck;
3409 }
Dario Faggioli332ac172013-11-07 14:43:45 +01003410
3411 /*
3412 * If setscheduling to SCHED_DEADLINE (or changing the parameters
3413 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
3414 * is available.
3415 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003416 if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003417 task_rq_unlock(rq, p, &flags);
3418 return -EBUSY;
3419 }
3420
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003421 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003422 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003423 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003424 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003425 if (running)
3426 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003427
Lennart Poetteringca94c442009-06-15 17:17:47 +02003428 p->sched_reset_on_fork = reset_on_fork;
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003431 prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003432 __setscheduler(rq, p, attr);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003433
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003434 if (running)
3435 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003436 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003437 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01003438
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003439 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003440 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003441
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07003442 rt_mutex_adjust_pi(p);
3443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 return 0;
3445}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003446
3447/**
3448 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
3449 * @p: the task in question.
3450 * @policy: new policy.
3451 * @param: structure containing the new RT priority.
3452 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003453 * Return: 0 on success. An error code otherwise.
3454 *
Rusty Russell961ccdd2008-06-23 13:55:38 +10003455 * NOTE that the task may be already dead.
3456 */
3457int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003458 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003459{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003460 struct sched_attr attr = {
3461 .sched_policy = policy,
Peter Zijlstrae3de3002014-01-15 12:30:15 +01003462 .sched_priority = param->sched_priority,
3463 .sched_nice = PRIO_TO_NICE(p->static_prio),
Dario Faggiolid50dde52013-11-07 14:43:36 +01003464 };
3465 return __sched_setscheduler(p, &attr, true);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003466}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467EXPORT_SYMBOL_GPL(sched_setscheduler);
3468
Dario Faggiolid50dde52013-11-07 14:43:36 +01003469int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
3470{
3471 return __sched_setscheduler(p, attr, true);
3472}
3473EXPORT_SYMBOL_GPL(sched_setattr);
3474
Rusty Russell961ccdd2008-06-23 13:55:38 +10003475/**
3476 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
3477 * @p: the task in question.
3478 * @policy: new policy.
3479 * @param: structure containing the new RT priority.
3480 *
3481 * Just like sched_setscheduler, only don't bother checking if the
3482 * current context has permission. For example, this is needed in
3483 * stop_machine(): we create temporary high priority worker threads,
3484 * but our caller might not have that capability.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003485 *
3486 * Return: 0 on success. An error code otherwise.
Rusty Russell961ccdd2008-06-23 13:55:38 +10003487 */
3488int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003489 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003490{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003491 struct sched_attr attr = {
3492 .sched_policy = policy,
Peter Zijlstrae3de3002014-01-15 12:30:15 +01003493 .sched_priority = param->sched_priority,
3494 .sched_nice = PRIO_TO_NICE(p->static_prio),
Dario Faggiolid50dde52013-11-07 14:43:36 +01003495 };
3496 return __sched_setscheduler(p, &attr, false);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003497}
3498
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003499static int
3500do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 struct sched_param lparam;
3503 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003504 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
3506 if (!param || pid < 0)
3507 return -EINVAL;
3508 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3509 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003510
3511 rcu_read_lock();
3512 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003514 if (p != NULL)
3515 retval = sched_setscheduler(p, policy, &lparam);
3516 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07003517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 return retval;
3519}
3520
Dario Faggiolid50dde52013-11-07 14:43:36 +01003521/*
3522 * Mimics kernel/events/core.c perf_copy_attr().
3523 */
3524static int sched_copy_attr(struct sched_attr __user *uattr,
3525 struct sched_attr *attr)
3526{
3527 u32 size;
3528 int ret;
3529
3530 if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0))
3531 return -EFAULT;
3532
3533 /*
3534 * zero the full structure, so that a short copy will be nice.
3535 */
3536 memset(attr, 0, sizeof(*attr));
3537
3538 ret = get_user(size, &uattr->size);
3539 if (ret)
3540 return ret;
3541
3542 if (size > PAGE_SIZE) /* silly large */
3543 goto err_size;
3544
3545 if (!size) /* abi compat */
3546 size = SCHED_ATTR_SIZE_VER0;
3547
3548 if (size < SCHED_ATTR_SIZE_VER0)
3549 goto err_size;
3550
3551 /*
3552 * If we're handed a bigger struct than we know of,
3553 * ensure all the unknown bits are 0 - i.e. new
3554 * user-space does not rely on any kernel feature
3555 * extensions we dont know about yet.
3556 */
3557 if (size > sizeof(*attr)) {
3558 unsigned char __user *addr;
3559 unsigned char __user *end;
3560 unsigned char val;
3561
3562 addr = (void __user *)uattr + sizeof(*attr);
3563 end = (void __user *)uattr + size;
3564
3565 for (; addr < end; addr++) {
3566 ret = get_user(val, addr);
3567 if (ret)
3568 return ret;
3569 if (val)
3570 goto err_size;
3571 }
3572 size = sizeof(*attr);
3573 }
3574
3575 ret = copy_from_user(attr, uattr, size);
3576 if (ret)
3577 return -EFAULT;
3578
3579 /*
3580 * XXX: do we want to be lenient like existing syscalls; or do we want
3581 * to be strict and return an error on out-of-bounds values?
3582 */
3583 attr->sched_nice = clamp(attr->sched_nice, -20, 19);
3584
3585out:
3586 return ret;
3587
3588err_size:
3589 put_user(sizeof(*attr), &uattr->size);
3590 ret = -E2BIG;
3591 goto out;
3592}
3593
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594/**
3595 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3596 * @pid: the pid in question.
3597 * @policy: new policy.
3598 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003599 *
3600 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003602SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
3603 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604{
Jason Baronc21761f2006-01-18 17:43:03 -08003605 /* negative values for policy are not valid */
3606 if (policy < 0)
3607 return -EINVAL;
3608
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 return do_sched_setscheduler(pid, policy, param);
3610}
3611
3612/**
3613 * sys_sched_setparam - set/change the RT priority of a thread
3614 * @pid: the pid in question.
3615 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003616 *
3617 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003619SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620{
3621 return do_sched_setscheduler(pid, -1, param);
3622}
3623
3624/**
Dario Faggiolid50dde52013-11-07 14:43:36 +01003625 * sys_sched_setattr - same as above, but with extended sched_attr
3626 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003627 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003628 */
3629SYSCALL_DEFINE2(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr)
3630{
3631 struct sched_attr attr;
3632 struct task_struct *p;
3633 int retval;
3634
3635 if (!uattr || pid < 0)
3636 return -EINVAL;
3637
3638 if (sched_copy_attr(uattr, &attr))
3639 return -EFAULT;
3640
3641 rcu_read_lock();
3642 retval = -ESRCH;
3643 p = find_process_by_pid(pid);
3644 if (p != NULL)
3645 retval = sched_setattr(p, &attr);
3646 rcu_read_unlock();
3647
3648 return retval;
3649}
3650
3651/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3653 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003654 *
3655 * Return: On success, the policy of the thread. Otherwise, a negative error
3656 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003658SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003660 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003661 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
3663 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003664 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
3666 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003667 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 p = find_process_by_pid(pid);
3669 if (p) {
3670 retval = security_task_getscheduler(p);
3671 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02003672 retval = p->policy
3673 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003675 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 return retval;
3677}
3678
3679/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02003680 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 * @pid: the pid in question.
3682 * @param: structure containing the RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003683 *
3684 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
3685 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003687SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688{
3689 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003690 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003691 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
3693 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003694 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003696 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 p = find_process_by_pid(pid);
3698 retval = -ESRCH;
3699 if (!p)
3700 goto out_unlock;
3701
3702 retval = security_task_getscheduler(p);
3703 if (retval)
3704 goto out_unlock;
3705
Dario Faggioliaab03e02013-11-28 11:14:43 +01003706 if (task_has_dl_policy(p)) {
3707 retval = -EINVAL;
3708 goto out_unlock;
3709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003711 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
3713 /*
3714 * This one might sleep, we cannot do it with a spinlock held ...
3715 */
3716 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3717
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 return retval;
3719
3720out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003721 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 return retval;
3723}
3724
Dario Faggiolid50dde52013-11-07 14:43:36 +01003725static int sched_read_attr(struct sched_attr __user *uattr,
3726 struct sched_attr *attr,
3727 unsigned int usize)
3728{
3729 int ret;
3730
3731 if (!access_ok(VERIFY_WRITE, uattr, usize))
3732 return -EFAULT;
3733
3734 /*
3735 * If we're handed a smaller struct than we know of,
3736 * ensure all the unknown bits are 0 - i.e. old
3737 * user-space does not get uncomplete information.
3738 */
3739 if (usize < sizeof(*attr)) {
3740 unsigned char *addr;
3741 unsigned char *end;
3742
3743 addr = (void *)attr + usize;
3744 end = (void *)attr + sizeof(*attr);
3745
3746 for (; addr < end; addr++) {
3747 if (*addr)
3748 goto err_size;
3749 }
3750
3751 attr->size = usize;
3752 }
3753
3754 ret = copy_to_user(uattr, attr, usize);
3755 if (ret)
3756 return -EFAULT;
3757
3758out:
3759 return ret;
3760
3761err_size:
3762 ret = -E2BIG;
3763 goto out;
3764}
3765
3766/**
Dario Faggioliaab03e02013-11-28 11:14:43 +01003767 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
Dario Faggiolid50dde52013-11-07 14:43:36 +01003768 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003769 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003770 * @size: sizeof(attr) for fwd/bwd comp.
3771 */
3772SYSCALL_DEFINE3(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
3773 unsigned int, size)
3774{
3775 struct sched_attr attr = {
3776 .size = sizeof(struct sched_attr),
3777 };
3778 struct task_struct *p;
3779 int retval;
3780
3781 if (!uattr || pid < 0 || size > PAGE_SIZE ||
3782 size < SCHED_ATTR_SIZE_VER0)
3783 return -EINVAL;
3784
3785 rcu_read_lock();
3786 p = find_process_by_pid(pid);
3787 retval = -ESRCH;
3788 if (!p)
3789 goto out_unlock;
3790
3791 retval = security_task_getscheduler(p);
3792 if (retval)
3793 goto out_unlock;
3794
3795 attr.sched_policy = p->policy;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003796 if (task_has_dl_policy(p))
3797 __getparam_dl(p, &attr);
3798 else if (task_has_rt_policy(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003799 attr.sched_priority = p->rt_priority;
3800 else
3801 attr.sched_nice = TASK_NICE(p);
3802
3803 rcu_read_unlock();
3804
3805 retval = sched_read_attr(uattr, &attr, size);
3806 return retval;
3807
3808out_unlock:
3809 rcu_read_unlock();
3810 return retval;
3811}
3812
Rusty Russell96f874e22008-11-25 02:35:14 +10303813long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303815 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003816 struct task_struct *p;
3817 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003819 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820
3821 p = find_process_by_pid(pid);
3822 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003823 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 return -ESRCH;
3825 }
3826
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003827 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003829 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Tejun Heo14a40ff2013-03-19 13:45:20 -07003831 if (p->flags & PF_NO_SETAFFINITY) {
3832 retval = -EINVAL;
3833 goto out_put_task;
3834 }
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303835 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
3836 retval = -ENOMEM;
3837 goto out_put_task;
3838 }
3839 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
3840 retval = -ENOMEM;
3841 goto out_free_cpus_allowed;
3842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 retval = -EPERM;
Eric W. Biederman4c44aaa2012-07-26 05:05:21 -07003844 if (!check_same_owner(p)) {
3845 rcu_read_lock();
3846 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
3847 rcu_read_unlock();
3848 goto out_unlock;
3849 }
3850 rcu_read_unlock();
3851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003853 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07003854 if (retval)
3855 goto out_unlock;
3856
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003857
3858 cpuset_cpus_allowed(p, cpus_allowed);
3859 cpumask_and(new_mask, in_mask, cpus_allowed);
3860
Dario Faggioli332ac172013-11-07 14:43:45 +01003861 /*
3862 * Since bandwidth control happens on root_domain basis,
3863 * if admission test is enabled, we only admit -deadline
3864 * tasks allowed to run on all the CPUs in the task's
3865 * root_domain.
3866 */
3867#ifdef CONFIG_SMP
3868 if (task_has_dl_policy(p)) {
3869 const struct cpumask *span = task_rq(p)->rd->span;
3870
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003871 if (dl_bandwidth_enabled() && !cpumask_subset(span, new_mask)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003872 retval = -EBUSY;
3873 goto out_unlock;
3874 }
3875 }
3876#endif
Peter Zijlstra49246272010-10-17 21:46:10 +02003877again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303878 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Paul Menage8707d8b2007-10-18 23:40:22 -07003880 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303881 cpuset_cpus_allowed(p, cpus_allowed);
3882 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07003883 /*
3884 * We must have raced with a concurrent cpuset
3885 * update. Just reset the cpus_allowed to the
3886 * cpuset's cpus_allowed
3887 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303888 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07003889 goto again;
3890 }
3891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303893 free_cpumask_var(new_mask);
3894out_free_cpus_allowed:
3895 free_cpumask_var(cpus_allowed);
3896out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 return retval;
3899}
3900
3901static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10303902 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903{
Rusty Russell96f874e22008-11-25 02:35:14 +10303904 if (len < cpumask_size())
3905 cpumask_clear(new_mask);
3906 else if (len > cpumask_size())
3907 len = cpumask_size();
3908
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
3910}
3911
3912/**
3913 * sys_sched_setaffinity - set the cpu affinity of a process
3914 * @pid: pid of the process
3915 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
3916 * @user_mask_ptr: user-space pointer to the new cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02003917 *
3918 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003920SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
3921 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303923 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 int retval;
3925
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303926 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
3927 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303929 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
3930 if (retval == 0)
3931 retval = sched_setaffinity(pid, new_mask);
3932 free_cpumask_var(new_mask);
3933 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934}
3935
Rusty Russell96f874e22008-11-25 02:35:14 +10303936long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003938 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00003939 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003942 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944 retval = -ESRCH;
3945 p = find_process_by_pid(pid);
3946 if (!p)
3947 goto out_unlock;
3948
David Quigleye7834f82006-06-23 02:03:59 -07003949 retval = security_task_getscheduler(p);
3950 if (retval)
3951 goto out_unlock;
3952
Peter Zijlstra013fdb82011-04-05 17:23:45 +02003953 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02003954 cpumask_and(mask, &p->cpus_allowed, cpu_active_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02003955 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
3957out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003958 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
Ulrich Drepper9531b622007-08-09 11:16:46 +02003960 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961}
3962
3963/**
3964 * sys_sched_getaffinity - get the cpu affinity of a process
3965 * @pid: pid of the process
3966 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
3967 * @user_mask_ptr: user-space pointer to hold the current cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02003968 *
3969 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003971SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
3972 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973{
3974 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10303975 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Anton Blanchard84fba5e2010-04-06 17:02:19 +10003977 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09003978 return -EINVAL;
3979 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 return -EINVAL;
3981
Rusty Russellf17c8602008-11-25 02:35:11 +10303982 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
3983 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Rusty Russellf17c8602008-11-25 02:35:11 +10303985 ret = sched_getaffinity(pid, mask);
3986 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09003987 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09003988
3989 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10303990 ret = -EFAULT;
3991 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09003992 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10303993 }
3994 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Rusty Russellf17c8602008-11-25 02:35:11 +10303996 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997}
3998
3999/**
4000 * sys_sched_yield - yield the current processor to other threads.
4001 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004002 * This function yields the current CPU to other tasks. If there are no
4003 * other threads running on this CPU then this function will return.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004004 *
4005 * Return: 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004007SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004009 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010
Ingo Molnar2d723762007-10-15 17:00:12 +02004011 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004012 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
4014 /*
4015 * Since we are going to call schedule() anyway, there's
4016 * no need to preempt or enable interrupts:
4017 */
4018 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004019 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01004020 do_raw_spin_unlock(&rq->lock);
Thomas Gleixnerba74c142011-03-21 13:32:17 +01004021 sched_preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
4023 schedule();
4024
4025 return 0;
4026}
4027
Andrew Mortone7b38402006-06-30 01:56:00 -07004028static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029{
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004030 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02004031 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004032 __preempt_count_sub(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033}
4034
Herbert Xu02b67cc32008-01-25 21:08:28 +01004035int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004037 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 __cond_resched();
4039 return 1;
4040 }
4041 return 0;
4042}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004043EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
4045/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004046 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 * call schedule, and on return reacquire the lock.
4048 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004049 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 * operations here to prevent schedule() from being called twice (once via
4051 * spin_unlock(), once by hand).
4052 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004053int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004055 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004056 int ret = 0;
4057
Peter Zijlstraf607c662009-07-20 19:16:29 +02004058 lockdep_assert_held(lock);
4059
Nick Piggin95c354f2008-01-30 13:31:20 +01004060 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004062 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01004063 __cond_resched();
4064 else
4065 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004066 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004069 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004071EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004073int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074{
4075 BUG_ON(!in_softirq());
4076
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004077 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004078 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 __cond_resched();
4080 local_bh_disable();
4081 return 1;
4082 }
4083 return 0;
4084}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004085EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087/**
4088 * yield - yield the current processor to other threads.
4089 *
Peter Zijlstra8e3fabf2012-03-06 18:54:26 +01004090 * Do not ever use this function, there's a 99% chance you're doing it wrong.
4091 *
4092 * The scheduler is at all times free to pick the calling task as the most
4093 * eligible task to run, if removing the yield() call from your code breaks
4094 * it, its already broken.
4095 *
4096 * Typical broken usage is:
4097 *
4098 * while (!event)
4099 * yield();
4100 *
4101 * where one assumes that yield() will let 'the other' process run that will
4102 * make event true. If the current task is a SCHED_FIFO task that will never
4103 * happen. Never use yield() as a progress guarantee!!
4104 *
4105 * If you want to use yield() to wait for something, use wait_event().
4106 * If you want to use yield() to be 'nice' for others, use cond_resched().
4107 * If you still want to use yield(), do not!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 */
4109void __sched yield(void)
4110{
4111 set_current_state(TASK_RUNNING);
4112 sys_sched_yield();
4113}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114EXPORT_SYMBOL(yield);
4115
Mike Galbraithd95f4122011-02-01 09:50:51 -05004116/**
4117 * yield_to - yield the current processor to another thread in
4118 * your thread group, or accelerate that thread toward the
4119 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07004120 * @p: target task
4121 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05004122 *
4123 * It's the caller's job to ensure that the target task struct
4124 * can't go away on us before we can do any checks.
4125 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004126 * Return:
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304127 * true (>0) if we indeed boosted the target task.
4128 * false (0) if we failed to boost the target.
4129 * -ESRCH if there's no task to yield to.
Mike Galbraithd95f4122011-02-01 09:50:51 -05004130 */
4131bool __sched yield_to(struct task_struct *p, bool preempt)
4132{
4133 struct task_struct *curr = current;
4134 struct rq *rq, *p_rq;
4135 unsigned long flags;
Dan Carpenterc3c18642013-02-05 14:37:51 +03004136 int yielded = 0;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004137
4138 local_irq_save(flags);
4139 rq = this_rq();
4140
4141again:
4142 p_rq = task_rq(p);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304143 /*
4144 * If we're the only runnable task on the rq and target rq also
4145 * has only one task, there's absolutely no point in yielding.
4146 */
4147 if (rq->nr_running == 1 && p_rq->nr_running == 1) {
4148 yielded = -ESRCH;
4149 goto out_irq;
4150 }
4151
Mike Galbraithd95f4122011-02-01 09:50:51 -05004152 double_rq_lock(rq, p_rq);
Shigeru Yoshida39e24d8f2013-11-23 18:38:01 +09004153 if (task_rq(p) != p_rq) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004154 double_rq_unlock(rq, p_rq);
4155 goto again;
4156 }
4157
4158 if (!curr->sched_class->yield_to_task)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304159 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004160
4161 if (curr->sched_class != p->sched_class)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304162 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004163
4164 if (task_running(p_rq, p) || p->state)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304165 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004166
4167 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004168 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004169 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004170 /*
4171 * Make p's CPU reschedule; pick_next_entity takes care of
4172 * fairness.
4173 */
4174 if (preempt && rq != p_rq)
4175 resched_task(p_rq->curr);
4176 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05004177
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304178out_unlock:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004179 double_rq_unlock(rq, p_rq);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304180out_irq:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004181 local_irq_restore(flags);
4182
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304183 if (yielded > 0)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004184 schedule();
4185
4186 return yielded;
4187}
4188EXPORT_SYMBOL_GPL(yield_to);
4189
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004191 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 */
4194void __sched io_schedule(void)
4195{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004196 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004198 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004200 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004201 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004203 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004205 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207EXPORT_SYMBOL(io_schedule);
4208
4209long __sched io_schedule_timeout(long timeout)
4210{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004211 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 long ret;
4213
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004214 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004216 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004217 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004219 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004221 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 return ret;
4223}
4224
4225/**
4226 * sys_sched_get_priority_max - return maximum RT priority.
4227 * @policy: scheduling class.
4228 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004229 * Return: On success, this syscall returns the maximum
4230 * rt_priority that can be used by a given scheduling class.
4231 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004233SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234{
4235 int ret = -EINVAL;
4236
4237 switch (policy) {
4238 case SCHED_FIFO:
4239 case SCHED_RR:
4240 ret = MAX_USER_RT_PRIO-1;
4241 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004242 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004244 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004245 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 ret = 0;
4247 break;
4248 }
4249 return ret;
4250}
4251
4252/**
4253 * sys_sched_get_priority_min - return minimum RT priority.
4254 * @policy: scheduling class.
4255 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004256 * Return: On success, this syscall returns the minimum
4257 * rt_priority that can be used by a given scheduling class.
4258 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004260SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261{
4262 int ret = -EINVAL;
4263
4264 switch (policy) {
4265 case SCHED_FIFO:
4266 case SCHED_RR:
4267 ret = 1;
4268 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004269 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004271 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004272 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 ret = 0;
4274 }
4275 return ret;
4276}
4277
4278/**
4279 * sys_sched_rr_get_interval - return the default timeslice of a process.
4280 * @pid: pid of the process.
4281 * @interval: userspace pointer to the timeslice value.
4282 *
4283 * this syscall writes the default timeslice value of a given process
4284 * into the user-space timespec buffer. A value of '0' means infinity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004285 *
4286 * Return: On success, 0 and the timeslice is in @interval. Otherwise,
4287 * an error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01004289SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01004290 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004292 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004293 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004294 unsigned long flags;
4295 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004296 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298
4299 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004300 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
4302 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004303 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 p = find_process_by_pid(pid);
4305 if (!p)
4306 goto out_unlock;
4307
4308 retval = security_task_getscheduler(p);
4309 if (retval)
4310 goto out_unlock;
4311
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004312 rq = task_rq_lock(p, &flags);
4313 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004314 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004315
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004316 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004317 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004320
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004322 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 return retval;
4324}
4325
Steven Rostedt7c731e02008-05-12 21:20:41 +02004326static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004327
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004328void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 unsigned long free = 0;
Paul E. McKenney4e797522012-11-07 13:35:32 -08004331 int ppid;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004332 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08004335 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004336 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004337#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004339 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004341 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342#else
4343 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004344 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004346 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347#endif
4348#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05004349 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350#endif
Paul E. McKenney4e797522012-11-07 13:35:32 -08004351 rcu_read_lock();
4352 ppid = task_pid_nr(rcu_dereference(p->real_parent));
4353 rcu_read_unlock();
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004354 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
Paul E. McKenney4e797522012-11-07 13:35:32 -08004355 task_pid_nr(p), ppid,
David Rientjesaa47b7e2009-05-04 01:38:05 -07004356 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
Tejun Heo3d1cb202013-04-30 15:27:22 -07004358 print_worker_info(KERN_INFO, p);
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01004359 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360}
4361
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004362void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004364 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
Ingo Molnar4bd77322007-07-11 21:21:47 +02004366#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004367 printk(KERN_INFO
4368 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004370 printk(KERN_INFO
4371 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004373 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 do_each_thread(g, p) {
4375 /*
4376 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004377 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 */
4379 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004380 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004381 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 } while_each_thread(g, p);
4383
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004384 touch_all_softlockup_watchdogs();
4385
Ingo Molnardd41f592007-07-09 18:51:59 +02004386#ifdef CONFIG_SCHED_DEBUG
4387 sysrq_sched_debug_show();
4388#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004389 rcu_read_unlock();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004390 /*
4391 * Only show locks if all tasks are dumped:
4392 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02004393 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004394 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395}
4396
Paul Gortmaker0db06282013-06-19 14:53:51 -04004397void init_idle_bootup_task(struct task_struct *idle)
Ingo Molnar1df21052007-07-09 18:51:58 +02004398{
Ingo Molnardd41f592007-07-09 18:51:59 +02004399 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004400}
4401
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004402/**
4403 * init_idle - set up an idle thread for a given CPU
4404 * @idle: task in question
4405 * @cpu: cpu the idle task belongs to
4406 *
4407 * NOTE: this function does not set the idle thread's NEED_RESCHED
4408 * flag, to make booting more robust.
4409 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004410void init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004412 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 unsigned long flags;
4414
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004415 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01004416
Rik van Riel5e1576e2013-10-07 11:29:26 +01004417 __sched_fork(0, idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01004418 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02004419 idle->se.exec_start = sched_clock();
4420
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004421 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004422 /*
4423 * We're having a chicken and egg problem, even though we are
4424 * holding rq->lock, the cpu isn't yet set to this cpu so the
4425 * lockdep check in task_group() will fail.
4426 *
4427 * Similar case to sched_fork(). / Alternatively we could
4428 * use task_rq_lock() here and obtain the other rq->lock.
4429 *
4430 * Silence PROVE_RCU
4431 */
4432 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02004433 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004434 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 rq->curr = rq->idle = idle;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02004437#if defined(CONFIG_SMP)
4438 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07004439#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004440 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
4442 /* Set the preempt count _outside_ the spinlocks! */
Peter Zijlstra01028742013-08-14 14:55:46 +02004443 init_idle_preempt_count(idle, cpu);
Jonathan Corbet625f2a32011-04-22 11:19:10 -06004444
Ingo Molnardd41f592007-07-09 18:51:59 +02004445 /*
4446 * The idle tasks have their own, simple scheduling class:
4447 */
4448 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05004449 ftrace_graph_init_idle_task(idle, cpu);
Frederic Weisbecker45eacc62013-05-15 22:16:32 +02004450 vtime_init_idle(idle, cpu);
Carsten Emdef1c6f1a2011-10-26 23:14:16 +02004451#if defined(CONFIG_SMP)
4452 sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
4453#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454}
4455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456#ifdef CONFIG_SMP
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004457void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
4458{
4459 if (p->sched_class && p->sched_class->set_cpus_allowed)
4460 p->sched_class->set_cpus_allowed(p, new_mask);
Peter Zijlstra49396022011-06-25 15:45:46 +02004461
4462 cpumask_copy(&p->cpus_allowed, new_mask);
Peter Zijlstra29baa742012-04-23 12:11:21 +02004463 p->nr_cpus_allowed = cpumask_weight(new_mask);
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004464}
4465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466/*
4467 * This is how migration works:
4468 *
Tejun Heo969c7922010-05-06 18:49:21 +02004469 * 1) we invoke migration_cpu_stop() on the target CPU using
4470 * stop_one_cpu().
4471 * 2) stopper starts to run (implicitly forcing the migrated thread
4472 * off the CPU)
4473 * 3) it checks whether the migrated task is still in the wrong runqueue.
4474 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02004476 * 5) stopper completes and stop_one_cpu() returns and the migration
4477 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 */
4479
4480/*
4481 * Change a given task's CPU affinity. Migrate the thread to a
4482 * proper CPU and schedule it away if the CPU it's executing on
4483 * is removed from the allowed bitmask.
4484 *
4485 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004486 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 * call is not atomic; no spinlocks may be held.
4488 */
Rusty Russell96f874e22008-11-25 02:35:14 +10304489int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490{
4491 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004492 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02004493 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004494 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
4496 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004497
Yong Zhangdb44fc02011-05-09 22:07:05 +08004498 if (cpumask_equal(&p->cpus_allowed, new_mask))
4499 goto out;
4500
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004501 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 ret = -EINVAL;
4503 goto out;
4504 }
4505
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004506 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01004507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10304509 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 goto out;
4511
Tejun Heo969c7922010-05-06 18:49:21 +02004512 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Peter Zijlstrabd8e7dd2011-04-05 17:23:59 +02004513 if (p->on_rq) {
Tejun Heo969c7922010-05-06 18:49:21 +02004514 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004516 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02004517 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 tlb_migrate_finish(p->mm);
4519 return 0;
4520 }
4521out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004522 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 return ret;
4525}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07004526EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
4528/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004529 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 * this because either it can't run here any more (set_cpus_allowed()
4531 * away from this CPU, or CPU going down), or because we're
4532 * attempting to rebalance this task on exec (sched_exec).
4533 *
4534 * So we race with normal scheduler movements, but that's OK, as long
4535 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004536 *
4537 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004539static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004541 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01004542 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Max Krasnyanskye761b772008-07-15 04:43:49 -07004544 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004545 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
4547 rq_src = cpu_rq(src_cpu);
4548 rq_dest = cpu_rq(dest_cpu);
4549
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004550 raw_spin_lock(&p->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 double_rq_lock(rq_src, rq_dest);
4552 /* Already moved. */
4553 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004554 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 /* Affinity changed (again). */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02004556 if (!cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004557 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Peter Zijlstrae2912002009-12-16 18:04:36 +01004559 /*
4560 * If we're not on a rq, the next wake-up will ensure we're
4561 * placed properly.
4562 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004563 if (p->on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004564 dequeue_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004565 set_task_cpu(p, dest_cpu);
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004566 enqueue_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02004567 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004569done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07004570 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004571fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 double_rq_unlock(rq_src, rq_dest);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004573 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004574 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575}
4576
Mel Gormane6628d52013-10-07 11:29:02 +01004577#ifdef CONFIG_NUMA_BALANCING
4578/* Migrate current task p to target_cpu */
4579int migrate_task_to(struct task_struct *p, int target_cpu)
4580{
4581 struct migration_arg arg = { p, target_cpu };
4582 int curr_cpu = task_cpu(p);
4583
4584 if (curr_cpu == target_cpu)
4585 return 0;
4586
4587 if (!cpumask_test_cpu(target_cpu, tsk_cpus_allowed(p)))
4588 return -EINVAL;
4589
4590 /* TODO: This is not properly updating schedstats */
4591
4592 return stop_one_cpu(curr_cpu, migration_cpu_stop, &arg);
4593}
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004594
4595/*
4596 * Requeue a task on a given node and accurately track the number of NUMA
4597 * tasks on the runqueues
4598 */
4599void sched_setnuma(struct task_struct *p, int nid)
4600{
4601 struct rq *rq;
4602 unsigned long flags;
4603 bool on_rq, running;
4604
4605 rq = task_rq_lock(p, &flags);
4606 on_rq = p->on_rq;
4607 running = task_current(rq, p);
4608
4609 if (on_rq)
4610 dequeue_task(rq, p, 0);
4611 if (running)
4612 p->sched_class->put_prev_task(rq, p);
4613
4614 p->numa_preferred_nid = nid;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004615
4616 if (running)
4617 p->sched_class->set_curr_task(rq);
4618 if (on_rq)
4619 enqueue_task(rq, p, 0);
4620 task_rq_unlock(rq, p, &flags);
4621}
Mel Gormane6628d52013-10-07 11:29:02 +01004622#endif
4623
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624/*
Tejun Heo969c7922010-05-06 18:49:21 +02004625 * migration_cpu_stop - this will be executed by a highprio stopper thread
4626 * and performs thread migration by bumping thread off CPU then
4627 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 */
Tejun Heo969c7922010-05-06 18:49:21 +02004629static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630{
Tejun Heo969c7922010-05-06 18:49:21 +02004631 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
Tejun Heo969c7922010-05-06 18:49:21 +02004633 /*
4634 * The original target cpu might have gone down and we might
4635 * be on another cpu but it doesn't matter.
4636 */
4637 local_irq_disable();
4638 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
4639 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 return 0;
4641}
4642
4643#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
Ingo Molnar48f24c42006-07-03 00:25:40 -07004645/*
4646 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 * offline.
4648 */
4649void idle_task_exit(void)
4650{
4651 struct mm_struct *mm = current->active_mm;
4652
4653 BUG_ON(cpu_online(smp_processor_id()));
4654
4655 if (mm != &init_mm)
4656 switch_mm(mm, &init_mm, current);
4657 mmdrop(mm);
4658}
4659
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004660/*
Peter Zijlstra5d180232012-08-20 11:26:57 +02004661 * Since this CPU is going 'away' for a while, fold any nr_active delta
4662 * we might have. Assumes we're called after migrate_tasks() so that the
4663 * nr_active count is stable.
4664 *
4665 * Also see the comment "Global load-average calculations".
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004666 */
Peter Zijlstra5d180232012-08-20 11:26:57 +02004667static void calc_load_migrate(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668{
Peter Zijlstra5d180232012-08-20 11:26:57 +02004669 long delta = calc_load_fold_active(rq);
4670 if (delta)
4671 atomic_long_add(delta, &calc_load_tasks);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02004672}
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004673
4674/*
4675 * Migrate all tasks from the rq, sleeping tasks will be migrated by
4676 * try_to_wake_up()->select_task_rq().
4677 *
4678 * Called with rq->lock held even though we'er in stop_machine() and
4679 * there's no concurrency possible, we hold the required locks anyway
4680 * because of lock validation efforts.
4681 */
4682static void migrate_tasks(unsigned int dead_cpu)
4683{
4684 struct rq *rq = cpu_rq(dead_cpu);
4685 struct task_struct *next, *stop = rq->stop;
4686 int dest_cpu;
4687
4688 /*
4689 * Fudge the rq selection such that the below task selection loop
4690 * doesn't get stuck on the currently eligible stop task.
4691 *
4692 * We're currently inside stop_machine() and the rq is either stuck
4693 * in the stop_machine_cpu_stop() loop, or we're executing this code,
4694 * either way we should never end up calling schedule() until we're
4695 * done here.
4696 */
4697 rq->stop = NULL;
4698
Frederic Weisbecker77bd3972013-04-12 01:50:58 +02004699 /*
4700 * put_prev_task() and pick_next_task() sched
4701 * class method both need to have an up-to-date
4702 * value of rq->clock[_task]
4703 */
4704 update_rq_clock(rq);
4705
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004706 for ( ; ; ) {
4707 /*
4708 * There's this thread running, bail when that's the only
4709 * remaining thread.
4710 */
4711 if (rq->nr_running == 1)
4712 break;
4713
4714 next = pick_next_task(rq);
4715 BUG_ON(!next);
4716 next->sched_class->put_prev_task(rq, next);
4717
4718 /* Find suitable destination for @next, with force if needed. */
4719 dest_cpu = select_fallback_rq(dead_cpu, next);
4720 raw_spin_unlock(&rq->lock);
4721
4722 __migrate_task(next, dead_cpu, dest_cpu);
4723
4724 raw_spin_lock(&rq->lock);
4725 }
4726
4727 rq->stop = stop;
4728}
4729
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730#endif /* CONFIG_HOTPLUG_CPU */
4731
Nick Piggine692ab52007-07-26 13:40:43 +02004732#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
4733
4734static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004735 {
4736 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004737 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004738 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004739 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004740};
4741
4742static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004743 {
4744 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004745 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004746 .child = sd_ctl_dir,
4747 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004748 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004749};
4750
4751static struct ctl_table *sd_alloc_ctl_entry(int n)
4752{
4753 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02004754 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02004755
Nick Piggine692ab52007-07-26 13:40:43 +02004756 return entry;
4757}
4758
Milton Miller6382bc92007-10-15 17:00:19 +02004759static void sd_free_ctl_entry(struct ctl_table **tablep)
4760{
Milton Millercd7900762007-10-17 16:55:11 +02004761 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02004762
Milton Millercd7900762007-10-17 16:55:11 +02004763 /*
4764 * In the intermediate directories, both the child directory and
4765 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004766 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02004767 * static strings and all have proc handlers.
4768 */
4769 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02004770 if (entry->child)
4771 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02004772 if (entry->proc_handler == NULL)
4773 kfree(entry->procname);
4774 }
Milton Miller6382bc92007-10-15 17:00:19 +02004775
4776 kfree(*tablep);
4777 *tablep = NULL;
4778}
4779
Namhyung Kim201c3732012-08-16 17:03:24 +09004780static int min_load_idx = 0;
libinfd9b86d2013-04-08 14:39:12 +08004781static int max_load_idx = CPU_LOAD_IDX_MAX-1;
Namhyung Kim201c3732012-08-16 17:03:24 +09004782
Nick Piggine692ab52007-07-26 13:40:43 +02004783static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02004784set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02004785 const char *procname, void *data, int maxlen,
Namhyung Kim201c3732012-08-16 17:03:24 +09004786 umode_t mode, proc_handler *proc_handler,
4787 bool load_idx)
Nick Piggine692ab52007-07-26 13:40:43 +02004788{
Nick Piggine692ab52007-07-26 13:40:43 +02004789 entry->procname = procname;
4790 entry->data = data;
4791 entry->maxlen = maxlen;
4792 entry->mode = mode;
4793 entry->proc_handler = proc_handler;
Namhyung Kim201c3732012-08-16 17:03:24 +09004794
4795 if (load_idx) {
4796 entry->extra1 = &min_load_idx;
4797 entry->extra2 = &max_load_idx;
4798 }
Nick Piggine692ab52007-07-26 13:40:43 +02004799}
4800
4801static struct ctl_table *
4802sd_alloc_ctl_domain_table(struct sched_domain *sd)
4803{
Ingo Molnara5d8c342008-10-09 11:35:51 +02004804 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02004805
Milton Millerad1cdc12007-10-15 17:00:19 +02004806 if (table == NULL)
4807 return NULL;
4808
Alexey Dobriyane0361852007-08-09 11:16:46 +02004809 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004810 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004811 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004812 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004813 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004814 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004815 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004816 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004817 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004818 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004819 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004820 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004821 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004822 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004823 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Namhyung Kim201c3732012-08-16 17:03:24 +09004824 sizeof(int), 0644, proc_dointvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004825 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Namhyung Kim201c3732012-08-16 17:03:24 +09004826 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004827 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02004828 &sd->cache_nice_tries,
Namhyung Kim201c3732012-08-16 17:03:24 +09004829 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004830 set_table_entry(&table[10], "flags", &sd->flags,
Namhyung Kim201c3732012-08-16 17:03:24 +09004831 sizeof(int), 0644, proc_dointvec_minmax, false);
Ingo Molnara5d8c342008-10-09 11:35:51 +02004832 set_table_entry(&table[11], "name", sd->name,
Namhyung Kim201c3732012-08-16 17:03:24 +09004833 CORENAME_MAX_SIZE, 0444, proc_dostring, false);
Ingo Molnara5d8c342008-10-09 11:35:51 +02004834 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02004835
4836 return table;
4837}
4838
Joe Perchesbe7002e2013-06-12 11:55:36 -07004839static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02004840{
4841 struct ctl_table *entry, *table;
4842 struct sched_domain *sd;
4843 int domain_num = 0, i;
4844 char buf[32];
4845
4846 for_each_domain(cpu, sd)
4847 domain_num++;
4848 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02004849 if (table == NULL)
4850 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02004851
4852 i = 0;
4853 for_each_domain(cpu, sd) {
4854 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02004855 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004856 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02004857 entry->child = sd_alloc_ctl_domain_table(sd);
4858 entry++;
4859 i++;
4860 }
4861 return table;
4862}
4863
4864static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02004865static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02004866{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004867 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02004868 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
4869 char buf[32];
4870
Milton Miller73785472007-10-24 18:23:48 +02004871 WARN_ON(sd_ctl_dir[0].child);
4872 sd_ctl_dir[0].child = entry;
4873
Milton Millerad1cdc12007-10-15 17:00:19 +02004874 if (entry == NULL)
4875 return;
4876
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004877 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02004878 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02004879 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004880 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02004881 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02004882 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02004883 }
Milton Miller73785472007-10-24 18:23:48 +02004884
4885 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02004886 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
4887}
Milton Miller6382bc92007-10-15 17:00:19 +02004888
Milton Miller73785472007-10-24 18:23:48 +02004889/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02004890static void unregister_sched_domain_sysctl(void)
4891{
Milton Miller73785472007-10-24 18:23:48 +02004892 if (sd_sysctl_header)
4893 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02004894 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02004895 if (sd_ctl_dir[0].child)
4896 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02004897}
Nick Piggine692ab52007-07-26 13:40:43 +02004898#else
Milton Miller6382bc92007-10-15 17:00:19 +02004899static void register_sched_domain_sysctl(void)
4900{
4901}
4902static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02004903{
4904}
4905#endif
4906
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004907static void set_rq_online(struct rq *rq)
4908{
4909 if (!rq->online) {
4910 const struct sched_class *class;
4911
Rusty Russellc6c49272008-11-25 02:35:05 +10304912 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004913 rq->online = 1;
4914
4915 for_each_class(class) {
4916 if (class->rq_online)
4917 class->rq_online(rq);
4918 }
4919 }
4920}
4921
4922static void set_rq_offline(struct rq *rq)
4923{
4924 if (rq->online) {
4925 const struct sched_class *class;
4926
4927 for_each_class(class) {
4928 if (class->rq_offline)
4929 class->rq_offline(rq);
4930 }
4931
Rusty Russellc6c49272008-11-25 02:35:05 +10304932 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004933 rq->online = 0;
4934 }
4935}
4936
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937/*
4938 * migration_call - callback that gets triggered when a CPU is added.
4939 * Here we can start up the necessary migration thread for the new CPU.
4940 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004941static int
Ingo Molnar48f24c42006-07-03 00:25:40 -07004942migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004944 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02004946 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004948 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004949
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02004951 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004953
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04004955 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004956 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04004957 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10304958 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004959
4960 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04004961 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004962 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004964
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04004966 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02004967 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01004968 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004969 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01004970 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10304971 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004972 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01004973 }
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004974 migrate_tasks(cpu);
4975 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004976 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra5d180232012-08-20 11:26:57 +02004977 break;
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004978
Peter Zijlstra5d180232012-08-20 11:26:57 +02004979 case CPU_DEAD:
Peter Zijlstraf319da02012-08-20 11:26:57 +02004980 calc_load_migrate(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01004981 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982#endif
4983 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02004984
4985 update_max_interval();
4986
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 return NOTIFY_OK;
4988}
4989
Paul Mackerrasf38b0822009-06-02 21:05:16 +10004990/*
4991 * Register at high priority so that task migration (migrate_all_tasks)
4992 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004993 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004995static struct notifier_block migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02004997 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998};
4999
Paul Gortmaker0db06282013-06-19 14:53:51 -04005000static int sched_cpu_active(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005001 unsigned long action, void *hcpu)
5002{
5003 switch (action & ~CPU_TASKS_FROZEN) {
Peter Zijlstra5fbd0362011-12-15 17:09:22 +01005004 case CPU_STARTING:
Tejun Heo3a101d02010-06-08 21:40:36 +02005005 case CPU_DOWN_FAILED:
5006 set_cpu_active((long)hcpu, true);
5007 return NOTIFY_OK;
5008 default:
5009 return NOTIFY_DONE;
5010 }
5011}
5012
Paul Gortmaker0db06282013-06-19 14:53:51 -04005013static int sched_cpu_inactive(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005014 unsigned long action, void *hcpu)
5015{
Peter Zijlstrade212f12013-12-19 11:54:45 +01005016 unsigned long flags;
5017 long cpu = (long)hcpu;
5018
Tejun Heo3a101d02010-06-08 21:40:36 +02005019 switch (action & ~CPU_TASKS_FROZEN) {
5020 case CPU_DOWN_PREPARE:
Peter Zijlstrade212f12013-12-19 11:54:45 +01005021 set_cpu_active(cpu, false);
5022
5023 /* explicitly allow suspend */
5024 if (!(action & CPU_TASKS_FROZEN)) {
5025 struct dl_bw *dl_b = dl_bw_of(cpu);
5026 bool overflow;
5027 int cpus;
5028
5029 raw_spin_lock_irqsave(&dl_b->lock, flags);
5030 cpus = dl_bw_cpus(cpu);
5031 overflow = __dl_overflow(dl_b, cpus, 0, 0);
5032 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
5033
5034 if (overflow)
5035 return notifier_from_errno(-EBUSY);
5036 }
Tejun Heo3a101d02010-06-08 21:40:36 +02005037 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005038 }
Peter Zijlstrade212f12013-12-19 11:54:45 +01005039
5040 return NOTIFY_DONE;
Tejun Heo3a101d02010-06-08 21:40:36 +02005041}
5042
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005043static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044{
5045 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005046 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005047
Tejun Heo3a101d02010-06-08 21:40:36 +02005048 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005049 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5050 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5052 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005053
Tejun Heo3a101d02010-06-08 21:40:36 +02005054 /* Register cpu active notifiers */
5055 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
5056 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
5057
Thomas Gleixnera004cd42009-07-21 09:54:05 +02005058 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005060early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061#endif
5062
5063#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005064
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005065static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
5066
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005067#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005068
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005069static __read_mostly int sched_debug_enabled;
Mike Travisf6630112009-11-17 18:22:15 -06005070
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005071static int __init sched_debug_setup(char *str)
Mike Travisf6630112009-11-17 18:22:15 -06005072{
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005073 sched_debug_enabled = 1;
Mike Travisf6630112009-11-17 18:22:15 -06005074
5075 return 0;
5076}
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005077early_param("sched_debug", sched_debug_setup);
5078
5079static inline bool sched_debug(void)
5080{
5081 return sched_debug_enabled;
5082}
Mike Travisf6630112009-11-17 18:22:15 -06005083
Mike Travis7c16ec52008-04-04 18:11:11 -07005084static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10305085 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005086{
5087 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07005088 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005089
Rusty Russell968ea6d2008-12-13 21:55:51 +10305090 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10305091 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005092
5093 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5094
5095 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005096 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005097 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005098 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5099 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005100 return -1;
5101 }
5102
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005103 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005104
Rusty Russell758b2cd2008-11-25 02:35:04 +10305105 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005106 printk(KERN_ERR "ERROR: domain->span does not contain "
5107 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005108 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10305109 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005110 printk(KERN_ERR "ERROR: domain->groups does not contain"
5111 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005112 }
5113
5114 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5115 do {
5116 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005117 printk("\n");
5118 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005119 break;
5120 }
5121
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005122 /*
5123 * Even though we initialize ->power to something semi-sane,
5124 * we leave power_orig unset. This allows us to detect if
5125 * domain iteration is still funny without causing /0 traps.
5126 */
5127 if (!group->sgp->power_orig) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005128 printk(KERN_CONT "\n");
5129 printk(KERN_ERR "ERROR: domain->cpu_power not "
5130 "set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005131 break;
5132 }
5133
Rusty Russell758b2cd2008-11-25 02:35:04 +10305134 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005135 printk(KERN_CONT "\n");
5136 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005137 break;
5138 }
5139
Peter Zijlstracb83b622012-04-17 15:49:36 +02005140 if (!(sd->flags & SD_OVERLAP) &&
5141 cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005142 printk(KERN_CONT "\n");
5143 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005144 break;
5145 }
5146
Rusty Russell758b2cd2008-11-25 02:35:04 +10305147 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005148
Rusty Russell968ea6d2008-12-13 21:55:51 +10305149 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305150
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005151 printk(KERN_CONT " %s", str);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005152 if (group->sgp->power != SCHED_POWER_SCALE) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005153 printk(KERN_CONT " (cpu_power = %d)",
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005154 group->sgp->power);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305155 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005156
5157 group = group->next;
5158 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005159 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005160
Rusty Russell758b2cd2008-11-25 02:35:04 +10305161 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005162 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005163
Rusty Russell758b2cd2008-11-25 02:35:04 +10305164 if (sd->parent &&
5165 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005166 printk(KERN_ERR "ERROR: parent span is not a superset "
5167 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005168 return 0;
5169}
5170
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171static void sched_domain_debug(struct sched_domain *sd, int cpu)
5172{
5173 int level = 0;
5174
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005175 if (!sched_debug_enabled)
Mike Travisf6630112009-11-17 18:22:15 -06005176 return;
5177
Nick Piggin41c7ce92005-06-25 14:57:24 -07005178 if (!sd) {
5179 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5180 return;
5181 }
5182
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5184
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005185 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005186 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 level++;
5189 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005190 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005191 break;
5192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005194#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005195# define sched_domain_debug(sd, cpu) do { } while (0)
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005196static inline bool sched_debug(void)
5197{
5198 return false;
5199}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005200#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005202static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005203{
Rusty Russell758b2cd2008-11-25 02:35:04 +10305204 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005205 return 1;
5206
5207 /* Following flags need at least 2 groups */
5208 if (sd->flags & (SD_LOAD_BALANCE |
5209 SD_BALANCE_NEWIDLE |
5210 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005211 SD_BALANCE_EXEC |
5212 SD_SHARE_CPUPOWER |
5213 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005214 if (sd->groups != sd->groups->next)
5215 return 0;
5216 }
5217
5218 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005219 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005220 return 0;
5221
5222 return 1;
5223}
5224
Ingo Molnar48f24c42006-07-03 00:25:40 -07005225static int
5226sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005227{
5228 unsigned long cflags = sd->flags, pflags = parent->flags;
5229
5230 if (sd_degenerate(parent))
5231 return 1;
5232
Rusty Russell758b2cd2008-11-25 02:35:04 +10305233 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005234 return 0;
5235
Suresh Siddha245af2c2005-06-25 14:57:25 -07005236 /* Flags needing groups don't count if only 1 group in parent */
5237 if (parent->groups == parent->groups->next) {
5238 pflags &= ~(SD_LOAD_BALANCE |
5239 SD_BALANCE_NEWIDLE |
5240 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005241 SD_BALANCE_EXEC |
5242 SD_SHARE_CPUPOWER |
Peter Zijlstra10866e622013-08-19 16:57:04 +02005243 SD_SHARE_PKG_RESOURCES |
5244 SD_PREFER_SIBLING);
Ken Chen54364992008-12-07 18:47:37 -08005245 if (nr_node_ids == 1)
5246 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005247 }
5248 if (~cflags & pflags)
5249 return 0;
5250
5251 return 1;
5252}
5253
Peter Zijlstradce840a2011-04-07 14:09:50 +02005254static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10305255{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005256 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01005257
Rusty Russell68e74562008-11-25 02:35:13 +10305258 cpupri_cleanup(&rd->cpupri);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005259 cpudl_cleanup(&rd->cpudl);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005260 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305261 free_cpumask_var(rd->rto_mask);
5262 free_cpumask_var(rd->online);
5263 free_cpumask_var(rd->span);
5264 kfree(rd);
5265}
5266
Gregory Haskins57d885f2008-01-25 21:08:18 +01005267static void rq_attach_root(struct rq *rq, struct root_domain *rd)
5268{
Ingo Molnara0490fa2009-02-12 11:35:40 +01005269 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005270 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005271
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005272 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005273
5274 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01005275 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005276
Rusty Russellc6c49272008-11-25 02:35:05 +10305277 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005278 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005279
Rusty Russellc6c49272008-11-25 02:35:05 +10305280 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01005281
Ingo Molnara0490fa2009-02-12 11:35:40 +01005282 /*
Shigeru Yoshida05159732013-11-17 12:12:36 +09005283 * If we dont want to free the old_rd yet then
Ingo Molnara0490fa2009-02-12 11:35:40 +01005284 * set old_rd to NULL to skip the freeing later
5285 * in this function:
5286 */
5287 if (!atomic_dec_and_test(&old_rd->refcount))
5288 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005289 }
5290
5291 atomic_inc(&rd->refcount);
5292 rq->rd = rd;
5293
Rusty Russellc6c49272008-11-25 02:35:05 +10305294 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04005295 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005296 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005297
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005298 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01005299
5300 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02005301 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005302}
5303
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005304static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005305{
5306 memset(rd, 0, sizeof(*rd));
5307
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005308 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08005309 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005310 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305311 goto free_span;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005312 if (!alloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305313 goto free_online;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005314 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
5315 goto free_dlo_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02005316
Dario Faggioli332ac172013-11-07 14:43:45 +01005317 init_dl_bw(&rd->dl_bw);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005318 if (cpudl_init(&rd->cpudl) != 0)
5319 goto free_dlo_mask;
Dario Faggioli332ac172013-11-07 14:43:45 +01005320
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005321 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10305322 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10305323 return 0;
5324
Rusty Russell68e74562008-11-25 02:35:13 +10305325free_rto_mask:
5326 free_cpumask_var(rd->rto_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005327free_dlo_mask:
5328 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305329free_online:
5330 free_cpumask_var(rd->online);
5331free_span:
5332 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08005333out:
Rusty Russellc6c49272008-11-25 02:35:05 +10305334 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005335}
5336
Peter Zijlstra029632f2011-10-25 10:00:11 +02005337/*
5338 * By default the system creates a single root-domain with all cpus as
5339 * members (mimicking the global state we have today).
5340 */
5341struct root_domain def_root_domain;
5342
Gregory Haskins57d885f2008-01-25 21:08:18 +01005343static void init_defrootdomain(void)
5344{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005345 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10305346
Gregory Haskins57d885f2008-01-25 21:08:18 +01005347 atomic_set(&def_root_domain.refcount, 1);
5348}
5349
Gregory Haskinsdc938522008-01-25 21:08:26 +01005350static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005351{
5352 struct root_domain *rd;
5353
5354 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
5355 if (!rd)
5356 return NULL;
5357
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005358 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305359 kfree(rd);
5360 return NULL;
5361 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01005362
5363 return rd;
5364}
5365
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005366static void free_sched_groups(struct sched_group *sg, int free_sgp)
5367{
5368 struct sched_group *tmp, *first;
5369
5370 if (!sg)
5371 return;
5372
5373 first = sg;
5374 do {
5375 tmp = sg->next;
5376
5377 if (free_sgp && atomic_dec_and_test(&sg->sgp->ref))
5378 kfree(sg->sgp);
5379
5380 kfree(sg);
5381 sg = tmp;
5382 } while (sg != first);
5383}
5384
Peter Zijlstradce840a2011-04-07 14:09:50 +02005385static void free_sched_domain(struct rcu_head *rcu)
5386{
5387 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005388
5389 /*
5390 * If its an overlapping domain it has private groups, iterate and
5391 * nuke them all.
5392 */
5393 if (sd->flags & SD_OVERLAP) {
5394 free_sched_groups(sd->groups, 1);
5395 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005396 kfree(sd->groups->sgp);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005397 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005398 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005399 kfree(sd);
5400}
5401
5402static void destroy_sched_domain(struct sched_domain *sd, int cpu)
5403{
5404 call_rcu(&sd->rcu, free_sched_domain);
5405}
5406
5407static void destroy_sched_domains(struct sched_domain *sd, int cpu)
5408{
5409 for (; sd; sd = sd->parent)
5410 destroy_sched_domain(sd, cpu);
5411}
5412
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413/*
Peter Zijlstra518cd622011-12-07 15:07:31 +01005414 * Keep a special pointer to the highest sched_domain that has
5415 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
5416 * allows us to avoid some pointer chasing select_idle_sibling().
5417 *
5418 * Also keep a unique ID per domain (we use the first cpu number in
5419 * the cpumask of the domain), this allows us to quickly tell if
Peter Zijlstra39be3502012-01-26 12:44:34 +01005420 * two cpus are in the same cache domain, see cpus_share_cache().
Peter Zijlstra518cd622011-12-07 15:07:31 +01005421 */
5422DEFINE_PER_CPU(struct sched_domain *, sd_llc);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005423DEFINE_PER_CPU(int, sd_llc_size);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005424DEFINE_PER_CPU(int, sd_llc_id);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005425DEFINE_PER_CPU(struct sched_domain *, sd_numa);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305426DEFINE_PER_CPU(struct sched_domain *, sd_busy);
5427DEFINE_PER_CPU(struct sched_domain *, sd_asym);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005428
5429static void update_top_cache_domain(int cpu)
5430{
5431 struct sched_domain *sd;
Mel Gorman5d4cf992013-12-17 09:21:25 +00005432 struct sched_domain *busy_sd = NULL;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005433 int id = cpu;
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005434 int size = 1;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005435
5436 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005437 if (sd) {
Peter Zijlstra518cd622011-12-07 15:07:31 +01005438 id = cpumask_first(sched_domain_span(sd));
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005439 size = cpumask_weight(sched_domain_span(sd));
Mel Gorman5d4cf992013-12-17 09:21:25 +00005440 busy_sd = sd->parent; /* sd_busy */
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005441 }
Mel Gorman5d4cf992013-12-17 09:21:25 +00005442 rcu_assign_pointer(per_cpu(sd_busy, cpu), busy_sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005443
5444 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005445 per_cpu(sd_llc_size, cpu) = size;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005446 per_cpu(sd_llc_id, cpu) = id;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005447
5448 sd = lowest_flag_domain(cpu, SD_NUMA);
5449 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305450
5451 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
5452 rcu_assign_pointer(per_cpu(sd_asym, cpu), sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005453}
5454
5455/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01005456 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 * hold the hotplug lock.
5458 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01005459static void
5460cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005462 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005463 struct sched_domain *tmp;
5464
5465 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08005466 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005467 struct sched_domain *parent = tmp->parent;
5468 if (!parent)
5469 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08005470
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005471 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005472 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005473 if (parent->parent)
5474 parent->parent->child = tmp;
Peter Zijlstra10866e622013-08-19 16:57:04 +02005475 /*
5476 * Transfer SD_PREFER_SIBLING down in case of a
5477 * degenerate parent; the spans match for this
5478 * so the property transfers.
5479 */
5480 if (parent->flags & SD_PREFER_SIBLING)
5481 tmp->flags |= SD_PREFER_SIBLING;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005482 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08005483 } else
5484 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005485 }
5486
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005487 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005488 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005489 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005490 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005491 if (sd)
5492 sd->child = NULL;
5493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005495 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
Gregory Haskins57d885f2008-01-25 21:08:18 +01005497 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005498 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07005499 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005500 destroy_sched_domains(tmp, cpu);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005501
5502 update_top_cache_domain(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503}
5504
5505/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10305506static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507
5508/* Setup the mask of cpus configured for isolated domains */
5509static int __init isolated_cpu_setup(char *str)
5510{
Rusty Russellbdddd292009-12-02 14:09:16 +10305511 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10305512 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 return 1;
5514}
5515
Ingo Molnar8927f492007-10-15 17:00:13 +02005516__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
Peter Zijlstrad3081f52011-04-07 14:09:59 +02005518static const struct cpumask *cpu_cpu_mask(int cpu)
5519{
5520 return cpumask_of_node(cpu_to_node(cpu));
5521}
5522
Peter Zijlstradce840a2011-04-07 14:09:50 +02005523struct sd_data {
5524 struct sched_domain **__percpu sd;
5525 struct sched_group **__percpu sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005526 struct sched_group_power **__percpu sgp;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005527};
5528
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005529struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005530 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005531 struct root_domain *rd;
5532};
5533
Andreas Herrmann2109b992009-08-18 12:53:00 +02005534enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005535 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005536 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02005537 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02005538 sa_none,
5539};
5540
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005541struct sched_domain_topology_level;
5542
5543typedef struct sched_domain *(*sched_domain_init_f)(struct sched_domain_topology_level *tl, int cpu);
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005544typedef const struct cpumask *(*sched_domain_mask_f)(int cpu);
5545
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005546#define SDTL_OVERLAP 0x01
5547
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005548struct sched_domain_topology_level {
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005549 sched_domain_init_f init;
5550 sched_domain_mask_f mask;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005551 int flags;
Peter Zijlstracb83b622012-04-17 15:49:36 +02005552 int numa_level;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005553 struct sd_data data;
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005554};
5555
Peter Zijlstrac1174872012-05-31 14:47:33 +02005556/*
5557 * Build an iteration mask that can exclude certain CPUs from the upwards
5558 * domain traversal.
5559 *
5560 * Asymmetric node setups can result in situations where the domain tree is of
5561 * unequal depth, make sure to skip domains that already cover the entire
5562 * range.
5563 *
5564 * In that case build_sched_domains() will have terminated the iteration early
5565 * and our sibling sd spans will be empty. Domains should always include the
5566 * cpu they're built on, so check that.
5567 *
5568 */
5569static void build_group_mask(struct sched_domain *sd, struct sched_group *sg)
5570{
5571 const struct cpumask *span = sched_domain_span(sd);
5572 struct sd_data *sdd = sd->private;
5573 struct sched_domain *sibling;
5574 int i;
5575
5576 for_each_cpu(i, span) {
5577 sibling = *per_cpu_ptr(sdd->sd, i);
5578 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
5579 continue;
5580
5581 cpumask_set_cpu(i, sched_group_mask(sg));
5582 }
5583}
5584
5585/*
5586 * Return the canonical balance cpu for this group, this is the first cpu
5587 * of this group that's also in the iteration mask.
5588 */
5589int group_balance_cpu(struct sched_group *sg)
5590{
5591 return cpumask_first_and(sched_group_cpus(sg), sched_group_mask(sg));
5592}
5593
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005594static int
5595build_overlap_sched_groups(struct sched_domain *sd, int cpu)
5596{
5597 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
5598 const struct cpumask *span = sched_domain_span(sd);
5599 struct cpumask *covered = sched_domains_tmpmask;
5600 struct sd_data *sdd = sd->private;
5601 struct sched_domain *child;
5602 int i;
5603
5604 cpumask_clear(covered);
5605
5606 for_each_cpu(i, span) {
5607 struct cpumask *sg_span;
5608
5609 if (cpumask_test_cpu(i, covered))
5610 continue;
5611
Peter Zijlstrac1174872012-05-31 14:47:33 +02005612 child = *per_cpu_ptr(sdd->sd, i);
5613
5614 /* See the comment near build_group_mask(). */
5615 if (!cpumask_test_cpu(i, sched_domain_span(child)))
5616 continue;
5617
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005618 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
Suresh Siddha4d78a222011-11-18 15:03:29 -08005619 GFP_KERNEL, cpu_to_node(cpu));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005620
5621 if (!sg)
5622 goto fail;
5623
5624 sg_span = sched_group_cpus(sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005625 if (child->child) {
5626 child = child->child;
5627 cpumask_copy(sg_span, sched_domain_span(child));
5628 } else
5629 cpumask_set_cpu(i, sg_span);
5630
5631 cpumask_or(covered, covered, sg_span);
5632
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005633 sg->sgp = *per_cpu_ptr(sdd->sgp, i);
Peter Zijlstrac1174872012-05-31 14:47:33 +02005634 if (atomic_inc_return(&sg->sgp->ref) == 1)
5635 build_group_mask(sd, sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005636
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005637 /*
5638 * Initialize sgp->power such that even if we mess up the
5639 * domains and no possible iteration will get us here, we won't
5640 * die on a /0 trap.
5641 */
5642 sg->sgp->power = SCHED_POWER_SCALE * cpumask_weight(sg_span);
Peter Zijlstra8e8339a2013-12-11 11:09:53 +01005643 sg->sgp->power_orig = sg->sgp->power;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005644
5645 /*
5646 * Make sure the first group of this domain contains the
5647 * canonical balance cpu. Otherwise the sched_domain iteration
5648 * breaks. See update_sg_lb_stats().
5649 */
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005650 if ((!groups && cpumask_test_cpu(cpu, sg_span)) ||
Peter Zijlstrac1174872012-05-31 14:47:33 +02005651 group_balance_cpu(sg) == cpu)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005652 groups = sg;
5653
5654 if (!first)
5655 first = sg;
5656 if (last)
5657 last->next = sg;
5658 last = sg;
5659 last->next = first;
5660 }
5661 sd->groups = groups;
5662
5663 return 0;
5664
5665fail:
5666 free_sched_groups(first, 0);
5667
5668 return -ENOMEM;
5669}
5670
Peter Zijlstradce840a2011-04-07 14:09:50 +02005671static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005673 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
5674 struct sched_domain *child = sd->child;
5675
5676 if (child)
5677 cpu = cpumask_first(sched_domain_span(child));
5678
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005679 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005680 *sg = *per_cpu_ptr(sdd->sg, cpu);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005681 (*sg)->sgp = *per_cpu_ptr(sdd->sgp, cpu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005682 atomic_set(&(*sg)->sgp->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005683 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005684
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 return cpu;
5686}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687
Ingo Molnar48f24c42006-07-03 00:25:40 -07005688/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02005689 * build_sched_groups will build a circular linked list of the groups
5690 * covered by the given span, and will set each group's ->cpumask correctly,
5691 * and ->cpu_power to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005692 *
5693 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07005694 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005695static int
5696build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005697{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005698 struct sched_group *first = NULL, *last = NULL;
5699 struct sd_data *sdd = sd->private;
5700 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005701 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005702 int i;
5703
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005704 get_group(cpu, sdd, &sd->groups);
5705 atomic_inc(&sd->groups->ref);
5706
Viresh Kumar09366292013-06-11 16:32:43 +05305707 if (cpu != cpumask_first(span))
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005708 return 0;
5709
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005710 lockdep_assert_held(&sched_domains_mutex);
5711 covered = sched_domains_tmpmask;
5712
Peter Zijlstradce840a2011-04-07 14:09:50 +02005713 cpumask_clear(covered);
5714
5715 for_each_cpu(i, span) {
5716 struct sched_group *sg;
Viresh Kumarcd08e922013-06-11 16:32:44 +05305717 int group, j;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005718
5719 if (cpumask_test_cpu(i, covered))
5720 continue;
5721
Viresh Kumarcd08e922013-06-11 16:32:44 +05305722 group = get_group(i, sdd, &sg);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005723 cpumask_clear(sched_group_cpus(sg));
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005724 sg->sgp->power = 0;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005725 cpumask_setall(sched_group_mask(sg));
Peter Zijlstradce840a2011-04-07 14:09:50 +02005726
5727 for_each_cpu(j, span) {
5728 if (get_group(j, sdd, NULL) != group)
5729 continue;
5730
5731 cpumask_set_cpu(j, covered);
5732 cpumask_set_cpu(j, sched_group_cpus(sg));
5733 }
5734
5735 if (!first)
5736 first = sg;
5737 if (last)
5738 last->next = sg;
5739 last = sg;
5740 }
5741 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005742
5743 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005744}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005745
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005747 * Initialize sched groups cpu_power.
5748 *
5749 * cpu_power indicates the capacity of sched group, which is used while
5750 * distributing the load between different sched groups in a sched domain.
5751 * Typically cpu_power for all the groups in a sched domain will be same unless
5752 * there are asymmetries in the topology. If there are asymmetries, group
5753 * having more cpu_power will pickup more load compared to the group having
5754 * less cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005755 */
5756static void init_sched_groups_power(int cpu, struct sched_domain *sd)
5757{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005758 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005759
Viresh Kumar94c95ba2013-06-11 16:32:45 +05305760 WARN_ON(!sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005761
5762 do {
5763 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
5764 sg = sg->next;
5765 } while (sg != sd->groups);
5766
Peter Zijlstrac1174872012-05-31 14:47:33 +02005767 if (cpu != group_balance_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005768 return;
5769
Peter Zijlstrad274cb32011-04-07 14:09:43 +02005770 update_group_power(sd, cpu);
Suresh Siddha69e1e812011-12-01 17:07:33 -08005771 atomic_set(&sg->sgp->nr_busy_cpus, sg->group_weight);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005772}
5773
Peter Zijlstra029632f2011-10-25 10:00:11 +02005774int __weak arch_sd_sibling_asym_packing(void)
5775{
5776 return 0*SD_ASYM_PACKING;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005777}
5778
5779/*
Mike Travis7c16ec52008-04-04 18:11:11 -07005780 * Initializers for schedule domains
5781 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
5782 */
5783
Ingo Molnara5d8c342008-10-09 11:35:51 +02005784#ifdef CONFIG_SCHED_DEBUG
5785# define SD_INIT_NAME(sd, type) sd->name = #type
5786#else
5787# define SD_INIT_NAME(sd, type) do { } while (0)
5788#endif
5789
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005790#define SD_INIT_FUNC(type) \
5791static noinline struct sched_domain * \
5792sd_init_##type(struct sched_domain_topology_level *tl, int cpu) \
5793{ \
5794 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu); \
5795 *sd = SD_##type##_INIT; \
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005796 SD_INIT_NAME(sd, type); \
5797 sd->private = &tl->data; \
5798 return sd; \
Mike Travis7c16ec52008-04-04 18:11:11 -07005799}
5800
5801SD_INIT_FUNC(CPU)
Mike Travis7c16ec52008-04-04 18:11:11 -07005802#ifdef CONFIG_SCHED_SMT
5803 SD_INIT_FUNC(SIBLING)
5804#endif
5805#ifdef CONFIG_SCHED_MC
5806 SD_INIT_FUNC(MC)
5807#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02005808#ifdef CONFIG_SCHED_BOOK
5809 SD_INIT_FUNC(BOOK)
5810#endif
Mike Travis7c16ec52008-04-04 18:11:11 -07005811
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005812static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02005813int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005814
5815static int __init setup_relax_domain_level(char *str)
5816{
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05005817 if (kstrtoint(str, 0, &default_relax_domain_level))
5818 pr_warn("Unable to set relax_domain_level\n");
Li Zefan30e0e172008-05-13 10:27:17 +08005819
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005820 return 1;
5821}
5822__setup("relax_domain_level=", setup_relax_domain_level);
5823
5824static void set_domain_attribute(struct sched_domain *sd,
5825 struct sched_domain_attr *attr)
5826{
5827 int request;
5828
5829 if (!attr || attr->relax_domain_level < 0) {
5830 if (default_relax_domain_level < 0)
5831 return;
5832 else
5833 request = default_relax_domain_level;
5834 } else
5835 request = attr->relax_domain_level;
5836 if (request < sd->level) {
5837 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005838 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005839 } else {
5840 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005841 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005842 }
5843}
5844
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005845static void __sdt_free(const struct cpumask *cpu_map);
5846static int __sdt_alloc(const struct cpumask *cpu_map);
5847
Andreas Herrmann2109b992009-08-18 12:53:00 +02005848static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
5849 const struct cpumask *cpu_map)
5850{
5851 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005852 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02005853 if (!atomic_read(&d->rd->refcount))
5854 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005855 case sa_sd:
5856 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02005857 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005858 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02005859 case sa_none:
5860 break;
5861 }
5862}
5863
5864static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
5865 const struct cpumask *cpu_map)
5866{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005867 memset(d, 0, sizeof(*d));
5868
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005869 if (__sdt_alloc(cpu_map))
5870 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005871 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005872 if (!d->sd)
5873 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005874 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02005875 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005876 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005877 return sa_rootdomain;
5878}
5879
Peter Zijlstradce840a2011-04-07 14:09:50 +02005880/*
5881 * NULL the sd_data elements we've used to build the sched_domain and
5882 * sched_group structure so that the subsequent __free_domain_allocs()
5883 * will not free the data we're using.
5884 */
5885static void claim_allocations(int cpu, struct sched_domain *sd)
5886{
5887 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005888
5889 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
5890 *per_cpu_ptr(sdd->sd, cpu) = NULL;
5891
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005892 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02005893 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005894
5895 if (atomic_read(&(*per_cpu_ptr(sdd->sgp, cpu))->ref))
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005896 *per_cpu_ptr(sdd->sgp, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005897}
5898
Andreas Herrmannd8173532009-08-18 12:57:03 +02005899#ifdef CONFIG_SCHED_SMT
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005900static const struct cpumask *cpu_smt_mask(int cpu)
5901{
5902 return topology_thread_cpumask(cpu);
Andreas Herrmannd8173532009-08-18 12:57:03 +02005903}
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005904#endif
Andreas Herrmannd8173532009-08-18 12:57:03 +02005905
Peter Zijlstrad069b912011-04-07 14:10:02 +02005906/*
5907 * Topology list, bottom-up.
5908 */
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005909static struct sched_domain_topology_level default_topology[] = {
Peter Zijlstrad069b912011-04-07 14:10:02 +02005910#ifdef CONFIG_SCHED_SMT
5911 { sd_init_SIBLING, cpu_smt_mask, },
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005912#endif
5913#ifdef CONFIG_SCHED_MC
5914 { sd_init_MC, cpu_coregroup_mask, },
5915#endif
Peter Zijlstrad069b912011-04-07 14:10:02 +02005916#ifdef CONFIG_SCHED_BOOK
5917 { sd_init_BOOK, cpu_book_mask, },
5918#endif
5919 { sd_init_CPU, cpu_cpu_mask, },
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005920 { NULL, },
5921};
5922
5923static struct sched_domain_topology_level *sched_domain_topology = default_topology;
5924
Viresh Kumar27723a62013-06-10 16:27:20 +05305925#define for_each_sd_topology(tl) \
5926 for (tl = sched_domain_topology; tl->init; tl++)
5927
Peter Zijlstracb83b622012-04-17 15:49:36 +02005928#ifdef CONFIG_NUMA
5929
5930static int sched_domains_numa_levels;
Peter Zijlstracb83b622012-04-17 15:49:36 +02005931static int *sched_domains_numa_distance;
5932static struct cpumask ***sched_domains_numa_masks;
5933static int sched_domains_curr_level;
5934
Peter Zijlstracb83b622012-04-17 15:49:36 +02005935static inline int sd_local_flags(int level)
5936{
Alex Shi10717dc2012-06-06 14:52:51 +08005937 if (sched_domains_numa_distance[level] > RECLAIM_DISTANCE)
Peter Zijlstracb83b622012-04-17 15:49:36 +02005938 return 0;
5939
5940 return SD_BALANCE_EXEC | SD_BALANCE_FORK | SD_WAKE_AFFINE;
5941}
5942
5943static struct sched_domain *
5944sd_numa_init(struct sched_domain_topology_level *tl, int cpu)
5945{
5946 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu);
5947 int level = tl->numa_level;
5948 int sd_weight = cpumask_weight(
5949 sched_domains_numa_masks[level][cpu_to_node(cpu)]);
5950
5951 *sd = (struct sched_domain){
5952 .min_interval = sd_weight,
5953 .max_interval = 2*sd_weight,
5954 .busy_factor = 32,
Peter Zijlstra870a0bb2012-05-11 00:26:27 +02005955 .imbalance_pct = 125,
Peter Zijlstracb83b622012-04-17 15:49:36 +02005956 .cache_nice_tries = 2,
5957 .busy_idx = 3,
5958 .idle_idx = 2,
5959 .newidle_idx = 0,
5960 .wake_idx = 0,
5961 .forkexec_idx = 0,
5962
5963 .flags = 1*SD_LOAD_BALANCE
5964 | 1*SD_BALANCE_NEWIDLE
5965 | 0*SD_BALANCE_EXEC
5966 | 0*SD_BALANCE_FORK
5967 | 0*SD_BALANCE_WAKE
5968 | 0*SD_WAKE_AFFINE
Peter Zijlstracb83b622012-04-17 15:49:36 +02005969 | 0*SD_SHARE_CPUPOWER
Peter Zijlstracb83b622012-04-17 15:49:36 +02005970 | 0*SD_SHARE_PKG_RESOURCES
5971 | 1*SD_SERIALIZE
5972 | 0*SD_PREFER_SIBLING
Mel Gorman3a7053b2013-10-07 11:29:00 +01005973 | 1*SD_NUMA
Peter Zijlstracb83b622012-04-17 15:49:36 +02005974 | sd_local_flags(level)
5975 ,
5976 .last_balance = jiffies,
5977 .balance_interval = sd_weight,
5978 };
5979 SD_INIT_NAME(sd, NUMA);
5980 sd->private = &tl->data;
5981
5982 /*
5983 * Ugly hack to pass state to sd_numa_mask()...
5984 */
5985 sched_domains_curr_level = tl->numa_level;
5986
5987 return sd;
5988}
5989
5990static const struct cpumask *sd_numa_mask(int cpu)
5991{
5992 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
5993}
5994
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005995static void sched_numa_warn(const char *str)
5996{
5997 static int done = false;
5998 int i,j;
5999
6000 if (done)
6001 return;
6002
6003 done = true;
6004
6005 printk(KERN_WARNING "ERROR: %s\n\n", str);
6006
6007 for (i = 0; i < nr_node_ids; i++) {
6008 printk(KERN_WARNING " ");
6009 for (j = 0; j < nr_node_ids; j++)
6010 printk(KERN_CONT "%02d ", node_distance(i,j));
6011 printk(KERN_CONT "\n");
6012 }
6013 printk(KERN_WARNING "\n");
6014}
6015
6016static bool find_numa_distance(int distance)
6017{
6018 int i;
6019
6020 if (distance == node_distance(0, 0))
6021 return true;
6022
6023 for (i = 0; i < sched_domains_numa_levels; i++) {
6024 if (sched_domains_numa_distance[i] == distance)
6025 return true;
6026 }
6027
6028 return false;
6029}
6030
Peter Zijlstracb83b622012-04-17 15:49:36 +02006031static void sched_init_numa(void)
6032{
6033 int next_distance, curr_distance = node_distance(0, 0);
6034 struct sched_domain_topology_level *tl;
6035 int level = 0;
6036 int i, j, k;
6037
Peter Zijlstracb83b622012-04-17 15:49:36 +02006038 sched_domains_numa_distance = kzalloc(sizeof(int) * nr_node_ids, GFP_KERNEL);
6039 if (!sched_domains_numa_distance)
6040 return;
6041
6042 /*
6043 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
6044 * unique distances in the node_distance() table.
6045 *
6046 * Assumes node_distance(0,j) includes all distances in
6047 * node_distance(i,j) in order to avoid cubic time.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006048 */
6049 next_distance = curr_distance;
6050 for (i = 0; i < nr_node_ids; i++) {
6051 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006052 for (k = 0; k < nr_node_ids; k++) {
6053 int distance = node_distance(i, k);
6054
6055 if (distance > curr_distance &&
6056 (distance < next_distance ||
6057 next_distance == curr_distance))
6058 next_distance = distance;
6059
6060 /*
6061 * While not a strong assumption it would be nice to know
6062 * about cases where if node A is connected to B, B is not
6063 * equally connected to A.
6064 */
6065 if (sched_debug() && node_distance(k, i) != distance)
6066 sched_numa_warn("Node-distance not symmetric");
6067
6068 if (sched_debug() && i && !find_numa_distance(distance))
6069 sched_numa_warn("Node-0 not representative");
6070 }
6071 if (next_distance != curr_distance) {
6072 sched_domains_numa_distance[level++] = next_distance;
6073 sched_domains_numa_levels = level;
6074 curr_distance = next_distance;
6075 } else break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006076 }
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006077
6078 /*
6079 * In case of sched_debug() we verify the above assumption.
6080 */
6081 if (!sched_debug())
6082 break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006083 }
6084 /*
6085 * 'level' contains the number of unique distances, excluding the
6086 * identity distance node_distance(i,i).
6087 *
Viresh Kumar28b4a522013-04-05 16:26:46 +05306088 * The sched_domains_numa_distance[] array includes the actual distance
Peter Zijlstracb83b622012-04-17 15:49:36 +02006089 * numbers.
6090 */
6091
Tang Chen5f7865f2012-09-25 21:12:30 +08006092 /*
6093 * Here, we should temporarily reset sched_domains_numa_levels to 0.
6094 * If it fails to allocate memory for array sched_domains_numa_masks[][],
6095 * the array will contain less then 'level' members. This could be
6096 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
6097 * in other functions.
6098 *
6099 * We reset it to 'level' at the end of this function.
6100 */
6101 sched_domains_numa_levels = 0;
6102
Peter Zijlstracb83b622012-04-17 15:49:36 +02006103 sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL);
6104 if (!sched_domains_numa_masks)
6105 return;
6106
6107 /*
6108 * Now for each level, construct a mask per node which contains all
6109 * cpus of nodes that are that many hops away from us.
6110 */
6111 for (i = 0; i < level; i++) {
6112 sched_domains_numa_masks[i] =
6113 kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
6114 if (!sched_domains_numa_masks[i])
6115 return;
6116
6117 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstra2ea45802012-05-25 09:26:43 +02006118 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
Peter Zijlstracb83b622012-04-17 15:49:36 +02006119 if (!mask)
6120 return;
6121
6122 sched_domains_numa_masks[i][j] = mask;
6123
6124 for (k = 0; k < nr_node_ids; k++) {
Peter Zijlstradd7d8632012-05-11 00:56:20 +02006125 if (node_distance(j, k) > sched_domains_numa_distance[i])
Peter Zijlstracb83b622012-04-17 15:49:36 +02006126 continue;
6127
6128 cpumask_or(mask, mask, cpumask_of_node(k));
6129 }
6130 }
6131 }
6132
6133 tl = kzalloc((ARRAY_SIZE(default_topology) + level) *
6134 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
6135 if (!tl)
6136 return;
6137
6138 /*
6139 * Copy the default topology bits..
6140 */
6141 for (i = 0; default_topology[i].init; i++)
6142 tl[i] = default_topology[i];
6143
6144 /*
6145 * .. and append 'j' levels of NUMA goodness.
6146 */
6147 for (j = 0; j < level; i++, j++) {
6148 tl[i] = (struct sched_domain_topology_level){
6149 .init = sd_numa_init,
6150 .mask = sd_numa_mask,
6151 .flags = SDTL_OVERLAP,
6152 .numa_level = j,
6153 };
6154 }
6155
6156 sched_domain_topology = tl;
Tang Chen5f7865f2012-09-25 21:12:30 +08006157
6158 sched_domains_numa_levels = level;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006159}
Tang Chen301a5cb2012-09-25 21:12:31 +08006160
6161static void sched_domains_numa_masks_set(int cpu)
6162{
6163 int i, j;
6164 int node = cpu_to_node(cpu);
6165
6166 for (i = 0; i < sched_domains_numa_levels; i++) {
6167 for (j = 0; j < nr_node_ids; j++) {
6168 if (node_distance(j, node) <= sched_domains_numa_distance[i])
6169 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
6170 }
6171 }
6172}
6173
6174static void sched_domains_numa_masks_clear(int cpu)
6175{
6176 int i, j;
6177 for (i = 0; i < sched_domains_numa_levels; i++) {
6178 for (j = 0; j < nr_node_ids; j++)
6179 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
6180 }
6181}
6182
6183/*
6184 * Update sched_domains_numa_masks[level][node] array when new cpus
6185 * are onlined.
6186 */
6187static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6188 unsigned long action,
6189 void *hcpu)
6190{
6191 int cpu = (long)hcpu;
6192
6193 switch (action & ~CPU_TASKS_FROZEN) {
6194 case CPU_ONLINE:
6195 sched_domains_numa_masks_set(cpu);
6196 break;
6197
6198 case CPU_DEAD:
6199 sched_domains_numa_masks_clear(cpu);
6200 break;
6201
6202 default:
6203 return NOTIFY_DONE;
6204 }
6205
6206 return NOTIFY_OK;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006207}
6208#else
6209static inline void sched_init_numa(void)
6210{
6211}
Tang Chen301a5cb2012-09-25 21:12:31 +08006212
6213static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6214 unsigned long action,
6215 void *hcpu)
6216{
6217 return 0;
6218}
Peter Zijlstracb83b622012-04-17 15:49:36 +02006219#endif /* CONFIG_NUMA */
6220
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006221static int __sdt_alloc(const struct cpumask *cpu_map)
6222{
6223 struct sched_domain_topology_level *tl;
6224 int j;
6225
Viresh Kumar27723a62013-06-10 16:27:20 +05306226 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006227 struct sd_data *sdd = &tl->data;
6228
6229 sdd->sd = alloc_percpu(struct sched_domain *);
6230 if (!sdd->sd)
6231 return -ENOMEM;
6232
6233 sdd->sg = alloc_percpu(struct sched_group *);
6234 if (!sdd->sg)
6235 return -ENOMEM;
6236
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006237 sdd->sgp = alloc_percpu(struct sched_group_power *);
6238 if (!sdd->sgp)
6239 return -ENOMEM;
6240
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006241 for_each_cpu(j, cpu_map) {
6242 struct sched_domain *sd;
6243 struct sched_group *sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006244 struct sched_group_power *sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006245
6246 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
6247 GFP_KERNEL, cpu_to_node(j));
6248 if (!sd)
6249 return -ENOMEM;
6250
6251 *per_cpu_ptr(sdd->sd, j) = sd;
6252
6253 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
6254 GFP_KERNEL, cpu_to_node(j));
6255 if (!sg)
6256 return -ENOMEM;
6257
Igor Mammedov30b4e9e2012-05-09 12:38:28 +02006258 sg->next = sg;
6259
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006260 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006261
Peter Zijlstrac1174872012-05-31 14:47:33 +02006262 sgp = kzalloc_node(sizeof(struct sched_group_power) + cpumask_size(),
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006263 GFP_KERNEL, cpu_to_node(j));
6264 if (!sgp)
6265 return -ENOMEM;
6266
6267 *per_cpu_ptr(sdd->sgp, j) = sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006268 }
6269 }
6270
6271 return 0;
6272}
6273
6274static void __sdt_free(const struct cpumask *cpu_map)
6275{
6276 struct sched_domain_topology_level *tl;
6277 int j;
6278
Viresh Kumar27723a62013-06-10 16:27:20 +05306279 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006280 struct sd_data *sdd = &tl->data;
6281
6282 for_each_cpu(j, cpu_map) {
he, bofb2cf2c2012-04-25 19:59:21 +08006283 struct sched_domain *sd;
6284
6285 if (sdd->sd) {
6286 sd = *per_cpu_ptr(sdd->sd, j);
6287 if (sd && (sd->flags & SD_OVERLAP))
6288 free_sched_groups(sd->groups, 0);
6289 kfree(*per_cpu_ptr(sdd->sd, j));
6290 }
6291
6292 if (sdd->sg)
6293 kfree(*per_cpu_ptr(sdd->sg, j));
6294 if (sdd->sgp)
6295 kfree(*per_cpu_ptr(sdd->sgp, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006296 }
6297 free_percpu(sdd->sd);
he, bofb2cf2c2012-04-25 19:59:21 +08006298 sdd->sd = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006299 free_percpu(sdd->sg);
he, bofb2cf2c2012-04-25 19:59:21 +08006300 sdd->sg = NULL;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006301 free_percpu(sdd->sgp);
he, bofb2cf2c2012-04-25 19:59:21 +08006302 sdd->sgp = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006303 }
6304}
6305
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006306struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306307 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
6308 struct sched_domain *child, int cpu)
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006309{
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006310 struct sched_domain *sd = tl->init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006311 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02006312 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006313
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006314 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02006315 if (child) {
6316 sd->level = child->level + 1;
6317 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02006318 child->parent = sd;
Viresh Kumarc75e0122013-06-10 16:27:19 +05306319 sd->child = child;
Peter Zijlstra60495e72011-04-07 14:10:04 +02006320 }
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05006321 set_domain_attribute(sd, attr);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006322
6323 return sd;
6324}
6325
Mike Travis7c16ec52008-04-04 18:11:11 -07006326/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006327 * Build sched domains for a given set of cpus and attach the sched domains
6328 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006330static int build_sched_domains(const struct cpumask *cpu_map,
6331 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332{
Viresh Kumar1c632162013-06-10 16:27:18 +05306333 enum s_alloc alloc_state;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006334 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006335 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02006336 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10306337
Andreas Herrmann2109b992009-08-18 12:53:00 +02006338 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
6339 if (alloc_state != sa_rootdomain)
6340 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07006341
Peter Zijlstradce840a2011-04-07 14:09:50 +02006342 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10306343 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02006344 struct sched_domain_topology_level *tl;
6345
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02006346 sd = NULL;
Viresh Kumar27723a62013-06-10 16:27:20 +05306347 for_each_sd_topology(tl) {
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306348 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
Viresh Kumar22da9562013-06-04 15:41:15 +05306349 if (tl == sched_domain_topology)
6350 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006351 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
6352 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02006353 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
6354 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006355 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006356 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006357
Peter Zijlstradce840a2011-04-07 14:09:50 +02006358 /* Build the groups for the domains */
6359 for_each_cpu(i, cpu_map) {
6360 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6361 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006362 if (sd->flags & SD_OVERLAP) {
6363 if (build_overlap_sched_groups(sd, i))
6364 goto error;
6365 } else {
6366 if (build_sched_groups(sd, i))
6367 goto error;
6368 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02006369 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02006370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372 /* Calculate CPU power for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02006373 for (i = nr_cpumask_bits-1; i >= 0; i--) {
6374 if (!cpumask_test_cpu(i, cpu_map))
6375 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
Peter Zijlstradce840a2011-04-07 14:09:50 +02006377 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6378 claim_allocations(i, sd);
Peter Zijlstracd4ea6a2011-04-07 14:09:45 +02006379 init_sched_groups_power(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006380 }
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006381 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006382
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006384 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306385 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006386 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006387 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006389 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006390
Peter Zijlstra822ff792011-04-07 14:09:51 +02006391 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006392error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02006393 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02006394 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395}
Paul Jackson029190c2007-10-18 23:40:20 -07006396
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306397static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07006398static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02006399static struct sched_domain_attr *dattr_cur;
6400 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07006401
6402/*
6403 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10306404 * cpumask) fails, then fallback to a single sched domain,
6405 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07006406 */
Rusty Russell42128232008-11-25 02:35:12 +10306407static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07006408
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006409/*
6410 * arch_update_cpu_topology lets virtualized architectures update the
6411 * cpu core maps. It is supposed to return 1 if the topology changed
6412 * or 0 if it stayed the same.
6413 */
6414int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01006415{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006416 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01006417}
6418
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306419cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
6420{
6421 int i;
6422 cpumask_var_t *doms;
6423
6424 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
6425 if (!doms)
6426 return NULL;
6427 for (i = 0; i < ndoms; i++) {
6428 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
6429 free_sched_domains(doms, i);
6430 return NULL;
6431 }
6432 }
6433 return doms;
6434}
6435
6436void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
6437{
6438 unsigned int i;
6439 for (i = 0; i < ndoms; i++)
6440 free_cpumask_var(doms[i]);
6441 kfree(doms);
6442}
6443
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006444/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006445 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006446 * For now this just excludes isolated cpus, but could be used to
6447 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006448 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006449static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006450{
Milton Miller73785472007-10-24 18:23:48 +02006451 int err;
6452
Heiko Carstens22e52b02008-03-12 18:31:59 +01006453 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006454 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306455 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07006456 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306457 doms_cur = &fallback_doms;
6458 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006459 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02006460 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006461
6462 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006463}
6464
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006465/*
6466 * Detach sched domains from a group of cpus specified in cpu_map
6467 * These cpus will now be attached to the NULL domain
6468 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306469static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006470{
6471 int i;
6472
Peter Zijlstradce840a2011-04-07 14:09:50 +02006473 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306474 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006475 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006476 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006477}
6478
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006479/* handle null as "default" */
6480static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
6481 struct sched_domain_attr *new, int idx_new)
6482{
6483 struct sched_domain_attr tmp;
6484
6485 /* fast path */
6486 if (!new && !cur)
6487 return 1;
6488
6489 tmp = SD_ATTR_INIT;
6490 return !memcmp(cur ? (cur + idx_cur) : &tmp,
6491 new ? (new + idx_new) : &tmp,
6492 sizeof(struct sched_domain_attr));
6493}
6494
Paul Jackson029190c2007-10-18 23:40:20 -07006495/*
6496 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006497 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006498 * doms_new[] to the current sched domain partitioning, doms_cur[].
6499 * It destroys each deleted domain and builds each new domain.
6500 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306501 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006502 * The masks don't intersect (don't overlap.) We should setup one
6503 * sched domain for each mask. CPUs not in any of the cpumasks will
6504 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006505 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6506 * it as it is.
6507 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306508 * The passed in 'doms_new' should be allocated using
6509 * alloc_sched_domains. This routine takes ownership of it and will
6510 * free_sched_domains it when done with it. If the caller failed the
6511 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
6512 * and partition_sched_domains() will fallback to the single partition
6513 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07006514 *
Rusty Russell96f874e22008-11-25 02:35:14 +10306515 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08006516 * ndoms_new == 0 is a special case for destroying existing domains,
6517 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006518 *
Paul Jackson029190c2007-10-18 23:40:20 -07006519 * Call with hotplug lock held
6520 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306521void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006522 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07006523{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006524 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006525 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07006526
Heiko Carstens712555e2008-04-28 11:33:07 +02006527 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006528
Milton Miller73785472007-10-24 18:23:48 +02006529 /* always unregister in case we don't destroy any domains */
6530 unregister_sched_domain_sysctl();
6531
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006532 /* Let architecture update cpu core mappings. */
6533 new_topology = arch_update_cpu_topology();
6534
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006535 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07006536
6537 /* Destroy deleted domains */
6538 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006539 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306540 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006541 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006542 goto match1;
6543 }
6544 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306545 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07006546match1:
6547 ;
6548 }
6549
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006550 n = ndoms_cur;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006551 if (doms_new == NULL) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006552 n = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306553 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006554 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08006555 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006556 }
6557
Paul Jackson029190c2007-10-18 23:40:20 -07006558 /* Build new domains */
6559 for (i = 0; i < ndoms_new; i++) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006560 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306561 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006562 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006563 goto match2;
6564 }
6565 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006566 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07006567match2:
6568 ;
6569 }
6570
6571 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306572 if (doms_cur != &fallback_doms)
6573 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006574 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07006575 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006576 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07006577 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006578
6579 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006580
Heiko Carstens712555e2008-04-28 11:33:07 +02006581 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07006582}
6583
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306584static int num_cpus_frozen; /* used to mark begin/end of suspend/resume */
6585
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586/*
Tejun Heo3a101d02010-06-08 21:40:36 +02006587 * Update cpusets according to cpu_active mask. If cpusets are
6588 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
6589 * around partition_sched_domains().
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306590 *
6591 * If we come here as part of a suspend/resume, don't touch cpusets because we
6592 * want to restore it back to its original state upon resume anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02006594static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
6595 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306597 switch (action) {
6598 case CPU_ONLINE_FROZEN:
6599 case CPU_DOWN_FAILED_FROZEN:
6600
6601 /*
6602 * num_cpus_frozen tracks how many CPUs are involved in suspend
6603 * resume sequence. As long as this is not the last online
6604 * operation in the resume sequence, just build a single sched
6605 * domain, ignoring cpusets.
6606 */
6607 num_cpus_frozen--;
6608 if (likely(num_cpus_frozen)) {
6609 partition_sched_domains(1, NULL, NULL);
6610 break;
6611 }
6612
6613 /*
6614 * This is the last CPU online operation. So fall through and
6615 * restore the original sched domains by considering the
6616 * cpuset configurations.
6617 */
6618
Max Krasnyanskye761b772008-07-15 04:43:49 -07006619 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006620 case CPU_DOWN_FAILED:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306621 cpuset_update_active_cpus(true);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306622 break;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006623 default:
6624 return NOTIFY_DONE;
6625 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306626 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006627}
Tejun Heo3a101d02010-06-08 21:40:36 +02006628
Tejun Heo0b2e9182010-06-21 23:53:31 +02006629static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
6630 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02006631{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306632 switch (action) {
Tejun Heo3a101d02010-06-08 21:40:36 +02006633 case CPU_DOWN_PREPARE:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306634 cpuset_update_active_cpus(false);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306635 break;
6636 case CPU_DOWN_PREPARE_FROZEN:
6637 num_cpus_frozen++;
6638 partition_sched_domains(1, NULL, NULL);
6639 break;
Tejun Heo3a101d02010-06-08 21:40:36 +02006640 default:
6641 return NOTIFY_DONE;
6642 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306643 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02006644}
Max Krasnyanskye761b772008-07-15 04:43:49 -07006645
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646void __init sched_init_smp(void)
6647{
Rusty Russelldcc30a32008-11-25 02:35:12 +10306648 cpumask_var_t non_isolated_cpus;
6649
6650 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08006651 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006652
Peter Zijlstracb83b622012-04-17 15:49:36 +02006653 sched_init_numa();
6654
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02006655 /*
6656 * There's no userspace yet to cause hotplug operations; hence all the
6657 * cpu masks are stable and all blatant races in the below code cannot
6658 * happen.
6659 */
Heiko Carstens712555e2008-04-28 11:33:07 +02006660 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006661 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10306662 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
6663 if (cpumask_empty(non_isolated_cpus))
6664 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02006665 mutex_unlock(&sched_domains_mutex);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006666
Tang Chen301a5cb2012-09-25 21:12:31 +08006667 hotcpu_notifier(sched_domains_numa_masks_update, CPU_PRI_SCHED_ACTIVE);
Tejun Heo3a101d02010-06-08 21:40:36 +02006668 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
6669 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006670
Peter Zijlstrab328ca12008-04-29 10:02:46 +02006671 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07006672
6673 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306674 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07006675 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006676 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10306677 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10306678
Rusty Russell0e3900e2008-11-25 02:35:13 +10306679 init_sched_rt_class();
Juri Lelli1baca4c2013-11-07 14:43:38 +01006680 init_sched_dl_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681}
6682#else
6683void __init sched_init_smp(void)
6684{
Ingo Molnar19978ca2007-11-09 22:39:38 +01006685 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686}
6687#endif /* CONFIG_SMP */
6688
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05306689const_debug unsigned int sysctl_timer_migration = 1;
6690
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691int in_sched_functions(unsigned long addr)
6692{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693 return in_lock_functions(addr) ||
6694 (addr >= (unsigned long)__sched_text_start
6695 && addr < (unsigned long)__sched_text_end);
6696}
6697
Peter Zijlstra029632f2011-10-25 10:00:11 +02006698#ifdef CONFIG_CGROUP_SCHED
Li Zefan27b4b932013-03-05 16:07:52 +08006699/*
6700 * Default task group.
6701 * Every task in system belongs to this group at bootup.
6702 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02006703struct task_group root_task_group;
Mike Galbraith35cf4e52012-08-07 05:00:13 +02006704LIST_HEAD(task_groups);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006705#endif
6706
Joonsoo Kime6252c32013-04-23 17:27:41 +09006707DECLARE_PER_CPU(cpumask_var_t, load_balance_mask);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006708
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709void __init sched_init(void)
6710{
Ingo Molnardd41f592007-07-09 18:51:59 +02006711 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07006712 unsigned long alloc_size = 0, ptr;
6713
6714#ifdef CONFIG_FAIR_GROUP_SCHED
6715 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6716#endif
6717#ifdef CONFIG_RT_GROUP_SCHED
6718 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6719#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306720#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10306721 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306722#endif
Mike Travis434d53b2008-04-04 18:11:04 -07006723 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03006724 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07006725
6726#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006727 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006728 ptr += nr_cpu_ids * sizeof(void **);
6729
Yong Zhang07e06b02011-01-07 15:17:36 +08006730 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006731 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006732
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006733#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07006734#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006735 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006736 ptr += nr_cpu_ids * sizeof(void **);
6737
Yong Zhang07e06b02011-01-07 15:17:36 +08006738 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006739 ptr += nr_cpu_ids * sizeof(void **);
6740
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006741#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306742#ifdef CONFIG_CPUMASK_OFFSTACK
6743 for_each_possible_cpu(i) {
Joonsoo Kime6252c32013-04-23 17:27:41 +09006744 per_cpu(load_balance_mask, i) = (void *)ptr;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306745 ptr += cpumask_size();
6746 }
6747#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07006748 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006749
Dario Faggioli332ac172013-11-07 14:43:45 +01006750 init_rt_bandwidth(&def_rt_bandwidth,
6751 global_rt_period(), global_rt_runtime());
6752 init_dl_bandwidth(&def_dl_bandwidth,
Peter Zijlstra17248132013-12-17 12:44:49 +01006753 global_rt_period(), global_rt_runtime());
Dario Faggioli332ac172013-11-07 14:43:45 +01006754
Gregory Haskins57d885f2008-01-25 21:08:18 +01006755#ifdef CONFIG_SMP
6756 init_defrootdomain();
6757#endif
6758
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006759#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006760 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006761 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006762#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006763
Dhaval Giani7c941432010-01-20 13:26:18 +01006764#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006765 list_add(&root_task_group.list, &task_groups);
6766 INIT_LIST_HEAD(&root_task_group.children);
Glauber Costaf4d6f6c2011-11-01 19:19:07 -02006767 INIT_LIST_HEAD(&root_task_group.siblings);
Mike Galbraith5091faa2010-11-30 14:18:03 +01006768 autogroup_init(&init_task);
Glauber Costa54c707e2011-11-28 14:45:19 -02006769
Dhaval Giani7c941432010-01-20 13:26:18 +01006770#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006771
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006772 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006773 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
6775 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006776 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07006777 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006778 rq->calc_load_active = 0;
6779 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02006780 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006781 init_rt_rq(&rq->rt, rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01006782 init_dl_rq(&rq->dl, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006783#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02006784 root_task_group.shares = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006785 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006786 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08006787 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02006788 *
6789 * In case of task-groups formed thr' the cgroup filesystem, it
6790 * gets 100% of the cpu resources in the system. This overall
6791 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08006792 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02006793 * based on each entity's (task or task-group's) weight
6794 * (se->load.weight).
6795 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006796 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02006797 * 1024) and two child groups A0 and A1 (of weight 1024 each),
6798 * then A0's share of the cpu resource is:
6799 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02006800 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02006801 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006802 * We achieve this by letting root_task_group's tasks sit
6803 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02006804 */
Paul Turnerab84d312011-07-21 09:43:28 -07006805 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08006806 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006807#endif /* CONFIG_FAIR_GROUP_SCHED */
6808
6809 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01006810#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006811 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Yong Zhang07e06b02011-01-07 15:17:36 +08006812 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006813#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814
Ingo Molnardd41f592007-07-09 18:51:59 +02006815 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6816 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07006817
6818 rq->last_load_update_tick = jiffies;
6819
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006821 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006822 rq->rd = NULL;
Nikhil Rao1399fa72011-05-18 10:09:39 -07006823 rq->cpu_power = SCHED_POWER_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04006824 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006826 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006828 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006829 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01006830 rq->idle_stamp = 0;
6831 rq->avg_idle = 2*sysctl_sched_migration_cost;
Jason Low9bd721c2013-09-13 11:26:52 -07006832 rq->max_idle_balance_cost = sysctl_sched_migration_cost;
Peter Zijlstra367456c2012-02-20 21:49:09 +01006833
6834 INIT_LIST_HEAD(&rq->cfs_tasks);
6835
Gregory Haskinsdc938522008-01-25 21:08:26 +01006836 rq_attach_root(rq, &def_root_domain);
Frederic Weisbecker3451d022011-08-10 23:21:01 +02006837#ifdef CONFIG_NO_HZ_COMMON
Suresh Siddha1c792db2011-12-01 17:07:32 -08006838 rq->nohz_flags = 0;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07006839#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02006840#ifdef CONFIG_NO_HZ_FULL
6841 rq->last_sched_tick = 0;
6842#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01006844 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846 }
6847
Peter Williams2dd73a42006-06-27 02:54:34 -07006848 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006849
Avi Kivitye107be32007-07-26 13:40:43 +02006850#ifdef CONFIG_PREEMPT_NOTIFIERS
6851 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
6852#endif
6853
Linus Torvalds1da177e2005-04-16 15:20:36 -07006854 /*
6855 * The boot idle thread does lazy MMU switching as well:
6856 */
6857 atomic_inc(&init_mm.mm_count);
6858 enter_lazy_tlb(&init_mm, current);
6859
6860 /*
6861 * Make us the idle thread. Technically, schedule() should not be
6862 * called from this thread, however somewhere below it might be,
6863 * but because we are the idle thread, we just pick up running again
6864 * when this runqueue becomes "idle".
6865 */
6866 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006867
6868 calc_load_update = jiffies + LOAD_FREQ;
6869
Ingo Molnardd41f592007-07-09 18:51:59 +02006870 /*
6871 * During early bootup we pretend to be a normal task:
6872 */
6873 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01006874
Rusty Russellbf4d83f2008-11-25 09:57:51 +10306875#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02006876 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russellbdddd292009-12-02 14:09:16 +10306877 /* May be allocated at isolcpus cmdline parse time */
6878 if (cpu_isolated_map == NULL)
6879 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Thomas Gleixner29d5e042012-04-20 13:05:45 +00006880 idle_thread_set_boot_cpu();
Peter Zijlstra029632f2011-10-25 10:00:11 +02006881#endif
6882 init_sched_fair_class();
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306883
Ingo Molnar6892b752008-02-13 14:02:36 +01006884 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885}
6886
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02006887#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006888static inline int preempt_count_equals(int preempt_offset)
6889{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01006890 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006891
Arnd Bergmann4ba82162011-01-25 22:52:22 +01006892 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006893}
6894
Simon Kagstromd8948372009-12-23 11:08:18 +01006895void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897 static unsigned long prev_jiffy; /* ratelimiting */
6898
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07006899 rcu_sleep_check(); /* WARN_ON_ONCE() by default, no rate limit reqd. */
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006900 if ((preempt_count_equals(preempt_offset) && !irqs_disabled()) ||
6901 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02006902 return;
6903 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6904 return;
6905 prev_jiffy = jiffies;
6906
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006907 printk(KERN_ERR
6908 "BUG: sleeping function called from invalid context at %s:%d\n",
6909 file, line);
6910 printk(KERN_ERR
6911 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
6912 in_atomic(), irqs_disabled(),
6913 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02006914
6915 debug_show_held_locks(current);
6916 if (irqs_disabled())
6917 print_irqtrace_events(current);
6918 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919}
6920EXPORT_SYMBOL(__might_sleep);
6921#endif
6922
6923#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006924static void normalize_task(struct rq *rq, struct task_struct *p)
6925{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01006926 const struct sched_class *prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01006927 struct sched_attr attr = {
6928 .sched_policy = SCHED_NORMAL,
6929 };
Peter Zijlstrada7a7352011-01-17 17:03:27 +01006930 int old_prio = p->prio;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006931 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02006932
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02006933 on_rq = p->on_rq;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006934 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01006935 dequeue_task(rq, p, 0);
Dario Faggiolid50dde52013-11-07 14:43:36 +01006936 __setscheduler(rq, p, &attr);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006937 if (on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01006938 enqueue_task(rq, p, 0);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006939 resched_task(rq->curr);
6940 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01006941
6942 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006943}
6944
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945void normalize_rt_tasks(void)
6946{
Ingo Molnara0f98a12007-06-17 18:37:45 +02006947 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006949 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01006951 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006952 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02006953 /*
6954 * Only normalize user tasks:
6955 */
6956 if (!p->mm)
6957 continue;
6958
Ingo Molnardd41f592007-07-09 18:51:59 +02006959 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006960#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03006961 p->se.statistics.wait_start = 0;
6962 p->se.statistics.sleep_start = 0;
6963 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006964#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006965
Dario Faggioliaab03e02013-11-28 11:14:43 +01006966 if (!dl_task(p) && !rt_task(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006967 /*
6968 * Renice negative nice level userspace
6969 * tasks back to 0:
6970 */
6971 if (TASK_NICE(p) < 0 && p->mm)
6972 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975
Thomas Gleixner1d615482009-11-17 14:54:03 +01006976 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07006977 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978
Ingo Molnar178be792007-10-15 17:00:18 +02006979 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006980
Ingo Molnarb29739f2006-06-27 02:54:51 -07006981 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01006982 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006983 } while_each_thread(g, p);
6984
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01006985 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986}
6987
6988#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07006989
Jason Wessel67fc4e02010-05-20 21:04:21 -05006990#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006991/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05006992 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07006993 *
6994 * They can only be called when the whole system has been
6995 * stopped - every CPU needs to be quiescent, and no scheduling
6996 * activity can take place. Using them for anything else would
6997 * be a serious bug, and as a result, they aren't even visible
6998 * under any other configuration.
6999 */
7000
7001/**
7002 * curr_task - return the current task for a given cpu.
7003 * @cpu: the processor in question.
7004 *
7005 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
Yacine Belkadie69f6182013-07-12 20:45:47 +02007006 *
7007 * Return: The current task for @cpu.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007008 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007009struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007010{
7011 return cpu_curr(cpu);
7012}
7013
Jason Wessel67fc4e02010-05-20 21:04:21 -05007014#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
7015
7016#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07007017/**
7018 * set_curr_task - set the current task for a given cpu.
7019 * @cpu: the processor in question.
7020 * @p: the task pointer to set.
7021 *
7022 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007023 * are serviced on a separate stack. It allows the architecture to switch the
7024 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007025 * must be called with all CPU's synchronized, and interrupts disabled, the
7026 * and caller must save the original value of the current task (see
7027 * curr_task() above) and restore that value before reenabling interrupts and
7028 * re-starting the system.
7029 *
7030 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7031 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007032void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007033{
7034 cpu_curr(cpu) = p;
7035}
7036
7037#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007038
Dhaval Giani7c941432010-01-20 13:26:18 +01007039#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02007040/* task_group_lock serializes the addition/removal of task groups */
7041static DEFINE_SPINLOCK(task_group_lock);
7042
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007043static void free_sched_group(struct task_group *tg)
7044{
7045 free_fair_sched_group(tg);
7046 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01007047 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007048 kfree(tg);
7049}
7050
7051/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007052struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007053{
7054 struct task_group *tg;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007055
7056 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7057 if (!tg)
7058 return ERR_PTR(-ENOMEM);
7059
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007060 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007061 goto err;
7062
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007063 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007064 goto err;
7065
Li Zefanace783b2013-01-24 14:30:48 +08007066 return tg;
7067
7068err:
7069 free_sched_group(tg);
7070 return ERR_PTR(-ENOMEM);
7071}
7072
7073void sched_online_group(struct task_group *tg, struct task_group *parent)
7074{
7075 unsigned long flags;
7076
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007077 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007078 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007079
7080 WARN_ON(!parent); /* root should already exist */
7081
7082 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007083 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08007084 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007085 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007086}
7087
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007088/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007089static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007090{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007091 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007092 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007093}
7094
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007095/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007096void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007097{
Li Zefanace783b2013-01-24 14:30:48 +08007098 /* wait for possible concurrent references to cfs_rqs complete */
7099 call_rcu(&tg->rcu, free_sched_group_rcu);
7100}
7101
7102void sched_offline_group(struct task_group *tg)
7103{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007104 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007105 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007106
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007107 /* end participation in shares distribution */
7108 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007109 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007110
7111 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007112 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007113 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007114 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007115}
7116
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007117/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007118 * The caller of this function should have put the task in its new group
7119 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7120 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007121 */
7122void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007123{
Peter Zijlstra8323f262012-06-22 13:36:05 +02007124 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007125 int on_rq, running;
7126 unsigned long flags;
7127 struct rq *rq;
7128
7129 rq = task_rq_lock(tsk, &flags);
7130
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007131 running = task_current(rq, tsk);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007132 on_rq = tsk->on_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007133
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007134 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007135 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007136 if (unlikely(running))
7137 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007138
Tejun Heo8af01f52013-08-08 20:11:22 -04007139 tg = container_of(task_css_check(tsk, cpu_cgroup_subsys_id,
Peter Zijlstra8323f262012-06-22 13:36:05 +02007140 lockdep_is_held(&tsk->sighand->siglock)),
7141 struct task_group, css);
7142 tg = autogroup_task_group(tsk, tg);
7143 tsk->sched_task_group = tg;
7144
Peter Zijlstra810b3812008-02-29 15:21:01 -05007145#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007146 if (tsk->sched_class->task_move_group)
7147 tsk->sched_class->task_move_group(tsk, on_rq);
7148 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05007149#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007150 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05007151
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007152 if (unlikely(running))
7153 tsk->sched_class->set_curr_task(rq);
7154 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01007155 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007156
Peter Zijlstra0122ec52011-04-05 17:23:51 +02007157 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007158}
Dhaval Giani7c941432010-01-20 13:26:18 +01007159#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007160
Paul Turnera790de92011-07-21 09:43:29 -07007161#ifdef CONFIG_RT_GROUP_SCHED
7162/*
7163 * Ensure that the real time constraints are schedulable.
7164 */
7165static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007166
Dhaval Giani521f1a242008-02-28 15:21:56 +05307167/* Must be called with tasklist_lock held */
7168static inline int tg_has_rt_tasks(struct task_group *tg)
7169{
7170 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007171
Dhaval Giani521f1a242008-02-28 15:21:56 +05307172 do_each_thread(g, p) {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007173 if (rt_task(p) && task_rq(p)->rt.tg == tg)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307174 return 1;
7175 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007176
Dhaval Giani521f1a242008-02-28 15:21:56 +05307177 return 0;
7178}
7179
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007180struct rt_schedulable_data {
7181 struct task_group *tg;
7182 u64 rt_period;
7183 u64 rt_runtime;
7184};
7185
Paul Turnera790de92011-07-21 09:43:29 -07007186static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007187{
7188 struct rt_schedulable_data *d = data;
7189 struct task_group *child;
7190 unsigned long total, sum = 0;
7191 u64 period, runtime;
7192
7193 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7194 runtime = tg->rt_bandwidth.rt_runtime;
7195
7196 if (tg == d->tg) {
7197 period = d->rt_period;
7198 runtime = d->rt_runtime;
7199 }
7200
Peter Zijlstra4653f802008-09-23 15:33:44 +02007201 /*
7202 * Cannot have more runtime than the period.
7203 */
7204 if (runtime > period && runtime != RUNTIME_INF)
7205 return -EINVAL;
7206
7207 /*
7208 * Ensure we don't starve existing RT tasks.
7209 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007210 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
7211 return -EBUSY;
7212
7213 total = to_ratio(period, runtime);
7214
Peter Zijlstra4653f802008-09-23 15:33:44 +02007215 /*
7216 * Nobody can have more than the global setting allows.
7217 */
7218 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
7219 return -EINVAL;
7220
7221 /*
7222 * The sum of our children's runtime should not exceed our own.
7223 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007224 list_for_each_entry_rcu(child, &tg->children, siblings) {
7225 period = ktime_to_ns(child->rt_bandwidth.rt_period);
7226 runtime = child->rt_bandwidth.rt_runtime;
7227
7228 if (child == d->tg) {
7229 period = d->rt_period;
7230 runtime = d->rt_runtime;
7231 }
7232
7233 sum += to_ratio(period, runtime);
7234 }
7235
7236 if (sum > total)
7237 return -EINVAL;
7238
7239 return 0;
7240}
7241
7242static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
7243{
Paul Turner82774342011-07-21 09:43:35 -07007244 int ret;
7245
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007246 struct rt_schedulable_data data = {
7247 .tg = tg,
7248 .rt_period = period,
7249 .rt_runtime = runtime,
7250 };
7251
Paul Turner82774342011-07-21 09:43:35 -07007252 rcu_read_lock();
7253 ret = walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
7254 rcu_read_unlock();
7255
7256 return ret;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007257}
7258
Paul Turnerab84d312011-07-21 09:43:28 -07007259static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007260 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007261{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007262 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007263
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007264 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307265 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007266 err = __rt_schedulable(tg, rt_period, rt_runtime);
7267 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307268 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007269
Thomas Gleixner0986b112009-11-17 15:32:06 +01007270 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007271 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
7272 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007273
7274 for_each_possible_cpu(i) {
7275 struct rt_rq *rt_rq = tg->rt_rq[i];
7276
Thomas Gleixner0986b112009-11-17 15:32:06 +01007277 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007278 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01007279 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007280 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007281 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02007282unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307283 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007284 mutex_unlock(&rt_constraints_mutex);
7285
7286 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007287}
7288
Li Zefan25cc7da2013-03-05 16:07:33 +08007289static int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007290{
7291 u64 rt_runtime, rt_period;
7292
7293 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7294 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7295 if (rt_runtime_us < 0)
7296 rt_runtime = RUNTIME_INF;
7297
Paul Turnerab84d312011-07-21 09:43:28 -07007298 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007299}
7300
Li Zefan25cc7da2013-03-05 16:07:33 +08007301static long sched_group_rt_runtime(struct task_group *tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007302{
7303 u64 rt_runtime_us;
7304
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007305 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007306 return -1;
7307
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007308 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007309 do_div(rt_runtime_us, NSEC_PER_USEC);
7310 return rt_runtime_us;
7311}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007312
Li Zefan25cc7da2013-03-05 16:07:33 +08007313static int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007314{
7315 u64 rt_runtime, rt_period;
7316
7317 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
7318 rt_runtime = tg->rt_bandwidth.rt_runtime;
7319
Raistlin619b0482008-06-26 18:54:09 +02007320 if (rt_period == 0)
7321 return -EINVAL;
7322
Paul Turnerab84d312011-07-21 09:43:28 -07007323 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007324}
7325
Li Zefan25cc7da2013-03-05 16:07:33 +08007326static long sched_group_rt_period(struct task_group *tg)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007327{
7328 u64 rt_period_us;
7329
7330 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
7331 do_div(rt_period_us, NSEC_PER_USEC);
7332 return rt_period_us;
7333}
Dario Faggioli332ac172013-11-07 14:43:45 +01007334#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007335
Dario Faggioli332ac172013-11-07 14:43:45 +01007336#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007337static int sched_rt_global_constraints(void)
7338{
7339 int ret = 0;
7340
7341 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007342 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02007343 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007344 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007345 mutex_unlock(&rt_constraints_mutex);
7346
7347 return ret;
7348}
Dhaval Giani54e99122009-02-27 15:13:54 +05307349
Li Zefan25cc7da2013-03-05 16:07:33 +08007350static int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
Dhaval Giani54e99122009-02-27 15:13:54 +05307351{
7352 /* Don't accept realtime tasks when there is no way for them to run */
7353 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
7354 return 0;
7355
7356 return 1;
7357}
7358
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007359#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007360static int sched_rt_global_constraints(void)
7361{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007362 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007363 int i, ret = 0;
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07007364
Thomas Gleixner0986b112009-11-17 15:32:06 +01007365 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007366 for_each_possible_cpu(i) {
7367 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
7368
Thomas Gleixner0986b112009-11-17 15:32:06 +01007369 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007370 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01007371 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007372 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007373 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007374
Dario Faggioli332ac172013-11-07 14:43:45 +01007375 return ret;
7376}
7377#endif /* CONFIG_RT_GROUP_SCHED */
7378
Dario Faggioli332ac172013-11-07 14:43:45 +01007379static int sched_dl_global_constraints(void)
7380{
Peter Zijlstra17248132013-12-17 12:44:49 +01007381 u64 runtime = global_rt_runtime();
7382 u64 period = global_rt_period();
Dario Faggioli332ac172013-11-07 14:43:45 +01007383 u64 new_bw = to_ratio(period, runtime);
Peter Zijlstra17248132013-12-17 12:44:49 +01007384 int cpu, ret = 0;
Dario Faggioli332ac172013-11-07 14:43:45 +01007385
7386 /*
7387 * Here we want to check the bandwidth not being set to some
7388 * value smaller than the currently allocated bandwidth in
7389 * any of the root_domains.
7390 *
7391 * FIXME: Cycling on all the CPUs is overdoing, but simpler than
7392 * cycling on root_domains... Discussion on different/better
7393 * solutions is welcome!
7394 */
Peter Zijlstra17248132013-12-17 12:44:49 +01007395 for_each_possible_cpu(cpu) {
7396 struct dl_bw *dl_b = dl_bw_of(cpu);
Dario Faggioli332ac172013-11-07 14:43:45 +01007397
7398 raw_spin_lock(&dl_b->lock);
Peter Zijlstra17248132013-12-17 12:44:49 +01007399 if (new_bw < dl_b->total_bw)
7400 ret = -EBUSY;
Dario Faggioli332ac172013-11-07 14:43:45 +01007401 raw_spin_unlock(&dl_b->lock);
Peter Zijlstra17248132013-12-17 12:44:49 +01007402
7403 if (ret)
7404 break;
Dario Faggioli332ac172013-11-07 14:43:45 +01007405 }
7406
Peter Zijlstra17248132013-12-17 12:44:49 +01007407 return ret;
7408}
7409
7410static void sched_dl_do_global(void)
7411{
7412 u64 new_bw = -1;
7413 int cpu;
7414
7415 def_dl_bandwidth.dl_period = global_rt_period();
7416 def_dl_bandwidth.dl_runtime = global_rt_runtime();
7417
7418 if (global_rt_runtime() != RUNTIME_INF)
7419 new_bw = to_ratio(global_rt_period(), global_rt_runtime());
7420
7421 /*
7422 * FIXME: As above...
7423 */
7424 for_each_possible_cpu(cpu) {
7425 struct dl_bw *dl_b = dl_bw_of(cpu);
7426
7427 raw_spin_lock(&dl_b->lock);
7428 dl_b->bw = new_bw;
7429 raw_spin_unlock(&dl_b->lock);
7430 }
7431}
7432
7433static int sched_rt_global_validate(void)
7434{
7435 if (sysctl_sched_rt_period <= 0)
7436 return -EINVAL;
7437
7438 if (sysctl_sched_rt_runtime > sysctl_sched_rt_period)
7439 return -EINVAL;
7440
Dario Faggioli332ac172013-11-07 14:43:45 +01007441 return 0;
7442}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007443
Peter Zijlstra17248132013-12-17 12:44:49 +01007444static void sched_rt_do_global(void)
7445{
7446 def_rt_bandwidth.rt_runtime = global_rt_runtime();
7447 def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period());
7448}
7449
7450int sched_rt_handler(struct ctl_table *table, int write,
7451 void __user *buffer, size_t *lenp,
7452 loff_t *ppos)
7453{
7454 int old_period, old_runtime;
7455 static DEFINE_MUTEX(mutex);
7456 int ret;
7457
7458 mutex_lock(&mutex);
7459 old_period = sysctl_sched_rt_period;
7460 old_runtime = sysctl_sched_rt_runtime;
7461
7462 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7463
7464 if (!ret && write) {
7465 ret = sched_rt_global_validate();
7466 if (ret)
7467 goto undo;
7468
7469 ret = sched_rt_global_constraints();
7470 if (ret)
7471 goto undo;
7472
7473 ret = sched_dl_global_constraints();
7474 if (ret)
7475 goto undo;
7476
7477 sched_rt_do_global();
7478 sched_dl_do_global();
7479 }
7480 if (0) {
7481undo:
7482 sysctl_sched_rt_period = old_period;
7483 sysctl_sched_rt_runtime = old_runtime;
7484 }
7485 mutex_unlock(&mutex);
7486
7487 return ret;
7488}
7489
Clark Williamsce0dbbb2013-02-07 09:47:04 -06007490int sched_rr_handler(struct ctl_table *table, int write,
7491 void __user *buffer, size_t *lenp,
7492 loff_t *ppos)
7493{
7494 int ret;
7495 static DEFINE_MUTEX(mutex);
7496
7497 mutex_lock(&mutex);
7498 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7499 /* make sure that internally we keep jiffies */
7500 /* also, writing zero resets timeslice to default */
7501 if (!ret && write) {
7502 sched_rr_timeslice = sched_rr_timeslice <= 0 ?
7503 RR_TIMESLICE : msecs_to_jiffies(sched_rr_timeslice);
7504 }
7505 mutex_unlock(&mutex);
7506 return ret;
7507}
7508
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007509#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007510
Tejun Heoa7c6d552013-08-08 20:11:23 -04007511static inline struct task_group *css_tg(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007512{
Tejun Heoa7c6d552013-08-08 20:11:23 -04007513 return css ? container_of(css, struct task_group, css) : NULL;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007514}
7515
Tejun Heoeb954192013-08-08 20:11:23 -04007516static struct cgroup_subsys_state *
7517cpu_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007518{
Tejun Heoeb954192013-08-08 20:11:23 -04007519 struct task_group *parent = css_tg(parent_css);
7520 struct task_group *tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007521
Tejun Heoeb954192013-08-08 20:11:23 -04007522 if (!parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007523 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08007524 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007525 }
7526
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007527 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007528 if (IS_ERR(tg))
7529 return ERR_PTR(-ENOMEM);
7530
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007531 return &tg->css;
7532}
7533
Tejun Heoeb954192013-08-08 20:11:23 -04007534static int cpu_cgroup_css_online(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007535{
Tejun Heoeb954192013-08-08 20:11:23 -04007536 struct task_group *tg = css_tg(css);
7537 struct task_group *parent = css_tg(css_parent(css));
Li Zefanace783b2013-01-24 14:30:48 +08007538
Tejun Heo63876982013-08-08 20:11:23 -04007539 if (parent)
7540 sched_online_group(tg, parent);
Li Zefanace783b2013-01-24 14:30:48 +08007541 return 0;
7542}
7543
Tejun Heoeb954192013-08-08 20:11:23 -04007544static void cpu_cgroup_css_free(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007545{
Tejun Heoeb954192013-08-08 20:11:23 -04007546 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007547
7548 sched_destroy_group(tg);
7549}
7550
Tejun Heoeb954192013-08-08 20:11:23 -04007551static void cpu_cgroup_css_offline(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007552{
Tejun Heoeb954192013-08-08 20:11:23 -04007553 struct task_group *tg = css_tg(css);
Li Zefanace783b2013-01-24 14:30:48 +08007554
7555 sched_offline_group(tg);
7556}
7557
Tejun Heoeb954192013-08-08 20:11:23 -04007558static int cpu_cgroup_can_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007559 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007560{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007561 struct task_struct *task;
7562
Tejun Heod99c8722013-08-08 20:11:27 -04007563 cgroup_taskset_for_each(task, css, tset) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007564#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heoeb954192013-08-08 20:11:23 -04007565 if (!sched_rt_can_attach(css_tg(css), task))
Tejun Heobb9d97b2011-12-12 18:12:21 -08007566 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007567#else
Tejun Heobb9d97b2011-12-12 18:12:21 -08007568 /* We don't support RT-tasks being in separate groups */
7569 if (task->sched_class != &fair_sched_class)
7570 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007571#endif
Tejun Heobb9d97b2011-12-12 18:12:21 -08007572 }
Ben Blumbe367d02009-09-23 15:56:31 -07007573 return 0;
7574}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007575
Tejun Heoeb954192013-08-08 20:11:23 -04007576static void cpu_cgroup_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007577 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007578{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007579 struct task_struct *task;
7580
Tejun Heod99c8722013-08-08 20:11:27 -04007581 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08007582 sched_move_task(task);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007583}
7584
Tejun Heoeb954192013-08-08 20:11:23 -04007585static void cpu_cgroup_exit(struct cgroup_subsys_state *css,
7586 struct cgroup_subsys_state *old_css,
7587 struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007588{
7589 /*
7590 * cgroup_exit() is called in the copy_process() failure path.
7591 * Ignore this case since the task hasn't ran yet, this avoids
7592 * trying to poke a half freed task state from generic code.
7593 */
7594 if (!(task->flags & PF_EXITING))
7595 return;
7596
7597 sched_move_task(task);
7598}
7599
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007600#ifdef CONFIG_FAIR_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007601static int cpu_shares_write_u64(struct cgroup_subsys_state *css,
7602 struct cftype *cftype, u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007603{
Tejun Heo182446d2013-08-08 20:11:24 -04007604 return sched_group_set_shares(css_tg(css), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007605}
7606
Tejun Heo182446d2013-08-08 20:11:24 -04007607static u64 cpu_shares_read_u64(struct cgroup_subsys_state *css,
7608 struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007609{
Tejun Heo182446d2013-08-08 20:11:24 -04007610 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007611
Nikhil Raoc8b28112011-05-18 14:37:48 -07007612 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007613}
Paul Turnerab84d312011-07-21 09:43:28 -07007614
7615#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07007616static DEFINE_MUTEX(cfs_constraints_mutex);
7617
Paul Turnerab84d312011-07-21 09:43:28 -07007618const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
7619const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
7620
Paul Turnera790de92011-07-21 09:43:29 -07007621static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
7622
Paul Turnerab84d312011-07-21 09:43:28 -07007623static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
7624{
Paul Turner56f570e2011-11-07 20:26:33 -08007625 int i, ret = 0, runtime_enabled, runtime_was_enabled;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007626 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnerab84d312011-07-21 09:43:28 -07007627
7628 if (tg == &root_task_group)
7629 return -EINVAL;
7630
7631 /*
7632 * Ensure we have at some amount of bandwidth every period. This is
7633 * to prevent reaching a state of large arrears when throttled via
7634 * entity_tick() resulting in prolonged exit starvation.
7635 */
7636 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
7637 return -EINVAL;
7638
7639 /*
7640 * Likewise, bound things on the otherside by preventing insane quota
7641 * periods. This also allows us to normalize in computing quota
7642 * feasibility.
7643 */
7644 if (period > max_cfs_quota_period)
7645 return -EINVAL;
7646
Paul Turnera790de92011-07-21 09:43:29 -07007647 mutex_lock(&cfs_constraints_mutex);
7648 ret = __cfs_schedulable(tg, period, quota);
7649 if (ret)
7650 goto out_unlock;
7651
Paul Turner58088ad2011-07-21 09:43:31 -07007652 runtime_enabled = quota != RUNTIME_INF;
Paul Turner56f570e2011-11-07 20:26:33 -08007653 runtime_was_enabled = cfs_b->quota != RUNTIME_INF;
Ben Segall1ee14e62013-10-16 11:16:12 -07007654 /*
7655 * If we need to toggle cfs_bandwidth_used, off->on must occur
7656 * before making related changes, and on->off must occur afterwards
7657 */
7658 if (runtime_enabled && !runtime_was_enabled)
7659 cfs_bandwidth_usage_inc();
Paul Turnerab84d312011-07-21 09:43:28 -07007660 raw_spin_lock_irq(&cfs_b->lock);
7661 cfs_b->period = ns_to_ktime(period);
7662 cfs_b->quota = quota;
Paul Turner58088ad2011-07-21 09:43:31 -07007663
Paul Turnera9cf55b2011-07-21 09:43:32 -07007664 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07007665 /* restart the period timer (if active) to handle new period expiry */
7666 if (runtime_enabled && cfs_b->timer_active) {
7667 /* force a reprogram */
7668 cfs_b->timer_active = 0;
7669 __start_cfs_bandwidth(cfs_b);
7670 }
Paul Turnerab84d312011-07-21 09:43:28 -07007671 raw_spin_unlock_irq(&cfs_b->lock);
7672
7673 for_each_possible_cpu(i) {
7674 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
Peter Zijlstra029632f2011-10-25 10:00:11 +02007675 struct rq *rq = cfs_rq->rq;
Paul Turnerab84d312011-07-21 09:43:28 -07007676
7677 raw_spin_lock_irq(&rq->lock);
Paul Turner58088ad2011-07-21 09:43:31 -07007678 cfs_rq->runtime_enabled = runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07007679 cfs_rq->runtime_remaining = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07007680
Peter Zijlstra029632f2011-10-25 10:00:11 +02007681 if (cfs_rq->throttled)
Paul Turner671fd9d2011-07-21 09:43:34 -07007682 unthrottle_cfs_rq(cfs_rq);
Paul Turnerab84d312011-07-21 09:43:28 -07007683 raw_spin_unlock_irq(&rq->lock);
7684 }
Ben Segall1ee14e62013-10-16 11:16:12 -07007685 if (runtime_was_enabled && !runtime_enabled)
7686 cfs_bandwidth_usage_dec();
Paul Turnera790de92011-07-21 09:43:29 -07007687out_unlock:
7688 mutex_unlock(&cfs_constraints_mutex);
Paul Turnerab84d312011-07-21 09:43:28 -07007689
Paul Turnera790de92011-07-21 09:43:29 -07007690 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07007691}
7692
7693int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
7694{
7695 u64 quota, period;
7696
Peter Zijlstra029632f2011-10-25 10:00:11 +02007697 period = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007698 if (cfs_quota_us < 0)
7699 quota = RUNTIME_INF;
7700 else
7701 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
7702
7703 return tg_set_cfs_bandwidth(tg, period, quota);
7704}
7705
7706long tg_get_cfs_quota(struct task_group *tg)
7707{
7708 u64 quota_us;
7709
Peter Zijlstra029632f2011-10-25 10:00:11 +02007710 if (tg->cfs_bandwidth.quota == RUNTIME_INF)
Paul Turnerab84d312011-07-21 09:43:28 -07007711 return -1;
7712
Peter Zijlstra029632f2011-10-25 10:00:11 +02007713 quota_us = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007714 do_div(quota_us, NSEC_PER_USEC);
7715
7716 return quota_us;
7717}
7718
7719int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
7720{
7721 u64 quota, period;
7722
7723 period = (u64)cfs_period_us * NSEC_PER_USEC;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007724 quota = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007725
Paul Turnerab84d312011-07-21 09:43:28 -07007726 return tg_set_cfs_bandwidth(tg, period, quota);
7727}
7728
7729long tg_get_cfs_period(struct task_group *tg)
7730{
7731 u64 cfs_period_us;
7732
Peter Zijlstra029632f2011-10-25 10:00:11 +02007733 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007734 do_div(cfs_period_us, NSEC_PER_USEC);
7735
7736 return cfs_period_us;
7737}
7738
Tejun Heo182446d2013-08-08 20:11:24 -04007739static s64 cpu_cfs_quota_read_s64(struct cgroup_subsys_state *css,
7740 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007741{
Tejun Heo182446d2013-08-08 20:11:24 -04007742 return tg_get_cfs_quota(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007743}
7744
Tejun Heo182446d2013-08-08 20:11:24 -04007745static int cpu_cfs_quota_write_s64(struct cgroup_subsys_state *css,
7746 struct cftype *cftype, s64 cfs_quota_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007747{
Tejun Heo182446d2013-08-08 20:11:24 -04007748 return tg_set_cfs_quota(css_tg(css), cfs_quota_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007749}
7750
Tejun Heo182446d2013-08-08 20:11:24 -04007751static u64 cpu_cfs_period_read_u64(struct cgroup_subsys_state *css,
7752 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007753{
Tejun Heo182446d2013-08-08 20:11:24 -04007754 return tg_get_cfs_period(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007755}
7756
Tejun Heo182446d2013-08-08 20:11:24 -04007757static int cpu_cfs_period_write_u64(struct cgroup_subsys_state *css,
7758 struct cftype *cftype, u64 cfs_period_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007759{
Tejun Heo182446d2013-08-08 20:11:24 -04007760 return tg_set_cfs_period(css_tg(css), cfs_period_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007761}
7762
Paul Turnera790de92011-07-21 09:43:29 -07007763struct cfs_schedulable_data {
7764 struct task_group *tg;
7765 u64 period, quota;
7766};
7767
7768/*
7769 * normalize group quota/period to be quota/max_period
7770 * note: units are usecs
7771 */
7772static u64 normalize_cfs_quota(struct task_group *tg,
7773 struct cfs_schedulable_data *d)
7774{
7775 u64 quota, period;
7776
7777 if (tg == d->tg) {
7778 period = d->period;
7779 quota = d->quota;
7780 } else {
7781 period = tg_get_cfs_period(tg);
7782 quota = tg_get_cfs_quota(tg);
7783 }
7784
7785 /* note: these should typically be equivalent */
7786 if (quota == RUNTIME_INF || quota == -1)
7787 return RUNTIME_INF;
7788
7789 return to_ratio(period, quota);
7790}
7791
7792static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
7793{
7794 struct cfs_schedulable_data *d = data;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007795 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007796 s64 quota = 0, parent_quota = -1;
7797
7798 if (!tg->parent) {
7799 quota = RUNTIME_INF;
7800 } else {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007801 struct cfs_bandwidth *parent_b = &tg->parent->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007802
7803 quota = normalize_cfs_quota(tg, d);
7804 parent_quota = parent_b->hierarchal_quota;
7805
7806 /*
7807 * ensure max(child_quota) <= parent_quota, inherit when no
7808 * limit is set
7809 */
7810 if (quota == RUNTIME_INF)
7811 quota = parent_quota;
7812 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
7813 return -EINVAL;
7814 }
7815 cfs_b->hierarchal_quota = quota;
7816
7817 return 0;
7818}
7819
7820static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
7821{
Paul Turner82774342011-07-21 09:43:35 -07007822 int ret;
Paul Turnera790de92011-07-21 09:43:29 -07007823 struct cfs_schedulable_data data = {
7824 .tg = tg,
7825 .period = period,
7826 .quota = quota,
7827 };
7828
7829 if (quota != RUNTIME_INF) {
7830 do_div(data.period, NSEC_PER_USEC);
7831 do_div(data.quota, NSEC_PER_USEC);
7832 }
7833
Paul Turner82774342011-07-21 09:43:35 -07007834 rcu_read_lock();
7835 ret = walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
7836 rcu_read_unlock();
7837
7838 return ret;
Paul Turnera790de92011-07-21 09:43:29 -07007839}
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007840
Tejun Heo182446d2013-08-08 20:11:24 -04007841static int cpu_stats_show(struct cgroup_subsys_state *css, struct cftype *cft,
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007842 struct cgroup_map_cb *cb)
7843{
Tejun Heo182446d2013-08-08 20:11:24 -04007844 struct task_group *tg = css_tg(css);
Peter Zijlstra029632f2011-10-25 10:00:11 +02007845 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007846
7847 cb->fill(cb, "nr_periods", cfs_b->nr_periods);
7848 cb->fill(cb, "nr_throttled", cfs_b->nr_throttled);
7849 cb->fill(cb, "throttled_time", cfs_b->throttled_time);
7850
7851 return 0;
7852}
Paul Turnerab84d312011-07-21 09:43:28 -07007853#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007854#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007855
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007856#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007857static int cpu_rt_runtime_write(struct cgroup_subsys_state *css,
7858 struct cftype *cft, s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007859{
Tejun Heo182446d2013-08-08 20:11:24 -04007860 return sched_group_set_rt_runtime(css_tg(css), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007861}
7862
Tejun Heo182446d2013-08-08 20:11:24 -04007863static s64 cpu_rt_runtime_read(struct cgroup_subsys_state *css,
7864 struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007865{
Tejun Heo182446d2013-08-08 20:11:24 -04007866 return sched_group_rt_runtime(css_tg(css));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007867}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007868
Tejun Heo182446d2013-08-08 20:11:24 -04007869static int cpu_rt_period_write_uint(struct cgroup_subsys_state *css,
7870 struct cftype *cftype, u64 rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007871{
Tejun Heo182446d2013-08-08 20:11:24 -04007872 return sched_group_set_rt_period(css_tg(css), rt_period_us);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007873}
7874
Tejun Heo182446d2013-08-08 20:11:24 -04007875static u64 cpu_rt_period_read_uint(struct cgroup_subsys_state *css,
7876 struct cftype *cft)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007877{
Tejun Heo182446d2013-08-08 20:11:24 -04007878 return sched_group_rt_period(css_tg(css));
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007879}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007880#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007881
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007882static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007883#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007884 {
7885 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07007886 .read_u64 = cpu_shares_read_u64,
7887 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007888 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007889#endif
Paul Turnerab84d312011-07-21 09:43:28 -07007890#ifdef CONFIG_CFS_BANDWIDTH
7891 {
7892 .name = "cfs_quota_us",
7893 .read_s64 = cpu_cfs_quota_read_s64,
7894 .write_s64 = cpu_cfs_quota_write_s64,
7895 },
7896 {
7897 .name = "cfs_period_us",
7898 .read_u64 = cpu_cfs_period_read_u64,
7899 .write_u64 = cpu_cfs_period_write_u64,
7900 },
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007901 {
7902 .name = "stat",
7903 .read_map = cpu_stats_show,
7904 },
Paul Turnerab84d312011-07-21 09:43:28 -07007905#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007906#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007907 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007908 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07007909 .read_s64 = cpu_rt_runtime_read,
7910 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007911 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007912 {
7913 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07007914 .read_u64 = cpu_rt_period_read_uint,
7915 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007916 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007917#endif
Tejun Heo4baf6e32012-04-01 12:09:55 -07007918 { } /* terminate */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007919};
7920
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007921struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007922 .name = "cpu",
Tejun Heo92fb9742012-11-19 08:13:38 -08007923 .css_alloc = cpu_cgroup_css_alloc,
7924 .css_free = cpu_cgroup_css_free,
Li Zefanace783b2013-01-24 14:30:48 +08007925 .css_online = cpu_cgroup_css_online,
7926 .css_offline = cpu_cgroup_css_offline,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007927 .can_attach = cpu_cgroup_can_attach,
7928 .attach = cpu_cgroup_attach,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007929 .exit = cpu_cgroup_exit,
Ingo Molnar38605ca2007-10-29 21:18:11 +01007930 .subsys_id = cpu_cgroup_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07007931 .base_cftypes = cpu_files,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007932 .early_init = 1,
7933};
7934
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007935#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007936
Paul E. McKenneyb637a322012-09-19 16:58:38 -07007937void dump_cpu_task(int cpu)
7938{
7939 pr_info("Task dump for CPU %d:\n", cpu);
7940 sched_show_task(cpu_curr(cpu));
7941}