blob: a01fe6cfdb9b6935e4495512a843714d7ebe9498 [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
Mel Gorman286549d2014-01-21 15:51:03 -08001111 trace_sched_swap_numa(cur, arg.src_cpu, p, arg.dst_cpu);
Peter Zijlstraac66f542013-10-07 11:29:16 +01001112 ret = stop_two_cpus(arg.dst_cpu, arg.src_cpu, migrate_swap_stop, &arg);
1113
1114out:
Peter Zijlstraac66f542013-10-07 11:29:16 +01001115 return ret;
1116}
1117
Tejun Heo969c7922010-05-06 18:49:21 +02001118struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07001119 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001121};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Tejun Heo969c7922010-05-06 18:49:21 +02001123static int migration_cpu_stop(void *data);
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 * wait_task_inactive - wait for a thread to unschedule.
1127 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07001128 * If @match_state is nonzero, it's the @p->state value just checked and
1129 * not expected to change. If it changes, i.e. @p might have woken up,
1130 * then return zero. When we succeed in waiting for @p to be off its CPU,
1131 * we return a positive number (its total switch count). If a second call
1132 * a short while later returns the same number, the caller can be sure that
1133 * @p has remained unscheduled the whole time.
1134 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 * The caller must ensure that the task *will* unschedule sometime soon,
1136 * else this function might spin for a *long* time. This function can't
1137 * be called with interrupts off, or it may introduce deadlock with
1138 * smp_call_function() if an IPI is sent by the same process we are
1139 * waiting to become inactive.
1140 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001141unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001144 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001145 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001146 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Andi Kleen3a5c3592007-10-15 17:00:14 +02001148 for (;;) {
1149 /*
1150 * We do the initial early heuristics without holding
1151 * any task-queue locks at all. We'll only try to get
1152 * the runqueue lock when things look like they will
1153 * work out!
1154 */
1155 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001156
Andi Kleen3a5c3592007-10-15 17:00:14 +02001157 /*
1158 * If the task is actively running on another CPU
1159 * still, just relax and busy-wait without holding
1160 * any locks.
1161 *
1162 * NOTE! Since we don't hold any locks, it's not
1163 * even sure that "rq" stays as the right runqueue!
1164 * But we don't care, since "task_running()" will
1165 * return false if the runqueue has changed and p
1166 * is actually now running somewhere else!
1167 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07001168 while (task_running(rq, p)) {
1169 if (match_state && unlikely(p->state != match_state))
1170 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02001171 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07001172 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001173
Andi Kleen3a5c3592007-10-15 17:00:14 +02001174 /*
1175 * Ok, time to look more closely! We need the rq
1176 * lock now, to be *sure*. If we're wrong, we'll
1177 * just go back and repeat.
1178 */
1179 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02001180 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001181 running = task_running(rq, p);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001182 on_rq = p->on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07001183 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07001184 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07001185 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001186 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001187
Andi Kleen3a5c3592007-10-15 17:00:14 +02001188 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07001189 * If it changed from the expected state, bail out now.
1190 */
1191 if (unlikely(!ncsw))
1192 break;
1193
1194 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02001195 * Was it really running after all now that we
1196 * checked with the proper locks actually held?
1197 *
1198 * Oops. Go back and try again..
1199 */
1200 if (unlikely(running)) {
1201 cpu_relax();
1202 continue;
1203 }
1204
1205 /*
1206 * It's not enough that it's not actively running,
1207 * it must be off the runqueue _entirely_, and not
1208 * preempted!
1209 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00001210 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02001211 * running right now), it's preempted, and we should
1212 * yield - it could be a while.
1213 */
1214 if (unlikely(on_rq)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00001215 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
1216
1217 set_current_state(TASK_UNINTERRUPTIBLE);
1218 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001219 continue;
1220 }
1221
1222 /*
1223 * Ahh, all good. It wasn't running, and it wasn't
1224 * runnable, which means that it will never become
1225 * running in the future either. We're all done!
1226 */
1227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07001229
1230 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
1233/***
1234 * kick_process - kick a running thread to enter/exit the kernel
1235 * @p: the to-be-kicked thread
1236 *
1237 * Cause a process which is running on another CPU to enter
1238 * kernel-mode, without any delay. (to get signals handled.)
1239 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001240 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 * because all it wants to ensure is that the remote task enters
1242 * the kernel. If the IPI races and the task has been migrated
1243 * to another CPU then no harm is done and the purpose has been
1244 * achieved as well.
1245 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001246void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
1248 int cpu;
1249
1250 preempt_disable();
1251 cpu = task_cpu(p);
1252 if ((cpu != smp_processor_id()) && task_curr(p))
1253 smp_send_reschedule(cpu);
1254 preempt_enable();
1255}
Rusty Russellb43e3522009-06-12 22:27:00 -06001256EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07001257#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001259#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01001260/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001261 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01001262 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001263static int select_fallback_rq(int cpu, struct task_struct *p)
1264{
Tang Chenaa00d892013-02-22 16:33:33 -08001265 int nid = cpu_to_node(cpu);
1266 const struct cpumask *nodemask = NULL;
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001267 enum { cpuset, possible, fail } state = cpuset;
1268 int dest_cpu;
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001269
Tang Chenaa00d892013-02-22 16:33:33 -08001270 /*
1271 * If the node that the cpu is on has been offlined, cpu_to_node()
1272 * will return -1. There is no cpu on the node, and we should
1273 * select the cpu on the other node.
1274 */
1275 if (nid != -1) {
1276 nodemask = cpumask_of_node(nid);
1277
1278 /* Look for allowed, online CPU in same node. */
1279 for_each_cpu(dest_cpu, nodemask) {
1280 if (!cpu_online(dest_cpu))
1281 continue;
1282 if (!cpu_active(dest_cpu))
1283 continue;
1284 if (cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
1285 return dest_cpu;
1286 }
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001287 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001288
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001289 for (;;) {
1290 /* Any allowed, online CPU? */
Srivatsa S. Bhate3831ed2012-03-30 19:40:28 +05301291 for_each_cpu(dest_cpu, tsk_cpus_allowed(p)) {
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001292 if (!cpu_online(dest_cpu))
1293 continue;
1294 if (!cpu_active(dest_cpu))
1295 continue;
1296 goto out;
1297 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001298
Peter Zijlstra2baab4e2012-03-20 15:57:01 +01001299 switch (state) {
1300 case cpuset:
1301 /* No more Mr. Nice Guy. */
1302 cpuset_cpus_allowed_fallback(p);
1303 state = possible;
1304 break;
1305
1306 case possible:
1307 do_set_cpus_allowed(p, cpu_possible_mask);
1308 state = fail;
1309 break;
1310
1311 case fail:
1312 BUG();
1313 break;
1314 }
1315 }
1316
1317out:
1318 if (state != cpuset) {
1319 /*
1320 * Don't tell them about moving exiting tasks or
1321 * kernel threads (both mm NULL), since they never
1322 * leave kernel.
1323 */
1324 if (p->mm && printk_ratelimit()) {
1325 printk_sched("process %d (%s) no longer affine to cpu%d\n",
1326 task_pid_nr(p), p->comm, cpu);
1327 }
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001328 }
1329
1330 return dest_cpu;
1331}
1332
Peter Zijlstrae2912002009-12-16 18:04:36 +01001333/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001334 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01001335 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001336static inline
Peter Zijlstraac66f542013-10-07 11:29:16 +01001337int select_task_rq(struct task_struct *p, int cpu, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001338{
Peter Zijlstraac66f542013-10-07 11:29:16 +01001339 cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001340
1341 /*
1342 * In order not to call set_task_cpu() on a blocking task we need
1343 * to rely on ttwu() to place the task on a valid ->cpus_allowed
1344 * cpu.
1345 *
1346 * Since this is common to all placement strategies, this lives here.
1347 *
1348 * [ this allows ->select_task() to simply return task_cpu(p) and
1349 * not worry about this generic constraint ]
1350 */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02001351 if (unlikely(!cpumask_test_cpu(cpu, tsk_cpus_allowed(p)) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01001352 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01001353 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01001354
1355 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001356}
Mike Galbraith09a40af2010-04-15 07:29:59 +02001357
1358static void update_avg(u64 *avg, u64 sample)
1359{
1360 s64 diff = sample - *avg;
1361 *avg += diff >> 3;
1362}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01001363#endif
1364
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001365static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001366ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001367{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001368#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001369 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09001370
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001371#ifdef CONFIG_SMP
1372 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09001373
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001374 if (cpu == this_cpu) {
1375 schedstat_inc(rq, ttwu_local);
1376 schedstat_inc(p, se.statistics.nr_wakeups_local);
1377 } else {
1378 struct sched_domain *sd;
1379
1380 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001381 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001382 for_each_domain(this_cpu, sd) {
1383 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
1384 schedstat_inc(sd, ttwu_wake_remote);
1385 break;
1386 }
1387 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001388 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001389 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001390
1391 if (wake_flags & WF_MIGRATED)
1392 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
1393
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001394#endif /* CONFIG_SMP */
1395
1396 schedstat_inc(rq, ttwu_count);
1397 schedstat_inc(p, se.statistics.nr_wakeups);
1398
1399 if (wake_flags & WF_SYNC)
1400 schedstat_inc(p, se.statistics.nr_wakeups_sync);
1401
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001402#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09001403}
1404
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001405static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001406{
Tejun Heo9ed38112009-12-03 15:08:03 +09001407 activate_task(rq, p, en_flags);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001408 p->on_rq = 1;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02001409
1410 /* if a worker is waking up, notify workqueue */
1411 if (p->flags & PF_WQ_WORKER)
1412 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09001413}
1414
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001415/*
1416 * Mark the task runnable and perform wakeup-preemption.
1417 */
Peter Zijlstra89363382011-04-05 17:23:42 +02001418static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001419ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09001420{
Tejun Heo9ed38112009-12-03 15:08:03 +09001421 check_preempt_curr(rq, p, wake_flags);
Peter Zijlstraa8d7ad52013-03-14 10:48:39 +01001422 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09001423
1424 p->state = TASK_RUNNING;
1425#ifdef CONFIG_SMP
1426 if (p->sched_class->task_woken)
1427 p->sched_class->task_woken(rq, p);
1428
Steven Rostedte69c6342010-12-06 17:10:31 -05001429 if (rq->idle_stamp) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001430 u64 delta = rq_clock(rq) - rq->idle_stamp;
Jason Low9bd721c2013-09-13 11:26:52 -07001431 u64 max = 2*rq->max_idle_balance_cost;
Tejun Heo9ed38112009-12-03 15:08:03 +09001432
Jason Lowabfafa52013-09-13 11:26:51 -07001433 update_avg(&rq->avg_idle, delta);
1434
1435 if (rq->avg_idle > max)
Tejun Heo9ed38112009-12-03 15:08:03 +09001436 rq->avg_idle = max;
Jason Lowabfafa52013-09-13 11:26:51 -07001437
Tejun Heo9ed38112009-12-03 15:08:03 +09001438 rq->idle_stamp = 0;
1439 }
1440#endif
1441}
1442
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001443static void
1444ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
1445{
1446#ifdef CONFIG_SMP
1447 if (p->sched_contributes_to_load)
1448 rq->nr_uninterruptible--;
1449#endif
1450
1451 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
1452 ttwu_do_wakeup(rq, p, wake_flags);
1453}
1454
1455/*
1456 * Called in case the task @p isn't fully descheduled from its runqueue,
1457 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
1458 * since all we need to do is flip p->state to TASK_RUNNING, since
1459 * the task is still ->on_rq.
1460 */
1461static int ttwu_remote(struct task_struct *p, int wake_flags)
1462{
1463 struct rq *rq;
1464 int ret = 0;
1465
1466 rq = __task_rq_lock(p);
1467 if (p->on_rq) {
Frederic Weisbecker1ad4ec02013-04-12 01:51:00 +02001468 /* check_preempt_curr() may use rq clock */
1469 update_rq_clock(rq);
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001470 ttwu_do_wakeup(rq, p, wake_flags);
1471 ret = 1;
1472 }
1473 __task_rq_unlock(rq);
1474
1475 return ret;
1476}
1477
Peter Zijlstra317f3942011-04-05 17:23:58 +02001478#ifdef CONFIG_SMP
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001479static void sched_ttwu_pending(void)
Peter Zijlstra317f3942011-04-05 17:23:58 +02001480{
1481 struct rq *rq = this_rq();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001482 struct llist_node *llist = llist_del_all(&rq->wake_list);
1483 struct task_struct *p;
Peter Zijlstra317f3942011-04-05 17:23:58 +02001484
1485 raw_spin_lock(&rq->lock);
1486
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001487 while (llist) {
1488 p = llist_entry(llist, struct task_struct, wake_entry);
1489 llist = llist_next(llist);
Peter Zijlstra317f3942011-04-05 17:23:58 +02001490 ttwu_do_activate(rq, p, 0);
1491 }
1492
1493 raw_spin_unlock(&rq->lock);
1494}
1495
1496void scheduler_ipi(void)
1497{
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001498 /*
1499 * Fold TIF_NEED_RESCHED into the preempt_count; anybody setting
1500 * TIF_NEED_RESCHED remotely (for the first time) will also send
1501 * this IPI.
1502 */
Peter Zijlstra8cb75e02013-11-20 12:22:37 +01001503 preempt_fold_need_resched();
Peter Zijlstraf27dde82013-08-14 14:55:31 +02001504
Vincent Guittot873b4c62013-06-05 10:13:11 +02001505 if (llist_empty(&this_rq()->wake_list)
1506 && !tick_nohz_full_cpu(smp_processor_id())
1507 && !got_nohz_idle_kick())
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001508 return;
1509
1510 /*
1511 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
1512 * traditionally all their work was done from the interrupt return
1513 * path. Now that we actually do some work, we need to make sure
1514 * we do call them.
1515 *
1516 * Some archs already do call them, luckily irq_enter/exit nest
1517 * properly.
1518 *
1519 * Arguably we should visit all archs and update all handlers,
1520 * however a fair share of IPIs are still resched only so this would
1521 * somewhat pessimize the simple resched case.
1522 */
1523 irq_enter();
Frederic Weisbeckerff442c52013-04-20 15:27:08 +02001524 tick_nohz_full_check();
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001525 sched_ttwu_pending();
Suresh Siddhaca380622011-10-03 15:09:00 -07001526
1527 /*
1528 * Check if someone kicked us for doing the nohz idle load balance.
1529 */
Vincent Guittot873b4c62013-06-05 10:13:11 +02001530 if (unlikely(got_nohz_idle_kick())) {
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001531 this_rq()->idle_balance = 1;
Suresh Siddhaca380622011-10-03 15:09:00 -07001532 raise_softirq_irqoff(SCHED_SOFTIRQ);
Suresh Siddha6eb57e02011-10-03 15:09:01 -07001533 }
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07001534 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02001535}
1536
1537static void ttwu_queue_remote(struct task_struct *p, int cpu)
1538{
Peter Zijlstrafa14ff42011-09-12 13:06:17 +02001539 if (llist_add(&p->wake_entry, &cpu_rq(cpu)->wake_list))
Peter Zijlstra317f3942011-04-05 17:23:58 +02001540 smp_send_reschedule(cpu);
1541}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001542
Peter Zijlstra39be3502012-01-26 12:44:34 +01001543bool cpus_share_cache(int this_cpu, int that_cpu)
Peter Zijlstra518cd622011-12-07 15:07:31 +01001544{
1545 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
1546}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02001547#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001548
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001549static void ttwu_queue(struct task_struct *p, int cpu)
1550{
1551 struct rq *rq = cpu_rq(cpu);
1552
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00001553#if defined(CONFIG_SMP)
Peter Zijlstra39be3502012-01-26 12:44:34 +01001554 if (sched_feat(TTWU_QUEUE) && !cpus_share_cache(smp_processor_id(), cpu)) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02001555 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02001556 ttwu_queue_remote(p, cpu);
1557 return;
1558 }
1559#endif
1560
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001561 raw_spin_lock(&rq->lock);
1562 ttwu_do_activate(rq, p, 0);
1563 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09001564}
1565
1566/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09001568 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09001570 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 *
1572 * Put it on the run-queue if it's not already there. The "current"
1573 * thread is always on the run-queue (except when the actual
1574 * re-schedule is in progress), and as such you're allowed to do
1575 * the simpler "current->state = TASK_RUNNING" to mark yourself
1576 * runnable without the overhead of this.
1577 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02001578 * Return: %true if @p was woken up, %false if it was already running.
Tejun Heo9ed38112009-12-03 15:08:03 +09001579 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001581static int
1582try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001585 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001586
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02001587 /*
1588 * If we are going to wake up a thread waiting for CONDITION we
1589 * need to ensure that CONDITION=1 done by the caller can not be
1590 * reordered with p->state check below. This pairs with mb() in
1591 * set_current_state() the waiting thread does.
1592 */
1593 smp_mb__before_spinlock();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001594 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001595 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 goto out;
1597
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001598 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001600
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001601 if (p->on_rq && ttwu_remote(p, wake_flags))
1602 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001605 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001606 * If the owning (remote) cpu is still in the middle of schedule() with
1607 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001608 */
Peter Zijlstraf3e94782012-09-12 11:22:00 +02001609 while (p->on_cpu)
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001610 cpu_relax();
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001611 /*
1612 * Pairs with the smp_wmb() in finish_lock_switch().
1613 */
1614 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02001616 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02001617 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001618
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02001619 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02001620 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01001621
Peter Zijlstraac66f542013-10-07 11:29:16 +01001622 cpu = select_task_rq(p, p->wake_cpu, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001623 if (task_cpu(p) != cpu) {
1624 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02001625 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02001626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02001629 ttwu_queue(p, cpu);
1630stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001631 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02001633 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 return success;
1636}
1637
David Howells50fa6102009-04-28 15:01:38 +01001638/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02001639 * try_to_wake_up_local - try to wake up a local task with rq lock held
1640 * @p: the thread to be awakened
1641 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02001642 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02001643 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02001644 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02001645 */
1646static void try_to_wake_up_local(struct task_struct *p)
1647{
1648 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001649
Tejun Heo383efcd2013-03-18 12:22:34 -07001650 if (WARN_ON_ONCE(rq != this_rq()) ||
1651 WARN_ON_ONCE(p == current))
1652 return;
1653
Tejun Heo21aa9af2010-06-08 21:40:37 +02001654 lockdep_assert_held(&rq->lock);
1655
Peter Zijlstra2acca552011-04-05 17:23:50 +02001656 if (!raw_spin_trylock(&p->pi_lock)) {
1657 raw_spin_unlock(&rq->lock);
1658 raw_spin_lock(&p->pi_lock);
1659 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001660 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02001661
Tejun Heo21aa9af2010-06-08 21:40:37 +02001662 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02001663 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02001664
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001665 if (!p->on_rq)
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02001666 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
1667
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02001668 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02001669 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02001670out:
1671 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02001672}
1673
1674/**
David Howells50fa6102009-04-28 15:01:38 +01001675 * wake_up_process - Wake up a specific process
1676 * @p: The process to be woken up.
1677 *
1678 * Attempt to wake up the nominated process and move it to the set of runnable
Yacine Belkadie69f6182013-07-12 20:45:47 +02001679 * processes.
1680 *
1681 * Return: 1 if the process was woken up, 0 if it was already running.
David Howells50fa6102009-04-28 15:01:38 +01001682 *
1683 * It may be assumed that this function implies a write memory barrier before
1684 * changing the task state if and only if any tasks are woken up.
1685 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001686int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
Oleg Nesterov9067ac82013-01-21 20:48:17 +01001688 WARN_ON(task_is_stopped_or_traced(p));
1689 return try_to_wake_up(p, TASK_NORMAL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691EXPORT_SYMBOL(wake_up_process);
1692
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001693int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
1695 return try_to_wake_up(p, state, 0);
1696}
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698/*
1699 * Perform scheduler related setup for a newly forked process p.
1700 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001701 *
1702 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
Rik van Riel5e1576e2013-10-07 11:29:26 +01001704static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001706 p->on_rq = 0;
1707
1708 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001709 p->se.exec_start = 0;
1710 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001711 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01001712 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001713 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001714 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001715
1716#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03001717 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001718#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001719
Dario Faggioliaab03e02013-11-28 11:14:43 +01001720 RB_CLEAR_NODE(&p->dl.rb_node);
1721 hrtimer_init(&p->dl.dl_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1722 p->dl.dl_runtime = p->dl.runtime = 0;
1723 p->dl.dl_deadline = p->dl.deadline = 0;
Harald Gustafsson755378a2013-11-07 14:43:40 +01001724 p->dl.dl_period = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001725 p->dl.flags = 0;
1726
Peter Zijlstrafa717062008-01-25 21:08:27 +01001727 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07001728
Avi Kivitye107be32007-07-26 13:40:43 +02001729#ifdef CONFIG_PREEMPT_NOTIFIERS
1730 INIT_HLIST_HEAD(&p->preempt_notifiers);
1731#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001732
1733#ifdef CONFIG_NUMA_BALANCING
1734 if (p->mm && atomic_read(&p->mm->mm_users) == 1) {
Mel Gorman7e8d16b2013-10-07 11:28:54 +01001735 p->mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001736 p->mm->numa_scan_seq = 0;
1737 }
1738
Rik van Riel5e1576e2013-10-07 11:29:26 +01001739 if (clone_flags & CLONE_VM)
1740 p->numa_preferred_nid = current->numa_preferred_nid;
1741 else
1742 p->numa_preferred_nid = -1;
1743
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001744 p->node_stamp = 0ULL;
1745 p->numa_scan_seq = p->mm ? p->mm->numa_scan_seq : 0;
Peter Zijlstra4b96a292012-10-25 14:16:47 +02001746 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001747 p->numa_work.next = &p->numa_work;
Rik van Rielff1df892014-01-27 17:03:41 -05001748 p->numa_faults_memory = NULL;
1749 p->numa_faults_buffer_memory = NULL;
Rik van Riel7e2703e2014-01-27 17:03:45 -05001750 p->last_task_numa_placement = 0;
1751 p->last_sum_exec_runtime = 0;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01001752
1753 INIT_LIST_HEAD(&p->numa_entry);
1754 p->numa_group = NULL;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001755#endif /* CONFIG_NUMA_BALANCING */
Ingo Molnardd41f592007-07-09 18:51:59 +02001756}
1757
Mel Gorman1a687c22012-11-22 11:16:36 +00001758#ifdef CONFIG_NUMA_BALANCING
Mel Gorman3105b862012-11-23 11:23:49 +00001759#ifdef CONFIG_SCHED_DEBUG
Mel Gorman1a687c22012-11-22 11:16:36 +00001760void set_numabalancing_state(bool enabled)
1761{
1762 if (enabled)
1763 sched_feat_set("NUMA");
1764 else
1765 sched_feat_set("NO_NUMA");
1766}
Mel Gorman3105b862012-11-23 11:23:49 +00001767#else
1768__read_mostly bool numabalancing_enabled;
1769
1770void set_numabalancing_state(bool enabled)
1771{
1772 numabalancing_enabled = enabled;
1773}
1774#endif /* CONFIG_SCHED_DEBUG */
Andi Kleen54a43d52014-01-23 15:53:13 -08001775
1776#ifdef CONFIG_PROC_SYSCTL
1777int sysctl_numa_balancing(struct ctl_table *table, int write,
1778 void __user *buffer, size_t *lenp, loff_t *ppos)
1779{
1780 struct ctl_table t;
1781 int err;
1782 int state = numabalancing_enabled;
1783
1784 if (write && !capable(CAP_SYS_ADMIN))
1785 return -EPERM;
1786
1787 t = *table;
1788 t.data = &state;
1789 err = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
1790 if (err < 0)
1791 return err;
1792 if (write)
1793 set_numabalancing_state(state);
1794 return err;
1795}
1796#endif
1797#endif
Mel Gorman1a687c22012-11-22 11:16:36 +00001798
Ingo Molnardd41f592007-07-09 18:51:59 +02001799/*
1800 * fork()/clone()-time setup:
1801 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001802int sched_fork(unsigned long clone_flags, struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02001803{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001804 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001805 int cpu = get_cpu();
1806
Rik van Riel5e1576e2013-10-07 11:29:26 +01001807 __sched_fork(clone_flags, p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001808 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01001809 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01001810 * nobody will actually run it, and a signal or other external
1811 * event cannot wake it up and insert it on the runqueue either.
1812 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01001813 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001814
Ingo Molnarb29739f2006-06-27 02:54:51 -07001815 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02001816 * Make sure we do not leak PI boosting priority to the child.
1817 */
1818 p->prio = current->normal_prio;
1819
1820 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001821 * Revert to default priority/policy on fork if requested.
1822 */
1823 if (unlikely(p->sched_reset_on_fork)) {
Dario Faggioliaab03e02013-11-28 11:14:43 +01001824 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001825 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001826 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02001827 p->rt_priority = 0;
1828 } else if (PRIO_TO_NICE(p->static_prio) < 0)
1829 p->static_prio = NICE_TO_PRIO(0);
1830
1831 p->prio = p->normal_prio = __normal_prio(p);
1832 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02001833
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02001834 /*
1835 * We don't need the reset flag anymore after the fork. It has
1836 * fulfilled its duty:
1837 */
1838 p->sched_reset_on_fork = 0;
1839 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02001840
Dario Faggioliaab03e02013-11-28 11:14:43 +01001841 if (dl_prio(p->prio)) {
1842 put_cpu();
1843 return -EAGAIN;
1844 } else if (rt_prio(p->prio)) {
1845 p->sched_class = &rt_sched_class;
1846 } else {
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001847 p->sched_class = &fair_sched_class;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001848 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001849
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001850 if (p->sched_class->task_fork)
1851 p->sched_class->task_fork(p);
1852
Peter Zijlstra86951592010-06-22 11:44:53 +02001853 /*
1854 * The child is not yet in the pid-hash so no cgroup attach races,
1855 * and the cgroup is pinned to this child due to cgroup_fork()
1856 * is ran before sched_fork().
1857 *
1858 * Silence PROVE_RCU.
1859 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001860 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001861 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001862 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02001863
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001864#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001865 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001866 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001868#if defined(CONFIG_SMP)
1869 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07001870#endif
Peter Zijlstra01028742013-08-14 14:55:46 +02001871 init_task_preempt_count(p);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001872#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05001873 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001874 RB_CLEAR_NODE(&p->pushable_dl_tasks);
Dario Faggioli806c09a2010-11-30 19:51:33 +01001875#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05001876
Nick Piggin476d1392005-06-25 14:57:29 -07001877 put_cpu();
Dario Faggioliaab03e02013-11-28 11:14:43 +01001878 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
Dario Faggioli332ac172013-11-07 14:43:45 +01001881unsigned long to_ratio(u64 period, u64 runtime)
1882{
1883 if (runtime == RUNTIME_INF)
1884 return 1ULL << 20;
1885
1886 /*
1887 * Doing this here saves a lot of checks in all
1888 * the calling paths, and returning zero seems
1889 * safe for them anyway.
1890 */
1891 if (period == 0)
1892 return 0;
1893
1894 return div64_u64(runtime << 20, period);
1895}
1896
1897#ifdef CONFIG_SMP
1898inline struct dl_bw *dl_bw_of(int i)
1899{
1900 return &cpu_rq(i)->rd->dl_bw;
1901}
1902
Peter Zijlstrade212f12013-12-19 11:54:45 +01001903static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001904{
Peter Zijlstrade212f12013-12-19 11:54:45 +01001905 struct root_domain *rd = cpu_rq(i)->rd;
1906 int cpus = 0;
1907
1908 for_each_cpu_and(i, rd->span, cpu_active_mask)
1909 cpus++;
1910
1911 return cpus;
Dario Faggioli332ac172013-11-07 14:43:45 +01001912}
1913#else
1914inline struct dl_bw *dl_bw_of(int i)
1915{
1916 return &cpu_rq(i)->dl.dl_bw;
1917}
1918
Peter Zijlstrade212f12013-12-19 11:54:45 +01001919static inline int dl_bw_cpus(int i)
Dario Faggioli332ac172013-11-07 14:43:45 +01001920{
1921 return 1;
1922}
1923#endif
1924
1925static inline
1926void __dl_clear(struct dl_bw *dl_b, u64 tsk_bw)
1927{
1928 dl_b->total_bw -= tsk_bw;
1929}
1930
1931static inline
1932void __dl_add(struct dl_bw *dl_b, u64 tsk_bw)
1933{
1934 dl_b->total_bw += tsk_bw;
1935}
1936
1937static inline
1938bool __dl_overflow(struct dl_bw *dl_b, int cpus, u64 old_bw, u64 new_bw)
1939{
1940 return dl_b->bw != -1 &&
1941 dl_b->bw * cpus < dl_b->total_bw - old_bw + new_bw;
1942}
1943
1944/*
1945 * We must be sure that accepting a new task (or allowing changing the
1946 * parameters of an existing one) is consistent with the bandwidth
1947 * constraints. If yes, this function also accordingly updates the currently
1948 * allocated bandwidth to reflect the new situation.
1949 *
1950 * This function is called while holding p's rq->lock.
1951 */
1952static int dl_overflow(struct task_struct *p, int policy,
1953 const struct sched_attr *attr)
1954{
1955
1956 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
1957 u64 period = attr->sched_period;
1958 u64 runtime = attr->sched_runtime;
1959 u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
Peter Zijlstrade212f12013-12-19 11:54:45 +01001960 int cpus, err = -1;
Dario Faggioli332ac172013-11-07 14:43:45 +01001961
1962 if (new_bw == p->dl.dl_bw)
1963 return 0;
1964
1965 /*
1966 * Either if a task, enters, leave, or stays -deadline but changes
1967 * its parameters, we may need to update accordingly the total
1968 * allocated bandwidth of the container.
1969 */
1970 raw_spin_lock(&dl_b->lock);
Peter Zijlstrade212f12013-12-19 11:54:45 +01001971 cpus = dl_bw_cpus(task_cpu(p));
Dario Faggioli332ac172013-11-07 14:43:45 +01001972 if (dl_policy(policy) && !task_has_dl_policy(p) &&
1973 !__dl_overflow(dl_b, cpus, 0, new_bw)) {
1974 __dl_add(dl_b, new_bw);
1975 err = 0;
1976 } else if (dl_policy(policy) && task_has_dl_policy(p) &&
1977 !__dl_overflow(dl_b, cpus, p->dl.dl_bw, new_bw)) {
1978 __dl_clear(dl_b, p->dl.dl_bw);
1979 __dl_add(dl_b, new_bw);
1980 err = 0;
1981 } else if (!dl_policy(policy) && task_has_dl_policy(p)) {
1982 __dl_clear(dl_b, p->dl.dl_bw);
1983 err = 0;
1984 }
1985 raw_spin_unlock(&dl_b->lock);
1986
1987 return err;
1988}
1989
1990extern void init_dl_bw(struct dl_bw *dl_b);
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992/*
1993 * wake_up_new_task - wake up a newly created task for the first time.
1994 *
1995 * This function will do some initial scheduler statistics housekeeping
1996 * that must be done for every newly created context, then puts the task
1997 * on the runqueue and wakes it.
1998 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02001999void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002002 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002003
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002004 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002005#ifdef CONFIG_SMP
2006 /*
2007 * Fork balancing, do it here and not earlier because:
2008 * - cpus_allowed can change in the fork path
2009 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002010 */
Peter Zijlstraac66f542013-10-07 11:29:16 +01002011 set_task_cpu(p, select_task_rq(p, task_cpu(p), SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002012#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Alex Shia75cdaa2013-06-20 10:18:47 +08002014 /* Initialize new task's runnable average */
2015 init_task_runnable_average(p);
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002016 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002017 activate_task(rq, p, 0);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002018 p->on_rq = 1;
Peter Zijlstra89363382011-04-05 17:23:42 +02002019 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02002020 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002021#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002022 if (p->sched_class->task_woken)
2023 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002024#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002025 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Avi Kivitye107be32007-07-26 13:40:43 +02002028#ifdef CONFIG_PREEMPT_NOTIFIERS
2029
2030/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002031 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002032 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002033 */
2034void preempt_notifier_register(struct preempt_notifier *notifier)
2035{
2036 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2037}
2038EXPORT_SYMBOL_GPL(preempt_notifier_register);
2039
2040/**
2041 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002042 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002043 *
2044 * This is safe to call from within a preemption notifier.
2045 */
2046void preempt_notifier_unregister(struct preempt_notifier *notifier)
2047{
2048 hlist_del(&notifier->link);
2049}
2050EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2051
2052static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2053{
2054 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002055
Sasha Levinb67bfe02013-02-27 17:06:00 -08002056 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002057 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2058}
2059
2060static void
2061fire_sched_out_preempt_notifiers(struct task_struct *curr,
2062 struct task_struct *next)
2063{
2064 struct preempt_notifier *notifier;
Avi Kivitye107be32007-07-26 13:40:43 +02002065
Sasha Levinb67bfe02013-02-27 17:06:00 -08002066 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
Avi Kivitye107be32007-07-26 13:40:43 +02002067 notifier->ops->sched_out(notifier, next);
2068}
2069
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002070#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002071
2072static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2073{
2074}
2075
2076static void
2077fire_sched_out_preempt_notifiers(struct task_struct *curr,
2078 struct task_struct *next)
2079{
2080}
2081
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002082#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002085 * prepare_task_switch - prepare to switch tasks
2086 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002087 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002088 * @next: the task we are going to switch to.
2089 *
2090 * This is called with the rq lock held and interrupts off. It must
2091 * be paired with a subsequent finish_task_switch after the context
2092 * switch.
2093 *
2094 * prepare_task_switch sets up locking and calls architecture specific
2095 * hooks.
2096 */
Avi Kivitye107be32007-07-26 13:40:43 +02002097static inline void
2098prepare_task_switch(struct rq *rq, struct task_struct *prev,
2099 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002100{
Andrew Vagin895dd922012-07-12 14:14:29 +04002101 trace_sched_switch(prev, next);
Michael S. Tsirkin43148952013-09-22 17:20:54 +03002102 sched_info_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002103 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02002104 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002105 prepare_lock_switch(rq, next);
2106 prepare_arch_switch(next);
2107}
2108
2109/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002111 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 * @prev: the thread we just switched away from.
2113 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002114 * finish_task_switch must be called after the context switch, paired
2115 * with a prepare_task_switch call before the context switch.
2116 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2117 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 *
2119 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002120 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * with the lock held can cause deadlocks; see schedule() for
2122 * details.)
2123 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002124static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 __releases(rq->lock)
2126{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002128 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 rq->prev_mm = NULL;
2131
2132 /*
2133 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002134 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002135 * schedule one last time. The schedule call will never return, and
2136 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002137 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 * still held, otherwise prev could be scheduled on another cpu, die
2139 * there before we look at prev->state, and then the reference would
2140 * be dropped twice.
2141 * Manfred Spraul <manfred@colorfullife.com>
2142 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002143 prev_state = prev->state;
Frederic Weisbeckerbf9fae92012-09-08 15:23:11 +02002144 vtime_task_switch(prev);
Nick Piggin4866cde2005-06-25 14:57:23 -07002145 finish_arch_switch(prev);
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002146 perf_event_task_sched_in(prev, current);
Nick Piggin4866cde2005-06-25 14:57:23 -07002147 finish_lock_switch(rq, prev);
Catalin Marinas01f23e12011-11-27 21:43:10 +00002148 finish_arch_post_lock_switch();
Steven Rostedte8fa1362008-01-25 21:08:05 +01002149
Avi Kivitye107be32007-07-26 13:40:43 +02002150 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (mm)
2152 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002153 if (unlikely(prev_state == TASK_DEAD)) {
Mel Gormanf809ca92013-10-07 11:28:57 +01002154 task_numa_free(prev);
2155
Dario Faggiolie6c390f2013-11-07 14:43:35 +01002156 if (prev->sched_class->task_dead)
2157 prev->sched_class->task_dead(prev);
2158
bibo maoc6fd91f2006-03-26 01:38:20 -08002159 /*
2160 * Remove function-return probe instances associated with this
2161 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002162 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002163 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002165 }
Frederic Weisbecker99e5ada2013-04-20 17:11:50 +02002166
2167 tick_nohz_task_switch(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Gregory Haskins3f029d32009-07-29 11:08:47 -04002170#ifdef CONFIG_SMP
2171
Gregory Haskins3f029d32009-07-29 11:08:47 -04002172/* rq->lock is NOT held, but preemption is disabled */
2173static inline void post_schedule(struct rq *rq)
2174{
2175 if (rq->post_schedule) {
2176 unsigned long flags;
2177
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002178 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002179 if (rq->curr->sched_class->post_schedule)
2180 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002181 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002182
2183 rq->post_schedule = 0;
2184 }
2185}
2186
2187#else
2188
Gregory Haskins3f029d32009-07-29 11:08:47 -04002189static inline void post_schedule(struct rq *rq)
2190{
2191}
2192
2193#endif
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195/**
2196 * schedule_tail - first thing a freshly forked thread must call.
2197 * @prev: the thread we just switched away from.
2198 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002199asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 __releases(rq->lock)
2201{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002202 struct rq *rq = this_rq();
2203
Nick Piggin4866cde2005-06-25 14:57:23 -07002204 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002205
Gregory Haskins3f029d32009-07-29 11:08:47 -04002206 /*
2207 * FIXME: do we need to worry about rq being invalidated by the
2208 * task_switch?
2209 */
2210 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002211
Nick Piggin4866cde2005-06-25 14:57:23 -07002212#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2213 /* In this case, finish_task_switch does not reenable preemption */
2214 preempt_enable();
2215#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002217 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
2220/*
2221 * context_switch - switch to the new MM and the new
2222 * thread's register state.
2223 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002224static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002225context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002226 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Ingo Molnardd41f592007-07-09 18:51:59 +02002228 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Avi Kivitye107be32007-07-26 13:40:43 +02002230 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002231
Ingo Molnardd41f592007-07-09 18:51:59 +02002232 mm = next->mm;
2233 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002234 /*
2235 * For paravirt, this is coupled with an exit in switch_to to
2236 * combine the page table reload and the switch backend into
2237 * one hypercall.
2238 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002239 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01002240
Heiko Carstens31915ab2010-09-16 14:42:25 +02002241 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 next->active_mm = oldmm;
2243 atomic_inc(&oldmm->mm_count);
2244 enter_lazy_tlb(oldmm, next);
2245 } else
2246 switch_mm(oldmm, mm, next);
2247
Heiko Carstens31915ab2010-09-16 14:42:25 +02002248 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 rq->prev_mm = oldmm;
2251 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002252 /*
2253 * Since the runqueue lock will be released by the next
2254 * task (which is an invalid locking op but in the case
2255 * of the scheduler it's an obvious special-case), so we
2256 * do an early lockdep release here:
2257 */
2258#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002259 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002260#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002262 context_tracking_task_switch(prev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 /* Here we just switch the register state and the stack. */
2264 switch_to(prev, next, prev);
2265
Ingo Molnardd41f592007-07-09 18:51:59 +02002266 barrier();
2267 /*
2268 * this_rq must be evaluated again because prev may have moved
2269 * CPUs since it called schedule(), thus the 'rq' on its stack
2270 * frame will be invalid.
2271 */
2272 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
2275/*
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002276 * nr_running and nr_context_switches:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 *
2278 * externally visible scheduler statistics: current number of runnable
Sha Zhengju1c3e8262013-02-20 17:14:38 +08002279 * threads, total number of context switches performed since bootup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 */
2281unsigned long nr_running(void)
2282{
2283 unsigned long i, sum = 0;
2284
2285 for_each_online_cpu(i)
2286 sum += cpu_rq(i)->nr_running;
2287
2288 return sum;
2289}
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291unsigned long long nr_context_switches(void)
2292{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002293 int i;
2294 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002296 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 sum += cpu_rq(i)->nr_switches;
2298
2299 return sum;
2300}
2301
2302unsigned long nr_iowait(void)
2303{
2304 unsigned long i, sum = 0;
2305
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002306 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2308
2309 return sum;
2310}
2311
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002312unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07002313{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02002314 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07002315 return atomic_read(&this->nr_iowait);
2316}
2317
Ingo Molnardd41f592007-07-09 18:51:59 +02002318#ifdef CONFIG_SMP
2319
Ingo Molnar48f24c42006-07-03 00:25:40 -07002320/*
Peter Zijlstra38022902009-12-16 18:04:37 +01002321 * sched_exec - execve() is a valuable balancing opportunity, because at
2322 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 */
Peter Zijlstra38022902009-12-16 18:04:37 +01002324void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325{
Peter Zijlstra38022902009-12-16 18:04:37 +01002326 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01002328 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01002329
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002330 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstraac66f542013-10-07 11:29:16 +01002331 dest_cpu = p->sched_class->select_task_rq(p, task_cpu(p), SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002332 if (dest_cpu == smp_processor_id())
2333 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01002334
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002335 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02002336 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07002337
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002338 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
2339 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 return;
2341 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01002342unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02002343 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344}
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346#endif
2347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348DEFINE_PER_CPU(struct kernel_stat, kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002349DEFINE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351EXPORT_PER_CPU_SYMBOL(kstat);
Glauber Costa3292beb2011-11-28 14:45:17 -02002352EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002355 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07002356 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002357 *
2358 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002360static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
2361{
2362 u64 ns = 0;
2363
2364 if (task_current(rq, p)) {
2365 update_rq_clock(rq);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02002366 ns = rq_clock_task(rq) - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002367 if ((s64)ns < 0)
2368 ns = 0;
2369 }
2370
2371 return ns;
2372}
2373
Frank Mayharbb34d922008-09-12 09:54:39 -07002374unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02002377 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07002378 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002379
Ingo Molnar41b86e92007-07-09 18:51:58 +02002380 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002381 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002382 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02002383
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002384 return ns;
2385}
Frank Mayharf06febc2008-09-12 09:54:39 -07002386
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002387/*
2388 * Return accounted runtime for the task.
2389 * In case the task is currently running, return the runtime plus current's
2390 * pending runtime that have not been accounted yet.
2391 */
2392unsigned long long task_sched_runtime(struct task_struct *p)
2393{
2394 unsigned long flags;
2395 struct rq *rq;
2396 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002397
Peter Zijlstra911b2892013-11-11 18:21:56 +01002398#if defined(CONFIG_64BIT) && defined(CONFIG_SMP)
2399 /*
2400 * 64-bit doesn't need locks to atomically read a 64bit value.
2401 * So we have a optimization chance when the task's delta_exec is 0.
2402 * Reading ->on_cpu is racy, but this is ok.
2403 *
2404 * If we race with it leaving cpu, we'll take a lock. So we're correct.
2405 * If we race with it entering cpu, unaccounted time is 0. This is
2406 * indistinguishable from the read occurring a few cycles earlier.
2407 */
2408 if (!p->on_cpu)
2409 return p->se.sum_exec_runtime;
2410#endif
2411
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002412 rq = task_rq_lock(p, &flags);
2413 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002414 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09002415
2416 return ns;
2417}
2418
Balbir Singh49048622008-09-05 18:12:23 +02002419/*
Christoph Lameter7835b982006-12-10 02:20:22 -08002420 * This function gets called by the timer code, with HZ frequency.
2421 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08002422 */
2423void scheduler_tick(void)
2424{
Christoph Lameter7835b982006-12-10 02:20:22 -08002425 int cpu = smp_processor_id();
2426 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002427 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002428
2429 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08002430
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002431 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02002432 update_rq_clock(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01002433 curr->sched_class->task_tick(rq, curr, 0);
Alex Shi83dfd522013-06-20 10:18:49 +08002434 update_cpu_load_active(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002435 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02002436
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002437 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002438
Christoph Lametere418e1c2006-12-10 02:20:23 -08002439#ifdef CONFIG_SMP
Suresh Siddha6eb57e02011-10-03 15:09:01 -07002440 rq->idle_balance = idle_cpu(cpu);
Daniel Lezcano7caff662014-01-06 12:34:38 +01002441 trigger_load_balance(rq);
Christoph Lametere418e1c2006-12-10 02:20:23 -08002442#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002443 rq_last_tick_reset(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002446#ifdef CONFIG_NO_HZ_FULL
2447/**
2448 * scheduler_tick_max_deferment
2449 *
2450 * Keep at least one tick per second when a single
2451 * active task is running because the scheduler doesn't
2452 * yet completely support full dynticks environment.
2453 *
2454 * This makes sure that uptime, CFS vruntime, load
2455 * balancing, etc... continue to move forward, even
2456 * with a very low granularity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02002457 *
2458 * Return: Maximum deferment in nanoseconds.
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002459 */
2460u64 scheduler_tick_max_deferment(void)
2461{
2462 struct rq *rq = this_rq();
2463 unsigned long next, now = ACCESS_ONCE(jiffies);
2464
2465 next = rq->last_sched_tick + HZ;
2466
2467 if (time_before_eq(next, now))
2468 return 0;
2469
Kevin Hilman8fe8ff02014-01-15 14:51:38 +01002470 return jiffies_to_nsecs(next - now);
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02002471}
2472#endif
2473
Lai Jiangshan132380a2009-04-02 14:18:25 +08002474notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002475{
2476 if (in_lock_functions(addr)) {
2477 addr = CALLER_ADDR2;
2478 if (in_lock_functions(addr))
2479 addr = CALLER_ADDR3;
2480 }
2481 return addr;
2482}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05002484#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
2485 defined(CONFIG_PREEMPT_TRACER))
2486
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002487void __kprobes preempt_count_add(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002489#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 /*
2491 * Underflow?
2492 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002493 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
2494 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002495#endif
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002496 __preempt_count_add(val);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002497#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 /*
2499 * Spinlock count overflowing soon?
2500 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002501 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
2502 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002503#endif
2504 if (preempt_count() == val)
2505 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002507EXPORT_SYMBOL(preempt_count_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002509void __kprobes preempt_count_sub(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002511#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 /*
2513 * Underflow?
2514 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01002515 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002516 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 /*
2518 * Is the spinlock portion underflowing?
2519 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002520 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
2521 !(preempt_count() & PREEMPT_MASK)))
2522 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002523#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07002524
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02002525 if (preempt_count() == val)
2526 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002527 __preempt_count_sub(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002529EXPORT_SYMBOL(preempt_count_sub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531#endif
2532
2533/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002534 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002536static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Dave Jones664dfa62011-12-22 16:39:30 -05002538 if (oops_in_progress)
2539 return;
2540
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01002541 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
2542 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02002543
Ingo Molnardd41f592007-07-09 18:51:59 +02002544 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07002545 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02002546 if (irqs_disabled())
2547 print_irqtrace_events(prev);
Stephen Boyd6135fc12012-03-28 17:10:47 -07002548 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +10302549 add_taint(TAINT_WARN, LOCKDEP_STILL_OK);
Ingo Molnardd41f592007-07-09 18:51:59 +02002550}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Ingo Molnardd41f592007-07-09 18:51:59 +02002552/*
2553 * Various schedule()-time debugging checks and statistics:
2554 */
2555static inline void schedule_debug(struct task_struct *prev)
2556{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002558 * Test if we are atomic. Since do_exit() needs to call into
Oleg Nesterov192301e2013-11-13 16:45:38 +01002559 * schedule() atomically, we ignore that path. Otherwise whine
2560 * if we are scheduling when we should not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 */
Oleg Nesterov192301e2013-11-13 16:45:38 +01002562 if (unlikely(in_atomic_preempt_off() && prev->state != TASK_DEAD))
Ingo Molnardd41f592007-07-09 18:51:59 +02002563 __schedule_bug(prev);
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07002564 rcu_sleep_check();
Ingo Molnardd41f592007-07-09 18:51:59 +02002565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2567
Ingo Molnar2d723762007-10-15 17:00:12 +02002568 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02002569}
2570
2571/*
2572 * Pick up the highest-prio task:
2573 */
2574static inline struct task_struct *
Peter Zijlstra606dba22012-02-11 06:05:00 +01002575pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02002576{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002577 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02002578 struct task_struct *p;
2579
2580 /*
2581 * Optimization: we know that if all tasks are in
2582 * the fair class we can call that function directly:
2583 */
Peter Zijlstra38033c32014-01-23 20:32:21 +01002584 if (likely(prev->sched_class == &fair_sched_class &&
2585 rq->nr_running == rq->cfs.h_nr_running)) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002586 p = fair_sched_class.pick_next_task(rq, prev);
Ingo Molnardd41f592007-07-09 18:51:59 +02002587 if (likely(p))
2588 return p;
2589 }
2590
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002591 for_each_class(class) {
Peter Zijlstra606dba22012-02-11 06:05:00 +01002592 p = class->pick_next_task(rq, prev);
Ingo Molnardd41f592007-07-09 18:51:59 +02002593 if (p)
2594 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02002595 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002596
2597 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02002598}
2599
2600/*
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002601 * __schedule() is the main scheduler function.
Pekka Enbergedde96e2012-08-04 11:49:47 +03002602 *
2603 * The main means of driving the scheduler and thus entering this function are:
2604 *
2605 * 1. Explicit blocking: mutex, semaphore, waitqueue, etc.
2606 *
2607 * 2. TIF_NEED_RESCHED flag is checked on interrupt and userspace return
2608 * paths. For example, see arch/x86/entry_64.S.
2609 *
2610 * To drive preemption between tasks, the scheduler sets the flag in timer
2611 * interrupt handler scheduler_tick().
2612 *
2613 * 3. Wakeups don't really cause entry into schedule(). They add a
2614 * task to the run-queue and that's it.
2615 *
2616 * Now, if the new task added to the run-queue preempts the current
2617 * task, then the wakeup sets TIF_NEED_RESCHED and schedule() gets
2618 * called on the nearest possible occasion:
2619 *
2620 * - If the kernel is preemptible (CONFIG_PREEMPT=y):
2621 *
2622 * - in syscall or exception context, at the next outmost
2623 * preempt_enable(). (this might be as soon as the wake_up()'s
2624 * spin_unlock()!)
2625 *
2626 * - in IRQ context, return from interrupt-handler to
2627 * preemptible context
2628 *
2629 * - If the kernel is not preemptible (CONFIG_PREEMPT is not set)
2630 * then at the next:
2631 *
2632 * - cond_resched() call
2633 * - explicit schedule() call
2634 * - return from syscall or exception to user-space
2635 * - return from interrupt-handler to user-space
Ingo Molnardd41f592007-07-09 18:51:59 +02002636 */
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002637static void __sched __schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02002638{
2639 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08002640 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02002641 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02002642 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002643
Peter Zijlstraff743342009-03-13 12:21:26 +01002644need_resched:
2645 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02002646 cpu = smp_processor_id();
2647 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07002648 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002649 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02002650
Ingo Molnardd41f592007-07-09 18:51:59 +02002651 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
Peter Zijlstra31656512008-07-18 18:01:23 +02002653 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02002654 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002655
Oleg Nesterove0acd0a2013-08-12 18:14:00 +02002656 /*
2657 * Make sure that signal_pending_state()->signal_pending() below
2658 * can't be reordered with __set_current_state(TASK_INTERRUPTIBLE)
2659 * done by the caller to avoid the race with signal_wake_up().
2660 */
2661 smp_mb__before_spinlock();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002662 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002664 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02002665 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02002666 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002667 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002668 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02002669 deactivate_task(rq, prev, DEQUEUE_SLEEP);
2670 prev->on_rq = 0;
2671
Tejun Heo21aa9af2010-06-08 21:40:37 +02002672 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02002673 * If a worker went to sleep, notify and ask workqueue
2674 * whether it wants to wake up a task to maintain
2675 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002676 */
2677 if (prev->flags & PF_WQ_WORKER) {
2678 struct task_struct *to_wakeup;
2679
2680 to_wakeup = wq_worker_sleeping(prev, cpu);
2681 if (to_wakeup)
2682 try_to_wake_up_local(to_wakeup);
2683 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02002684 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002685 switch_count = &prev->nvcsw;
2686 }
2687
Peter Zijlstra606dba22012-02-11 06:05:00 +01002688 if (prev->on_rq || rq->skip_clock_update < 0)
2689 update_rq_clock(rq);
2690
2691 next = pick_next_task(rq, prev);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002692 clear_tsk_need_resched(prev);
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002693 clear_preempt_need_resched();
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002694 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 rq->nr_switches++;
2698 rq->curr = next;
2699 ++*switch_count;
2700
Ingo Molnardd41f592007-07-09 18:51:59 +02002701 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002702 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02002703 * The context switch have flipped the stack from under us
2704 * and restored the local variables which were saved when
2705 * this task called schedule() in the past. prev == current
2706 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002707 */
2708 cpu = smp_processor_id();
2709 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002711 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Gregory Haskins3f029d32009-07-29 11:08:47 -04002713 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002715 sched_preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01002716 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 goto need_resched;
2718}
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002719
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002720static inline void sched_submit_work(struct task_struct *tsk)
2721{
Thomas Gleixner3c7d5182011-07-17 20:46:52 +02002722 if (!tsk->state || tsk_is_pi_blocked(tsk))
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002723 return;
2724 /*
2725 * If we are going to sleep and we have plugged IO queued,
2726 * make sure to submit it to avoid deadlocks.
2727 */
2728 if (blk_needs_flush_plug(tsk))
2729 blk_schedule_flush_plug(tsk);
2730}
2731
Simon Kirby6ebbe7a2011-09-22 17:03:46 -07002732asmlinkage void __sched schedule(void)
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002733{
Thomas Gleixner9c40cef22011-06-22 19:47:01 +02002734 struct task_struct *tsk = current;
2735
2736 sched_submit_work(tsk);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002737 __schedule();
2738}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739EXPORT_SYMBOL(schedule);
2740
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002741#ifdef CONFIG_CONTEXT_TRACKING
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002742asmlinkage void __sched schedule_user(void)
2743{
2744 /*
2745 * If we come here after a random call to set_need_resched(),
2746 * or we have been woken up remotely but the IPI has not yet arrived,
2747 * we haven't yet exited the RCU idle mode. Do it here manually until
2748 * we find a better solution.
2749 */
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002750 user_exit();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002751 schedule();
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01002752 user_enter();
Frederic Weisbecker20ab65e32012-07-11 20:26:37 +02002753}
2754#endif
2755
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002756/**
2757 * schedule_preempt_disabled - called with preemption disabled
2758 *
2759 * Returns with preemption disabled. Note: preempt_count must be 1
2760 */
2761void __sched schedule_preempt_disabled(void)
2762{
Thomas Gleixnerba74c142011-03-21 13:32:17 +01002763 sched_preempt_enable_no_resched();
Thomas Gleixnerc5491ea2011-03-21 12:09:35 +01002764 schedule();
2765 preempt_disable();
2766}
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768#ifdef CONFIG_PREEMPT
2769/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002770 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002771 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 * occur there and call schedule directly.
2773 */
Steven Rostedtd1f74e22010-06-02 21:52:29 -04002774asmlinkage void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 /*
2777 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002778 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 */
Frederic Weisbeckerfbb00b52013-06-19 23:56:22 +02002780 if (likely(!preemptible()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 return;
2782
Andi Kleen3a5c3592007-10-15 17:00:14 +02002783 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002784 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002785 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002786 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002787
2788 /*
2789 * Check again in case we missed a preemption opportunity
2790 * between schedule and now.
2791 */
2792 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002793 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795EXPORT_SYMBOL(preempt_schedule);
Thomas Gleixner32e475d2013-11-21 12:41:44 +01002796#endif /* CONFIG_PREEMPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002799 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 * off of irq context.
2801 * Note, that this is called and return with irqs disabled. This will
2802 * protect us against recursive calling from irq.
2803 */
2804asmlinkage void __sched preempt_schedule_irq(void)
2805{
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002806 enum ctx_state prev_state;
Ingo Molnar6478d882008-01-25 21:08:33 +01002807
Andreas Mohr2ed6e342006-07-10 04:43:52 -07002808 /* Catch callers which need to be fixed */
Peter Zijlstraf27dde82013-08-14 14:55:31 +02002809 BUG_ON(preempt_count() || !irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002811 prev_state = exception_enter();
2812
Andi Kleen3a5c3592007-10-15 17:00:14 +02002813 do {
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002814 __preempt_count_add(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002815 local_irq_enable();
Thomas Gleixnerc259e012011-06-22 19:47:00 +02002816 __schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02002817 local_irq_disable();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02002818 __preempt_count_sub(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002819
2820 /*
2821 * Check again in case we missed a preemption opportunity
2822 * between schedule and now.
2823 */
2824 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08002825 } while (need_resched());
Frederic Weisbeckerb22366c2013-02-24 12:59:30 +01002826
2827 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828}
2829
Peter Zijlstra63859d42009-09-15 19:14:42 +02002830int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002831 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
Peter Zijlstra63859d42009-09-15 19:14:42 +02002833 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835EXPORT_SYMBOL(default_wake_function);
2836
Andi Kleen8cbbe862007-10-15 17:00:14 +02002837static long __sched
2838sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02002839{
2840 unsigned long flags;
2841 wait_queue_t wait;
2842
2843 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Andi Kleen8cbbe862007-10-15 17:00:14 +02002845 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Andi Kleen8cbbe862007-10-15 17:00:14 +02002847 spin_lock_irqsave(&q->lock, flags);
2848 __add_wait_queue(q, &wait);
2849 spin_unlock(&q->lock);
2850 timeout = schedule_timeout(timeout);
2851 spin_lock_irq(&q->lock);
2852 __remove_wait_queue(q, &wait);
2853 spin_unlock_irqrestore(&q->lock, flags);
2854
2855 return timeout;
2856}
2857
2858void __sched interruptible_sleep_on(wait_queue_head_t *q)
2859{
2860 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862EXPORT_SYMBOL(interruptible_sleep_on);
2863
Ingo Molnar0fec1712007-07-09 18:52:01 +02002864long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002865interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
Andi Kleen8cbbe862007-10-15 17:00:14 +02002867 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869EXPORT_SYMBOL(interruptible_sleep_on_timeout);
2870
Ingo Molnar0fec1712007-07-09 18:52:01 +02002871void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Andi Kleen8cbbe862007-10-15 17:00:14 +02002873 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875EXPORT_SYMBOL(sleep_on);
2876
Ingo Molnar0fec1712007-07-09 18:52:01 +02002877long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878{
Andi Kleen8cbbe862007-10-15 17:00:14 +02002879 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881EXPORT_SYMBOL(sleep_on_timeout);
2882
Ingo Molnarb29739f2006-06-27 02:54:51 -07002883#ifdef CONFIG_RT_MUTEXES
2884
2885/*
2886 * rt_mutex_setprio - set the current priority of a task
2887 * @p: task
2888 * @prio: prio value (kernel-internal form)
2889 *
2890 * This function changes the 'effective' priority of a task. It does
2891 * not touch ->normal_prio like __setscheduler().
2892 *
2893 * Used by the rt_mutex code to implement priority inheritance logic.
2894 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002895void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002896{
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002897 int oldprio, on_rq, running, enqueue_flag = 0;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002898 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002899 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002900
Dario Faggioliaab03e02013-11-28 11:14:43 +01002901 BUG_ON(prio > MAX_PRIO);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002902
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002903 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002904
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02002905 /*
2906 * Idle task boosting is a nono in general. There is one
2907 * exception, when PREEMPT_RT and NOHZ is active:
2908 *
2909 * The idle task calls get_next_timer_interrupt() and holds
2910 * the timer wheel base->lock on the CPU and another CPU wants
2911 * to access the timer (probably to cancel it). We can safely
2912 * ignore the boosting request, as the idle CPU runs this code
2913 * with interrupts disabled and will complete the lock
2914 * protected section without being interrupted. So there is no
2915 * real need to boost.
2916 */
2917 if (unlikely(p == rq->idle)) {
2918 WARN_ON(p != rq->curr);
2919 WARN_ON(p->pi_blocked_on);
2920 goto out_unlock;
2921 }
2922
Steven Rostedta8027072010-09-20 15:13:34 -04002923 trace_sched_pi_setprio(p, prio);
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002924 p->pi_top_task = rt_mutex_get_top_task(p);
Andrew Mortond5f9f942007-05-08 20:27:06 -07002925 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01002926 prev_class = p->sched_class;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002927 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01002928 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002929 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02002930 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002931 if (running)
2932 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02002933
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002934 /*
2935 * Boosting condition are:
2936 * 1. -rt task is running and holds mutex A
2937 * --> -dl task blocks on mutex A
2938 *
2939 * 2. -dl task is running and holds mutex A
2940 * --> -dl task blocks on mutex A and could preempt the
2941 * running task
2942 */
2943 if (dl_prio(prio)) {
2944 if (!dl_prio(p->normal_prio) || (p->pi_top_task &&
2945 dl_entity_preempt(&p->pi_top_task->dl, &p->dl))) {
2946 p->dl.dl_boosted = 1;
2947 p->dl.dl_throttled = 0;
2948 enqueue_flag = ENQUEUE_REPLENISH;
2949 } else
2950 p->dl.dl_boosted = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +01002951 p->sched_class = &dl_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002952 } else if (rt_prio(prio)) {
2953 if (dl_prio(oldprio))
2954 p->dl.dl_boosted = 0;
2955 if (oldprio < prio)
2956 enqueue_flag = ENQUEUE_HEAD;
Ingo Molnardd41f592007-07-09 18:51:59 +02002957 p->sched_class = &rt_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002958 } else {
2959 if (dl_prio(oldprio))
2960 p->dl.dl_boosted = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002961 p->sched_class = &fair_sched_class;
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002962 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002963
Ingo Molnarb29739f2006-06-27 02:54:51 -07002964 p->prio = prio;
2965
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07002966 if (running)
2967 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002968 if (on_rq)
Dario Faggioli2d3d8912013-11-07 14:43:44 +01002969 enqueue_task(rq, p, enqueue_flag);
Steven Rostedtcb469842008-01-25 21:08:22 +01002970
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002971 check_class_changed(rq, p, prev_class, oldprio);
Thomas Gleixner1c4dd992011-06-06 20:07:38 +02002972out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002973 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002974}
Ingo Molnarb29739f2006-06-27 02:54:51 -07002975#endif
Dario Faggiolid50dde52013-11-07 14:43:36 +01002976
Ingo Molnar36c8b582006-07-03 00:25:41 -07002977void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978{
Ingo Molnardd41f592007-07-09 18:51:59 +02002979 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002981 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05002983 if (task_nice(p) == nice || nice < -20 || nice > 19)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 return;
2985 /*
2986 * We have to be careful, if called from sys_setpriority(),
2987 * the task might be in the middle of scheduling on another CPU.
2988 */
2989 rq = task_rq_lock(p, &flags);
2990 /*
2991 * The RT priorities are set via sched_setscheduler(), but we still
2992 * allow the 'normal' nice value to be set - but as expected
2993 * it wont have any effect on scheduling until the task is
Dario Faggioliaab03e02013-11-28 11:14:43 +01002994 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01002996 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 p->static_prio = NICE_TO_PRIO(nice);
2998 goto out_unlock;
2999 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003000 on_rq = p->on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003001 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02003002 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003005 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003006 old_prio = p->prio;
3007 p->prio = effective_prio(p);
3008 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Ingo Molnardd41f592007-07-09 18:51:59 +02003010 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01003011 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07003013 * If the task increased its priority or is running and
3014 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003016 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 resched_task(rq->curr);
3018 }
3019out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003020 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022EXPORT_SYMBOL(set_user_nice);
3023
Matt Mackalle43379f2005-05-01 08:59:00 -07003024/*
3025 * can_nice - check if a task can reduce its nice value
3026 * @p: task
3027 * @nice: nice value
3028 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003029int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07003030{
Matt Mackall024f4742005-08-18 11:24:19 -07003031 /* convert nice value [19,-20] to rlimit style value [1,40] */
3032 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003033
Jiri Slaby78d7d402010-03-05 13:42:54 -08003034 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07003035 capable(CAP_SYS_NICE));
3036}
3037
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038#ifdef __ARCH_WANT_SYS_NICE
3039
3040/*
3041 * sys_nice - change the priority of the current process.
3042 * @increment: priority increment
3043 *
3044 * sys_setpriority is a more generic, but much slower function that
3045 * does similar things.
3046 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003047SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003049 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 /*
3052 * Setpriority might change our priority at the same moment.
3053 * We don't have to worry. Conceptually one call occurs first
3054 * and we have a single winner.
3055 */
Matt Mackalle43379f2005-05-01 08:59:00 -07003056 if (increment < -40)
3057 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 if (increment > 40)
3059 increment = 40;
3060
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003061 nice = task_nice(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 if (nice < -20)
3063 nice = -20;
3064 if (nice > 19)
3065 nice = 19;
3066
Matt Mackalle43379f2005-05-01 08:59:00 -07003067 if (increment < 0 && !can_nice(current, nice))
3068 return -EPERM;
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 retval = security_task_setnice(current, nice);
3071 if (retval)
3072 return retval;
3073
3074 set_user_nice(current, nice);
3075 return 0;
3076}
3077
3078#endif
3079
3080/**
3081 * task_prio - return the priority value of a given task.
3082 * @p: the task in question.
3083 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003084 * Return: The priority value as seen by users in /proc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 * RT tasks are offset by -200. Normal tasks are centered
3086 * around 0, value goes from -16 to +15.
3087 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003088int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089{
3090 return p->prio - MAX_RT_PRIO;
3091}
3092
3093/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 * idle_cpu - is a given cpu idle currently?
3095 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003096 *
3097 * Return: 1 if the CPU is currently idle. 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 */
3099int idle_cpu(int cpu)
3100{
Thomas Gleixner908a3282011-09-15 15:32:06 +02003101 struct rq *rq = cpu_rq(cpu);
3102
3103 if (rq->curr != rq->idle)
3104 return 0;
3105
3106 if (rq->nr_running)
3107 return 0;
3108
3109#ifdef CONFIG_SMP
3110 if (!llist_empty(&rq->wake_list))
3111 return 0;
3112#endif
3113
3114 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115}
3116
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117/**
3118 * idle_task - return the idle task for a given cpu.
3119 * @cpu: the processor in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003120 *
3121 * Return: The idle task for the cpu @cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003123struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
3125 return cpu_rq(cpu)->idle;
3126}
3127
3128/**
3129 * find_process_by_pid - find a process with a matching PID value.
3130 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003131 *
3132 * The task of @pid, if found. %NULL otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003134static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07003136 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
3138
Dario Faggioliaab03e02013-11-28 11:14:43 +01003139/*
3140 * This function initializes the sched_dl_entity of a newly becoming
3141 * SCHED_DEADLINE task.
3142 *
3143 * Only the static values are considered here, the actual runtime and the
3144 * absolute deadline will be properly calculated when the task is enqueued
3145 * for the first time with its new policy.
3146 */
3147static void
3148__setparam_dl(struct task_struct *p, const struct sched_attr *attr)
3149{
3150 struct sched_dl_entity *dl_se = &p->dl;
3151
3152 init_dl_task_timer(dl_se);
3153 dl_se->dl_runtime = attr->sched_runtime;
3154 dl_se->dl_deadline = attr->sched_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003155 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003156 dl_se->flags = attr->sched_flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01003157 dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
Dario Faggioliaab03e02013-11-28 11:14:43 +01003158 dl_se->dl_throttled = 0;
3159 dl_se->dl_new = 1;
3160}
3161
Dario Faggiolid50dde52013-11-07 14:43:36 +01003162/* Actually do priority change: must hold pi & rq lock. */
3163static void __setscheduler(struct rq *rq, struct task_struct *p,
3164 const struct sched_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165{
Dario Faggiolid50dde52013-11-07 14:43:36 +01003166 int policy = attr->sched_policy;
3167
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003168 if (policy == -1) /* setparam */
3169 policy = p->policy;
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 p->policy = policy;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003172
Dario Faggioliaab03e02013-11-28 11:14:43 +01003173 if (dl_policy(policy))
3174 __setparam_dl(p, attr);
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003175 else if (fair_policy(policy))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003176 p->static_prio = NICE_TO_PRIO(attr->sched_nice);
3177
Peter Zijlstra39fd8fd2014-01-15 16:33:20 +01003178 /*
3179 * __sched_setscheduler() ensures attr->sched_priority == 0 when
3180 * !rt_policy. Always setting this ensures that things like
3181 * getparam()/getattr() don't report silly values for !rt tasks.
3182 */
3183 p->rt_priority = attr->sched_priority;
3184
Ingo Molnarb29739f2006-06-27 02:54:51 -07003185 p->normal_prio = normal_prio(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003186 p->prio = rt_mutex_getprio(p);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003187
Dario Faggioliaab03e02013-11-28 11:14:43 +01003188 if (dl_prio(p->prio))
3189 p->sched_class = &dl_sched_class;
3190 else if (rt_prio(p->prio))
Peter Zijlstraffd44db2009-11-10 20:12:01 +01003191 p->sched_class = &rt_sched_class;
3192 else
3193 p->sched_class = &fair_sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003194
Peter Williams2dd73a42006-06-27 02:54:34 -07003195 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
Dario Faggioliaab03e02013-11-28 11:14:43 +01003197
3198static void
3199__getparam_dl(struct task_struct *p, struct sched_attr *attr)
3200{
3201 struct sched_dl_entity *dl_se = &p->dl;
3202
3203 attr->sched_priority = p->rt_priority;
3204 attr->sched_runtime = dl_se->dl_runtime;
3205 attr->sched_deadline = dl_se->dl_deadline;
Harald Gustafsson755378a2013-11-07 14:43:40 +01003206 attr->sched_period = dl_se->dl_period;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003207 attr->sched_flags = dl_se->flags;
3208}
3209
3210/*
3211 * This function validates the new parameters of a -deadline task.
3212 * We ask for the deadline not being zero, and greater or equal
Harald Gustafsson755378a2013-11-07 14:43:40 +01003213 * than the runtime, as well as the period of being zero or
Dario Faggioli332ac172013-11-07 14:43:45 +01003214 * greater than deadline. Furthermore, we have to be sure that
3215 * user parameters are above the internal resolution (1us); we
3216 * check sched_runtime only since it is always the smaller one.
Dario Faggioliaab03e02013-11-28 11:14:43 +01003217 */
3218static bool
3219__checkparam_dl(const struct sched_attr *attr)
3220{
3221 return attr && attr->sched_deadline != 0 &&
Harald Gustafsson755378a2013-11-07 14:43:40 +01003222 (attr->sched_period == 0 ||
3223 (s64)(attr->sched_period - attr->sched_deadline) >= 0) &&
Dario Faggioli332ac172013-11-07 14:43:45 +01003224 (s64)(attr->sched_deadline - attr->sched_runtime ) >= 0 &&
3225 attr->sched_runtime >= (2 << (DL_SCALE - 1));
Dario Faggioliaab03e02013-11-28 11:14:43 +01003226}
3227
David Howellsc69e8d92008-11-14 10:39:19 +11003228/*
3229 * check the target process has a UID that matches the current process's
3230 */
3231static bool check_same_owner(struct task_struct *p)
3232{
3233 const struct cred *cred = current_cred(), *pcred;
3234 bool match;
3235
3236 rcu_read_lock();
3237 pcred = __task_cred(p);
Eric W. Biederman9c806aa2012-02-02 18:54:02 -08003238 match = (uid_eq(cred->euid, pcred->euid) ||
3239 uid_eq(cred->euid, pcred->uid));
David Howellsc69e8d92008-11-14 10:39:19 +11003240 rcu_read_unlock();
3241 return match;
3242}
3243
Dario Faggiolid50dde52013-11-07 14:43:36 +01003244static int __sched_setscheduler(struct task_struct *p,
3245 const struct sched_attr *attr,
3246 bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003248 int retval, oldprio, oldpolicy = -1, on_rq, running;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003249 int policy = attr->sched_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003251 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003252 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003253 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Steven Rostedt66e53932006-06-27 02:54:44 -07003255 /* may grab non-irq protected spin_locks */
3256 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257recheck:
3258 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02003259 if (policy < 0) {
3260 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003262 } else {
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003263 reset_on_fork = !!(attr->sched_flags & SCHED_FLAG_RESET_ON_FORK);
Lennart Poetteringca94c442009-06-15 17:17:47 +02003264
Dario Faggioliaab03e02013-11-28 11:14:43 +01003265 if (policy != SCHED_DEADLINE &&
3266 policy != SCHED_FIFO && policy != SCHED_RR &&
Lennart Poetteringca94c442009-06-15 17:17:47 +02003267 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
3268 policy != SCHED_IDLE)
3269 return -EINVAL;
3270 }
3271
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003272 if (attr->sched_flags & ~(SCHED_FLAG_RESET_ON_FORK))
3273 return -EINVAL;
3274
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 /*
3276 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02003277 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
3278 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 */
Peter Zijlstra0bb040a2014-01-15 17:15:13 +01003280 if ((p->mm && attr->sched_priority > MAX_USER_RT_PRIO-1) ||
Dario Faggiolid50dde52013-11-07 14:43:36 +01003281 (!p->mm && attr->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 return -EINVAL;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003283 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
3284 (rt_policy(policy) != (attr->sched_priority != 0)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 return -EINVAL;
3286
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003287 /*
3288 * Allow unprivileged RT tasks to decrease priority:
3289 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10003290 if (user && !capable(CAP_SYS_NICE)) {
Dario Faggiolid50dde52013-11-07 14:43:36 +01003291 if (fair_policy(policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003292 if (attr->sched_nice < task_nice(p) &&
Peter Zijlstraeaad4512014-01-16 17:54:25 +01003293 !can_nice(p, attr->sched_nice))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003294 return -EPERM;
3295 }
3296
Ingo Molnare05606d2007-07-09 18:51:59 +02003297 if (rt_policy(policy)) {
Oleg Nesterova44702e82010-06-11 01:09:44 +02003298 unsigned long rlim_rtprio =
3299 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003300
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003301 /* can't set/change the rt policy */
3302 if (policy != p->policy && !rlim_rtprio)
3303 return -EPERM;
3304
3305 /* can't increase priority */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003306 if (attr->sched_priority > p->rt_priority &&
3307 attr->sched_priority > rlim_rtprio)
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003308 return -EPERM;
3309 }
Darren Hartc02aa732011-02-17 15:37:07 -08003310
Ingo Molnardd41f592007-07-09 18:51:59 +02003311 /*
Darren Hartc02aa732011-02-17 15:37:07 -08003312 * Treat SCHED_IDLE as nice 20. Only allow a switch to
3313 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02003314 */
Darren Hartc02aa732011-02-17 15:37:07 -08003315 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003316 if (!can_nice(p, task_nice(p)))
Darren Hartc02aa732011-02-17 15:37:07 -08003317 return -EPERM;
3318 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07003319
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003320 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11003321 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003322 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02003323
3324 /* Normal users shall not reset the sched_reset_on_fork flag */
3325 if (p->sched_reset_on_fork && !reset_on_fork)
3326 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07003327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003329 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003330 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07003331 if (retval)
3332 return retval;
3333 }
3334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07003336 * make sure no PI-waiters arrive (or leave) while we are
3337 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003338 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003339 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 * runqueue lock must be held.
3341 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003342 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003343
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003344 /*
3345 * Changing the policy of the stop threads its a very bad idea
3346 */
3347 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003348 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003349 return -EINVAL;
3350 }
3351
Dario Faggiolia51e9192011-03-24 14:00:18 +01003352 /*
3353 * If not changing anything there's no need to proceed further:
3354 */
Dario Faggiolid50dde52013-11-07 14:43:36 +01003355 if (unlikely(policy == p->policy)) {
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003356 if (fair_policy(policy) && attr->sched_nice != task_nice(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003357 goto change;
3358 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
3359 goto change;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003360 if (dl_policy(policy))
3361 goto change;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003362
Namhyung Kim45afb172012-07-07 16:49:02 +09003363 task_rq_unlock(rq, p, &flags);
Dario Faggiolia51e9192011-03-24 14:00:18 +01003364 return 0;
3365 }
Dario Faggiolid50dde52013-11-07 14:43:36 +01003366change:
Dario Faggiolia51e9192011-03-24 14:00:18 +01003367
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003368 if (user) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003369#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003370 /*
3371 * Do not allow realtime tasks into groups that have no runtime
3372 * assigned.
3373 */
3374 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01003375 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
3376 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003377 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003378 return -EPERM;
3379 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003380#endif
Dario Faggioli332ac172013-11-07 14:43:45 +01003381#ifdef CONFIG_SMP
3382 if (dl_bandwidth_enabled() && dl_policy(policy)) {
3383 cpumask_t *span = rq->rd->span;
Dario Faggioli332ac172013-11-07 14:43:45 +01003384
3385 /*
3386 * Don't allow tasks with an affinity mask smaller than
3387 * the entire root_domain to become SCHED_DEADLINE. We
3388 * will also fail if there's no bandwidth available.
3389 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003390 if (!cpumask_subset(span, &p->cpus_allowed) ||
3391 rq->rd->dl_bw.bw == 0) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003392 task_rq_unlock(rq, p, &flags);
3393 return -EPERM;
3394 }
3395 }
3396#endif
3397 }
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02003398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 /* recheck policy now with rq lock held */
3400 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3401 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003402 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 goto recheck;
3404 }
Dario Faggioli332ac172013-11-07 14:43:45 +01003405
3406 /*
3407 * If setscheduling to SCHED_DEADLINE (or changing the parameters
3408 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
3409 * is available.
3410 */
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003411 if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003412 task_rq_unlock(rq, p, &flags);
3413 return -EBUSY;
3414 }
3415
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003416 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003417 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003418 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003419 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003420 if (running)
3421 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003422
Lennart Poetteringca94c442009-06-15 17:17:47 +02003423 p->sched_reset_on_fork = reset_on_fork;
3424
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01003426 prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01003427 __setscheduler(rq, p, attr);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02003428
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07003429 if (running)
3430 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003431 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01003432 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01003433
Peter Zijlstrada7a7352011-01-17 17:03:27 +01003434 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003435 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003436
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07003437 rt_mutex_adjust_pi(p);
3438
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 return 0;
3440}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003441
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003442static int _sched_setscheduler(struct task_struct *p, int policy,
3443 const struct sched_param *param, bool check)
3444{
3445 struct sched_attr attr = {
3446 .sched_policy = policy,
3447 .sched_priority = param->sched_priority,
3448 .sched_nice = PRIO_TO_NICE(p->static_prio),
3449 };
3450
3451 /*
3452 * Fixup the legacy SCHED_RESET_ON_FORK hack
3453 */
3454 if (policy & SCHED_RESET_ON_FORK) {
3455 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
3456 policy &= ~SCHED_RESET_ON_FORK;
3457 attr.sched_policy = policy;
3458 }
3459
3460 return __sched_setscheduler(p, &attr, check);
3461}
Rusty Russell961ccdd2008-06-23 13:55:38 +10003462/**
3463 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
3464 * @p: the task in question.
3465 * @policy: new policy.
3466 * @param: structure containing the new RT priority.
3467 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02003468 * Return: 0 on success. An error code otherwise.
3469 *
Rusty Russell961ccdd2008-06-23 13:55:38 +10003470 * NOTE that the task may be already dead.
3471 */
3472int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003473 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003474{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003475 return _sched_setscheduler(p, policy, param, true);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003476}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477EXPORT_SYMBOL_GPL(sched_setscheduler);
3478
Dario Faggiolid50dde52013-11-07 14:43:36 +01003479int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
3480{
3481 return __sched_setscheduler(p, attr, true);
3482}
3483EXPORT_SYMBOL_GPL(sched_setattr);
3484
Rusty Russell961ccdd2008-06-23 13:55:38 +10003485/**
3486 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
3487 * @p: the task in question.
3488 * @policy: new policy.
3489 * @param: structure containing the new RT priority.
3490 *
3491 * Just like sched_setscheduler, only don't bother checking if the
3492 * current context has permission. For example, this is needed in
3493 * stop_machine(): we create temporary high priority worker threads,
3494 * but our caller might not have that capability.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003495 *
3496 * Return: 0 on success. An error code otherwise.
Rusty Russell961ccdd2008-06-23 13:55:38 +10003497 */
3498int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07003499 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10003500{
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003501 return _sched_setscheduler(p, policy, param, false);
Rusty Russell961ccdd2008-06-23 13:55:38 +10003502}
3503
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003504static int
3505do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 struct sched_param lparam;
3508 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003509 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
3511 if (!param || pid < 0)
3512 return -EINVAL;
3513 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3514 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003515
3516 rcu_read_lock();
3517 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07003519 if (p != NULL)
3520 retval = sched_setscheduler(p, policy, &lparam);
3521 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07003522
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 return retval;
3524}
3525
Dario Faggiolid50dde52013-11-07 14:43:36 +01003526/*
3527 * Mimics kernel/events/core.c perf_copy_attr().
3528 */
3529static int sched_copy_attr(struct sched_attr __user *uattr,
3530 struct sched_attr *attr)
3531{
3532 u32 size;
3533 int ret;
3534
3535 if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0))
3536 return -EFAULT;
3537
3538 /*
3539 * zero the full structure, so that a short copy will be nice.
3540 */
3541 memset(attr, 0, sizeof(*attr));
3542
3543 ret = get_user(size, &uattr->size);
3544 if (ret)
3545 return ret;
3546
3547 if (size > PAGE_SIZE) /* silly large */
3548 goto err_size;
3549
3550 if (!size) /* abi compat */
3551 size = SCHED_ATTR_SIZE_VER0;
3552
3553 if (size < SCHED_ATTR_SIZE_VER0)
3554 goto err_size;
3555
3556 /*
3557 * If we're handed a bigger struct than we know of,
3558 * ensure all the unknown bits are 0 - i.e. new
3559 * user-space does not rely on any kernel feature
3560 * extensions we dont know about yet.
3561 */
3562 if (size > sizeof(*attr)) {
3563 unsigned char __user *addr;
3564 unsigned char __user *end;
3565 unsigned char val;
3566
3567 addr = (void __user *)uattr + sizeof(*attr);
3568 end = (void __user *)uattr + size;
3569
3570 for (; addr < end; addr++) {
3571 ret = get_user(val, addr);
3572 if (ret)
3573 return ret;
3574 if (val)
3575 goto err_size;
3576 }
3577 size = sizeof(*attr);
3578 }
3579
3580 ret = copy_from_user(attr, uattr, size);
3581 if (ret)
3582 return -EFAULT;
3583
3584 /*
3585 * XXX: do we want to be lenient like existing syscalls; or do we want
3586 * to be strict and return an error on out-of-bounds values?
3587 */
3588 attr->sched_nice = clamp(attr->sched_nice, -20, 19);
3589
3590out:
3591 return ret;
3592
3593err_size:
3594 put_user(sizeof(*attr), &uattr->size);
3595 ret = -E2BIG;
3596 goto out;
3597}
3598
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599/**
3600 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3601 * @pid: the pid in question.
3602 * @policy: new policy.
3603 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003604 *
3605 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003607SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
3608 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609{
Jason Baronc21761f2006-01-18 17:43:03 -08003610 /* negative values for policy are not valid */
3611 if (policy < 0)
3612 return -EINVAL;
3613
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 return do_sched_setscheduler(pid, policy, param);
3615}
3616
3617/**
3618 * sys_sched_setparam - set/change the RT priority of a thread
3619 * @pid: the pid in question.
3620 * @param: structure containing the new RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003621 *
3622 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003624SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625{
3626 return do_sched_setscheduler(pid, -1, param);
3627}
3628
3629/**
Dario Faggiolid50dde52013-11-07 14:43:36 +01003630 * sys_sched_setattr - same as above, but with extended sched_attr
3631 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003632 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003633 */
3634SYSCALL_DEFINE2(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr)
3635{
3636 struct sched_attr attr;
3637 struct task_struct *p;
3638 int retval;
3639
3640 if (!uattr || pid < 0)
3641 return -EINVAL;
3642
3643 if (sched_copy_attr(uattr, &attr))
3644 return -EFAULT;
3645
3646 rcu_read_lock();
3647 retval = -ESRCH;
3648 p = find_process_by_pid(pid);
3649 if (p != NULL)
3650 retval = sched_setattr(p, &attr);
3651 rcu_read_unlock();
3652
3653 return retval;
3654}
3655
3656/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3658 * @pid: the pid in question.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003659 *
3660 * Return: On success, the policy of the thread. Otherwise, a negative error
3661 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003663SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003665 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003666 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667
3668 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003669 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
3671 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003672 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 p = find_process_by_pid(pid);
3674 if (p) {
3675 retval = security_task_getscheduler(p);
3676 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02003677 retval = p->policy
3678 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003680 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 return retval;
3682}
3683
3684/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02003685 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 * @pid: the pid in question.
3687 * @param: structure containing the RT priority.
Yacine Belkadie69f6182013-07-12 20:45:47 +02003688 *
3689 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
3690 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003692SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693{
3694 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003695 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003696 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
3698 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02003699 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003701 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 p = find_process_by_pid(pid);
3703 retval = -ESRCH;
3704 if (!p)
3705 goto out_unlock;
3706
3707 retval = security_task_getscheduler(p);
3708 if (retval)
3709 goto out_unlock;
3710
Dario Faggioliaab03e02013-11-28 11:14:43 +01003711 if (task_has_dl_policy(p)) {
3712 retval = -EINVAL;
3713 goto out_unlock;
3714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003716 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
3718 /*
3719 * This one might sleep, we cannot do it with a spinlock held ...
3720 */
3721 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 return retval;
3724
3725out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00003726 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 return retval;
3728}
3729
Dario Faggiolid50dde52013-11-07 14:43:36 +01003730static int sched_read_attr(struct sched_attr __user *uattr,
3731 struct sched_attr *attr,
3732 unsigned int usize)
3733{
3734 int ret;
3735
3736 if (!access_ok(VERIFY_WRITE, uattr, usize))
3737 return -EFAULT;
3738
3739 /*
3740 * If we're handed a smaller struct than we know of,
3741 * ensure all the unknown bits are 0 - i.e. old
3742 * user-space does not get uncomplete information.
3743 */
3744 if (usize < sizeof(*attr)) {
3745 unsigned char *addr;
3746 unsigned char *end;
3747
3748 addr = (void *)attr + usize;
3749 end = (void *)attr + sizeof(*attr);
3750
3751 for (; addr < end; addr++) {
3752 if (*addr)
3753 goto err_size;
3754 }
3755
3756 attr->size = usize;
3757 }
3758
3759 ret = copy_to_user(uattr, attr, usize);
3760 if (ret)
3761 return -EFAULT;
3762
3763out:
3764 return ret;
3765
3766err_size:
3767 ret = -E2BIG;
3768 goto out;
3769}
3770
3771/**
Dario Faggioliaab03e02013-11-28 11:14:43 +01003772 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
Dario Faggiolid50dde52013-11-07 14:43:36 +01003773 * @pid: the pid in question.
Juri Lelli5778fcc2014-01-14 16:10:39 +01003774 * @uattr: structure containing the extended parameters.
Dario Faggiolid50dde52013-11-07 14:43:36 +01003775 * @size: sizeof(attr) for fwd/bwd comp.
3776 */
3777SYSCALL_DEFINE3(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
3778 unsigned int, size)
3779{
3780 struct sched_attr attr = {
3781 .size = sizeof(struct sched_attr),
3782 };
3783 struct task_struct *p;
3784 int retval;
3785
3786 if (!uattr || pid < 0 || size > PAGE_SIZE ||
3787 size < SCHED_ATTR_SIZE_VER0)
3788 return -EINVAL;
3789
3790 rcu_read_lock();
3791 p = find_process_by_pid(pid);
3792 retval = -ESRCH;
3793 if (!p)
3794 goto out_unlock;
3795
3796 retval = security_task_getscheduler(p);
3797 if (retval)
3798 goto out_unlock;
3799
3800 attr.sched_policy = p->policy;
Peter Zijlstra7479f3c9c2014-01-15 17:05:04 +01003801 if (p->sched_reset_on_fork)
3802 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
Dario Faggioliaab03e02013-11-28 11:14:43 +01003803 if (task_has_dl_policy(p))
3804 __getparam_dl(p, &attr);
3805 else if (task_has_rt_policy(p))
Dario Faggiolid50dde52013-11-07 14:43:36 +01003806 attr.sched_priority = p->rt_priority;
3807 else
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05003808 attr.sched_nice = task_nice(p);
Dario Faggiolid50dde52013-11-07 14:43:36 +01003809
3810 rcu_read_unlock();
3811
3812 retval = sched_read_attr(uattr, &attr, size);
3813 return retval;
3814
3815out_unlock:
3816 rcu_read_unlock();
3817 return retval;
3818}
3819
Rusty Russell96f874e22008-11-25 02:35:14 +10303820long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303822 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003823 struct task_struct *p;
3824 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003826 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
3828 p = find_process_by_pid(pid);
3829 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003830 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 return -ESRCH;
3832 }
3833
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003834 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003836 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
Tejun Heo14a40ff2013-03-19 13:45:20 -07003838 if (p->flags & PF_NO_SETAFFINITY) {
3839 retval = -EINVAL;
3840 goto out_put_task;
3841 }
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303842 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
3843 retval = -ENOMEM;
3844 goto out_put_task;
3845 }
3846 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
3847 retval = -ENOMEM;
3848 goto out_free_cpus_allowed;
3849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 retval = -EPERM;
Eric W. Biederman4c44aaa2012-07-26 05:05:21 -07003851 if (!check_same_owner(p)) {
3852 rcu_read_lock();
3853 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
3854 rcu_read_unlock();
3855 goto out_unlock;
3856 }
3857 rcu_read_unlock();
3858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09003860 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07003861 if (retval)
3862 goto out_unlock;
3863
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003864
3865 cpuset_cpus_allowed(p, cpus_allowed);
3866 cpumask_and(new_mask, in_mask, cpus_allowed);
3867
Dario Faggioli332ac172013-11-07 14:43:45 +01003868 /*
3869 * Since bandwidth control happens on root_domain basis,
3870 * if admission test is enabled, we only admit -deadline
3871 * tasks allowed to run on all the CPUs in the task's
3872 * root_domain.
3873 */
3874#ifdef CONFIG_SMP
3875 if (task_has_dl_policy(p)) {
3876 const struct cpumask *span = task_rq(p)->rd->span;
3877
Peter Zijlstrae4099a52013-12-17 10:03:34 +01003878 if (dl_bandwidth_enabled() && !cpumask_subset(span, new_mask)) {
Dario Faggioli332ac172013-11-07 14:43:45 +01003879 retval = -EBUSY;
3880 goto out_unlock;
3881 }
3882 }
3883#endif
Peter Zijlstra49246272010-10-17 21:46:10 +02003884again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303885 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Paul Menage8707d8b2007-10-18 23:40:22 -07003887 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303888 cpuset_cpus_allowed(p, cpus_allowed);
3889 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07003890 /*
3891 * We must have raced with a concurrent cpuset
3892 * update. Just reset the cpus_allowed to the
3893 * cpuset's cpus_allowed
3894 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303895 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07003896 goto again;
3897 }
3898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303900 free_cpumask_var(new_mask);
3901out_free_cpus_allowed:
3902 free_cpumask_var(cpus_allowed);
3903out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 return retval;
3906}
3907
3908static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10303909 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910{
Rusty Russell96f874e22008-11-25 02:35:14 +10303911 if (len < cpumask_size())
3912 cpumask_clear(new_mask);
3913 else if (len > cpumask_size())
3914 len = cpumask_size();
3915
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
3917}
3918
3919/**
3920 * sys_sched_setaffinity - set the cpu affinity of a process
3921 * @pid: pid of the process
3922 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
3923 * @user_mask_ptr: user-space pointer to the new cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02003924 *
3925 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003927SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
3928 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303930 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 int retval;
3932
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303933 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
3934 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Rusty Russell5a16f3d2008-11-25 02:35:11 +10303936 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
3937 if (retval == 0)
3938 retval = sched_setaffinity(pid, new_mask);
3939 free_cpumask_var(new_mask);
3940 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941}
3942
Rusty Russell96f874e22008-11-25 02:35:14 +10303943long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003945 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00003946 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003949 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
3951 retval = -ESRCH;
3952 p = find_process_by_pid(pid);
3953 if (!p)
3954 goto out_unlock;
3955
David Quigleye7834f82006-06-23 02:03:59 -07003956 retval = security_task_getscheduler(p);
3957 if (retval)
3958 goto out_unlock;
3959
Peter Zijlstra013fdb82011-04-05 17:23:45 +02003960 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02003961 cpumask_and(mask, &p->cpus_allowed, cpu_active_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02003962 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
3964out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00003965 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Ulrich Drepper9531b622007-08-09 11:16:46 +02003967 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968}
3969
3970/**
3971 * sys_sched_getaffinity - get the cpu affinity of a process
3972 * @pid: pid of the process
3973 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
3974 * @user_mask_ptr: user-space pointer to hold the current cpu mask
Yacine Belkadie69f6182013-07-12 20:45:47 +02003975 *
3976 * Return: 0 on success. An error code otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01003978SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
3979 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980{
3981 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10303982 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
Anton Blanchard84fba5e2010-04-06 17:02:19 +10003984 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09003985 return -EINVAL;
3986 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 return -EINVAL;
3988
Rusty Russellf17c8602008-11-25 02:35:11 +10303989 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
3990 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
Rusty Russellf17c8602008-11-25 02:35:11 +10303992 ret = sched_getaffinity(pid, mask);
3993 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09003994 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09003995
3996 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10303997 ret = -EFAULT;
3998 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09003999 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10304000 }
4001 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Rusty Russellf17c8602008-11-25 02:35:11 +10304003 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004}
4005
4006/**
4007 * sys_sched_yield - yield the current processor to other threads.
4008 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004009 * This function yields the current CPU to other tasks. If there are no
4010 * other threads running on this CPU then this function will return.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004011 *
4012 * Return: 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004014SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004016 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Ingo Molnar2d723762007-10-15 17:00:12 +02004018 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004019 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
4021 /*
4022 * Since we are going to call schedule() anyway, there's
4023 * no need to preempt or enable interrupts:
4024 */
4025 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004026 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01004027 do_raw_spin_unlock(&rq->lock);
Thomas Gleixnerba74c142011-03-21 13:32:17 +01004028 sched_preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
4030 schedule();
4031
4032 return 0;
4033}
4034
Andrew Mortone7b38402006-06-30 01:56:00 -07004035static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036{
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004037 __preempt_count_add(PREEMPT_ACTIVE);
Thomas Gleixnerc259e012011-06-22 19:47:00 +02004038 __schedule();
Peter Zijlstrabdb43802013-09-10 12:15:23 +02004039 __preempt_count_sub(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040}
4041
Herbert Xu02b67cc32008-01-25 21:08:28 +01004042int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004044 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 __cond_resched();
4046 return 1;
4047 }
4048 return 0;
4049}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004050EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
4052/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004053 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 * call schedule, and on return reacquire the lock.
4055 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004056 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 * operations here to prevent schedule() from being called twice (once via
4058 * spin_unlock(), once by hand).
4059 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004060int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004062 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004063 int ret = 0;
4064
Peter Zijlstraf607c662009-07-20 19:16:29 +02004065 lockdep_assert_held(lock);
4066
Nick Piggin95c354f2008-01-30 13:31:20 +01004067 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004069 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01004070 __cond_resched();
4071 else
4072 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004073 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004076 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004078EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004080int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081{
4082 BUG_ON(!in_softirq());
4083
Peter Zijlstrad86ee482009-07-10 14:57:57 +02004084 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004085 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 __cond_resched();
4087 local_bh_disable();
4088 return 1;
4089 }
4090 return 0;
4091}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02004092EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094/**
4095 * yield - yield the current processor to other threads.
4096 *
Peter Zijlstra8e3fabf2012-03-06 18:54:26 +01004097 * Do not ever use this function, there's a 99% chance you're doing it wrong.
4098 *
4099 * The scheduler is at all times free to pick the calling task as the most
4100 * eligible task to run, if removing the yield() call from your code breaks
4101 * it, its already broken.
4102 *
4103 * Typical broken usage is:
4104 *
4105 * while (!event)
4106 * yield();
4107 *
4108 * where one assumes that yield() will let 'the other' process run that will
4109 * make event true. If the current task is a SCHED_FIFO task that will never
4110 * happen. Never use yield() as a progress guarantee!!
4111 *
4112 * If you want to use yield() to wait for something, use wait_event().
4113 * If you want to use yield() to be 'nice' for others, use cond_resched().
4114 * If you still want to use yield(), do not!
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 */
4116void __sched yield(void)
4117{
4118 set_current_state(TASK_RUNNING);
4119 sys_sched_yield();
4120}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121EXPORT_SYMBOL(yield);
4122
Mike Galbraithd95f4122011-02-01 09:50:51 -05004123/**
4124 * yield_to - yield the current processor to another thread in
4125 * your thread group, or accelerate that thread toward the
4126 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07004127 * @p: target task
4128 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05004129 *
4130 * It's the caller's job to ensure that the target task struct
4131 * can't go away on us before we can do any checks.
4132 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004133 * Return:
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304134 * true (>0) if we indeed boosted the target task.
4135 * false (0) if we failed to boost the target.
4136 * -ESRCH if there's no task to yield to.
Mike Galbraithd95f4122011-02-01 09:50:51 -05004137 */
4138bool __sched yield_to(struct task_struct *p, bool preempt)
4139{
4140 struct task_struct *curr = current;
4141 struct rq *rq, *p_rq;
4142 unsigned long flags;
Dan Carpenterc3c18642013-02-05 14:37:51 +03004143 int yielded = 0;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004144
4145 local_irq_save(flags);
4146 rq = this_rq();
4147
4148again:
4149 p_rq = task_rq(p);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304150 /*
4151 * If we're the only runnable task on the rq and target rq also
4152 * has only one task, there's absolutely no point in yielding.
4153 */
4154 if (rq->nr_running == 1 && p_rq->nr_running == 1) {
4155 yielded = -ESRCH;
4156 goto out_irq;
4157 }
4158
Mike Galbraithd95f4122011-02-01 09:50:51 -05004159 double_rq_lock(rq, p_rq);
Shigeru Yoshida39e24d8f2013-11-23 18:38:01 +09004160 if (task_rq(p) != p_rq) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004161 double_rq_unlock(rq, p_rq);
4162 goto again;
4163 }
4164
4165 if (!curr->sched_class->yield_to_task)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304166 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004167
4168 if (curr->sched_class != p->sched_class)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304169 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004170
4171 if (task_running(p_rq, p) || p->state)
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304172 goto out_unlock;
Mike Galbraithd95f4122011-02-01 09:50:51 -05004173
4174 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004175 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05004176 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08004177 /*
4178 * Make p's CPU reschedule; pick_next_entity takes care of
4179 * fairness.
4180 */
4181 if (preempt && rq != p_rq)
4182 resched_task(p_rq->curr);
4183 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05004184
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304185out_unlock:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004186 double_rq_unlock(rq, p_rq);
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304187out_irq:
Mike Galbraithd95f4122011-02-01 09:50:51 -05004188 local_irq_restore(flags);
4189
Peter Zijlstra7b270f62013-01-22 13:09:13 +05304190 if (yielded > 0)
Mike Galbraithd95f4122011-02-01 09:50:51 -05004191 schedule();
4192
4193 return yielded;
4194}
4195EXPORT_SYMBOL_GPL(yield_to);
4196
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004198 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 */
4201void __sched io_schedule(void)
4202{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004203 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004205 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004207 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004208 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004210 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004212 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214EXPORT_SYMBOL(io_schedule);
4215
4216long __sched io_schedule_timeout(long timeout)
4217{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09004218 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 long ret;
4220
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004221 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01004223 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004224 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07004226 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004228 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 return ret;
4230}
4231
4232/**
4233 * sys_sched_get_priority_max - return maximum RT priority.
4234 * @policy: scheduling class.
4235 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004236 * Return: On success, this syscall returns the maximum
4237 * rt_priority that can be used by a given scheduling class.
4238 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004240SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241{
4242 int ret = -EINVAL;
4243
4244 switch (policy) {
4245 case SCHED_FIFO:
4246 case SCHED_RR:
4247 ret = MAX_USER_RT_PRIO-1;
4248 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004249 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004251 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004252 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 ret = 0;
4254 break;
4255 }
4256 return ret;
4257}
4258
4259/**
4260 * sys_sched_get_priority_min - return minimum RT priority.
4261 * @policy: scheduling class.
4262 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02004263 * Return: On success, this syscall returns the minimum
4264 * rt_priority that can be used by a given scheduling class.
4265 * On failure, a negative error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004267SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268{
4269 int ret = -EINVAL;
4270
4271 switch (policy) {
4272 case SCHED_FIFO:
4273 case SCHED_RR:
4274 ret = 1;
4275 break;
Dario Faggioliaab03e02013-11-28 11:14:43 +01004276 case SCHED_DEADLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004278 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004279 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 ret = 0;
4281 }
4282 return ret;
4283}
4284
4285/**
4286 * sys_sched_rr_get_interval - return the default timeslice of a process.
4287 * @pid: pid of the process.
4288 * @interval: userspace pointer to the timeslice value.
4289 *
4290 * this syscall writes the default timeslice value of a given process
4291 * into the user-space timespec buffer. A value of '0' means infinity.
Yacine Belkadie69f6182013-07-12 20:45:47 +02004292 *
4293 * Return: On success, 0 and the timeslice is in @interval. Otherwise,
4294 * an error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01004296SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01004297 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004299 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004300 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004301 unsigned long flags;
4302 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004303 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
4306 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004307 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
4309 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004310 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 p = find_process_by_pid(pid);
4312 if (!p)
4313 goto out_unlock;
4314
4315 retval = security_task_getscheduler(p);
4316 if (retval)
4317 goto out_unlock;
4318
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01004319 rq = task_rq_lock(p, &flags);
Peter Zijlstraa57beec2014-01-27 11:54:13 +01004320 time_slice = 0;
4321 if (p->sched_class->get_rr_interval)
4322 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004323 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004324
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004325 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004326 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004329
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00004331 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 return retval;
4333}
4334
Steven Rostedt7c731e02008-05-12 21:20:41 +02004335static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004336
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004337void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 unsigned long free = 0;
Paul E. McKenney4e797522012-11-07 13:35:32 -08004340 int ppid;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004341 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08004344 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004345 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004346#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004348 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004350 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351#else
4352 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004353 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004355 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356#endif
4357#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05004358 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359#endif
Paul E. McKenney4e797522012-11-07 13:35:32 -08004360 rcu_read_lock();
4361 ppid = task_pid_nr(rcu_dereference(p->real_parent));
4362 rcu_read_unlock();
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004363 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
Paul E. McKenney4e797522012-11-07 13:35:32 -08004364 task_pid_nr(p), ppid,
David Rientjesaa47b7e2009-05-04 01:38:05 -07004365 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
Tejun Heo3d1cb202013-04-30 15:27:22 -07004367 print_worker_info(KERN_INFO, p);
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01004368 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369}
4370
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004371void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004373 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
Ingo Molnar4bd77322007-07-11 21:21:47 +02004375#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004376 printk(KERN_INFO
4377 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004379 printk(KERN_INFO
4380 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004382 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 do_each_thread(g, p) {
4384 /*
4385 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004386 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 */
4388 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004389 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01004390 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 } while_each_thread(g, p);
4392
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004393 touch_all_softlockup_watchdogs();
4394
Ingo Molnardd41f592007-07-09 18:51:59 +02004395#ifdef CONFIG_SCHED_DEBUG
4396 sysrq_sched_debug_show();
4397#endif
Thomas Gleixner510f5ac2011-07-17 20:47:54 +02004398 rcu_read_unlock();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004399 /*
4400 * Only show locks if all tasks are dumped:
4401 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02004402 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004403 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404}
4405
Paul Gortmaker0db06282013-06-19 14:53:51 -04004406void init_idle_bootup_task(struct task_struct *idle)
Ingo Molnar1df21052007-07-09 18:51:58 +02004407{
Ingo Molnardd41f592007-07-09 18:51:59 +02004408 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004409}
4410
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004411/**
4412 * init_idle - set up an idle thread for a given CPU
4413 * @idle: task in question
4414 * @cpu: cpu the idle task belongs to
4415 *
4416 * NOTE: this function does not set the idle thread's NEED_RESCHED
4417 * flag, to make booting more robust.
4418 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004419void init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004421 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 unsigned long flags;
4423
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004424 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01004425
Rik van Riel5e1576e2013-10-07 11:29:26 +01004426 __sched_fork(0, idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01004427 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02004428 idle->se.exec_start = sched_clock();
4429
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004430 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004431 /*
4432 * We're having a chicken and egg problem, even though we are
4433 * holding rq->lock, the cpu isn't yet set to this cpu so the
4434 * lockdep check in task_group() will fail.
4435 *
4436 * Similar case to sched_fork(). / Alternatively we could
4437 * use task_rq_lock() here and obtain the other rq->lock.
4438 *
4439 * Silence PROVE_RCU
4440 */
4441 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02004442 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02004443 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 rq->curr = rq->idle = idle;
Thomas Gleixner77177852014-02-07 20:58:37 +01004446 idle->on_rq = 1;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02004447#if defined(CONFIG_SMP)
4448 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07004449#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004450 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451
4452 /* Set the preempt count _outside_ the spinlocks! */
Peter Zijlstra01028742013-08-14 14:55:46 +02004453 init_idle_preempt_count(idle, cpu);
Jonathan Corbet625f2a32011-04-22 11:19:10 -06004454
Ingo Molnardd41f592007-07-09 18:51:59 +02004455 /*
4456 * The idle tasks have their own, simple scheduling class:
4457 */
4458 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05004459 ftrace_graph_init_idle_task(idle, cpu);
Frederic Weisbecker45eacc62013-05-15 22:16:32 +02004460 vtime_init_idle(idle, cpu);
Carsten Emdef1c6f1a2011-10-26 23:14:16 +02004461#if defined(CONFIG_SMP)
4462 sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
4463#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464}
4465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466#ifdef CONFIG_SMP
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004467void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
4468{
4469 if (p->sched_class && p->sched_class->set_cpus_allowed)
4470 p->sched_class->set_cpus_allowed(p, new_mask);
Peter Zijlstra49396022011-06-25 15:45:46 +02004471
4472 cpumask_copy(&p->cpus_allowed, new_mask);
Peter Zijlstra29baa742012-04-23 12:11:21 +02004473 p->nr_cpus_allowed = cpumask_weight(new_mask);
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004474}
4475
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476/*
4477 * This is how migration works:
4478 *
Tejun Heo969c7922010-05-06 18:49:21 +02004479 * 1) we invoke migration_cpu_stop() on the target CPU using
4480 * stop_one_cpu().
4481 * 2) stopper starts to run (implicitly forcing the migrated thread
4482 * off the CPU)
4483 * 3) it checks whether the migrated task is still in the wrong runqueue.
4484 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02004486 * 5) stopper completes and stop_one_cpu() returns and the migration
4487 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 */
4489
4490/*
4491 * Change a given task's CPU affinity. Migrate the thread to a
4492 * proper CPU and schedule it away if the CPU it's executing on
4493 * is removed from the allowed bitmask.
4494 *
4495 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004496 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 * call is not atomic; no spinlocks may be held.
4498 */
Rusty Russell96f874e22008-11-25 02:35:14 +10304499int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500{
4501 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004502 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02004503 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004504 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
4506 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004507
Yong Zhangdb44fc02011-05-09 22:07:05 +08004508 if (cpumask_equal(&p->cpus_allowed, new_mask))
4509 goto out;
4510
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004511 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 ret = -EINVAL;
4513 goto out;
4514 }
4515
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09004516 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01004517
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10304519 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 goto out;
4521
Tejun Heo969c7922010-05-06 18:49:21 +02004522 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Peter Zijlstrabd8e7dd2011-04-05 17:23:59 +02004523 if (p->on_rq) {
Tejun Heo969c7922010-05-06 18:49:21 +02004524 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004526 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02004527 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 tlb_migrate_finish(p->mm);
4529 return 0;
4530 }
4531out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004532 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004533
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 return ret;
4535}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07004536EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
4538/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004539 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 * this because either it can't run here any more (set_cpus_allowed()
4541 * away from this CPU, or CPU going down), or because we're
4542 * attempting to rebalance this task on exec (sched_exec).
4543 *
4544 * So we race with normal scheduler movements, but that's OK, as long
4545 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004546 *
4547 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004549static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004551 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01004552 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Max Krasnyanskye761b772008-07-15 04:43:49 -07004554 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004555 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
4557 rq_src = cpu_rq(src_cpu);
4558 rq_dest = cpu_rq(dest_cpu);
4559
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004560 raw_spin_lock(&p->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 double_rq_lock(rq_src, rq_dest);
4562 /* Already moved. */
4563 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004564 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 /* Affinity changed (again). */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02004566 if (!cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004567 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568
Peter Zijlstrae2912002009-12-16 18:04:36 +01004569 /*
4570 * If we're not on a rq, the next wake-up will ensure we're
4571 * placed properly.
4572 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004573 if (p->on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004574 dequeue_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01004575 set_task_cpu(p, dest_cpu);
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01004576 enqueue_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02004577 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004579done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07004580 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07004581fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 double_rq_unlock(rq_src, rq_dest);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004583 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004584 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585}
4586
Mel Gormane6628d52013-10-07 11:29:02 +01004587#ifdef CONFIG_NUMA_BALANCING
4588/* Migrate current task p to target_cpu */
4589int migrate_task_to(struct task_struct *p, int target_cpu)
4590{
4591 struct migration_arg arg = { p, target_cpu };
4592 int curr_cpu = task_cpu(p);
4593
4594 if (curr_cpu == target_cpu)
4595 return 0;
4596
4597 if (!cpumask_test_cpu(target_cpu, tsk_cpus_allowed(p)))
4598 return -EINVAL;
4599
4600 /* TODO: This is not properly updating schedstats */
4601
Mel Gorman286549d2014-01-21 15:51:03 -08004602 trace_sched_move_numa(p, curr_cpu, target_cpu);
Mel Gormane6628d52013-10-07 11:29:02 +01004603 return stop_one_cpu(curr_cpu, migration_cpu_stop, &arg);
4604}
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004605
4606/*
4607 * Requeue a task on a given node and accurately track the number of NUMA
4608 * tasks on the runqueues
4609 */
4610void sched_setnuma(struct task_struct *p, int nid)
4611{
4612 struct rq *rq;
4613 unsigned long flags;
4614 bool on_rq, running;
4615
4616 rq = task_rq_lock(p, &flags);
4617 on_rq = p->on_rq;
4618 running = task_current(rq, p);
4619
4620 if (on_rq)
4621 dequeue_task(rq, p, 0);
4622 if (running)
4623 p->sched_class->put_prev_task(rq, p);
4624
4625 p->numa_preferred_nid = nid;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01004626
4627 if (running)
4628 p->sched_class->set_curr_task(rq);
4629 if (on_rq)
4630 enqueue_task(rq, p, 0);
4631 task_rq_unlock(rq, p, &flags);
4632}
Mel Gormane6628d52013-10-07 11:29:02 +01004633#endif
4634
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635/*
Tejun Heo969c7922010-05-06 18:49:21 +02004636 * migration_cpu_stop - this will be executed by a highprio stopper thread
4637 * and performs thread migration by bumping thread off CPU then
4638 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 */
Tejun Heo969c7922010-05-06 18:49:21 +02004640static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641{
Tejun Heo969c7922010-05-06 18:49:21 +02004642 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643
Tejun Heo969c7922010-05-06 18:49:21 +02004644 /*
4645 * The original target cpu might have gone down and we might
4646 * be on another cpu but it doesn't matter.
4647 */
4648 local_irq_disable();
4649 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
4650 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 return 0;
4652}
4653
4654#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Ingo Molnar48f24c42006-07-03 00:25:40 -07004656/*
4657 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 * offline.
4659 */
4660void idle_task_exit(void)
4661{
4662 struct mm_struct *mm = current->active_mm;
4663
4664 BUG_ON(cpu_online(smp_processor_id()));
4665
4666 if (mm != &init_mm)
4667 switch_mm(mm, &init_mm, current);
4668 mmdrop(mm);
4669}
4670
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004671/*
Peter Zijlstra5d180232012-08-20 11:26:57 +02004672 * Since this CPU is going 'away' for a while, fold any nr_active delta
4673 * we might have. Assumes we're called after migrate_tasks() so that the
4674 * nr_active count is stable.
4675 *
4676 * Also see the comment "Global load-average calculations".
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004677 */
Peter Zijlstra5d180232012-08-20 11:26:57 +02004678static void calc_load_migrate(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679{
Peter Zijlstra5d180232012-08-20 11:26:57 +02004680 long delta = calc_load_fold_active(rq);
4681 if (delta)
4682 atomic_long_add(delta, &calc_load_tasks);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02004683}
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004684
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004685static void put_prev_task_fake(struct rq *rq, struct task_struct *prev)
4686{
4687}
4688
4689static const struct sched_class fake_sched_class = {
4690 .put_prev_task = put_prev_task_fake,
4691};
4692
4693static struct task_struct fake_task = {
4694 /*
4695 * Avoid pull_{rt,dl}_task()
4696 */
4697 .prio = MAX_PRIO + 1,
4698 .sched_class = &fake_sched_class,
4699};
4700
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004701/*
4702 * Migrate all tasks from the rq, sleeping tasks will be migrated by
4703 * try_to_wake_up()->select_task_rq().
4704 *
4705 * Called with rq->lock held even though we'er in stop_machine() and
4706 * there's no concurrency possible, we hold the required locks anyway
4707 * because of lock validation efforts.
4708 */
4709static void migrate_tasks(unsigned int dead_cpu)
4710{
4711 struct rq *rq = cpu_rq(dead_cpu);
4712 struct task_struct *next, *stop = rq->stop;
4713 int dest_cpu;
4714
4715 /*
4716 * Fudge the rq selection such that the below task selection loop
4717 * doesn't get stuck on the currently eligible stop task.
4718 *
4719 * We're currently inside stop_machine() and the rq is either stuck
4720 * in the stop_machine_cpu_stop() loop, or we're executing this code,
4721 * either way we should never end up calling schedule() until we're
4722 * done here.
4723 */
4724 rq->stop = NULL;
4725
Frederic Weisbecker77bd3972013-04-12 01:50:58 +02004726 /*
4727 * put_prev_task() and pick_next_task() sched
4728 * class method both need to have an up-to-date
4729 * value of rq->clock[_task]
4730 */
4731 update_rq_clock(rq);
4732
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004733 for ( ; ; ) {
4734 /*
4735 * There's this thread running, bail when that's the only
4736 * remaining thread.
4737 */
4738 if (rq->nr_running == 1)
4739 break;
4740
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01004741 next = pick_next_task(rq, &fake_task);
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004742 BUG_ON(!next);
4743 next->sched_class->put_prev_task(rq, next);
4744
4745 /* Find suitable destination for @next, with force if needed. */
4746 dest_cpu = select_fallback_rq(dead_cpu, next);
4747 raw_spin_unlock(&rq->lock);
4748
4749 __migrate_task(next, dead_cpu, dest_cpu);
4750
4751 raw_spin_lock(&rq->lock);
4752 }
4753
4754 rq->stop = stop;
4755}
4756
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757#endif /* CONFIG_HOTPLUG_CPU */
4758
Nick Piggine692ab52007-07-26 13:40:43 +02004759#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
4760
4761static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004762 {
4763 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004764 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004765 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004766 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004767};
4768
4769static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02004770 {
4771 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004772 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02004773 .child = sd_ctl_dir,
4774 },
Eric W. Biederman56992302009-11-05 15:38:40 -08004775 {}
Nick Piggine692ab52007-07-26 13:40:43 +02004776};
4777
4778static struct ctl_table *sd_alloc_ctl_entry(int n)
4779{
4780 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02004781 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02004782
Nick Piggine692ab52007-07-26 13:40:43 +02004783 return entry;
4784}
4785
Milton Miller6382bc92007-10-15 17:00:19 +02004786static void sd_free_ctl_entry(struct ctl_table **tablep)
4787{
Milton Millercd7900762007-10-17 16:55:11 +02004788 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02004789
Milton Millercd7900762007-10-17 16:55:11 +02004790 /*
4791 * In the intermediate directories, both the child directory and
4792 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004793 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02004794 * static strings and all have proc handlers.
4795 */
4796 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02004797 if (entry->child)
4798 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02004799 if (entry->proc_handler == NULL)
4800 kfree(entry->procname);
4801 }
Milton Miller6382bc92007-10-15 17:00:19 +02004802
4803 kfree(*tablep);
4804 *tablep = NULL;
4805}
4806
Namhyung Kim201c3732012-08-16 17:03:24 +09004807static int min_load_idx = 0;
libinfd9b86d2013-04-08 14:39:12 +08004808static int max_load_idx = CPU_LOAD_IDX_MAX-1;
Namhyung Kim201c3732012-08-16 17:03:24 +09004809
Nick Piggine692ab52007-07-26 13:40:43 +02004810static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02004811set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02004812 const char *procname, void *data, int maxlen,
Namhyung Kim201c3732012-08-16 17:03:24 +09004813 umode_t mode, proc_handler *proc_handler,
4814 bool load_idx)
Nick Piggine692ab52007-07-26 13:40:43 +02004815{
Nick Piggine692ab52007-07-26 13:40:43 +02004816 entry->procname = procname;
4817 entry->data = data;
4818 entry->maxlen = maxlen;
4819 entry->mode = mode;
4820 entry->proc_handler = proc_handler;
Namhyung Kim201c3732012-08-16 17:03:24 +09004821
4822 if (load_idx) {
4823 entry->extra1 = &min_load_idx;
4824 entry->extra2 = &max_load_idx;
4825 }
Nick Piggine692ab52007-07-26 13:40:43 +02004826}
4827
4828static struct ctl_table *
4829sd_alloc_ctl_domain_table(struct sched_domain *sd)
4830{
Alex Shi37e6bae2014-01-23 18:39:54 +08004831 struct ctl_table *table = sd_alloc_ctl_entry(14);
Nick Piggine692ab52007-07-26 13:40:43 +02004832
Milton Millerad1cdc12007-10-15 17:00:19 +02004833 if (table == NULL)
4834 return NULL;
4835
Alexey Dobriyane0361852007-08-09 11:16:46 +02004836 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004837 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004838 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Namhyung Kim201c3732012-08-16 17:03:24 +09004839 sizeof(long), 0644, proc_doulongvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004840 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004841 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004842 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004843 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004844 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004845 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004846 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004847 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004848 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Namhyung Kim201c3732012-08-16 17:03:24 +09004849 sizeof(int), 0644, proc_dointvec_minmax, true);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004850 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Namhyung Kim201c3732012-08-16 17:03:24 +09004851 sizeof(int), 0644, proc_dointvec_minmax, false);
Alexey Dobriyane0361852007-08-09 11:16:46 +02004852 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Namhyung Kim201c3732012-08-16 17:03:24 +09004853 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004854 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02004855 &sd->cache_nice_tries,
Namhyung Kim201c3732012-08-16 17:03:24 +09004856 sizeof(int), 0644, proc_dointvec_minmax, false);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02004857 set_table_entry(&table[10], "flags", &sd->flags,
Namhyung Kim201c3732012-08-16 17:03:24 +09004858 sizeof(int), 0644, proc_dointvec_minmax, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004859 set_table_entry(&table[11], "max_newidle_lb_cost",
4860 &sd->max_newidle_lb_cost,
4861 sizeof(long), 0644, proc_doulongvec_minmax, false);
4862 set_table_entry(&table[12], "name", sd->name,
Namhyung Kim201c3732012-08-16 17:03:24 +09004863 CORENAME_MAX_SIZE, 0444, proc_dostring, false);
Alex Shi37e6bae2014-01-23 18:39:54 +08004864 /* &table[13] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02004865
4866 return table;
4867}
4868
Joe Perchesbe7002e2013-06-12 11:55:36 -07004869static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02004870{
4871 struct ctl_table *entry, *table;
4872 struct sched_domain *sd;
4873 int domain_num = 0, i;
4874 char buf[32];
4875
4876 for_each_domain(cpu, sd)
4877 domain_num++;
4878 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02004879 if (table == NULL)
4880 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02004881
4882 i = 0;
4883 for_each_domain(cpu, sd) {
4884 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02004885 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004886 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02004887 entry->child = sd_alloc_ctl_domain_table(sd);
4888 entry++;
4889 i++;
4890 }
4891 return table;
4892}
4893
4894static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02004895static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02004896{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004897 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02004898 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
4899 char buf[32];
4900
Milton Miller73785472007-10-24 18:23:48 +02004901 WARN_ON(sd_ctl_dir[0].child);
4902 sd_ctl_dir[0].child = entry;
4903
Milton Millerad1cdc12007-10-15 17:00:19 +02004904 if (entry == NULL)
4905 return;
4906
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01004907 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02004908 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02004909 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02004910 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02004911 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02004912 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02004913 }
Milton Miller73785472007-10-24 18:23:48 +02004914
4915 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02004916 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
4917}
Milton Miller6382bc92007-10-15 17:00:19 +02004918
Milton Miller73785472007-10-24 18:23:48 +02004919/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02004920static void unregister_sched_domain_sysctl(void)
4921{
Milton Miller73785472007-10-24 18:23:48 +02004922 if (sd_sysctl_header)
4923 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02004924 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02004925 if (sd_ctl_dir[0].child)
4926 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02004927}
Nick Piggine692ab52007-07-26 13:40:43 +02004928#else
Milton Miller6382bc92007-10-15 17:00:19 +02004929static void register_sched_domain_sysctl(void)
4930{
4931}
4932static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02004933{
4934}
4935#endif
4936
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004937static void set_rq_online(struct rq *rq)
4938{
4939 if (!rq->online) {
4940 const struct sched_class *class;
4941
Rusty Russellc6c49272008-11-25 02:35:05 +10304942 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004943 rq->online = 1;
4944
4945 for_each_class(class) {
4946 if (class->rq_online)
4947 class->rq_online(rq);
4948 }
4949 }
4950}
4951
4952static void set_rq_offline(struct rq *rq)
4953{
4954 if (rq->online) {
4955 const struct sched_class *class;
4956
4957 for_each_class(class) {
4958 if (class->rq_offline)
4959 class->rq_offline(rq);
4960 }
4961
Rusty Russellc6c49272008-11-25 02:35:05 +10304962 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004963 rq->online = 0;
4964 }
4965}
4966
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967/*
4968 * migration_call - callback that gets triggered when a CPU is added.
4969 * Here we can start up the necessary migration thread for the new CPU.
4970 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04004971static int
Ingo Molnar48f24c42006-07-03 00:25:40 -07004972migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004974 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02004976 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01004978 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004979
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02004981 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004983
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04004985 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004986 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04004987 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10304988 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04004989
4990 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04004991 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004992 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004994
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04004996 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02004997 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01004998 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004999 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005000 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305001 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005002 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005003 }
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005004 migrate_tasks(cpu);
5005 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005006 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra5d180232012-08-20 11:26:57 +02005007 break;
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01005008
Peter Zijlstra5d180232012-08-20 11:26:57 +02005009 case CPU_DEAD:
Peter Zijlstraf319da02012-08-20 11:26:57 +02005010 calc_load_migrate(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005011 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012#endif
5013 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02005014
5015 update_max_interval();
5016
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 return NOTIFY_OK;
5018}
5019
Paul Mackerrasf38b0822009-06-02 21:05:16 +10005020/*
5021 * Register at high priority so that task migration (migrate_all_tasks)
5022 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005023 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04005025static struct notifier_block migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02005027 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028};
5029
Paul Gortmaker0db06282013-06-19 14:53:51 -04005030static int sched_cpu_active(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005031 unsigned long action, void *hcpu)
5032{
5033 switch (action & ~CPU_TASKS_FROZEN) {
Peter Zijlstra5fbd0362011-12-15 17:09:22 +01005034 case CPU_STARTING:
Tejun Heo3a101d02010-06-08 21:40:36 +02005035 case CPU_DOWN_FAILED:
5036 set_cpu_active((long)hcpu, true);
5037 return NOTIFY_OK;
5038 default:
5039 return NOTIFY_DONE;
5040 }
5041}
5042
Paul Gortmaker0db06282013-06-19 14:53:51 -04005043static int sched_cpu_inactive(struct notifier_block *nfb,
Tejun Heo3a101d02010-06-08 21:40:36 +02005044 unsigned long action, void *hcpu)
5045{
Peter Zijlstrade212f12013-12-19 11:54:45 +01005046 unsigned long flags;
5047 long cpu = (long)hcpu;
5048
Tejun Heo3a101d02010-06-08 21:40:36 +02005049 switch (action & ~CPU_TASKS_FROZEN) {
5050 case CPU_DOWN_PREPARE:
Peter Zijlstrade212f12013-12-19 11:54:45 +01005051 set_cpu_active(cpu, false);
5052
5053 /* explicitly allow suspend */
5054 if (!(action & CPU_TASKS_FROZEN)) {
5055 struct dl_bw *dl_b = dl_bw_of(cpu);
5056 bool overflow;
5057 int cpus;
5058
5059 raw_spin_lock_irqsave(&dl_b->lock, flags);
5060 cpus = dl_bw_cpus(cpu);
5061 overflow = __dl_overflow(dl_b, cpus, 0, 0);
5062 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
5063
5064 if (overflow)
5065 return notifier_from_errno(-EBUSY);
5066 }
Tejun Heo3a101d02010-06-08 21:40:36 +02005067 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02005068 }
Peter Zijlstrade212f12013-12-19 11:54:45 +01005069
5070 return NOTIFY_DONE;
Tejun Heo3a101d02010-06-08 21:40:36 +02005071}
5072
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005073static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074{
5075 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005076 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005077
Tejun Heo3a101d02010-06-08 21:40:36 +02005078 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005079 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5080 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5082 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005083
Tejun Heo3a101d02010-06-08 21:40:36 +02005084 /* Register cpu active notifiers */
5085 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
5086 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
5087
Thomas Gleixnera004cd42009-07-21 09:54:05 +02005088 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07005090early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091#endif
5092
5093#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005094
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005095static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
5096
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005097#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005098
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005099static __read_mostly int sched_debug_enabled;
Mike Travisf6630112009-11-17 18:22:15 -06005100
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005101static int __init sched_debug_setup(char *str)
Mike Travisf6630112009-11-17 18:22:15 -06005102{
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005103 sched_debug_enabled = 1;
Mike Travisf6630112009-11-17 18:22:15 -06005104
5105 return 0;
5106}
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005107early_param("sched_debug", sched_debug_setup);
5108
5109static inline bool sched_debug(void)
5110{
5111 return sched_debug_enabled;
5112}
Mike Travisf6630112009-11-17 18:22:15 -06005113
Mike Travis7c16ec52008-04-04 18:11:11 -07005114static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10305115 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005116{
5117 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07005118 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005119
Rusty Russell968ea6d2008-12-13 21:55:51 +10305120 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10305121 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005122
5123 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5124
5125 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005126 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005127 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005128 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5129 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005130 return -1;
5131 }
5132
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005133 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005134
Rusty Russell758b2cd2008-11-25 02:35:04 +10305135 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005136 printk(KERN_ERR "ERROR: domain->span does not contain "
5137 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005138 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10305139 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005140 printk(KERN_ERR "ERROR: domain->groups does not contain"
5141 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005142 }
5143
5144 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5145 do {
5146 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005147 printk("\n");
5148 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005149 break;
5150 }
5151
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005152 /*
5153 * Even though we initialize ->power to something semi-sane,
5154 * we leave power_orig unset. This allows us to detect if
5155 * domain iteration is still funny without causing /0 traps.
5156 */
5157 if (!group->sgp->power_orig) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005158 printk(KERN_CONT "\n");
5159 printk(KERN_ERR "ERROR: domain->cpu_power not "
5160 "set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005161 break;
5162 }
5163
Rusty Russell758b2cd2008-11-25 02:35:04 +10305164 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005165 printk(KERN_CONT "\n");
5166 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005167 break;
5168 }
5169
Peter Zijlstracb83b622012-04-17 15:49:36 +02005170 if (!(sd->flags & SD_OVERLAP) &&
5171 cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005172 printk(KERN_CONT "\n");
5173 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005174 break;
5175 }
5176
Rusty Russell758b2cd2008-11-25 02:35:04 +10305177 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005178
Rusty Russell968ea6d2008-12-13 21:55:51 +10305179 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305180
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005181 printk(KERN_CONT " %s", str);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005182 if (group->sgp->power != SCHED_POWER_SCALE) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005183 printk(KERN_CONT " (cpu_power = %d)",
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005184 group->sgp->power);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05305185 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005186
5187 group = group->next;
5188 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005189 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005190
Rusty Russell758b2cd2008-11-25 02:35:04 +10305191 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005192 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005193
Rusty Russell758b2cd2008-11-25 02:35:04 +10305194 if (sd->parent &&
5195 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005196 printk(KERN_ERR "ERROR: parent span is not a superset "
5197 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005198 return 0;
5199}
5200
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201static void sched_domain_debug(struct sched_domain *sd, int cpu)
5202{
5203 int level = 0;
5204
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005205 if (!sched_debug_enabled)
Mike Travisf6630112009-11-17 18:22:15 -06005206 return;
5207
Nick Piggin41c7ce92005-06-25 14:57:24 -07005208 if (!sd) {
5209 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5210 return;
5211 }
5212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5214
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005215 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005216 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 level++;
5219 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005220 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005221 break;
5222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005224#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005225# define sched_domain_debug(sd, cpu) do { } while (0)
Peter Zijlstrad039ac62012-05-31 21:20:16 +02005226static inline bool sched_debug(void)
5227{
5228 return false;
5229}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02005230#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005232static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005233{
Rusty Russell758b2cd2008-11-25 02:35:04 +10305234 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005235 return 1;
5236
5237 /* Following flags need at least 2 groups */
5238 if (sd->flags & (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 |
5243 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005244 if (sd->groups != sd->groups->next)
5245 return 0;
5246 }
5247
5248 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005249 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005250 return 0;
5251
5252 return 1;
5253}
5254
Ingo Molnar48f24c42006-07-03 00:25:40 -07005255static int
5256sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005257{
5258 unsigned long cflags = sd->flags, pflags = parent->flags;
5259
5260 if (sd_degenerate(parent))
5261 return 1;
5262
Rusty Russell758b2cd2008-11-25 02:35:04 +10305263 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07005264 return 0;
5265
Suresh Siddha245af2c2005-06-25 14:57:25 -07005266 /* Flags needing groups don't count if only 1 group in parent */
5267 if (parent->groups == parent->groups->next) {
5268 pflags &= ~(SD_LOAD_BALANCE |
5269 SD_BALANCE_NEWIDLE |
5270 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005271 SD_BALANCE_EXEC |
5272 SD_SHARE_CPUPOWER |
Peter Zijlstra10866e622013-08-19 16:57:04 +02005273 SD_SHARE_PKG_RESOURCES |
5274 SD_PREFER_SIBLING);
Ken Chen54364992008-12-07 18:47:37 -08005275 if (nr_node_ids == 1)
5276 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005277 }
5278 if (~cflags & pflags)
5279 return 0;
5280
5281 return 1;
5282}
5283
Peter Zijlstradce840a2011-04-07 14:09:50 +02005284static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10305285{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005286 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01005287
Rusty Russell68e74562008-11-25 02:35:13 +10305288 cpupri_cleanup(&rd->cpupri);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005289 cpudl_cleanup(&rd->cpudl);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005290 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305291 free_cpumask_var(rd->rto_mask);
5292 free_cpumask_var(rd->online);
5293 free_cpumask_var(rd->span);
5294 kfree(rd);
5295}
5296
Gregory Haskins57d885f2008-01-25 21:08:18 +01005297static void rq_attach_root(struct rq *rq, struct root_domain *rd)
5298{
Ingo Molnara0490fa2009-02-12 11:35:40 +01005299 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005300 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005301
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005302 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005303
5304 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01005305 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005306
Rusty Russellc6c49272008-11-25 02:35:05 +10305307 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005308 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005309
Rusty Russellc6c49272008-11-25 02:35:05 +10305310 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01005311
Ingo Molnara0490fa2009-02-12 11:35:40 +01005312 /*
Shigeru Yoshida05159732013-11-17 12:12:36 +09005313 * If we dont want to free the old_rd yet then
Ingo Molnara0490fa2009-02-12 11:35:40 +01005314 * set old_rd to NULL to skip the freeing later
5315 * in this function:
5316 */
5317 if (!atomic_dec_and_test(&old_rd->refcount))
5318 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005319 }
5320
5321 atomic_inc(&rd->refcount);
5322 rq->rd = rd;
5323
Rusty Russellc6c49272008-11-25 02:35:05 +10305324 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04005325 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04005326 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005327
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005328 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01005329
5330 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02005331 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005332}
5333
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005334static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005335{
5336 memset(rd, 0, sizeof(*rd));
5337
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005338 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08005339 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005340 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305341 goto free_span;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005342 if (!alloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10305343 goto free_online;
Juri Lelli1baca4c2013-11-07 14:43:38 +01005344 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
5345 goto free_dlo_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02005346
Dario Faggioli332ac172013-11-07 14:43:45 +01005347 init_dl_bw(&rd->dl_bw);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01005348 if (cpudl_init(&rd->cpudl) != 0)
5349 goto free_dlo_mask;
Dario Faggioli332ac172013-11-07 14:43:45 +01005350
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005351 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10305352 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10305353 return 0;
5354
Rusty Russell68e74562008-11-25 02:35:13 +10305355free_rto_mask:
5356 free_cpumask_var(rd->rto_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01005357free_dlo_mask:
5358 free_cpumask_var(rd->dlo_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10305359free_online:
5360 free_cpumask_var(rd->online);
5361free_span:
5362 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08005363out:
Rusty Russellc6c49272008-11-25 02:35:05 +10305364 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005365}
5366
Peter Zijlstra029632f2011-10-25 10:00:11 +02005367/*
5368 * By default the system creates a single root-domain with all cpus as
5369 * members (mimicking the global state we have today).
5370 */
5371struct root_domain def_root_domain;
5372
Gregory Haskins57d885f2008-01-25 21:08:18 +01005373static void init_defrootdomain(void)
5374{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005375 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10305376
Gregory Haskins57d885f2008-01-25 21:08:18 +01005377 atomic_set(&def_root_domain.refcount, 1);
5378}
5379
Gregory Haskinsdc938522008-01-25 21:08:26 +01005380static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01005381{
5382 struct root_domain *rd;
5383
5384 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
5385 if (!rd)
5386 return NULL;
5387
Pekka Enberg68c38fc2010-07-15 23:18:22 +03005388 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10305389 kfree(rd);
5390 return NULL;
5391 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01005392
5393 return rd;
5394}
5395
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005396static void free_sched_groups(struct sched_group *sg, int free_sgp)
5397{
5398 struct sched_group *tmp, *first;
5399
5400 if (!sg)
5401 return;
5402
5403 first = sg;
5404 do {
5405 tmp = sg->next;
5406
5407 if (free_sgp && atomic_dec_and_test(&sg->sgp->ref))
5408 kfree(sg->sgp);
5409
5410 kfree(sg);
5411 sg = tmp;
5412 } while (sg != first);
5413}
5414
Peter Zijlstradce840a2011-04-07 14:09:50 +02005415static void free_sched_domain(struct rcu_head *rcu)
5416{
5417 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005418
5419 /*
5420 * If its an overlapping domain it has private groups, iterate and
5421 * nuke them all.
5422 */
5423 if (sd->flags & SD_OVERLAP) {
5424 free_sched_groups(sd->groups, 1);
5425 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005426 kfree(sd->groups->sgp);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005427 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005428 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005429 kfree(sd);
5430}
5431
5432static void destroy_sched_domain(struct sched_domain *sd, int cpu)
5433{
5434 call_rcu(&sd->rcu, free_sched_domain);
5435}
5436
5437static void destroy_sched_domains(struct sched_domain *sd, int cpu)
5438{
5439 for (; sd; sd = sd->parent)
5440 destroy_sched_domain(sd, cpu);
5441}
5442
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443/*
Peter Zijlstra518cd622011-12-07 15:07:31 +01005444 * Keep a special pointer to the highest sched_domain that has
5445 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
5446 * allows us to avoid some pointer chasing select_idle_sibling().
5447 *
5448 * Also keep a unique ID per domain (we use the first cpu number in
5449 * the cpumask of the domain), this allows us to quickly tell if
Peter Zijlstra39be3502012-01-26 12:44:34 +01005450 * two cpus are in the same cache domain, see cpus_share_cache().
Peter Zijlstra518cd622011-12-07 15:07:31 +01005451 */
5452DEFINE_PER_CPU(struct sched_domain *, sd_llc);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005453DEFINE_PER_CPU(int, sd_llc_size);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005454DEFINE_PER_CPU(int, sd_llc_id);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005455DEFINE_PER_CPU(struct sched_domain *, sd_numa);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305456DEFINE_PER_CPU(struct sched_domain *, sd_busy);
5457DEFINE_PER_CPU(struct sched_domain *, sd_asym);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005458
5459static void update_top_cache_domain(int cpu)
5460{
5461 struct sched_domain *sd;
Mel Gorman5d4cf992013-12-17 09:21:25 +00005462 struct sched_domain *busy_sd = NULL;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005463 int id = cpu;
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005464 int size = 1;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005465
5466 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005467 if (sd) {
Peter Zijlstra518cd622011-12-07 15:07:31 +01005468 id = cpumask_first(sched_domain_span(sd));
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005469 size = cpumask_weight(sched_domain_span(sd));
Mel Gorman5d4cf992013-12-17 09:21:25 +00005470 busy_sd = sd->parent; /* sd_busy */
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005471 }
Mel Gorman5d4cf992013-12-17 09:21:25 +00005472 rcu_assign_pointer(per_cpu(sd_busy, cpu), busy_sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005473
5474 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005475 per_cpu(sd_llc_size, cpu) = size;
Peter Zijlstra518cd622011-12-07 15:07:31 +01005476 per_cpu(sd_llc_id, cpu) = id;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01005477
5478 sd = lowest_flag_domain(cpu, SD_NUMA);
5479 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
Preeti U Murthy37dc6b52013-10-30 08:42:52 +05305480
5481 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
5482 rcu_assign_pointer(per_cpu(sd_asym, cpu), sd);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005483}
5484
5485/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01005486 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 * hold the hotplug lock.
5488 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01005489static void
5490cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005492 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005493 struct sched_domain *tmp;
5494
5495 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08005496 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005497 struct sched_domain *parent = tmp->parent;
5498 if (!parent)
5499 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08005500
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005501 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005502 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005503 if (parent->parent)
5504 parent->parent->child = tmp;
Peter Zijlstra10866e622013-08-19 16:57:04 +02005505 /*
5506 * Transfer SD_PREFER_SIBLING down in case of a
5507 * degenerate parent; the spans match for this
5508 * so the property transfers.
5509 */
5510 if (parent->flags & SD_PREFER_SIBLING)
5511 tmp->flags |= SD_PREFER_SIBLING;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005512 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08005513 } else
5514 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005515 }
5516
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005517 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005518 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07005519 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005520 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005521 if (sd)
5522 sd->child = NULL;
5523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524
Peter Zijlstra4cb98832011-04-07 14:09:58 +02005525 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Gregory Haskins57d885f2008-01-25 21:08:18 +01005527 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005528 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07005529 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005530 destroy_sched_domains(tmp, cpu);
Peter Zijlstra518cd622011-12-07 15:07:31 +01005531
5532 update_top_cache_domain(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533}
5534
5535/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10305536static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
5538/* Setup the mask of cpus configured for isolated domains */
5539static int __init isolated_cpu_setup(char *str)
5540{
Rusty Russellbdddd292009-12-02 14:09:16 +10305541 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10305542 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 return 1;
5544}
5545
Ingo Molnar8927f492007-10-15 17:00:13 +02005546__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
Peter Zijlstrad3081f52011-04-07 14:09:59 +02005548static const struct cpumask *cpu_cpu_mask(int cpu)
5549{
5550 return cpumask_of_node(cpu_to_node(cpu));
5551}
5552
Peter Zijlstradce840a2011-04-07 14:09:50 +02005553struct sd_data {
5554 struct sched_domain **__percpu sd;
5555 struct sched_group **__percpu sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005556 struct sched_group_power **__percpu sgp;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005557};
5558
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005559struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005560 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02005561 struct root_domain *rd;
5562};
5563
Andreas Herrmann2109b992009-08-18 12:53:00 +02005564enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005565 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005566 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02005567 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02005568 sa_none,
5569};
5570
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005571struct sched_domain_topology_level;
5572
5573typedef struct sched_domain *(*sched_domain_init_f)(struct sched_domain_topology_level *tl, int cpu);
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005574typedef const struct cpumask *(*sched_domain_mask_f)(int cpu);
5575
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005576#define SDTL_OVERLAP 0x01
5577
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005578struct sched_domain_topology_level {
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005579 sched_domain_init_f init;
5580 sched_domain_mask_f mask;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005581 int flags;
Peter Zijlstracb83b622012-04-17 15:49:36 +02005582 int numa_level;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005583 struct sd_data data;
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005584};
5585
Peter Zijlstrac1174872012-05-31 14:47:33 +02005586/*
5587 * Build an iteration mask that can exclude certain CPUs from the upwards
5588 * domain traversal.
5589 *
5590 * Asymmetric node setups can result in situations where the domain tree is of
5591 * unequal depth, make sure to skip domains that already cover the entire
5592 * range.
5593 *
5594 * In that case build_sched_domains() will have terminated the iteration early
5595 * and our sibling sd spans will be empty. Domains should always include the
5596 * cpu they're built on, so check that.
5597 *
5598 */
5599static void build_group_mask(struct sched_domain *sd, struct sched_group *sg)
5600{
5601 const struct cpumask *span = sched_domain_span(sd);
5602 struct sd_data *sdd = sd->private;
5603 struct sched_domain *sibling;
5604 int i;
5605
5606 for_each_cpu(i, span) {
5607 sibling = *per_cpu_ptr(sdd->sd, i);
5608 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
5609 continue;
5610
5611 cpumask_set_cpu(i, sched_group_mask(sg));
5612 }
5613}
5614
5615/*
5616 * Return the canonical balance cpu for this group, this is the first cpu
5617 * of this group that's also in the iteration mask.
5618 */
5619int group_balance_cpu(struct sched_group *sg)
5620{
5621 return cpumask_first_and(sched_group_cpus(sg), sched_group_mask(sg));
5622}
5623
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005624static int
5625build_overlap_sched_groups(struct sched_domain *sd, int cpu)
5626{
5627 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
5628 const struct cpumask *span = sched_domain_span(sd);
5629 struct cpumask *covered = sched_domains_tmpmask;
5630 struct sd_data *sdd = sd->private;
5631 struct sched_domain *child;
5632 int i;
5633
5634 cpumask_clear(covered);
5635
5636 for_each_cpu(i, span) {
5637 struct cpumask *sg_span;
5638
5639 if (cpumask_test_cpu(i, covered))
5640 continue;
5641
Peter Zijlstrac1174872012-05-31 14:47:33 +02005642 child = *per_cpu_ptr(sdd->sd, i);
5643
5644 /* See the comment near build_group_mask(). */
5645 if (!cpumask_test_cpu(i, sched_domain_span(child)))
5646 continue;
5647
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005648 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
Suresh Siddha4d78a222011-11-18 15:03:29 -08005649 GFP_KERNEL, cpu_to_node(cpu));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005650
5651 if (!sg)
5652 goto fail;
5653
5654 sg_span = sched_group_cpus(sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005655 if (child->child) {
5656 child = child->child;
5657 cpumask_copy(sg_span, sched_domain_span(child));
5658 } else
5659 cpumask_set_cpu(i, sg_span);
5660
5661 cpumask_or(covered, covered, sg_span);
5662
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005663 sg->sgp = *per_cpu_ptr(sdd->sgp, i);
Peter Zijlstrac1174872012-05-31 14:47:33 +02005664 if (atomic_inc_return(&sg->sgp->ref) == 1)
5665 build_group_mask(sd, sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005666
Peter Zijlstrac3decf02012-05-31 12:05:32 +02005667 /*
5668 * Initialize sgp->power such that even if we mess up the
5669 * domains and no possible iteration will get us here, we won't
5670 * die on a /0 trap.
5671 */
5672 sg->sgp->power = SCHED_POWER_SCALE * cpumask_weight(sg_span);
Peter Zijlstra8e8339a2013-12-11 11:09:53 +01005673 sg->sgp->power_orig = sg->sgp->power;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005674
5675 /*
5676 * Make sure the first group of this domain contains the
5677 * canonical balance cpu. Otherwise the sched_domain iteration
5678 * breaks. See update_sg_lb_stats().
5679 */
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02005680 if ((!groups && cpumask_test_cpu(cpu, sg_span)) ||
Peter Zijlstrac1174872012-05-31 14:47:33 +02005681 group_balance_cpu(sg) == cpu)
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005682 groups = sg;
5683
5684 if (!first)
5685 first = sg;
5686 if (last)
5687 last->next = sg;
5688 last = sg;
5689 last->next = first;
5690 }
5691 sd->groups = groups;
5692
5693 return 0;
5694
5695fail:
5696 free_sched_groups(first, 0);
5697
5698 return -ENOMEM;
5699}
5700
Peter Zijlstradce840a2011-04-07 14:09:50 +02005701static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005703 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
5704 struct sched_domain *child = sd->child;
5705
5706 if (child)
5707 cpu = cpumask_first(sched_domain_span(child));
5708
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005709 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02005710 *sg = *per_cpu_ptr(sdd->sg, cpu);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005711 (*sg)->sgp = *per_cpu_ptr(sdd->sgp, cpu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005712 atomic_set(&(*sg)->sgp->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005713 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02005714
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 return cpu;
5716}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
Ingo Molnar48f24c42006-07-03 00:25:40 -07005718/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02005719 * build_sched_groups will build a circular linked list of the groups
5720 * covered by the given span, and will set each group's ->cpumask correctly,
5721 * and ->cpu_power to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005722 *
5723 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07005724 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005725static int
5726build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005727{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005728 struct sched_group *first = NULL, *last = NULL;
5729 struct sd_data *sdd = sd->private;
5730 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005731 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005732 int i;
5733
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005734 get_group(cpu, sdd, &sd->groups);
5735 atomic_inc(&sd->groups->ref);
5736
Viresh Kumar09366292013-06-11 16:32:43 +05305737 if (cpu != cpumask_first(span))
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005738 return 0;
5739
Peter Zijlstraf96225f2011-04-07 14:09:57 +02005740 lockdep_assert_held(&sched_domains_mutex);
5741 covered = sched_domains_tmpmask;
5742
Peter Zijlstradce840a2011-04-07 14:09:50 +02005743 cpumask_clear(covered);
5744
5745 for_each_cpu(i, span) {
5746 struct sched_group *sg;
Viresh Kumarcd08e922013-06-11 16:32:44 +05305747 int group, j;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005748
5749 if (cpumask_test_cpu(i, covered))
5750 continue;
5751
Viresh Kumarcd08e922013-06-11 16:32:44 +05305752 group = get_group(i, sdd, &sg);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005753 cpumask_clear(sched_group_cpus(sg));
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005754 sg->sgp->power = 0;
Peter Zijlstrac1174872012-05-31 14:47:33 +02005755 cpumask_setall(sched_group_mask(sg));
Peter Zijlstradce840a2011-04-07 14:09:50 +02005756
5757 for_each_cpu(j, span) {
5758 if (get_group(j, sdd, NULL) != group)
5759 continue;
5760
5761 cpumask_set_cpu(j, covered);
5762 cpumask_set_cpu(j, sched_group_cpus(sg));
5763 }
5764
5765 if (!first)
5766 first = sg;
5767 if (last)
5768 last->next = sg;
5769 last = sg;
5770 }
5771 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005772
5773 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005774}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005775
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005777 * Initialize sched groups cpu_power.
5778 *
5779 * cpu_power indicates the capacity of sched group, which is used while
5780 * distributing the load between different sched groups in a sched domain.
5781 * Typically cpu_power for all the groups in a sched domain will be same unless
5782 * there are asymmetries in the topology. If there are asymmetries, group
5783 * having more cpu_power will pickup more load compared to the group having
5784 * less cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005785 */
5786static void init_sched_groups_power(int cpu, struct sched_domain *sd)
5787{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005788 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005789
Viresh Kumar94c95ba2013-06-11 16:32:45 +05305790 WARN_ON(!sg);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005791
5792 do {
5793 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
5794 sg = sg->next;
5795 } while (sg != sd->groups);
5796
Peter Zijlstrac1174872012-05-31 14:47:33 +02005797 if (cpu != group_balance_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005798 return;
5799
Peter Zijlstrad274cb32011-04-07 14:09:43 +02005800 update_group_power(sd, cpu);
Suresh Siddha69e1e812011-12-01 17:07:33 -08005801 atomic_set(&sg->sgp->nr_busy_cpus, sg->group_weight);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005802}
5803
Peter Zijlstra029632f2011-10-25 10:00:11 +02005804int __weak arch_sd_sibling_asym_packing(void)
5805{
5806 return 0*SD_ASYM_PACKING;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005807}
5808
5809/*
Mike Travis7c16ec52008-04-04 18:11:11 -07005810 * Initializers for schedule domains
5811 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
5812 */
5813
Ingo Molnara5d8c342008-10-09 11:35:51 +02005814#ifdef CONFIG_SCHED_DEBUG
5815# define SD_INIT_NAME(sd, type) sd->name = #type
5816#else
5817# define SD_INIT_NAME(sd, type) do { } while (0)
5818#endif
5819
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005820#define SD_INIT_FUNC(type) \
5821static noinline struct sched_domain * \
5822sd_init_##type(struct sched_domain_topology_level *tl, int cpu) \
5823{ \
5824 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu); \
5825 *sd = SD_##type##_INIT; \
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005826 SD_INIT_NAME(sd, type); \
5827 sd->private = &tl->data; \
5828 return sd; \
Mike Travis7c16ec52008-04-04 18:11:11 -07005829}
5830
5831SD_INIT_FUNC(CPU)
Mike Travis7c16ec52008-04-04 18:11:11 -07005832#ifdef CONFIG_SCHED_SMT
5833 SD_INIT_FUNC(SIBLING)
5834#endif
5835#ifdef CONFIG_SCHED_MC
5836 SD_INIT_FUNC(MC)
5837#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02005838#ifdef CONFIG_SCHED_BOOK
5839 SD_INIT_FUNC(BOOK)
5840#endif
Mike Travis7c16ec52008-04-04 18:11:11 -07005841
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005842static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02005843int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005844
5845static int __init setup_relax_domain_level(char *str)
5846{
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05005847 if (kstrtoint(str, 0, &default_relax_domain_level))
5848 pr_warn("Unable to set relax_domain_level\n");
Li Zefan30e0e172008-05-13 10:27:17 +08005849
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005850 return 1;
5851}
5852__setup("relax_domain_level=", setup_relax_domain_level);
5853
5854static void set_domain_attribute(struct sched_domain *sd,
5855 struct sched_domain_attr *attr)
5856{
5857 int request;
5858
5859 if (!attr || attr->relax_domain_level < 0) {
5860 if (default_relax_domain_level < 0)
5861 return;
5862 else
5863 request = default_relax_domain_level;
5864 } else
5865 request = attr->relax_domain_level;
5866 if (request < sd->level) {
5867 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005868 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005869 } else {
5870 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02005871 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09005872 }
5873}
5874
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005875static void __sdt_free(const struct cpumask *cpu_map);
5876static int __sdt_alloc(const struct cpumask *cpu_map);
5877
Andreas Herrmann2109b992009-08-18 12:53:00 +02005878static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
5879 const struct cpumask *cpu_map)
5880{
5881 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02005882 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02005883 if (!atomic_read(&d->rd->refcount))
5884 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005885 case sa_sd:
5886 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02005887 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005888 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02005889 case sa_none:
5890 break;
5891 }
5892}
5893
5894static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
5895 const struct cpumask *cpu_map)
5896{
Peter Zijlstradce840a2011-04-07 14:09:50 +02005897 memset(d, 0, sizeof(*d));
5898
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02005899 if (__sdt_alloc(cpu_map))
5900 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005901 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02005902 if (!d->sd)
5903 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005904 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02005905 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02005906 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02005907 return sa_rootdomain;
5908}
5909
Peter Zijlstradce840a2011-04-07 14:09:50 +02005910/*
5911 * NULL the sd_data elements we've used to build the sched_domain and
5912 * sched_group structure so that the subsequent __free_domain_allocs()
5913 * will not free the data we're using.
5914 */
5915static void claim_allocations(int cpu, struct sched_domain *sd)
5916{
5917 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005918
5919 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
5920 *per_cpu_ptr(sdd->sd, cpu) = NULL;
5921
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005922 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02005923 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02005924
5925 if (atomic_read(&(*per_cpu_ptr(sdd->sgp, cpu))->ref))
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02005926 *per_cpu_ptr(sdd->sgp, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02005927}
5928
Andreas Herrmannd8173532009-08-18 12:57:03 +02005929#ifdef CONFIG_SCHED_SMT
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005930static const struct cpumask *cpu_smt_mask(int cpu)
5931{
5932 return topology_thread_cpumask(cpu);
Andreas Herrmannd8173532009-08-18 12:57:03 +02005933}
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005934#endif
Andreas Herrmannd8173532009-08-18 12:57:03 +02005935
Peter Zijlstrad069b912011-04-07 14:10:02 +02005936/*
5937 * Topology list, bottom-up.
5938 */
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005939static struct sched_domain_topology_level default_topology[] = {
Peter Zijlstrad069b912011-04-07 14:10:02 +02005940#ifdef CONFIG_SCHED_SMT
5941 { sd_init_SIBLING, cpu_smt_mask, },
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02005942#endif
5943#ifdef CONFIG_SCHED_MC
5944 { sd_init_MC, cpu_coregroup_mask, },
5945#endif
Peter Zijlstrad069b912011-04-07 14:10:02 +02005946#ifdef CONFIG_SCHED_BOOK
5947 { sd_init_BOOK, cpu_book_mask, },
5948#endif
5949 { sd_init_CPU, cpu_cpu_mask, },
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02005950 { NULL, },
5951};
5952
5953static struct sched_domain_topology_level *sched_domain_topology = default_topology;
5954
Viresh Kumar27723a62013-06-10 16:27:20 +05305955#define for_each_sd_topology(tl) \
5956 for (tl = sched_domain_topology; tl->init; tl++)
5957
Peter Zijlstracb83b622012-04-17 15:49:36 +02005958#ifdef CONFIG_NUMA
5959
5960static int sched_domains_numa_levels;
Peter Zijlstracb83b622012-04-17 15:49:36 +02005961static int *sched_domains_numa_distance;
5962static struct cpumask ***sched_domains_numa_masks;
5963static int sched_domains_curr_level;
5964
Peter Zijlstracb83b622012-04-17 15:49:36 +02005965static inline int sd_local_flags(int level)
5966{
Alex Shi10717dc2012-06-06 14:52:51 +08005967 if (sched_domains_numa_distance[level] > RECLAIM_DISTANCE)
Peter Zijlstracb83b622012-04-17 15:49:36 +02005968 return 0;
5969
5970 return SD_BALANCE_EXEC | SD_BALANCE_FORK | SD_WAKE_AFFINE;
5971}
5972
5973static struct sched_domain *
5974sd_numa_init(struct sched_domain_topology_level *tl, int cpu)
5975{
5976 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu);
5977 int level = tl->numa_level;
5978 int sd_weight = cpumask_weight(
5979 sched_domains_numa_masks[level][cpu_to_node(cpu)]);
5980
5981 *sd = (struct sched_domain){
5982 .min_interval = sd_weight,
5983 .max_interval = 2*sd_weight,
5984 .busy_factor = 32,
Peter Zijlstra870a0bb2012-05-11 00:26:27 +02005985 .imbalance_pct = 125,
Peter Zijlstracb83b622012-04-17 15:49:36 +02005986 .cache_nice_tries = 2,
5987 .busy_idx = 3,
5988 .idle_idx = 2,
5989 .newidle_idx = 0,
5990 .wake_idx = 0,
5991 .forkexec_idx = 0,
5992
5993 .flags = 1*SD_LOAD_BALANCE
5994 | 1*SD_BALANCE_NEWIDLE
5995 | 0*SD_BALANCE_EXEC
5996 | 0*SD_BALANCE_FORK
5997 | 0*SD_BALANCE_WAKE
5998 | 0*SD_WAKE_AFFINE
Peter Zijlstracb83b622012-04-17 15:49:36 +02005999 | 0*SD_SHARE_CPUPOWER
Peter Zijlstracb83b622012-04-17 15:49:36 +02006000 | 0*SD_SHARE_PKG_RESOURCES
6001 | 1*SD_SERIALIZE
6002 | 0*SD_PREFER_SIBLING
Mel Gorman3a7053b2013-10-07 11:29:00 +01006003 | 1*SD_NUMA
Peter Zijlstracb83b622012-04-17 15:49:36 +02006004 | sd_local_flags(level)
6005 ,
6006 .last_balance = jiffies,
6007 .balance_interval = sd_weight,
6008 };
6009 SD_INIT_NAME(sd, NUMA);
6010 sd->private = &tl->data;
6011
6012 /*
6013 * Ugly hack to pass state to sd_numa_mask()...
6014 */
6015 sched_domains_curr_level = tl->numa_level;
6016
6017 return sd;
6018}
6019
6020static const struct cpumask *sd_numa_mask(int cpu)
6021{
6022 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
6023}
6024
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006025static void sched_numa_warn(const char *str)
6026{
6027 static int done = false;
6028 int i,j;
6029
6030 if (done)
6031 return;
6032
6033 done = true;
6034
6035 printk(KERN_WARNING "ERROR: %s\n\n", str);
6036
6037 for (i = 0; i < nr_node_ids; i++) {
6038 printk(KERN_WARNING " ");
6039 for (j = 0; j < nr_node_ids; j++)
6040 printk(KERN_CONT "%02d ", node_distance(i,j));
6041 printk(KERN_CONT "\n");
6042 }
6043 printk(KERN_WARNING "\n");
6044}
6045
6046static bool find_numa_distance(int distance)
6047{
6048 int i;
6049
6050 if (distance == node_distance(0, 0))
6051 return true;
6052
6053 for (i = 0; i < sched_domains_numa_levels; i++) {
6054 if (sched_domains_numa_distance[i] == distance)
6055 return true;
6056 }
6057
6058 return false;
6059}
6060
Peter Zijlstracb83b622012-04-17 15:49:36 +02006061static void sched_init_numa(void)
6062{
6063 int next_distance, curr_distance = node_distance(0, 0);
6064 struct sched_domain_topology_level *tl;
6065 int level = 0;
6066 int i, j, k;
6067
Peter Zijlstracb83b622012-04-17 15:49:36 +02006068 sched_domains_numa_distance = kzalloc(sizeof(int) * nr_node_ids, GFP_KERNEL);
6069 if (!sched_domains_numa_distance)
6070 return;
6071
6072 /*
6073 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
6074 * unique distances in the node_distance() table.
6075 *
6076 * Assumes node_distance(0,j) includes all distances in
6077 * node_distance(i,j) in order to avoid cubic time.
Peter Zijlstracb83b622012-04-17 15:49:36 +02006078 */
6079 next_distance = curr_distance;
6080 for (i = 0; i < nr_node_ids; i++) {
6081 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006082 for (k = 0; k < nr_node_ids; k++) {
6083 int distance = node_distance(i, k);
6084
6085 if (distance > curr_distance &&
6086 (distance < next_distance ||
6087 next_distance == curr_distance))
6088 next_distance = distance;
6089
6090 /*
6091 * While not a strong assumption it would be nice to know
6092 * about cases where if node A is connected to B, B is not
6093 * equally connected to A.
6094 */
6095 if (sched_debug() && node_distance(k, i) != distance)
6096 sched_numa_warn("Node-distance not symmetric");
6097
6098 if (sched_debug() && i && !find_numa_distance(distance))
6099 sched_numa_warn("Node-0 not representative");
6100 }
6101 if (next_distance != curr_distance) {
6102 sched_domains_numa_distance[level++] = next_distance;
6103 sched_domains_numa_levels = level;
6104 curr_distance = next_distance;
6105 } else break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006106 }
Peter Zijlstrad039ac62012-05-31 21:20:16 +02006107
6108 /*
6109 * In case of sched_debug() we verify the above assumption.
6110 */
6111 if (!sched_debug())
6112 break;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006113 }
6114 /*
6115 * 'level' contains the number of unique distances, excluding the
6116 * identity distance node_distance(i,i).
6117 *
Viresh Kumar28b4a522013-04-05 16:26:46 +05306118 * The sched_domains_numa_distance[] array includes the actual distance
Peter Zijlstracb83b622012-04-17 15:49:36 +02006119 * numbers.
6120 */
6121
Tang Chen5f7865f2012-09-25 21:12:30 +08006122 /*
6123 * Here, we should temporarily reset sched_domains_numa_levels to 0.
6124 * If it fails to allocate memory for array sched_domains_numa_masks[][],
6125 * the array will contain less then 'level' members. This could be
6126 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
6127 * in other functions.
6128 *
6129 * We reset it to 'level' at the end of this function.
6130 */
6131 sched_domains_numa_levels = 0;
6132
Peter Zijlstracb83b622012-04-17 15:49:36 +02006133 sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL);
6134 if (!sched_domains_numa_masks)
6135 return;
6136
6137 /*
6138 * Now for each level, construct a mask per node which contains all
6139 * cpus of nodes that are that many hops away from us.
6140 */
6141 for (i = 0; i < level; i++) {
6142 sched_domains_numa_masks[i] =
6143 kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
6144 if (!sched_domains_numa_masks[i])
6145 return;
6146
6147 for (j = 0; j < nr_node_ids; j++) {
Peter Zijlstra2ea45802012-05-25 09:26:43 +02006148 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
Peter Zijlstracb83b622012-04-17 15:49:36 +02006149 if (!mask)
6150 return;
6151
6152 sched_domains_numa_masks[i][j] = mask;
6153
6154 for (k = 0; k < nr_node_ids; k++) {
Peter Zijlstradd7d8632012-05-11 00:56:20 +02006155 if (node_distance(j, k) > sched_domains_numa_distance[i])
Peter Zijlstracb83b622012-04-17 15:49:36 +02006156 continue;
6157
6158 cpumask_or(mask, mask, cpumask_of_node(k));
6159 }
6160 }
6161 }
6162
6163 tl = kzalloc((ARRAY_SIZE(default_topology) + level) *
6164 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
6165 if (!tl)
6166 return;
6167
6168 /*
6169 * Copy the default topology bits..
6170 */
6171 for (i = 0; default_topology[i].init; i++)
6172 tl[i] = default_topology[i];
6173
6174 /*
6175 * .. and append 'j' levels of NUMA goodness.
6176 */
6177 for (j = 0; j < level; i++, j++) {
6178 tl[i] = (struct sched_domain_topology_level){
6179 .init = sd_numa_init,
6180 .mask = sd_numa_mask,
6181 .flags = SDTL_OVERLAP,
6182 .numa_level = j,
6183 };
6184 }
6185
6186 sched_domain_topology = tl;
Tang Chen5f7865f2012-09-25 21:12:30 +08006187
6188 sched_domains_numa_levels = level;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006189}
Tang Chen301a5cb2012-09-25 21:12:31 +08006190
6191static void sched_domains_numa_masks_set(int cpu)
6192{
6193 int i, j;
6194 int node = cpu_to_node(cpu);
6195
6196 for (i = 0; i < sched_domains_numa_levels; i++) {
6197 for (j = 0; j < nr_node_ids; j++) {
6198 if (node_distance(j, node) <= sched_domains_numa_distance[i])
6199 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
6200 }
6201 }
6202}
6203
6204static void sched_domains_numa_masks_clear(int cpu)
6205{
6206 int i, j;
6207 for (i = 0; i < sched_domains_numa_levels; i++) {
6208 for (j = 0; j < nr_node_ids; j++)
6209 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
6210 }
6211}
6212
6213/*
6214 * Update sched_domains_numa_masks[level][node] array when new cpus
6215 * are onlined.
6216 */
6217static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6218 unsigned long action,
6219 void *hcpu)
6220{
6221 int cpu = (long)hcpu;
6222
6223 switch (action & ~CPU_TASKS_FROZEN) {
6224 case CPU_ONLINE:
6225 sched_domains_numa_masks_set(cpu);
6226 break;
6227
6228 case CPU_DEAD:
6229 sched_domains_numa_masks_clear(cpu);
6230 break;
6231
6232 default:
6233 return NOTIFY_DONE;
6234 }
6235
6236 return NOTIFY_OK;
Peter Zijlstracb83b622012-04-17 15:49:36 +02006237}
6238#else
6239static inline void sched_init_numa(void)
6240{
6241}
Tang Chen301a5cb2012-09-25 21:12:31 +08006242
6243static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6244 unsigned long action,
6245 void *hcpu)
6246{
6247 return 0;
6248}
Peter Zijlstracb83b622012-04-17 15:49:36 +02006249#endif /* CONFIG_NUMA */
6250
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006251static int __sdt_alloc(const struct cpumask *cpu_map)
6252{
6253 struct sched_domain_topology_level *tl;
6254 int j;
6255
Viresh Kumar27723a62013-06-10 16:27:20 +05306256 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006257 struct sd_data *sdd = &tl->data;
6258
6259 sdd->sd = alloc_percpu(struct sched_domain *);
6260 if (!sdd->sd)
6261 return -ENOMEM;
6262
6263 sdd->sg = alloc_percpu(struct sched_group *);
6264 if (!sdd->sg)
6265 return -ENOMEM;
6266
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006267 sdd->sgp = alloc_percpu(struct sched_group_power *);
6268 if (!sdd->sgp)
6269 return -ENOMEM;
6270
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006271 for_each_cpu(j, cpu_map) {
6272 struct sched_domain *sd;
6273 struct sched_group *sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006274 struct sched_group_power *sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006275
6276 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
6277 GFP_KERNEL, cpu_to_node(j));
6278 if (!sd)
6279 return -ENOMEM;
6280
6281 *per_cpu_ptr(sdd->sd, j) = sd;
6282
6283 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
6284 GFP_KERNEL, cpu_to_node(j));
6285 if (!sg)
6286 return -ENOMEM;
6287
Igor Mammedov30b4e9e2012-05-09 12:38:28 +02006288 sg->next = sg;
6289
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006290 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006291
Peter Zijlstrac1174872012-05-31 14:47:33 +02006292 sgp = kzalloc_node(sizeof(struct sched_group_power) + cpumask_size(),
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006293 GFP_KERNEL, cpu_to_node(j));
6294 if (!sgp)
6295 return -ENOMEM;
6296
6297 *per_cpu_ptr(sdd->sgp, j) = sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006298 }
6299 }
6300
6301 return 0;
6302}
6303
6304static void __sdt_free(const struct cpumask *cpu_map)
6305{
6306 struct sched_domain_topology_level *tl;
6307 int j;
6308
Viresh Kumar27723a62013-06-10 16:27:20 +05306309 for_each_sd_topology(tl) {
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006310 struct sd_data *sdd = &tl->data;
6311
6312 for_each_cpu(j, cpu_map) {
he, bofb2cf2c2012-04-25 19:59:21 +08006313 struct sched_domain *sd;
6314
6315 if (sdd->sd) {
6316 sd = *per_cpu_ptr(sdd->sd, j);
6317 if (sd && (sd->flags & SD_OVERLAP))
6318 free_sched_groups(sd->groups, 0);
6319 kfree(*per_cpu_ptr(sdd->sd, j));
6320 }
6321
6322 if (sdd->sg)
6323 kfree(*per_cpu_ptr(sdd->sg, j));
6324 if (sdd->sgp)
6325 kfree(*per_cpu_ptr(sdd->sgp, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006326 }
6327 free_percpu(sdd->sd);
he, bofb2cf2c2012-04-25 19:59:21 +08006328 sdd->sd = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006329 free_percpu(sdd->sg);
he, bofb2cf2c2012-04-25 19:59:21 +08006330 sdd->sg = NULL;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006331 free_percpu(sdd->sgp);
he, bofb2cf2c2012-04-25 19:59:21 +08006332 sdd->sgp = NULL;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006333 }
6334}
6335
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006336struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306337 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
6338 struct sched_domain *child, int cpu)
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006339{
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02006340 struct sched_domain *sd = tl->init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006341 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02006342 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006343
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006344 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02006345 if (child) {
6346 sd->level = child->level + 1;
6347 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02006348 child->parent = sd;
Viresh Kumarc75e0122013-06-10 16:27:19 +05306349 sd->child = child;
Peter Zijlstra60495e72011-04-07 14:10:04 +02006350 }
Dimitri Sivanicha841f8c2012-06-05 13:44:36 -05006351 set_domain_attribute(sd, attr);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02006352
6353 return sd;
6354}
6355
Mike Travis7c16ec52008-04-04 18:11:11 -07006356/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006357 * Build sched domains for a given set of cpus and attach the sched domains
6358 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006360static int build_sched_domains(const struct cpumask *cpu_map,
6361 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362{
Viresh Kumar1c632162013-06-10 16:27:18 +05306363 enum s_alloc alloc_state;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006364 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006365 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02006366 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10306367
Andreas Herrmann2109b992009-08-18 12:53:00 +02006368 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
6369 if (alloc_state != sa_rootdomain)
6370 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07006371
Peter Zijlstradce840a2011-04-07 14:09:50 +02006372 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10306373 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02006374 struct sched_domain_topology_level *tl;
6375
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02006376 sd = NULL;
Viresh Kumar27723a62013-06-10 16:27:20 +05306377 for_each_sd_topology(tl) {
Viresh Kumar4a850cb2013-06-04 16:12:43 +05306378 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
Viresh Kumar22da9562013-06-04 15:41:15 +05306379 if (tl == sched_domain_topology)
6380 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006381 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
6382 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02006383 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
6384 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006385 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006386 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006387
Peter Zijlstradce840a2011-04-07 14:09:50 +02006388 /* Build the groups for the domains */
6389 for_each_cpu(i, cpu_map) {
6390 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6391 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006392 if (sd->flags & SD_OVERLAP) {
6393 if (build_overlap_sched_groups(sd, i))
6394 goto error;
6395 } else {
6396 if (build_sched_groups(sd, i))
6397 goto error;
6398 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02006399 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02006400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402 /* Calculate CPU power for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02006403 for (i = nr_cpumask_bits-1; i >= 0; i--) {
6404 if (!cpumask_test_cpu(i, cpu_map))
6405 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
Peter Zijlstradce840a2011-04-07 14:09:50 +02006407 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6408 claim_allocations(i, sd);
Peter Zijlstracd4ea6a2011-04-07 14:09:45 +02006409 init_sched_groups_power(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006410 }
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006411 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006412
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006414 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306415 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02006416 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006417 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006419 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006420
Peter Zijlstra822ff792011-04-07 14:09:51 +02006421 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006422error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02006423 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02006424 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425}
Paul Jackson029190c2007-10-18 23:40:20 -07006426
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306427static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07006428static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02006429static struct sched_domain_attr *dattr_cur;
6430 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07006431
6432/*
6433 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10306434 * cpumask) fails, then fallback to a single sched domain,
6435 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07006436 */
Rusty Russell42128232008-11-25 02:35:12 +10306437static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07006438
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006439/*
6440 * arch_update_cpu_topology lets virtualized architectures update the
6441 * cpu core maps. It is supposed to return 1 if the topology changed
6442 * or 0 if it stayed the same.
6443 */
6444int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01006445{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01006446 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01006447}
6448
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306449cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
6450{
6451 int i;
6452 cpumask_var_t *doms;
6453
6454 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
6455 if (!doms)
6456 return NULL;
6457 for (i = 0; i < ndoms; i++) {
6458 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
6459 free_sched_domains(doms, i);
6460 return NULL;
6461 }
6462 }
6463 return doms;
6464}
6465
6466void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
6467{
6468 unsigned int i;
6469 for (i = 0; i < ndoms; i++)
6470 free_cpumask_var(doms[i]);
6471 kfree(doms);
6472}
6473
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006474/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006475 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006476 * For now this just excludes isolated cpus, but could be used to
6477 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006478 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006479static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006480{
Milton Miller73785472007-10-24 18:23:48 +02006481 int err;
6482
Heiko Carstens22e52b02008-03-12 18:31:59 +01006483 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07006484 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306485 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07006486 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306487 doms_cur = &fallback_doms;
6488 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006489 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02006490 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006491
6492 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006493}
6494
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006495/*
6496 * Detach sched domains from a group of cpus specified in cpu_map
6497 * These cpus will now be attached to the NULL domain
6498 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306499static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006500{
6501 int i;
6502
Peter Zijlstradce840a2011-04-07 14:09:50 +02006503 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10306504 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006505 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006506 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006507}
6508
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006509/* handle null as "default" */
6510static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
6511 struct sched_domain_attr *new, int idx_new)
6512{
6513 struct sched_domain_attr tmp;
6514
6515 /* fast path */
6516 if (!new && !cur)
6517 return 1;
6518
6519 tmp = SD_ATTR_INIT;
6520 return !memcmp(cur ? (cur + idx_cur) : &tmp,
6521 new ? (new + idx_new) : &tmp,
6522 sizeof(struct sched_domain_attr));
6523}
6524
Paul Jackson029190c2007-10-18 23:40:20 -07006525/*
6526 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006527 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006528 * doms_new[] to the current sched domain partitioning, doms_cur[].
6529 * It destroys each deleted domain and builds each new domain.
6530 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306531 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006532 * The masks don't intersect (don't overlap.) We should setup one
6533 * sched domain for each mask. CPUs not in any of the cpumasks will
6534 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006535 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6536 * it as it is.
6537 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306538 * The passed in 'doms_new' should be allocated using
6539 * alloc_sched_domains. This routine takes ownership of it and will
6540 * free_sched_domains it when done with it. If the caller failed the
6541 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
6542 * and partition_sched_domains() will fallback to the single partition
6543 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07006544 *
Rusty Russell96f874e22008-11-25 02:35:14 +10306545 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08006546 * ndoms_new == 0 is a special case for destroying existing domains,
6547 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006548 *
Paul Jackson029190c2007-10-18 23:40:20 -07006549 * Call with hotplug lock held
6550 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306551void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006552 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07006553{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006554 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006555 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07006556
Heiko Carstens712555e2008-04-28 11:33:07 +02006557 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006558
Milton Miller73785472007-10-24 18:23:48 +02006559 /* always unregister in case we don't destroy any domains */
6560 unregister_sched_domain_sysctl();
6561
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006562 /* Let architecture update cpu core mappings. */
6563 new_topology = arch_update_cpu_topology();
6564
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07006565 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07006566
6567 /* Destroy deleted domains */
6568 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01006569 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306570 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006571 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006572 goto match1;
6573 }
6574 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306575 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07006576match1:
6577 ;
6578 }
6579
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006580 n = ndoms_cur;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006581 if (doms_new == NULL) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006582 n = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306583 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006584 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08006585 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006586 }
6587
Paul Jackson029190c2007-10-18 23:40:20 -07006588 /* Build new domains */
6589 for (i = 0; i < ndoms_new; i++) {
Xiaotian Fengc8d2d472013-08-06 20:06:42 +08006590 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306591 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006592 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07006593 goto match2;
6594 }
6595 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02006596 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07006597match2:
6598 ;
6599 }
6600
6601 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10306602 if (doms_cur != &fallback_doms)
6603 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006604 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07006605 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006606 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07006607 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006608
6609 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006610
Heiko Carstens712555e2008-04-28 11:33:07 +02006611 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07006612}
6613
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306614static int num_cpus_frozen; /* used to mark begin/end of suspend/resume */
6615
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616/*
Tejun Heo3a101d02010-06-08 21:40:36 +02006617 * Update cpusets according to cpu_active mask. If cpusets are
6618 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
6619 * around partition_sched_domains().
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306620 *
6621 * If we come here as part of a suspend/resume, don't touch cpusets because we
6622 * want to restore it back to its original state upon resume anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02006624static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
6625 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306627 switch (action) {
6628 case CPU_ONLINE_FROZEN:
6629 case CPU_DOWN_FAILED_FROZEN:
6630
6631 /*
6632 * num_cpus_frozen tracks how many CPUs are involved in suspend
6633 * resume sequence. As long as this is not the last online
6634 * operation in the resume sequence, just build a single sched
6635 * domain, ignoring cpusets.
6636 */
6637 num_cpus_frozen--;
6638 if (likely(num_cpus_frozen)) {
6639 partition_sched_domains(1, NULL, NULL);
6640 break;
6641 }
6642
6643 /*
6644 * This is the last CPU online operation. So fall through and
6645 * restore the original sched domains by considering the
6646 * cpuset configurations.
6647 */
6648
Max Krasnyanskye761b772008-07-15 04:43:49 -07006649 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006650 case CPU_DOWN_FAILED:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306651 cpuset_update_active_cpus(true);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306652 break;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006653 default:
6654 return NOTIFY_DONE;
6655 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306656 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07006657}
Tejun Heo3a101d02010-06-08 21:40:36 +02006658
Tejun Heo0b2e9182010-06-21 23:53:31 +02006659static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
6660 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02006661{
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306662 switch (action) {
Tejun Heo3a101d02010-06-08 21:40:36 +02006663 case CPU_DOWN_PREPARE:
Srivatsa S. Bhat7ddf96b2012-05-24 19:46:55 +05306664 cpuset_update_active_cpus(false);
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306665 break;
6666 case CPU_DOWN_PREPARE_FROZEN:
6667 num_cpus_frozen++;
6668 partition_sched_domains(1, NULL, NULL);
6669 break;
Tejun Heo3a101d02010-06-08 21:40:36 +02006670 default:
6671 return NOTIFY_DONE;
6672 }
Srivatsa S. Bhatd35be8b2012-05-24 19:46:26 +05306673 return NOTIFY_OK;
Tejun Heo3a101d02010-06-08 21:40:36 +02006674}
Max Krasnyanskye761b772008-07-15 04:43:49 -07006675
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676void __init sched_init_smp(void)
6677{
Rusty Russelldcc30a32008-11-25 02:35:12 +10306678 cpumask_var_t non_isolated_cpus;
6679
6680 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08006681 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006682
Peter Zijlstracb83b622012-04-17 15:49:36 +02006683 sched_init_numa();
6684
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02006685 /*
6686 * There's no userspace yet to cause hotplug operations; hence all the
6687 * cpu masks are stable and all blatant races in the below code cannot
6688 * happen.
6689 */
Heiko Carstens712555e2008-04-28 11:33:07 +02006690 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02006691 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10306692 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
6693 if (cpumask_empty(non_isolated_cpus))
6694 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02006695 mutex_unlock(&sched_domains_mutex);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006696
Tang Chen301a5cb2012-09-25 21:12:31 +08006697 hotcpu_notifier(sched_domains_numa_masks_update, CPU_PRI_SCHED_ACTIVE);
Tejun Heo3a101d02010-06-08 21:40:36 +02006698 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
6699 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07006700
Peter Zijlstrab328ca12008-04-29 10:02:46 +02006701 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07006702
6703 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306704 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07006705 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006706 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10306707 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10306708
Rusty Russell0e3900e2008-11-25 02:35:13 +10306709 init_sched_rt_class();
Juri Lelli1baca4c2013-11-07 14:43:38 +01006710 init_sched_dl_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711}
6712#else
6713void __init sched_init_smp(void)
6714{
Ingo Molnar19978ca2007-11-09 22:39:38 +01006715 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716}
6717#endif /* CONFIG_SMP */
6718
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05306719const_debug unsigned int sysctl_timer_migration = 1;
6720
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721int in_sched_functions(unsigned long addr)
6722{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723 return in_lock_functions(addr) ||
6724 (addr >= (unsigned long)__sched_text_start
6725 && addr < (unsigned long)__sched_text_end);
6726}
6727
Peter Zijlstra029632f2011-10-25 10:00:11 +02006728#ifdef CONFIG_CGROUP_SCHED
Li Zefan27b4b932013-03-05 16:07:52 +08006729/*
6730 * Default task group.
6731 * Every task in system belongs to this group at bootup.
6732 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02006733struct task_group root_task_group;
Mike Galbraith35cf4e52012-08-07 05:00:13 +02006734LIST_HEAD(task_groups);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006735#endif
6736
Joonsoo Kime6252c32013-04-23 17:27:41 +09006737DECLARE_PER_CPU(cpumask_var_t, load_balance_mask);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006738
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739void __init sched_init(void)
6740{
Ingo Molnardd41f592007-07-09 18:51:59 +02006741 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07006742 unsigned long alloc_size = 0, ptr;
6743
6744#ifdef CONFIG_FAIR_GROUP_SCHED
6745 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6746#endif
6747#ifdef CONFIG_RT_GROUP_SCHED
6748 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
6749#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306750#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10306751 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306752#endif
Mike Travis434d53b2008-04-04 18:11:04 -07006753 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03006754 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07006755
6756#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006757 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006758 ptr += nr_cpu_ids * sizeof(void **);
6759
Yong Zhang07e06b02011-01-07 15:17:36 +08006760 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006761 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006762
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006763#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07006764#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006765 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07006766 ptr += nr_cpu_ids * sizeof(void **);
6767
Yong Zhang07e06b02011-01-07 15:17:36 +08006768 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02006769 ptr += nr_cpu_ids * sizeof(void **);
6770
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006771#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306772#ifdef CONFIG_CPUMASK_OFFSTACK
6773 for_each_possible_cpu(i) {
Joonsoo Kime6252c32013-04-23 17:27:41 +09006774 per_cpu(load_balance_mask, i) = (void *)ptr;
Rusty Russelldf7c8e82009-03-19 15:22:20 +10306775 ptr += cpumask_size();
6776 }
6777#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07006778 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006779
Dario Faggioli332ac172013-11-07 14:43:45 +01006780 init_rt_bandwidth(&def_rt_bandwidth,
6781 global_rt_period(), global_rt_runtime());
6782 init_dl_bandwidth(&def_dl_bandwidth,
Peter Zijlstra17248132013-12-17 12:44:49 +01006783 global_rt_period(), global_rt_runtime());
Dario Faggioli332ac172013-11-07 14:43:45 +01006784
Gregory Haskins57d885f2008-01-25 21:08:18 +01006785#ifdef CONFIG_SMP
6786 init_defrootdomain();
6787#endif
6788
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006789#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006790 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006791 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006792#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02006793
Dhaval Giani7c941432010-01-20 13:26:18 +01006794#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08006795 list_add(&root_task_group.list, &task_groups);
6796 INIT_LIST_HEAD(&root_task_group.children);
Glauber Costaf4d6f6c2011-11-01 19:19:07 -02006797 INIT_LIST_HEAD(&root_task_group.siblings);
Mike Galbraith5091faa2010-11-30 14:18:03 +01006798 autogroup_init(&init_task);
Glauber Costa54c707e2011-11-28 14:45:19 -02006799
Dhaval Giani7c941432010-01-20 13:26:18 +01006800#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006801
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006802 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006803 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804
6805 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006806 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07006807 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006808 rq->calc_load_active = 0;
6809 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02006810 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01006811 init_rt_rq(&rq->rt, rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01006812 init_dl_rq(&rq->dl, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006813#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02006814 root_task_group.shares = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006815 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006816 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08006817 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02006818 *
6819 * In case of task-groups formed thr' the cgroup filesystem, it
6820 * gets 100% of the cpu resources in the system. This overall
6821 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08006822 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02006823 * based on each entity's (task or task-group's) weight
6824 * (se->load.weight).
6825 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006826 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02006827 * 1024) and two child groups A0 and A1 (of weight 1024 each),
6828 * then A0's share of the cpu resource is:
6829 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02006830 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02006831 *
Yong Zhang07e06b02011-01-07 15:17:36 +08006832 * We achieve this by letting root_task_group's tasks sit
6833 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02006834 */
Paul Turnerab84d312011-07-21 09:43:28 -07006835 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08006836 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02006837#endif /* CONFIG_FAIR_GROUP_SCHED */
6838
6839 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01006840#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006841 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Yong Zhang07e06b02011-01-07 15:17:36 +08006842 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01006843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844
Ingo Molnardd41f592007-07-09 18:51:59 +02006845 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6846 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07006847
6848 rq->last_load_update_tick = jiffies;
6849
Linus Torvalds1da177e2005-04-16 15:20:36 -07006850#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006851 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006852 rq->rd = NULL;
Nikhil Rao1399fa72011-05-18 10:09:39 -07006853 rq->cpu_power = SCHED_POWER_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04006854 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006856 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006858 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006859 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01006860 rq->idle_stamp = 0;
6861 rq->avg_idle = 2*sysctl_sched_migration_cost;
Jason Low9bd721c2013-09-13 11:26:52 -07006862 rq->max_idle_balance_cost = sysctl_sched_migration_cost;
Peter Zijlstra367456c2012-02-20 21:49:09 +01006863
6864 INIT_LIST_HEAD(&rq->cfs_tasks);
6865
Gregory Haskinsdc938522008-01-25 21:08:26 +01006866 rq_attach_root(rq, &def_root_domain);
Frederic Weisbecker3451d022011-08-10 23:21:01 +02006867#ifdef CONFIG_NO_HZ_COMMON
Suresh Siddha1c792db2011-12-01 17:07:32 -08006868 rq->nohz_flags = 0;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07006869#endif
Frederic Weisbecker265f22a2013-05-03 03:39:05 +02006870#ifdef CONFIG_NO_HZ_FULL
6871 rq->last_sched_tick = 0;
6872#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01006874 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876 }
6877
Peter Williams2dd73a42006-06-27 02:54:34 -07006878 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006879
Avi Kivitye107be32007-07-26 13:40:43 +02006880#ifdef CONFIG_PREEMPT_NOTIFIERS
6881 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
6882#endif
6883
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884 /*
6885 * The boot idle thread does lazy MMU switching as well:
6886 */
6887 atomic_inc(&init_mm.mm_count);
6888 enter_lazy_tlb(&init_mm, current);
6889
6890 /*
6891 * Make us the idle thread. Technically, schedule() should not be
6892 * called from this thread, however somewhere below it might be,
6893 * but because we are the idle thread, we just pick up running again
6894 * when this runqueue becomes "idle".
6895 */
6896 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006897
6898 calc_load_update = jiffies + LOAD_FREQ;
6899
Ingo Molnardd41f592007-07-09 18:51:59 +02006900 /*
6901 * During early bootup we pretend to be a normal task:
6902 */
6903 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01006904
Rusty Russellbf4d83f2008-11-25 09:57:51 +10306905#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02006906 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russellbdddd292009-12-02 14:09:16 +10306907 /* May be allocated at isolcpus cmdline parse time */
6908 if (cpu_isolated_map == NULL)
6909 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Thomas Gleixner29d5e042012-04-20 13:05:45 +00006910 idle_thread_set_boot_cpu();
Peter Zijlstra029632f2011-10-25 10:00:11 +02006911#endif
6912 init_sched_fair_class();
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306913
Ingo Molnar6892b752008-02-13 14:02:36 +01006914 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915}
6916
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02006917#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006918static inline int preempt_count_equals(int preempt_offset)
6919{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01006920 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006921
Arnd Bergmann4ba82162011-01-25 22:52:22 +01006922 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006923}
6924
Simon Kagstromd8948372009-12-23 11:08:18 +01006925void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927 static unsigned long prev_jiffy; /* ratelimiting */
6928
Paul E. McKenneyb3fbab02011-05-24 08:31:09 -07006929 rcu_sleep_check(); /* WARN_ON_ONCE() by default, no rate limit reqd. */
Thomas Gleixnerdb273be2014-02-07 20:58:38 +01006930 if ((preempt_count_equals(preempt_offset) && !irqs_disabled() &&
6931 !is_idle_task(current)) ||
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02006932 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02006933 return;
6934 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6935 return;
6936 prev_jiffy = jiffies;
6937
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006938 printk(KERN_ERR
6939 "BUG: sleeping function called from invalid context at %s:%d\n",
6940 file, line);
6941 printk(KERN_ERR
6942 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
6943 in_atomic(), irqs_disabled(),
6944 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02006945
6946 debug_show_held_locks(current);
6947 if (irqs_disabled())
6948 print_irqtrace_events(current);
6949 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950}
6951EXPORT_SYMBOL(__might_sleep);
6952#endif
6953
6954#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006955static void normalize_task(struct rq *rq, struct task_struct *p)
6956{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01006957 const struct sched_class *prev_class = p->sched_class;
Dario Faggiolid50dde52013-11-07 14:43:36 +01006958 struct sched_attr attr = {
6959 .sched_policy = SCHED_NORMAL,
6960 };
Peter Zijlstrada7a7352011-01-17 17:03:27 +01006961 int old_prio = p->prio;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006962 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02006963
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02006964 on_rq = p->on_rq;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006965 if (on_rq)
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01006966 dequeue_task(rq, p, 0);
Dario Faggiolid50dde52013-11-07 14:43:36 +01006967 __setscheduler(rq, p, &attr);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006968 if (on_rq) {
Peter Zijlstra4ca9b722012-01-25 11:50:51 +01006969 enqueue_task(rq, p, 0);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006970 resched_task(rq->curr);
6971 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01006972
6973 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006974}
6975
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976void normalize_rt_tasks(void)
6977{
Ingo Molnara0f98a12007-06-17 18:37:45 +02006978 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006980 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01006982 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006983 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02006984 /*
6985 * Only normalize user tasks:
6986 */
6987 if (!p->mm)
6988 continue;
6989
Ingo Molnardd41f592007-07-09 18:51:59 +02006990 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006991#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03006992 p->se.statistics.wait_start = 0;
6993 p->se.statistics.sleep_start = 0;
6994 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006995#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006996
Dario Faggioliaab03e02013-11-28 11:14:43 +01006997 if (!dl_task(p) && !rt_task(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006998 /*
6999 * Renice negative nice level userspace
7000 * tasks back to 0:
7001 */
Dongsheng Yangd0ea0262014-01-27 22:00:45 -05007002 if (task_nice(p) < 0 && p->mm)
Ingo Molnardd41f592007-07-09 18:51:59 +02007003 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006
Thomas Gleixner1d615482009-11-17 14:54:03 +01007007 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007008 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009
Ingo Molnar178be792007-10-15 17:00:18 +02007010 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007011
Ingo Molnarb29739f2006-06-27 02:54:51 -07007012 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01007013 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007014 } while_each_thread(g, p);
7015
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007016 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017}
7018
7019#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007020
Jason Wessel67fc4e02010-05-20 21:04:21 -05007021#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007022/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05007023 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007024 *
7025 * They can only be called when the whole system has been
7026 * stopped - every CPU needs to be quiescent, and no scheduling
7027 * activity can take place. Using them for anything else would
7028 * be a serious bug, and as a result, they aren't even visible
7029 * under any other configuration.
7030 */
7031
7032/**
7033 * curr_task - return the current task for a given cpu.
7034 * @cpu: the processor in question.
7035 *
7036 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
Yacine Belkadie69f6182013-07-12 20:45:47 +02007037 *
7038 * Return: The current task for @cpu.
Linus Torvalds1df5c102005-09-12 07:59:21 -07007039 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007040struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007041{
7042 return cpu_curr(cpu);
7043}
7044
Jason Wessel67fc4e02010-05-20 21:04:21 -05007045#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
7046
7047#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07007048/**
7049 * set_curr_task - set the current task for a given cpu.
7050 * @cpu: the processor in question.
7051 * @p: the task pointer to set.
7052 *
7053 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007054 * are serviced on a separate stack. It allows the architecture to switch the
7055 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007056 * must be called with all CPU's synchronized, and interrupts disabled, the
7057 * and caller must save the original value of the current task (see
7058 * curr_task() above) and restore that value before reenabling interrupts and
7059 * re-starting the system.
7060 *
7061 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7062 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007063void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007064{
7065 cpu_curr(cpu) = p;
7066}
7067
7068#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007069
Dhaval Giani7c941432010-01-20 13:26:18 +01007070#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +02007071/* task_group_lock serializes the addition/removal of task groups */
7072static DEFINE_SPINLOCK(task_group_lock);
7073
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007074static void free_sched_group(struct task_group *tg)
7075{
7076 free_fair_sched_group(tg);
7077 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01007078 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007079 kfree(tg);
7080}
7081
7082/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007083struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007084{
7085 struct task_group *tg;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007086
7087 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7088 if (!tg)
7089 return ERR_PTR(-ENOMEM);
7090
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007091 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007092 goto err;
7093
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007094 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007095 goto err;
7096
Li Zefanace783b2013-01-24 14:30:48 +08007097 return tg;
7098
7099err:
7100 free_sched_group(tg);
7101 return ERR_PTR(-ENOMEM);
7102}
7103
7104void sched_online_group(struct task_group *tg, struct task_group *parent)
7105{
7106 unsigned long flags;
7107
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007108 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007109 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007110
7111 WARN_ON(!parent); /* root should already exist */
7112
7113 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007114 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08007115 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007116 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007117}
7118
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007119/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007120static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007121{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007122 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007123 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007124}
7125
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007126/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007127void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007128{
Li Zefanace783b2013-01-24 14:30:48 +08007129 /* wait for possible concurrent references to cfs_rqs complete */
7130 call_rcu(&tg->rcu, free_sched_group_rcu);
7131}
7132
7133void sched_offline_group(struct task_group *tg)
7134{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007135 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007136 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007137
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007138 /* end participation in shares distribution */
7139 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007140 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08007141
7142 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007143 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007144 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007145 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007146}
7147
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007148/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007149 * The caller of this function should have put the task in its new group
7150 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7151 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007152 */
7153void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007154{
Peter Zijlstra8323f262012-06-22 13:36:05 +02007155 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007156 int on_rq, running;
7157 unsigned long flags;
7158 struct rq *rq;
7159
7160 rq = task_rq_lock(tsk, &flags);
7161
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007162 running = task_current(rq, tsk);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02007163 on_rq = tsk->on_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007164
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007165 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007166 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007167 if (unlikely(running))
7168 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007169
Tejun Heo8af01f52013-08-08 20:11:22 -04007170 tg = container_of(task_css_check(tsk, cpu_cgroup_subsys_id,
Peter Zijlstra8323f262012-06-22 13:36:05 +02007171 lockdep_is_held(&tsk->sighand->siglock)),
7172 struct task_group, css);
7173 tg = autogroup_task_group(tsk, tg);
7174 tsk->sched_task_group = tg;
7175
Peter Zijlstra810b3812008-02-29 15:21:01 -05007176#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007177 if (tsk->sched_class->task_move_group)
7178 tsk->sched_class->task_move_group(tsk, on_rq);
7179 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05007180#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02007181 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05007182
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007183 if (unlikely(running))
7184 tsk->sched_class->set_curr_task(rq);
7185 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01007186 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007187
Peter Zijlstra0122ec52011-04-05 17:23:51 +02007188 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007189}
Dhaval Giani7c941432010-01-20 13:26:18 +01007190#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007191
Paul Turnera790de92011-07-21 09:43:29 -07007192#ifdef CONFIG_RT_GROUP_SCHED
7193/*
7194 * Ensure that the real time constraints are schedulable.
7195 */
7196static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007197
Dhaval Giani521f1a242008-02-28 15:21:56 +05307198/* Must be called with tasklist_lock held */
7199static inline int tg_has_rt_tasks(struct task_group *tg)
7200{
7201 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007202
Dhaval Giani521f1a242008-02-28 15:21:56 +05307203 do_each_thread(g, p) {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007204 if (rt_task(p) && task_rq(p)->rt.tg == tg)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307205 return 1;
7206 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007207
Dhaval Giani521f1a242008-02-28 15:21:56 +05307208 return 0;
7209}
7210
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007211struct rt_schedulable_data {
7212 struct task_group *tg;
7213 u64 rt_period;
7214 u64 rt_runtime;
7215};
7216
Paul Turnera790de92011-07-21 09:43:29 -07007217static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007218{
7219 struct rt_schedulable_data *d = data;
7220 struct task_group *child;
7221 unsigned long total, sum = 0;
7222 u64 period, runtime;
7223
7224 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7225 runtime = tg->rt_bandwidth.rt_runtime;
7226
7227 if (tg == d->tg) {
7228 period = d->rt_period;
7229 runtime = d->rt_runtime;
7230 }
7231
Peter Zijlstra4653f802008-09-23 15:33:44 +02007232 /*
7233 * Cannot have more runtime than the period.
7234 */
7235 if (runtime > period && runtime != RUNTIME_INF)
7236 return -EINVAL;
7237
7238 /*
7239 * Ensure we don't starve existing RT tasks.
7240 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007241 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
7242 return -EBUSY;
7243
7244 total = to_ratio(period, runtime);
7245
Peter Zijlstra4653f802008-09-23 15:33:44 +02007246 /*
7247 * Nobody can have more than the global setting allows.
7248 */
7249 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
7250 return -EINVAL;
7251
7252 /*
7253 * The sum of our children's runtime should not exceed our own.
7254 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007255 list_for_each_entry_rcu(child, &tg->children, siblings) {
7256 period = ktime_to_ns(child->rt_bandwidth.rt_period);
7257 runtime = child->rt_bandwidth.rt_runtime;
7258
7259 if (child == d->tg) {
7260 period = d->rt_period;
7261 runtime = d->rt_runtime;
7262 }
7263
7264 sum += to_ratio(period, runtime);
7265 }
7266
7267 if (sum > total)
7268 return -EINVAL;
7269
7270 return 0;
7271}
7272
7273static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
7274{
Paul Turner82774342011-07-21 09:43:35 -07007275 int ret;
7276
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007277 struct rt_schedulable_data data = {
7278 .tg = tg,
7279 .rt_period = period,
7280 .rt_runtime = runtime,
7281 };
7282
Paul Turner82774342011-07-21 09:43:35 -07007283 rcu_read_lock();
7284 ret = walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
7285 rcu_read_unlock();
7286
7287 return ret;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007288}
7289
Paul Turnerab84d312011-07-21 09:43:28 -07007290static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007291 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007292{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007293 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007294
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007295 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05307296 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007297 err = __rt_schedulable(tg, rt_period, rt_runtime);
7298 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05307299 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007300
Thomas Gleixner0986b112009-11-17 15:32:06 +01007301 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007302 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
7303 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007304
7305 for_each_possible_cpu(i) {
7306 struct rt_rq *rt_rq = tg->rt_rq[i];
7307
Thomas Gleixner0986b112009-11-17 15:32:06 +01007308 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007309 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01007310 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007311 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007312 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02007313unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05307314 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007315 mutex_unlock(&rt_constraints_mutex);
7316
7317 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007318}
7319
Li Zefan25cc7da2013-03-05 16:07:33 +08007320static int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007321{
7322 u64 rt_runtime, rt_period;
7323
7324 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7325 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7326 if (rt_runtime_us < 0)
7327 rt_runtime = RUNTIME_INF;
7328
Paul Turnerab84d312011-07-21 09:43:28 -07007329 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007330}
7331
Li Zefan25cc7da2013-03-05 16:07:33 +08007332static long sched_group_rt_runtime(struct task_group *tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007333{
7334 u64 rt_runtime_us;
7335
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007336 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007337 return -1;
7338
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007339 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007340 do_div(rt_runtime_us, NSEC_PER_USEC);
7341 return rt_runtime_us;
7342}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007343
Li Zefan25cc7da2013-03-05 16:07:33 +08007344static int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007345{
7346 u64 rt_runtime, rt_period;
7347
7348 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
7349 rt_runtime = tg->rt_bandwidth.rt_runtime;
7350
Raistlin619b0482008-06-26 18:54:09 +02007351 if (rt_period == 0)
7352 return -EINVAL;
7353
Paul Turnerab84d312011-07-21 09:43:28 -07007354 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007355}
7356
Li Zefan25cc7da2013-03-05 16:07:33 +08007357static long sched_group_rt_period(struct task_group *tg)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007358{
7359 u64 rt_period_us;
7360
7361 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
7362 do_div(rt_period_us, NSEC_PER_USEC);
7363 return rt_period_us;
7364}
Dario Faggioli332ac172013-11-07 14:43:45 +01007365#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007366
Dario Faggioli332ac172013-11-07 14:43:45 +01007367#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007368static int sched_rt_global_constraints(void)
7369{
7370 int ret = 0;
7371
7372 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007373 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02007374 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02007375 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007376 mutex_unlock(&rt_constraints_mutex);
7377
7378 return ret;
7379}
Dhaval Giani54e99122009-02-27 15:13:54 +05307380
Li Zefan25cc7da2013-03-05 16:07:33 +08007381static int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
Dhaval Giani54e99122009-02-27 15:13:54 +05307382{
7383 /* Don't accept realtime tasks when there is no way for them to run */
7384 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
7385 return 0;
7386
7387 return 1;
7388}
7389
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007390#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007391static int sched_rt_global_constraints(void)
7392{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007393 unsigned long flags;
Dario Faggioli332ac172013-11-07 14:43:45 +01007394 int i, ret = 0;
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07007395
Thomas Gleixner0986b112009-11-17 15:32:06 +01007396 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007397 for_each_possible_cpu(i) {
7398 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
7399
Thomas Gleixner0986b112009-11-17 15:32:06 +01007400 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007401 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01007402 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007403 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01007404 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007405
Dario Faggioli332ac172013-11-07 14:43:45 +01007406 return ret;
7407}
7408#endif /* CONFIG_RT_GROUP_SCHED */
7409
Dario Faggioli332ac172013-11-07 14:43:45 +01007410static int sched_dl_global_constraints(void)
7411{
Peter Zijlstra17248132013-12-17 12:44:49 +01007412 u64 runtime = global_rt_runtime();
7413 u64 period = global_rt_period();
Dario Faggioli332ac172013-11-07 14:43:45 +01007414 u64 new_bw = to_ratio(period, runtime);
Peter Zijlstra17248132013-12-17 12:44:49 +01007415 int cpu, ret = 0;
Dario Faggioli332ac172013-11-07 14:43:45 +01007416
7417 /*
7418 * Here we want to check the bandwidth not being set to some
7419 * value smaller than the currently allocated bandwidth in
7420 * any of the root_domains.
7421 *
7422 * FIXME: Cycling on all the CPUs is overdoing, but simpler than
7423 * cycling on root_domains... Discussion on different/better
7424 * solutions is welcome!
7425 */
Peter Zijlstra17248132013-12-17 12:44:49 +01007426 for_each_possible_cpu(cpu) {
7427 struct dl_bw *dl_b = dl_bw_of(cpu);
Dario Faggioli332ac172013-11-07 14:43:45 +01007428
7429 raw_spin_lock(&dl_b->lock);
Peter Zijlstra17248132013-12-17 12:44:49 +01007430 if (new_bw < dl_b->total_bw)
7431 ret = -EBUSY;
Dario Faggioli332ac172013-11-07 14:43:45 +01007432 raw_spin_unlock(&dl_b->lock);
Peter Zijlstra17248132013-12-17 12:44:49 +01007433
7434 if (ret)
7435 break;
Dario Faggioli332ac172013-11-07 14:43:45 +01007436 }
7437
Peter Zijlstra17248132013-12-17 12:44:49 +01007438 return ret;
7439}
7440
7441static void sched_dl_do_global(void)
7442{
7443 u64 new_bw = -1;
7444 int cpu;
7445
7446 def_dl_bandwidth.dl_period = global_rt_period();
7447 def_dl_bandwidth.dl_runtime = global_rt_runtime();
7448
7449 if (global_rt_runtime() != RUNTIME_INF)
7450 new_bw = to_ratio(global_rt_period(), global_rt_runtime());
7451
7452 /*
7453 * FIXME: As above...
7454 */
7455 for_each_possible_cpu(cpu) {
7456 struct dl_bw *dl_b = dl_bw_of(cpu);
7457
7458 raw_spin_lock(&dl_b->lock);
7459 dl_b->bw = new_bw;
7460 raw_spin_unlock(&dl_b->lock);
7461 }
7462}
7463
7464static int sched_rt_global_validate(void)
7465{
7466 if (sysctl_sched_rt_period <= 0)
7467 return -EINVAL;
7468
7469 if (sysctl_sched_rt_runtime > sysctl_sched_rt_period)
7470 return -EINVAL;
7471
Dario Faggioli332ac172013-11-07 14:43:45 +01007472 return 0;
7473}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007474
Peter Zijlstra17248132013-12-17 12:44:49 +01007475static void sched_rt_do_global(void)
7476{
7477 def_rt_bandwidth.rt_runtime = global_rt_runtime();
7478 def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period());
7479}
7480
7481int sched_rt_handler(struct ctl_table *table, int write,
7482 void __user *buffer, size_t *lenp,
7483 loff_t *ppos)
7484{
7485 int old_period, old_runtime;
7486 static DEFINE_MUTEX(mutex);
7487 int ret;
7488
7489 mutex_lock(&mutex);
7490 old_period = sysctl_sched_rt_period;
7491 old_runtime = sysctl_sched_rt_runtime;
7492
7493 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7494
7495 if (!ret && write) {
7496 ret = sched_rt_global_validate();
7497 if (ret)
7498 goto undo;
7499
7500 ret = sched_rt_global_constraints();
7501 if (ret)
7502 goto undo;
7503
7504 ret = sched_dl_global_constraints();
7505 if (ret)
7506 goto undo;
7507
7508 sched_rt_do_global();
7509 sched_dl_do_global();
7510 }
7511 if (0) {
7512undo:
7513 sysctl_sched_rt_period = old_period;
7514 sysctl_sched_rt_runtime = old_runtime;
7515 }
7516 mutex_unlock(&mutex);
7517
7518 return ret;
7519}
7520
Clark Williamsce0dbbb2013-02-07 09:47:04 -06007521int sched_rr_handler(struct ctl_table *table, int write,
7522 void __user *buffer, size_t *lenp,
7523 loff_t *ppos)
7524{
7525 int ret;
7526 static DEFINE_MUTEX(mutex);
7527
7528 mutex_lock(&mutex);
7529 ret = proc_dointvec(table, write, buffer, lenp, ppos);
7530 /* make sure that internally we keep jiffies */
7531 /* also, writing zero resets timeslice to default */
7532 if (!ret && write) {
7533 sched_rr_timeslice = sched_rr_timeslice <= 0 ?
7534 RR_TIMESLICE : msecs_to_jiffies(sched_rr_timeslice);
7535 }
7536 mutex_unlock(&mutex);
7537 return ret;
7538}
7539
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007540#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007541
Tejun Heoa7c6d552013-08-08 20:11:23 -04007542static inline struct task_group *css_tg(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007543{
Tejun Heoa7c6d552013-08-08 20:11:23 -04007544 return css ? container_of(css, struct task_group, css) : NULL;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007545}
7546
Tejun Heoeb954192013-08-08 20:11:23 -04007547static struct cgroup_subsys_state *
7548cpu_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007549{
Tejun Heoeb954192013-08-08 20:11:23 -04007550 struct task_group *parent = css_tg(parent_css);
7551 struct task_group *tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007552
Tejun Heoeb954192013-08-08 20:11:23 -04007553 if (!parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007554 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08007555 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007556 }
7557
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007558 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007559 if (IS_ERR(tg))
7560 return ERR_PTR(-ENOMEM);
7561
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007562 return &tg->css;
7563}
7564
Tejun Heoeb954192013-08-08 20:11:23 -04007565static int cpu_cgroup_css_online(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007566{
Tejun Heoeb954192013-08-08 20:11:23 -04007567 struct task_group *tg = css_tg(css);
7568 struct task_group *parent = css_tg(css_parent(css));
Li Zefanace783b2013-01-24 14:30:48 +08007569
Tejun Heo63876982013-08-08 20:11:23 -04007570 if (parent)
7571 sched_online_group(tg, parent);
Li Zefanace783b2013-01-24 14:30:48 +08007572 return 0;
7573}
7574
Tejun Heoeb954192013-08-08 20:11:23 -04007575static void cpu_cgroup_css_free(struct cgroup_subsys_state *css)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007576{
Tejun Heoeb954192013-08-08 20:11:23 -04007577 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007578
7579 sched_destroy_group(tg);
7580}
7581
Tejun Heoeb954192013-08-08 20:11:23 -04007582static void cpu_cgroup_css_offline(struct cgroup_subsys_state *css)
Li Zefanace783b2013-01-24 14:30:48 +08007583{
Tejun Heoeb954192013-08-08 20:11:23 -04007584 struct task_group *tg = css_tg(css);
Li Zefanace783b2013-01-24 14:30:48 +08007585
7586 sched_offline_group(tg);
7587}
7588
Tejun Heoeb954192013-08-08 20:11:23 -04007589static int cpu_cgroup_can_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007590 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007591{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007592 struct task_struct *task;
7593
Tejun Heod99c8722013-08-08 20:11:27 -04007594 cgroup_taskset_for_each(task, css, tset) {
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007595#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heoeb954192013-08-08 20:11:23 -04007596 if (!sched_rt_can_attach(css_tg(css), task))
Tejun Heobb9d97b2011-12-12 18:12:21 -08007597 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007598#else
Tejun Heobb9d97b2011-12-12 18:12:21 -08007599 /* We don't support RT-tasks being in separate groups */
7600 if (task->sched_class != &fair_sched_class)
7601 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01007602#endif
Tejun Heobb9d97b2011-12-12 18:12:21 -08007603 }
Ben Blumbe367d02009-09-23 15:56:31 -07007604 return 0;
7605}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007606
Tejun Heoeb954192013-08-08 20:11:23 -04007607static void cpu_cgroup_attach(struct cgroup_subsys_state *css,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007608 struct cgroup_taskset *tset)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007609{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007610 struct task_struct *task;
7611
Tejun Heod99c8722013-08-08 20:11:27 -04007612 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08007613 sched_move_task(task);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007614}
7615
Tejun Heoeb954192013-08-08 20:11:23 -04007616static void cpu_cgroup_exit(struct cgroup_subsys_state *css,
7617 struct cgroup_subsys_state *old_css,
7618 struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007619{
7620 /*
7621 * cgroup_exit() is called in the copy_process() failure path.
7622 * Ignore this case since the task hasn't ran yet, this avoids
7623 * trying to poke a half freed task state from generic code.
7624 */
7625 if (!(task->flags & PF_EXITING))
7626 return;
7627
7628 sched_move_task(task);
7629}
7630
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007631#ifdef CONFIG_FAIR_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007632static int cpu_shares_write_u64(struct cgroup_subsys_state *css,
7633 struct cftype *cftype, u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007634{
Tejun Heo182446d2013-08-08 20:11:24 -04007635 return sched_group_set_shares(css_tg(css), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007636}
7637
Tejun Heo182446d2013-08-08 20:11:24 -04007638static u64 cpu_shares_read_u64(struct cgroup_subsys_state *css,
7639 struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007640{
Tejun Heo182446d2013-08-08 20:11:24 -04007641 struct task_group *tg = css_tg(css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007642
Nikhil Raoc8b28112011-05-18 14:37:48 -07007643 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007644}
Paul Turnerab84d312011-07-21 09:43:28 -07007645
7646#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07007647static DEFINE_MUTEX(cfs_constraints_mutex);
7648
Paul Turnerab84d312011-07-21 09:43:28 -07007649const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
7650const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
7651
Paul Turnera790de92011-07-21 09:43:29 -07007652static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
7653
Paul Turnerab84d312011-07-21 09:43:28 -07007654static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
7655{
Paul Turner56f570e2011-11-07 20:26:33 -08007656 int i, ret = 0, runtime_enabled, runtime_was_enabled;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007657 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnerab84d312011-07-21 09:43:28 -07007658
7659 if (tg == &root_task_group)
7660 return -EINVAL;
7661
7662 /*
7663 * Ensure we have at some amount of bandwidth every period. This is
7664 * to prevent reaching a state of large arrears when throttled via
7665 * entity_tick() resulting in prolonged exit starvation.
7666 */
7667 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
7668 return -EINVAL;
7669
7670 /*
7671 * Likewise, bound things on the otherside by preventing insane quota
7672 * periods. This also allows us to normalize in computing quota
7673 * feasibility.
7674 */
7675 if (period > max_cfs_quota_period)
7676 return -EINVAL;
7677
Paul Turnera790de92011-07-21 09:43:29 -07007678 mutex_lock(&cfs_constraints_mutex);
7679 ret = __cfs_schedulable(tg, period, quota);
7680 if (ret)
7681 goto out_unlock;
7682
Paul Turner58088ad2011-07-21 09:43:31 -07007683 runtime_enabled = quota != RUNTIME_INF;
Paul Turner56f570e2011-11-07 20:26:33 -08007684 runtime_was_enabled = cfs_b->quota != RUNTIME_INF;
Ben Segall1ee14e62013-10-16 11:16:12 -07007685 /*
7686 * If we need to toggle cfs_bandwidth_used, off->on must occur
7687 * before making related changes, and on->off must occur afterwards
7688 */
7689 if (runtime_enabled && !runtime_was_enabled)
7690 cfs_bandwidth_usage_inc();
Paul Turnerab84d312011-07-21 09:43:28 -07007691 raw_spin_lock_irq(&cfs_b->lock);
7692 cfs_b->period = ns_to_ktime(period);
7693 cfs_b->quota = quota;
Paul Turner58088ad2011-07-21 09:43:31 -07007694
Paul Turnera9cf55b2011-07-21 09:43:32 -07007695 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07007696 /* restart the period timer (if active) to handle new period expiry */
7697 if (runtime_enabled && cfs_b->timer_active) {
7698 /* force a reprogram */
7699 cfs_b->timer_active = 0;
7700 __start_cfs_bandwidth(cfs_b);
7701 }
Paul Turnerab84d312011-07-21 09:43:28 -07007702 raw_spin_unlock_irq(&cfs_b->lock);
7703
7704 for_each_possible_cpu(i) {
7705 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
Peter Zijlstra029632f2011-10-25 10:00:11 +02007706 struct rq *rq = cfs_rq->rq;
Paul Turnerab84d312011-07-21 09:43:28 -07007707
7708 raw_spin_lock_irq(&rq->lock);
Paul Turner58088ad2011-07-21 09:43:31 -07007709 cfs_rq->runtime_enabled = runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07007710 cfs_rq->runtime_remaining = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07007711
Peter Zijlstra029632f2011-10-25 10:00:11 +02007712 if (cfs_rq->throttled)
Paul Turner671fd9d2011-07-21 09:43:34 -07007713 unthrottle_cfs_rq(cfs_rq);
Paul Turnerab84d312011-07-21 09:43:28 -07007714 raw_spin_unlock_irq(&rq->lock);
7715 }
Ben Segall1ee14e62013-10-16 11:16:12 -07007716 if (runtime_was_enabled && !runtime_enabled)
7717 cfs_bandwidth_usage_dec();
Paul Turnera790de92011-07-21 09:43:29 -07007718out_unlock:
7719 mutex_unlock(&cfs_constraints_mutex);
Paul Turnerab84d312011-07-21 09:43:28 -07007720
Paul Turnera790de92011-07-21 09:43:29 -07007721 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07007722}
7723
7724int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
7725{
7726 u64 quota, period;
7727
Peter Zijlstra029632f2011-10-25 10:00:11 +02007728 period = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007729 if (cfs_quota_us < 0)
7730 quota = RUNTIME_INF;
7731 else
7732 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
7733
7734 return tg_set_cfs_bandwidth(tg, period, quota);
7735}
7736
7737long tg_get_cfs_quota(struct task_group *tg)
7738{
7739 u64 quota_us;
7740
Peter Zijlstra029632f2011-10-25 10:00:11 +02007741 if (tg->cfs_bandwidth.quota == RUNTIME_INF)
Paul Turnerab84d312011-07-21 09:43:28 -07007742 return -1;
7743
Peter Zijlstra029632f2011-10-25 10:00:11 +02007744 quota_us = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007745 do_div(quota_us, NSEC_PER_USEC);
7746
7747 return quota_us;
7748}
7749
7750int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
7751{
7752 u64 quota, period;
7753
7754 period = (u64)cfs_period_us * NSEC_PER_USEC;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007755 quota = tg->cfs_bandwidth.quota;
Paul Turnerab84d312011-07-21 09:43:28 -07007756
Paul Turnerab84d312011-07-21 09:43:28 -07007757 return tg_set_cfs_bandwidth(tg, period, quota);
7758}
7759
7760long tg_get_cfs_period(struct task_group *tg)
7761{
7762 u64 cfs_period_us;
7763
Peter Zijlstra029632f2011-10-25 10:00:11 +02007764 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period);
Paul Turnerab84d312011-07-21 09:43:28 -07007765 do_div(cfs_period_us, NSEC_PER_USEC);
7766
7767 return cfs_period_us;
7768}
7769
Tejun Heo182446d2013-08-08 20:11:24 -04007770static s64 cpu_cfs_quota_read_s64(struct cgroup_subsys_state *css,
7771 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007772{
Tejun Heo182446d2013-08-08 20:11:24 -04007773 return tg_get_cfs_quota(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007774}
7775
Tejun Heo182446d2013-08-08 20:11:24 -04007776static int cpu_cfs_quota_write_s64(struct cgroup_subsys_state *css,
7777 struct cftype *cftype, s64 cfs_quota_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007778{
Tejun Heo182446d2013-08-08 20:11:24 -04007779 return tg_set_cfs_quota(css_tg(css), cfs_quota_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007780}
7781
Tejun Heo182446d2013-08-08 20:11:24 -04007782static u64 cpu_cfs_period_read_u64(struct cgroup_subsys_state *css,
7783 struct cftype *cft)
Paul Turnerab84d312011-07-21 09:43:28 -07007784{
Tejun Heo182446d2013-08-08 20:11:24 -04007785 return tg_get_cfs_period(css_tg(css));
Paul Turnerab84d312011-07-21 09:43:28 -07007786}
7787
Tejun Heo182446d2013-08-08 20:11:24 -04007788static int cpu_cfs_period_write_u64(struct cgroup_subsys_state *css,
7789 struct cftype *cftype, u64 cfs_period_us)
Paul Turnerab84d312011-07-21 09:43:28 -07007790{
Tejun Heo182446d2013-08-08 20:11:24 -04007791 return tg_set_cfs_period(css_tg(css), cfs_period_us);
Paul Turnerab84d312011-07-21 09:43:28 -07007792}
7793
Paul Turnera790de92011-07-21 09:43:29 -07007794struct cfs_schedulable_data {
7795 struct task_group *tg;
7796 u64 period, quota;
7797};
7798
7799/*
7800 * normalize group quota/period to be quota/max_period
7801 * note: units are usecs
7802 */
7803static u64 normalize_cfs_quota(struct task_group *tg,
7804 struct cfs_schedulable_data *d)
7805{
7806 u64 quota, period;
7807
7808 if (tg == d->tg) {
7809 period = d->period;
7810 quota = d->quota;
7811 } else {
7812 period = tg_get_cfs_period(tg);
7813 quota = tg_get_cfs_quota(tg);
7814 }
7815
7816 /* note: these should typically be equivalent */
7817 if (quota == RUNTIME_INF || quota == -1)
7818 return RUNTIME_INF;
7819
7820 return to_ratio(period, quota);
7821}
7822
7823static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
7824{
7825 struct cfs_schedulable_data *d = data;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007826 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007827 s64 quota = 0, parent_quota = -1;
7828
7829 if (!tg->parent) {
7830 quota = RUNTIME_INF;
7831 } else {
Peter Zijlstra029632f2011-10-25 10:00:11 +02007832 struct cfs_bandwidth *parent_b = &tg->parent->cfs_bandwidth;
Paul Turnera790de92011-07-21 09:43:29 -07007833
7834 quota = normalize_cfs_quota(tg, d);
7835 parent_quota = parent_b->hierarchal_quota;
7836
7837 /*
7838 * ensure max(child_quota) <= parent_quota, inherit when no
7839 * limit is set
7840 */
7841 if (quota == RUNTIME_INF)
7842 quota = parent_quota;
7843 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
7844 return -EINVAL;
7845 }
7846 cfs_b->hierarchal_quota = quota;
7847
7848 return 0;
7849}
7850
7851static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
7852{
Paul Turner82774342011-07-21 09:43:35 -07007853 int ret;
Paul Turnera790de92011-07-21 09:43:29 -07007854 struct cfs_schedulable_data data = {
7855 .tg = tg,
7856 .period = period,
7857 .quota = quota,
7858 };
7859
7860 if (quota != RUNTIME_INF) {
7861 do_div(data.period, NSEC_PER_USEC);
7862 do_div(data.quota, NSEC_PER_USEC);
7863 }
7864
Paul Turner82774342011-07-21 09:43:35 -07007865 rcu_read_lock();
7866 ret = walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
7867 rcu_read_unlock();
7868
7869 return ret;
Paul Turnera790de92011-07-21 09:43:29 -07007870}
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007871
Tejun Heo2da8ca82013-12-05 12:28:04 -05007872static int cpu_stats_show(struct seq_file *sf, void *v)
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007873{
Tejun Heo2da8ca82013-12-05 12:28:04 -05007874 struct task_group *tg = css_tg(seq_css(sf));
Peter Zijlstra029632f2011-10-25 10:00:11 +02007875 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007876
Tejun Heo44ffc752013-12-05 12:28:01 -05007877 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods);
7878 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled);
7879 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007880
7881 return 0;
7882}
Paul Turnerab84d312011-07-21 09:43:28 -07007883#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007884#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007885
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007886#ifdef CONFIG_RT_GROUP_SCHED
Tejun Heo182446d2013-08-08 20:11:24 -04007887static int cpu_rt_runtime_write(struct cgroup_subsys_state *css,
7888 struct cftype *cft, s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007889{
Tejun Heo182446d2013-08-08 20:11:24 -04007890 return sched_group_set_rt_runtime(css_tg(css), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007891}
7892
Tejun Heo182446d2013-08-08 20:11:24 -04007893static s64 cpu_rt_runtime_read(struct cgroup_subsys_state *css,
7894 struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007895{
Tejun Heo182446d2013-08-08 20:11:24 -04007896 return sched_group_rt_runtime(css_tg(css));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007897}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007898
Tejun Heo182446d2013-08-08 20:11:24 -04007899static int cpu_rt_period_write_uint(struct cgroup_subsys_state *css,
7900 struct cftype *cftype, u64 rt_period_us)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007901{
Tejun Heo182446d2013-08-08 20:11:24 -04007902 return sched_group_set_rt_period(css_tg(css), rt_period_us);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007903}
7904
Tejun Heo182446d2013-08-08 20:11:24 -04007905static u64 cpu_rt_period_read_uint(struct cgroup_subsys_state *css,
7906 struct cftype *cft)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007907{
Tejun Heo182446d2013-08-08 20:11:24 -04007908 return sched_group_rt_period(css_tg(css));
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007909}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007910#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007911
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007912static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007913#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007914 {
7915 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07007916 .read_u64 = cpu_shares_read_u64,
7917 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007918 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007919#endif
Paul Turnerab84d312011-07-21 09:43:28 -07007920#ifdef CONFIG_CFS_BANDWIDTH
7921 {
7922 .name = "cfs_quota_us",
7923 .read_s64 = cpu_cfs_quota_read_s64,
7924 .write_s64 = cpu_cfs_quota_write_s64,
7925 },
7926 {
7927 .name = "cfs_period_us",
7928 .read_u64 = cpu_cfs_period_read_u64,
7929 .write_u64 = cpu_cfs_period_write_u64,
7930 },
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007931 {
7932 .name = "stat",
Tejun Heo2da8ca82013-12-05 12:28:04 -05007933 .seq_show = cpu_stats_show,
Nikhil Raoe8da1b12011-07-21 09:43:40 -07007934 },
Paul Turnerab84d312011-07-21 09:43:28 -07007935#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007936#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007937 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007938 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07007939 .read_s64 = cpu_rt_runtime_read,
7940 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007941 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007942 {
7943 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07007944 .read_u64 = cpu_rt_period_read_uint,
7945 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007946 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007947#endif
Tejun Heo4baf6e32012-04-01 12:09:55 -07007948 { } /* terminate */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007949};
7950
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007951struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007952 .name = "cpu",
Tejun Heo92fb9742012-11-19 08:13:38 -08007953 .css_alloc = cpu_cgroup_css_alloc,
7954 .css_free = cpu_cgroup_css_free,
Li Zefanace783b2013-01-24 14:30:48 +08007955 .css_online = cpu_cgroup_css_online,
7956 .css_offline = cpu_cgroup_css_offline,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007957 .can_attach = cpu_cgroup_can_attach,
7958 .attach = cpu_cgroup_attach,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01007959 .exit = cpu_cgroup_exit,
Ingo Molnar38605ca2007-10-29 21:18:11 +01007960 .subsys_id = cpu_cgroup_subsys_id,
Tejun Heo4baf6e32012-04-01 12:09:55 -07007961 .base_cftypes = cpu_files,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007962 .early_init = 1,
7963};
7964
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007965#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007966
Paul E. McKenneyb637a322012-09-19 16:58:38 -07007967void dump_cpu_task(int cpu)
7968{
7969 pr_info("Task dump for CPU %d:\n", cpu);
7970 sched_show_task(cpu_curr(cpu));
7971}