sched/preempt: Fix preempt notifiers documentation about hlist_del() within unsafe...
[deliverable/linux.git] / kernel / sched / core.c
CommitLineData
1da177e4 1/*
391e43da 2 * kernel/sched/core.c
1da177e4
LT
3 *
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
c31f2e8a
IM
19 * 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
b9131769
IM
25 * 2007-11-29 RT balancing improvements by Steven Rostedt, Gregory Haskins,
26 * Thomas Gleixner, Mike Kravetz
1da177e4
LT
27 */
28
29#include <linux/mm.h>
30#include <linux/module.h>
31#include <linux/nmi.h>
32#include <linux/init.h>
dff06c15 33#include <linux/uaccess.h>
1da177e4 34#include <linux/highmem.h>
1da177e4
LT
35#include <asm/mmu_context.h>
36#include <linux/interrupt.h>
c59ede7b 37#include <linux/capability.h>
1da177e4
LT
38#include <linux/completion.h>
39#include <linux/kernel_stat.h>
9a11b49a 40#include <linux/debug_locks.h>
cdd6c482 41#include <linux/perf_event.h>
1da177e4
LT
42#include <linux/security.h>
43#include <linux/notifier.h>
44#include <linux/profile.h>
7dfb7103 45#include <linux/freezer.h>
198e2f18 46#include <linux/vmalloc.h>
1da177e4
LT
47#include <linux/blkdev.h>
48#include <linux/delay.h>
b488893a 49#include <linux/pid_namespace.h>
1da177e4
LT
50#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>
b5aadf7f 57#include <linux/proc_fs.h>
1da177e4 58#include <linux/seq_file.h>
e692ab53 59#include <linux/sysctl.h>
1da177e4
LT
60#include <linux/syscalls.h>
61#include <linux/times.h>
8f0ab514 62#include <linux/tsacct_kern.h>
c6fd91f0 63#include <linux/kprobes.h>
0ff92245 64#include <linux/delayacct.h>
dff06c15 65#include <linux/unistd.h>
f5ff8422 66#include <linux/pagemap.h>
8f4d37ec 67#include <linux/hrtimer.h>
30914a58 68#include <linux/tick.h>
f00b45c1
PZ
69#include <linux/debugfs.h>
70#include <linux/ctype.h>
6cd8a4bb 71#include <linux/ftrace.h>
5a0e3ad6 72#include <linux/slab.h>
f1c6f1a7 73#include <linux/init_task.h>
40401530 74#include <linux/binfmts.h>
91d1aa43 75#include <linux/context_tracking.h>
52f5684c 76#include <linux/compiler.h>
1da177e4 77
96f951ed 78#include <asm/switch_to.h>
5517d86b 79#include <asm/tlb.h>
838225b4 80#include <asm/irq_regs.h>
db7e527d 81#include <asm/mutex.h>
e6e6685a
GC
82#ifdef CONFIG_PARAVIRT
83#include <asm/paravirt.h>
84#endif
1da177e4 85
029632fb 86#include "sched.h"
ea138446 87#include "../workqueue_internal.h"
29d5e047 88#include "../smpboot.h"
6e0534f2 89
a8d154b0 90#define CREATE_TRACE_POINTS
ad8d75ff 91#include <trace/events/sched.h>
a8d154b0 92
029632fb 93void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period)
d0b27fa7 94{
58088ad0
PT
95 unsigned long delta;
96 ktime_t soft, hard, now;
d0b27fa7 97
58088ad0
PT
98 for (;;) {
99 if (hrtimer_active(period_timer))
100 break;
101
102 now = hrtimer_cb_get_time(period_timer);
103 hrtimer_forward(period_timer, now, period);
d0b27fa7 104
58088ad0
PT
105 soft = hrtimer_get_softexpires(period_timer);
106 hard = hrtimer_get_expires(period_timer);
107 delta = ktime_to_ns(ktime_sub(hard, soft));
108 __hrtimer_start_range_ns(period_timer, soft, delta,
109 HRTIMER_MODE_ABS_PINNED, 0);
110 }
111}
112
029632fb
PZ
113DEFINE_MUTEX(sched_domains_mutex);
114DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
dc61b1d6 115
fe44d621 116static void update_rq_clock_task(struct rq *rq, s64 delta);
305e6835 117
029632fb 118void update_rq_clock(struct rq *rq)
3e51f33f 119{
fe44d621 120 s64 delta;
305e6835 121
9edfbfed
PZ
122 lockdep_assert_held(&rq->lock);
123
124 if (rq->clock_skip_update & RQCF_ACT_SKIP)
f26f9aff 125 return;
aa483808 126
fe44d621 127 delta = sched_clock_cpu(cpu_of(rq)) - rq->clock;
4036ac15
MG
128 if (delta < 0)
129 return;
fe44d621
PZ
130 rq->clock += delta;
131 update_rq_clock_task(rq, delta);
3e51f33f
PZ
132}
133
bf5c91ba
IM
134/*
135 * Debugging: various feature bits
136 */
f00b45c1 137
f00b45c1
PZ
138#define SCHED_FEAT(name, enabled) \
139 (1UL << __SCHED_FEAT_##name) * enabled |
140
bf5c91ba 141const_debug unsigned int sysctl_sched_features =
391e43da 142#include "features.h"
f00b45c1
PZ
143 0;
144
145#undef SCHED_FEAT
146
147#ifdef CONFIG_SCHED_DEBUG
148#define SCHED_FEAT(name, enabled) \
149 #name ,
150
1292531f 151static const char * const sched_feat_names[] = {
391e43da 152#include "features.h"
f00b45c1
PZ
153};
154
155#undef SCHED_FEAT
156
34f3a814 157static int sched_feat_show(struct seq_file *m, void *v)
f00b45c1 158{
f00b45c1
PZ
159 int i;
160
f8b6d1cc 161 for (i = 0; i < __SCHED_FEAT_NR; i++) {
34f3a814
LZ
162 if (!(sysctl_sched_features & (1UL << i)))
163 seq_puts(m, "NO_");
164 seq_printf(m, "%s ", sched_feat_names[i]);
f00b45c1 165 }
34f3a814 166 seq_puts(m, "\n");
f00b45c1 167
34f3a814 168 return 0;
f00b45c1
PZ
169}
170
f8b6d1cc
PZ
171#ifdef HAVE_JUMP_LABEL
172
c5905afb
IM
173#define jump_label_key__true STATIC_KEY_INIT_TRUE
174#define jump_label_key__false STATIC_KEY_INIT_FALSE
f8b6d1cc
PZ
175
176#define SCHED_FEAT(name, enabled) \
177 jump_label_key__##enabled ,
178
c5905afb 179struct static_key sched_feat_keys[__SCHED_FEAT_NR] = {
f8b6d1cc
PZ
180#include "features.h"
181};
182
183#undef SCHED_FEAT
184
185static void sched_feat_disable(int i)
186{
c5905afb
IM
187 if (static_key_enabled(&sched_feat_keys[i]))
188 static_key_slow_dec(&sched_feat_keys[i]);
f8b6d1cc
PZ
189}
190
191static void sched_feat_enable(int i)
192{
c5905afb
IM
193 if (!static_key_enabled(&sched_feat_keys[i]))
194 static_key_slow_inc(&sched_feat_keys[i]);
f8b6d1cc
PZ
195}
196#else
197static void sched_feat_disable(int i) { };
198static void sched_feat_enable(int i) { };
199#endif /* HAVE_JUMP_LABEL */
200
1a687c2e 201static int sched_feat_set(char *cmp)
f00b45c1 202{
f00b45c1 203 int i;
1a687c2e 204 int neg = 0;
f00b45c1 205
524429c3 206 if (strncmp(cmp, "NO_", 3) == 0) {
f00b45c1
PZ
207 neg = 1;
208 cmp += 3;
209 }
210
f8b6d1cc 211 for (i = 0; i < __SCHED_FEAT_NR; i++) {
7740191c 212 if (strcmp(cmp, sched_feat_names[i]) == 0) {
f8b6d1cc 213 if (neg) {
f00b45c1 214 sysctl_sched_features &= ~(1UL << i);
f8b6d1cc
PZ
215 sched_feat_disable(i);
216 } else {
f00b45c1 217 sysctl_sched_features |= (1UL << i);
f8b6d1cc
PZ
218 sched_feat_enable(i);
219 }
f00b45c1
PZ
220 break;
221 }
222 }
223
1a687c2e
MG
224 return i;
225}
226
227static ssize_t
228sched_feat_write(struct file *filp, const char __user *ubuf,
229 size_t cnt, loff_t *ppos)
230{
231 char buf[64];
232 char *cmp;
233 int i;
5cd08fbf 234 struct inode *inode;
1a687c2e
MG
235
236 if (cnt > 63)
237 cnt = 63;
238
239 if (copy_from_user(&buf, ubuf, cnt))
240 return -EFAULT;
241
242 buf[cnt] = 0;
243 cmp = strstrip(buf);
244
5cd08fbf
JB
245 /* Ensure the static_key remains in a consistent state */
246 inode = file_inode(filp);
247 mutex_lock(&inode->i_mutex);
1a687c2e 248 i = sched_feat_set(cmp);
5cd08fbf 249 mutex_unlock(&inode->i_mutex);
f8b6d1cc 250 if (i == __SCHED_FEAT_NR)
f00b45c1
PZ
251 return -EINVAL;
252
42994724 253 *ppos += cnt;
f00b45c1
PZ
254
255 return cnt;
256}
257
34f3a814
LZ
258static int sched_feat_open(struct inode *inode, struct file *filp)
259{
260 return single_open(filp, sched_feat_show, NULL);
261}
262
828c0950 263static const struct file_operations sched_feat_fops = {
34f3a814
LZ
264 .open = sched_feat_open,
265 .write = sched_feat_write,
266 .read = seq_read,
267 .llseek = seq_lseek,
268 .release = single_release,
f00b45c1
PZ
269};
270
271static __init int sched_init_debug(void)
272{
f00b45c1
PZ
273 debugfs_create_file("sched_features", 0644, NULL, NULL,
274 &sched_feat_fops);
275
276 return 0;
277}
278late_initcall(sched_init_debug);
f8b6d1cc 279#endif /* CONFIG_SCHED_DEBUG */
bf5c91ba 280
b82d9fdd
PZ
281/*
282 * Number of tasks to iterate in a single balance run.
283 * Limited because this is done with IRQs disabled.
284 */
285const_debug unsigned int sysctl_sched_nr_migrate = 32;
286
e9e9250b
PZ
287/*
288 * period over which we average the RT time consumption, measured
289 * in ms.
290 *
291 * default: 1s
292 */
293const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
294
fa85ae24 295/*
9f0c1e56 296 * period over which we measure -rt task cpu usage in us.
fa85ae24
PZ
297 * default: 1s
298 */
9f0c1e56 299unsigned int sysctl_sched_rt_period = 1000000;
fa85ae24 300
029632fb 301__read_mostly int scheduler_running;
6892b75e 302
9f0c1e56
PZ
303/*
304 * part of the period that we allow rt tasks to run in us.
305 * default: 0.95s
306 */
307int sysctl_sched_rt_runtime = 950000;
fa85ae24 308
3fa0818b
RR
309/* cpus with isolated domains */
310cpumask_var_t cpu_isolated_map;
311
1da177e4 312/*
cc2a73b5 313 * this_rq_lock - lock this runqueue and disable interrupts.
1da177e4 314 */
a9957449 315static struct rq *this_rq_lock(void)
1da177e4
LT
316 __acquires(rq->lock)
317{
70b97a7f 318 struct rq *rq;
1da177e4
LT
319
320 local_irq_disable();
321 rq = this_rq();
05fa785c 322 raw_spin_lock(&rq->lock);
1da177e4
LT
323
324 return rq;
325}
326
8f4d37ec
PZ
327#ifdef CONFIG_SCHED_HRTICK
328/*
329 * Use HR-timers to deliver accurate preemption points.
8f4d37ec 330 */
8f4d37ec 331
8f4d37ec
PZ
332static void hrtick_clear(struct rq *rq)
333{
334 if (hrtimer_active(&rq->hrtick_timer))
335 hrtimer_cancel(&rq->hrtick_timer);
336}
337
8f4d37ec
PZ
338/*
339 * High-resolution timer tick.
340 * Runs from hardirq context with interrupts disabled.
341 */
342static enum hrtimer_restart hrtick(struct hrtimer *timer)
343{
344 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
345
346 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
347
05fa785c 348 raw_spin_lock(&rq->lock);
3e51f33f 349 update_rq_clock(rq);
8f4d37ec 350 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
05fa785c 351 raw_spin_unlock(&rq->lock);
8f4d37ec
PZ
352
353 return HRTIMER_NORESTART;
354}
355
95e904c7 356#ifdef CONFIG_SMP
971ee28c
PZ
357
358static int __hrtick_restart(struct rq *rq)
359{
360 struct hrtimer *timer = &rq->hrtick_timer;
361 ktime_t time = hrtimer_get_softexpires(timer);
362
363 return __hrtimer_start_range_ns(timer, time, 0, HRTIMER_MODE_ABS_PINNED, 0);
364}
365
31656519
PZ
366/*
367 * called from hardirq (IPI) context
368 */
369static void __hrtick_start(void *arg)
b328ca18 370{
31656519 371 struct rq *rq = arg;
b328ca18 372
05fa785c 373 raw_spin_lock(&rq->lock);
971ee28c 374 __hrtick_restart(rq);
31656519 375 rq->hrtick_csd_pending = 0;
05fa785c 376 raw_spin_unlock(&rq->lock);
b328ca18
PZ
377}
378
31656519
PZ
379/*
380 * Called to set the hrtick timer state.
381 *
382 * called with rq->lock held and irqs disabled
383 */
029632fb 384void hrtick_start(struct rq *rq, u64 delay)
b328ca18 385{
31656519 386 struct hrtimer *timer = &rq->hrtick_timer;
177ef2a6 387 ktime_t time;
388 s64 delta;
389
390 /*
391 * Don't schedule slices shorter than 10000ns, that just
392 * doesn't make sense and can cause timer DoS.
393 */
394 delta = max_t(s64, delay, 10000LL);
395 time = ktime_add_ns(timer->base->get_time(), delta);
b328ca18 396
cc584b21 397 hrtimer_set_expires(timer, time);
31656519
PZ
398
399 if (rq == this_rq()) {
971ee28c 400 __hrtick_restart(rq);
31656519 401 } else if (!rq->hrtick_csd_pending) {
c46fff2a 402 smp_call_function_single_async(cpu_of(rq), &rq->hrtick_csd);
31656519
PZ
403 rq->hrtick_csd_pending = 1;
404 }
b328ca18
PZ
405}
406
407static int
408hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
409{
410 int cpu = (int)(long)hcpu;
411
412 switch (action) {
413 case CPU_UP_CANCELED:
414 case CPU_UP_CANCELED_FROZEN:
415 case CPU_DOWN_PREPARE:
416 case CPU_DOWN_PREPARE_FROZEN:
417 case CPU_DEAD:
418 case CPU_DEAD_FROZEN:
31656519 419 hrtick_clear(cpu_rq(cpu));
b328ca18
PZ
420 return NOTIFY_OK;
421 }
422
423 return NOTIFY_DONE;
424}
425
fa748203 426static __init void init_hrtick(void)
b328ca18
PZ
427{
428 hotcpu_notifier(hotplug_hrtick, 0);
429}
31656519
PZ
430#else
431/*
432 * Called to set the hrtick timer state.
433 *
434 * called with rq->lock held and irqs disabled
435 */
029632fb 436void hrtick_start(struct rq *rq, u64 delay)
31656519 437{
86893335
WL
438 /*
439 * Don't schedule slices shorter than 10000ns, that just
440 * doesn't make sense. Rely on vruntime for fairness.
441 */
442 delay = max_t(u64, delay, 10000LL);
7f1e2ca9 443 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
5c333864 444 HRTIMER_MODE_REL_PINNED, 0);
31656519 445}
b328ca18 446
006c75f1 447static inline void init_hrtick(void)
8f4d37ec 448{
8f4d37ec 449}
31656519 450#endif /* CONFIG_SMP */
8f4d37ec 451
31656519 452static void init_rq_hrtick(struct rq *rq)
8f4d37ec 453{
31656519
PZ
454#ifdef CONFIG_SMP
455 rq->hrtick_csd_pending = 0;
8f4d37ec 456
31656519
PZ
457 rq->hrtick_csd.flags = 0;
458 rq->hrtick_csd.func = __hrtick_start;
459 rq->hrtick_csd.info = rq;
460#endif
8f4d37ec 461
31656519
PZ
462 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
463 rq->hrtick_timer.function = hrtick;
8f4d37ec 464}
006c75f1 465#else /* CONFIG_SCHED_HRTICK */
8f4d37ec
PZ
466static inline void hrtick_clear(struct rq *rq)
467{
468}
469
8f4d37ec
PZ
470static inline void init_rq_hrtick(struct rq *rq)
471{
472}
473
b328ca18
PZ
474static inline void init_hrtick(void)
475{
476}
006c75f1 477#endif /* CONFIG_SCHED_HRTICK */
8f4d37ec 478
fd99f91a
PZ
479/*
480 * cmpxchg based fetch_or, macro so it works for different integer types
481 */
482#define fetch_or(ptr, val) \
483({ typeof(*(ptr)) __old, __val = *(ptr); \
484 for (;;) { \
485 __old = cmpxchg((ptr), __val, __val | (val)); \
486 if (__old == __val) \
487 break; \
488 __val = __old; \
489 } \
490 __old; \
491})
492
e3baac47 493#if defined(CONFIG_SMP) && defined(TIF_POLLING_NRFLAG)
fd99f91a
PZ
494/*
495 * Atomically set TIF_NEED_RESCHED and test for TIF_POLLING_NRFLAG,
496 * this avoids any races wrt polling state changes and thereby avoids
497 * spurious IPIs.
498 */
499static bool set_nr_and_not_polling(struct task_struct *p)
500{
501 struct thread_info *ti = task_thread_info(p);
502 return !(fetch_or(&ti->flags, _TIF_NEED_RESCHED) & _TIF_POLLING_NRFLAG);
503}
e3baac47
PZ
504
505/*
506 * Atomically set TIF_NEED_RESCHED if TIF_POLLING_NRFLAG is set.
507 *
508 * If this returns true, then the idle task promises to call
509 * sched_ttwu_pending() and reschedule soon.
510 */
511static bool set_nr_if_polling(struct task_struct *p)
512{
513 struct thread_info *ti = task_thread_info(p);
316c1608 514 typeof(ti->flags) old, val = READ_ONCE(ti->flags);
e3baac47
PZ
515
516 for (;;) {
517 if (!(val & _TIF_POLLING_NRFLAG))
518 return false;
519 if (val & _TIF_NEED_RESCHED)
520 return true;
521 old = cmpxchg(&ti->flags, val, val | _TIF_NEED_RESCHED);
522 if (old == val)
523 break;
524 val = old;
525 }
526 return true;
527}
528
fd99f91a
PZ
529#else
530static bool set_nr_and_not_polling(struct task_struct *p)
531{
532 set_tsk_need_resched(p);
533 return true;
534}
e3baac47
PZ
535
536#ifdef CONFIG_SMP
537static bool set_nr_if_polling(struct task_struct *p)
538{
539 return false;
540}
541#endif
fd99f91a
PZ
542#endif
543
76751049
PZ
544void wake_q_add(struct wake_q_head *head, struct task_struct *task)
545{
546 struct wake_q_node *node = &task->wake_q;
547
548 /*
549 * Atomically grab the task, if ->wake_q is !nil already it means
550 * its already queued (either by us or someone else) and will get the
551 * wakeup due to that.
552 *
553 * This cmpxchg() implies a full barrier, which pairs with the write
554 * barrier implied by the wakeup in wake_up_list().
555 */
556 if (cmpxchg(&node->next, NULL, WAKE_Q_TAIL))
557 return;
558
559 get_task_struct(task);
560
561 /*
562 * The head is context local, there can be no concurrency.
563 */
564 *head->lastp = node;
565 head->lastp = &node->next;
566}
567
568void wake_up_q(struct wake_q_head *head)
569{
570 struct wake_q_node *node = head->first;
571
572 while (node != WAKE_Q_TAIL) {
573 struct task_struct *task;
574
575 task = container_of(node, struct task_struct, wake_q);
576 BUG_ON(!task);
577 /* task can safely be re-inserted now */
578 node = node->next;
579 task->wake_q.next = NULL;
580
581 /*
582 * wake_up_process() implies a wmb() to pair with the queueing
583 * in wake_q_add() so as not to miss wakeups.
584 */
585 wake_up_process(task);
586 put_task_struct(task);
587 }
588}
589
c24d20db 590/*
8875125e 591 * resched_curr - mark rq's current task 'to be rescheduled now'.
c24d20db
IM
592 *
593 * On UP this means the setting of the need_resched flag, on SMP it
594 * might also involve a cross-CPU call to trigger the scheduler on
595 * the target CPU.
596 */
8875125e 597void resched_curr(struct rq *rq)
c24d20db 598{
8875125e 599 struct task_struct *curr = rq->curr;
c24d20db
IM
600 int cpu;
601
8875125e 602 lockdep_assert_held(&rq->lock);
c24d20db 603
8875125e 604 if (test_tsk_need_resched(curr))
c24d20db
IM
605 return;
606
8875125e 607 cpu = cpu_of(rq);
fd99f91a 608
f27dde8d 609 if (cpu == smp_processor_id()) {
8875125e 610 set_tsk_need_resched(curr);
f27dde8d 611 set_preempt_need_resched();
c24d20db 612 return;
f27dde8d 613 }
c24d20db 614
8875125e 615 if (set_nr_and_not_polling(curr))
c24d20db 616 smp_send_reschedule(cpu);
dfc68f29
AL
617 else
618 trace_sched_wake_idle_without_ipi(cpu);
c24d20db
IM
619}
620
029632fb 621void resched_cpu(int cpu)
c24d20db
IM
622{
623 struct rq *rq = cpu_rq(cpu);
624 unsigned long flags;
625
05fa785c 626 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
c24d20db 627 return;
8875125e 628 resched_curr(rq);
05fa785c 629 raw_spin_unlock_irqrestore(&rq->lock, flags);
c24d20db 630}
06d8308c 631
b021fe3e 632#ifdef CONFIG_SMP
3451d024 633#ifdef CONFIG_NO_HZ_COMMON
83cd4fe2
VP
634/*
635 * In the semi idle case, use the nearest busy cpu for migrating timers
636 * from an idle cpu. This is good for power-savings.
637 *
638 * We don't do similar optimization for completely idle system, as
639 * selecting an idle cpu will add more delays to the timers than intended
640 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
641 */
6201b4d6 642int get_nohz_timer_target(int pinned)
83cd4fe2
VP
643{
644 int cpu = smp_processor_id();
645 int i;
646 struct sched_domain *sd;
647
6201b4d6
VK
648 if (pinned || !get_sysctl_timer_migration() || !idle_cpu(cpu))
649 return cpu;
650
057f3fad 651 rcu_read_lock();
83cd4fe2 652 for_each_domain(cpu, sd) {
057f3fad
PZ
653 for_each_cpu(i, sched_domain_span(sd)) {
654 if (!idle_cpu(i)) {
655 cpu = i;
656 goto unlock;
657 }
658 }
83cd4fe2 659 }
057f3fad
PZ
660unlock:
661 rcu_read_unlock();
83cd4fe2
VP
662 return cpu;
663}
06d8308c
TG
664/*
665 * When add_timer_on() enqueues a timer into the timer wheel of an
666 * idle CPU then this timer might expire before the next timer event
667 * which is scheduled to wake up that CPU. In case of a completely
668 * idle system the next event might even be infinite time into the
669 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
670 * leaves the inner idle loop so the newly added timer is taken into
671 * account when the CPU goes back to idle and evaluates the timer
672 * wheel for the next timer event.
673 */
1c20091e 674static void wake_up_idle_cpu(int cpu)
06d8308c
TG
675{
676 struct rq *rq = cpu_rq(cpu);
677
678 if (cpu == smp_processor_id())
679 return;
680
67b9ca70 681 if (set_nr_and_not_polling(rq->idle))
06d8308c 682 smp_send_reschedule(cpu);
dfc68f29
AL
683 else
684 trace_sched_wake_idle_without_ipi(cpu);
45bf76df
IM
685}
686
c5bfece2 687static bool wake_up_full_nohz_cpu(int cpu)
1c20091e 688{
53c5fa16
FW
689 /*
690 * We just need the target to call irq_exit() and re-evaluate
691 * the next tick. The nohz full kick at least implies that.
692 * If needed we can still optimize that later with an
693 * empty IRQ.
694 */
c5bfece2 695 if (tick_nohz_full_cpu(cpu)) {
1c20091e
FW
696 if (cpu != smp_processor_id() ||
697 tick_nohz_tick_stopped())
53c5fa16 698 tick_nohz_full_kick_cpu(cpu);
1c20091e
FW
699 return true;
700 }
701
702 return false;
703}
704
705void wake_up_nohz_cpu(int cpu)
706{
c5bfece2 707 if (!wake_up_full_nohz_cpu(cpu))
1c20091e
FW
708 wake_up_idle_cpu(cpu);
709}
710
ca38062e 711static inline bool got_nohz_idle_kick(void)
45bf76df 712{
1c792db7 713 int cpu = smp_processor_id();
873b4c65
VG
714
715 if (!test_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu)))
716 return false;
717
718 if (idle_cpu(cpu) && !need_resched())
719 return true;
720
721 /*
722 * We can't run Idle Load Balance on this CPU for this time so we
723 * cancel it and clear NOHZ_BALANCE_KICK
724 */
725 clear_bit(NOHZ_BALANCE_KICK, nohz_flags(cpu));
726 return false;
45bf76df
IM
727}
728
3451d024 729#else /* CONFIG_NO_HZ_COMMON */
45bf76df 730
ca38062e 731static inline bool got_nohz_idle_kick(void)
2069dd75 732{
ca38062e 733 return false;
2069dd75
PZ
734}
735
3451d024 736#endif /* CONFIG_NO_HZ_COMMON */
d842de87 737
ce831b38
FW
738#ifdef CONFIG_NO_HZ_FULL
739bool sched_can_stop_tick(void)
740{
1e78cdbd
RR
741 /*
742 * FIFO realtime policy runs the highest priority task. Other runnable
743 * tasks are of a lower priority. The scheduler tick does nothing.
744 */
745 if (current->policy == SCHED_FIFO)
746 return true;
747
748 /*
749 * Round-robin realtime tasks time slice with other tasks at the same
750 * realtime priority. Is this task the only one at this priority?
751 */
752 if (current->policy == SCHED_RR) {
753 struct sched_rt_entity *rt_se = &current->rt;
754
755 return rt_se->run_list.prev == rt_se->run_list.next;
756 }
757
3882ec64
FW
758 /*
759 * More than one running task need preemption.
760 * nr_running update is assumed to be visible
761 * after IPI is sent from wakers.
762 */
541b8264
VK
763 if (this_rq()->nr_running > 1)
764 return false;
ce831b38 765
541b8264 766 return true;
ce831b38
FW
767}
768#endif /* CONFIG_NO_HZ_FULL */
d842de87 769
029632fb 770void sched_avg_update(struct rq *rq)
18d95a28 771{
e9e9250b
PZ
772 s64 period = sched_avg_period();
773
78becc27 774 while ((s64)(rq_clock(rq) - rq->age_stamp) > period) {
0d98bb26
WD
775 /*
776 * Inline assembly required to prevent the compiler
777 * optimising this loop into a divmod call.
778 * See __iter_div_u64_rem() for another example of this.
779 */
780 asm("" : "+rm" (rq->age_stamp));
e9e9250b
PZ
781 rq->age_stamp += period;
782 rq->rt_avg /= 2;
783 }
18d95a28
PZ
784}
785
6d6bc0ad 786#endif /* CONFIG_SMP */
18d95a28 787
a790de99
PT
788#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
789 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
c09595f6 790/*
8277434e
PT
791 * Iterate task_group tree rooted at *from, calling @down when first entering a
792 * node and @up when leaving it for the final time.
793 *
794 * Caller must hold rcu_lock or sufficient equivalent.
c09595f6 795 */
029632fb 796int walk_tg_tree_from(struct task_group *from,
8277434e 797 tg_visitor down, tg_visitor up, void *data)
c09595f6
PZ
798{
799 struct task_group *parent, *child;
eb755805 800 int ret;
c09595f6 801
8277434e
PT
802 parent = from;
803
c09595f6 804down:
eb755805
PZ
805 ret = (*down)(parent, data);
806 if (ret)
8277434e 807 goto out;
c09595f6
PZ
808 list_for_each_entry_rcu(child, &parent->children, siblings) {
809 parent = child;
810 goto down;
811
812up:
813 continue;
814 }
eb755805 815 ret = (*up)(parent, data);
8277434e
PT
816 if (ret || parent == from)
817 goto out;
c09595f6
PZ
818
819 child = parent;
820 parent = parent->parent;
821 if (parent)
822 goto up;
8277434e 823out:
eb755805 824 return ret;
c09595f6
PZ
825}
826
029632fb 827int tg_nop(struct task_group *tg, void *data)
eb755805 828{
e2b245f8 829 return 0;
eb755805 830}
18d95a28
PZ
831#endif
832
45bf76df
IM
833static void set_load_weight(struct task_struct *p)
834{
f05998d4
NR
835 int prio = p->static_prio - MAX_RT_PRIO;
836 struct load_weight *load = &p->se.load;
837
dd41f596
IM
838 /*
839 * SCHED_IDLE tasks get minimal weight:
840 */
841 if (p->policy == SCHED_IDLE) {
c8b28116 842 load->weight = scale_load(WEIGHT_IDLEPRIO);
f05998d4 843 load->inv_weight = WMULT_IDLEPRIO;
dd41f596
IM
844 return;
845 }
71f8bd46 846
c8b28116 847 load->weight = scale_load(prio_to_weight[prio]);
f05998d4 848 load->inv_weight = prio_to_wmult[prio];
71f8bd46
IM
849}
850
371fd7e7 851static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
2087a1ad 852{
a64692a3 853 update_rq_clock(rq);
43148951 854 sched_info_queued(rq, p);
371fd7e7 855 p->sched_class->enqueue_task(rq, p, flags);
71f8bd46
IM
856}
857
371fd7e7 858static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
71f8bd46 859{
a64692a3 860 update_rq_clock(rq);
43148951 861 sched_info_dequeued(rq, p);
371fd7e7 862 p->sched_class->dequeue_task(rq, p, flags);
71f8bd46
IM
863}
864
029632fb 865void activate_task(struct rq *rq, struct task_struct *p, int flags)
1e3c88bd
PZ
866{
867 if (task_contributes_to_load(p))
868 rq->nr_uninterruptible--;
869
371fd7e7 870 enqueue_task(rq, p, flags);
1e3c88bd
PZ
871}
872
029632fb 873void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
1e3c88bd
PZ
874{
875 if (task_contributes_to_load(p))
876 rq->nr_uninterruptible++;
877
371fd7e7 878 dequeue_task(rq, p, flags);
1e3c88bd
PZ
879}
880
fe44d621 881static void update_rq_clock_task(struct rq *rq, s64 delta)
aa483808 882{
095c0aa8
GC
883/*
884 * In theory, the compile should just see 0 here, and optimize out the call
885 * to sched_rt_avg_update. But I don't trust it...
886 */
887#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
888 s64 steal = 0, irq_delta = 0;
889#endif
890#ifdef CONFIG_IRQ_TIME_ACCOUNTING
8e92c201 891 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
fe44d621
PZ
892
893 /*
894 * Since irq_time is only updated on {soft,}irq_exit, we might run into
895 * this case when a previous update_rq_clock() happened inside a
896 * {soft,}irq region.
897 *
898 * When this happens, we stop ->clock_task and only update the
899 * prev_irq_time stamp to account for the part that fit, so that a next
900 * update will consume the rest. This ensures ->clock_task is
901 * monotonic.
902 *
903 * It does however cause some slight miss-attribution of {soft,}irq
904 * time, a more accurate solution would be to update the irq_time using
905 * the current rq->clock timestamp, except that would require using
906 * atomic ops.
907 */
908 if (irq_delta > delta)
909 irq_delta = delta;
910
911 rq->prev_irq_time += irq_delta;
912 delta -= irq_delta;
095c0aa8
GC
913#endif
914#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
c5905afb 915 if (static_key_false((&paravirt_steal_rq_enabled))) {
095c0aa8
GC
916 steal = paravirt_steal_clock(cpu_of(rq));
917 steal -= rq->prev_steal_time_rq;
918
919 if (unlikely(steal > delta))
920 steal = delta;
921
095c0aa8 922 rq->prev_steal_time_rq += steal;
095c0aa8
GC
923 delta -= steal;
924 }
925#endif
926
fe44d621
PZ
927 rq->clock_task += delta;
928
095c0aa8 929#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
5d4dfddd 930 if ((irq_delta + steal) && sched_feat(NONTASK_CAPACITY))
095c0aa8
GC
931 sched_rt_avg_update(rq, irq_delta + steal);
932#endif
aa483808
VP
933}
934
34f971f6
PZ
935void sched_set_stop_task(int cpu, struct task_struct *stop)
936{
937 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
938 struct task_struct *old_stop = cpu_rq(cpu)->stop;
939
940 if (stop) {
941 /*
942 * Make it appear like a SCHED_FIFO task, its something
943 * userspace knows about and won't get confused about.
944 *
945 * Also, it will make PI more or less work without too
946 * much confusion -- but then, stop work should not
947 * rely on PI working anyway.
948 */
949 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
950
951 stop->sched_class = &stop_sched_class;
952 }
953
954 cpu_rq(cpu)->stop = stop;
955
956 if (old_stop) {
957 /*
958 * Reset it back to a normal scheduling class so that
959 * it can die in pieces.
960 */
961 old_stop->sched_class = &rt_sched_class;
962 }
963}
964
14531189 965/*
dd41f596 966 * __normal_prio - return the priority that is based on the static prio
14531189 967 */
14531189
IM
968static inline int __normal_prio(struct task_struct *p)
969{
dd41f596 970 return p->static_prio;
14531189
IM
971}
972
b29739f9
IM
973/*
974 * Calculate the expected normal priority: i.e. priority
975 * without taking RT-inheritance into account. Might be
976 * boosted by interactivity modifiers. Changes upon fork,
977 * setprio syscalls, and whenever the interactivity
978 * estimator recalculates.
979 */
36c8b586 980static inline int normal_prio(struct task_struct *p)
b29739f9
IM
981{
982 int prio;
983
aab03e05
DF
984 if (task_has_dl_policy(p))
985 prio = MAX_DL_PRIO-1;
986 else if (task_has_rt_policy(p))
b29739f9
IM
987 prio = MAX_RT_PRIO-1 - p->rt_priority;
988 else
989 prio = __normal_prio(p);
990 return prio;
991}
992
993/*
994 * Calculate the current priority, i.e. the priority
995 * taken into account by the scheduler. This value might
996 * be boosted by RT tasks, or might be boosted by
997 * interactivity modifiers. Will be RT if the task got
998 * RT-boosted. If not then it returns p->normal_prio.
999 */
36c8b586 1000static int effective_prio(struct task_struct *p)
b29739f9
IM
1001{
1002 p->normal_prio = normal_prio(p);
1003 /*
1004 * If we are RT tasks or we were boosted to RT priority,
1005 * keep the priority unchanged. Otherwise, update priority
1006 * to the normal priority:
1007 */
1008 if (!rt_prio(p->prio))
1009 return p->normal_prio;
1010 return p->prio;
1011}
1012
1da177e4
LT
1013/**
1014 * task_curr - is this task currently executing on a CPU?
1015 * @p: the task in question.
e69f6186
YB
1016 *
1017 * Return: 1 if the task is currently executing. 0 otherwise.
1da177e4 1018 */
36c8b586 1019inline int task_curr(const struct task_struct *p)
1da177e4
LT
1020{
1021 return cpu_curr(task_cpu(p)) == p;
1022}
1023
67dfa1b7
KT
1024/*
1025 * Can drop rq->lock because from sched_class::switched_from() methods drop it.
1026 */
cb469845
SR
1027static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1028 const struct sched_class *prev_class,
da7a735e 1029 int oldprio)
cb469845
SR
1030{
1031 if (prev_class != p->sched_class) {
1032 if (prev_class->switched_from)
da7a735e 1033 prev_class->switched_from(rq, p);
67dfa1b7 1034 /* Possble rq->lock 'hole'. */
da7a735e 1035 p->sched_class->switched_to(rq, p);
2d3d891d 1036 } else if (oldprio != p->prio || dl_task(p))
da7a735e 1037 p->sched_class->prio_changed(rq, p, oldprio);
cb469845
SR
1038}
1039
029632fb 1040void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
1e5a7405
PZ
1041{
1042 const struct sched_class *class;
1043
1044 if (p->sched_class == rq->curr->sched_class) {
1045 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
1046 } else {
1047 for_each_class(class) {
1048 if (class == rq->curr->sched_class)
1049 break;
1050 if (class == p->sched_class) {
8875125e 1051 resched_curr(rq);
1e5a7405
PZ
1052 break;
1053 }
1054 }
1055 }
1056
1057 /*
1058 * A queue event has occurred, and we're going to schedule. In
1059 * this case, we can save a useless back to back clock update.
1060 */
da0c1e65 1061 if (task_on_rq_queued(rq->curr) && test_tsk_need_resched(rq->curr))
9edfbfed 1062 rq_clock_skip_update(rq, true);
1e5a7405
PZ
1063}
1064
1da177e4 1065#ifdef CONFIG_SMP
dd41f596 1066void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
c65cc870 1067{
e2912009
PZ
1068#ifdef CONFIG_SCHED_DEBUG
1069 /*
1070 * We should never call set_task_cpu() on a blocked task,
1071 * ttwu() will sort out the placement.
1072 */
077614ee 1073 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
e2336f6e 1074 !p->on_rq);
0122ec5b
PZ
1075
1076#ifdef CONFIG_LOCKDEP
6c6c54e1
PZ
1077 /*
1078 * The caller should hold either p->pi_lock or rq->lock, when changing
1079 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
1080 *
1081 * sched_move_task() holds both and thus holding either pins the cgroup,
8323f26c 1082 * see task_group().
6c6c54e1
PZ
1083 *
1084 * Furthermore, all task_rq users should acquire both locks, see
1085 * task_rq_lock().
1086 */
0122ec5b
PZ
1087 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
1088 lockdep_is_held(&task_rq(p)->lock)));
1089#endif
e2912009
PZ
1090#endif
1091
de1d7286 1092 trace_sched_migrate_task(p, new_cpu);
cbc34ed1 1093
0c69774e 1094 if (task_cpu(p) != new_cpu) {
0a74bef8
PT
1095 if (p->sched_class->migrate_task_rq)
1096 p->sched_class->migrate_task_rq(p, new_cpu);
0c69774e 1097 p->se.nr_migrations++;
86038c5e 1098 perf_sw_event_sched(PERF_COUNT_SW_CPU_MIGRATIONS, 1, 0);
0c69774e 1099 }
dd41f596
IM
1100
1101 __set_task_cpu(p, new_cpu);
c65cc870
IM
1102}
1103
ac66f547
PZ
1104static void __migrate_swap_task(struct task_struct *p, int cpu)
1105{
da0c1e65 1106 if (task_on_rq_queued(p)) {
ac66f547
PZ
1107 struct rq *src_rq, *dst_rq;
1108
1109 src_rq = task_rq(p);
1110 dst_rq = cpu_rq(cpu);
1111
1112 deactivate_task(src_rq, p, 0);
1113 set_task_cpu(p, cpu);
1114 activate_task(dst_rq, p, 0);
1115 check_preempt_curr(dst_rq, p, 0);
1116 } else {
1117 /*
1118 * Task isn't running anymore; make it appear like we migrated
1119 * it before it went to sleep. This means on wakeup we make the
1120 * previous cpu our targer instead of where it really is.
1121 */
1122 p->wake_cpu = cpu;
1123 }
1124}
1125
1126struct migration_swap_arg {
1127 struct task_struct *src_task, *dst_task;
1128 int src_cpu, dst_cpu;
1129};
1130
1131static int migrate_swap_stop(void *data)
1132{
1133 struct migration_swap_arg *arg = data;
1134 struct rq *src_rq, *dst_rq;
1135 int ret = -EAGAIN;
1136
1137 src_rq = cpu_rq(arg->src_cpu);
1138 dst_rq = cpu_rq(arg->dst_cpu);
1139
74602315
PZ
1140 double_raw_lock(&arg->src_task->pi_lock,
1141 &arg->dst_task->pi_lock);
ac66f547
PZ
1142 double_rq_lock(src_rq, dst_rq);
1143 if (task_cpu(arg->dst_task) != arg->dst_cpu)
1144 goto unlock;
1145
1146 if (task_cpu(arg->src_task) != arg->src_cpu)
1147 goto unlock;
1148
1149 if (!cpumask_test_cpu(arg->dst_cpu, tsk_cpus_allowed(arg->src_task)))
1150 goto unlock;
1151
1152 if (!cpumask_test_cpu(arg->src_cpu, tsk_cpus_allowed(arg->dst_task)))
1153 goto unlock;
1154
1155 __migrate_swap_task(arg->src_task, arg->dst_cpu);
1156 __migrate_swap_task(arg->dst_task, arg->src_cpu);
1157
1158 ret = 0;
1159
1160unlock:
1161 double_rq_unlock(src_rq, dst_rq);
74602315
PZ
1162 raw_spin_unlock(&arg->dst_task->pi_lock);
1163 raw_spin_unlock(&arg->src_task->pi_lock);
ac66f547
PZ
1164
1165 return ret;
1166}
1167
1168/*
1169 * Cross migrate two tasks
1170 */
1171int migrate_swap(struct task_struct *cur, struct task_struct *p)
1172{
1173 struct migration_swap_arg arg;
1174 int ret = -EINVAL;
1175
ac66f547
PZ
1176 arg = (struct migration_swap_arg){
1177 .src_task = cur,
1178 .src_cpu = task_cpu(cur),
1179 .dst_task = p,
1180 .dst_cpu = task_cpu(p),
1181 };
1182
1183 if (arg.src_cpu == arg.dst_cpu)
1184 goto out;
1185
6acce3ef
PZ
1186 /*
1187 * These three tests are all lockless; this is OK since all of them
1188 * will be re-checked with proper locks held further down the line.
1189 */
ac66f547
PZ
1190 if (!cpu_active(arg.src_cpu) || !cpu_active(arg.dst_cpu))
1191 goto out;
1192
1193 if (!cpumask_test_cpu(arg.dst_cpu, tsk_cpus_allowed(arg.src_task)))
1194 goto out;
1195
1196 if (!cpumask_test_cpu(arg.src_cpu, tsk_cpus_allowed(arg.dst_task)))
1197 goto out;
1198
286549dc 1199 trace_sched_swap_numa(cur, arg.src_cpu, p, arg.dst_cpu);
ac66f547
PZ
1200 ret = stop_two_cpus(arg.dst_cpu, arg.src_cpu, migrate_swap_stop, &arg);
1201
1202out:
ac66f547
PZ
1203 return ret;
1204}
1205
969c7921 1206struct migration_arg {
36c8b586 1207 struct task_struct *task;
1da177e4 1208 int dest_cpu;
70b97a7f 1209};
1da177e4 1210
969c7921
TH
1211static int migration_cpu_stop(void *data);
1212
1da177e4
LT
1213/*
1214 * wait_task_inactive - wait for a thread to unschedule.
1215 *
85ba2d86
RM
1216 * If @match_state is nonzero, it's the @p->state value just checked and
1217 * not expected to change. If it changes, i.e. @p might have woken up,
1218 * then return zero. When we succeed in waiting for @p to be off its CPU,
1219 * we return a positive number (its total switch count). If a second call
1220 * a short while later returns the same number, the caller can be sure that
1221 * @p has remained unscheduled the whole time.
1222 *
1da177e4
LT
1223 * The caller must ensure that the task *will* unschedule sometime soon,
1224 * else this function might spin for a *long* time. This function can't
1225 * be called with interrupts off, or it may introduce deadlock with
1226 * smp_call_function() if an IPI is sent by the same process we are
1227 * waiting to become inactive.
1228 */
85ba2d86 1229unsigned long wait_task_inactive(struct task_struct *p, long match_state)
1da177e4
LT
1230{
1231 unsigned long flags;
da0c1e65 1232 int running, queued;
85ba2d86 1233 unsigned long ncsw;
70b97a7f 1234 struct rq *rq;
1da177e4 1235
3a5c359a
AK
1236 for (;;) {
1237 /*
1238 * We do the initial early heuristics without holding
1239 * any task-queue locks at all. We'll only try to get
1240 * the runqueue lock when things look like they will
1241 * work out!
1242 */
1243 rq = task_rq(p);
fa490cfd 1244
3a5c359a
AK
1245 /*
1246 * If the task is actively running on another CPU
1247 * still, just relax and busy-wait without holding
1248 * any locks.
1249 *
1250 * NOTE! Since we don't hold any locks, it's not
1251 * even sure that "rq" stays as the right runqueue!
1252 * But we don't care, since "task_running()" will
1253 * return false if the runqueue has changed and p
1254 * is actually now running somewhere else!
1255 */
85ba2d86
RM
1256 while (task_running(rq, p)) {
1257 if (match_state && unlikely(p->state != match_state))
1258 return 0;
3a5c359a 1259 cpu_relax();
85ba2d86 1260 }
fa490cfd 1261
3a5c359a
AK
1262 /*
1263 * Ok, time to look more closely! We need the rq
1264 * lock now, to be *sure*. If we're wrong, we'll
1265 * just go back and repeat.
1266 */
1267 rq = task_rq_lock(p, &flags);
27a9da65 1268 trace_sched_wait_task(p);
3a5c359a 1269 running = task_running(rq, p);
da0c1e65 1270 queued = task_on_rq_queued(p);
85ba2d86 1271 ncsw = 0;
f31e11d8 1272 if (!match_state || p->state == match_state)
93dcf55f 1273 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
0122ec5b 1274 task_rq_unlock(rq, p, &flags);
fa490cfd 1275
85ba2d86
RM
1276 /*
1277 * If it changed from the expected state, bail out now.
1278 */
1279 if (unlikely(!ncsw))
1280 break;
1281
3a5c359a
AK
1282 /*
1283 * Was it really running after all now that we
1284 * checked with the proper locks actually held?
1285 *
1286 * Oops. Go back and try again..
1287 */
1288 if (unlikely(running)) {
1289 cpu_relax();
1290 continue;
1291 }
fa490cfd 1292
3a5c359a
AK
1293 /*
1294 * It's not enough that it's not actively running,
1295 * it must be off the runqueue _entirely_, and not
1296 * preempted!
1297 *
80dd99b3 1298 * So if it was still runnable (but just not actively
3a5c359a
AK
1299 * running right now), it's preempted, and we should
1300 * yield - it could be a while.
1301 */
da0c1e65 1302 if (unlikely(queued)) {
8eb90c30
TG
1303 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
1304
1305 set_current_state(TASK_UNINTERRUPTIBLE);
1306 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
3a5c359a
AK
1307 continue;
1308 }
fa490cfd 1309
3a5c359a
AK
1310 /*
1311 * Ahh, all good. It wasn't running, and it wasn't
1312 * runnable, which means that it will never become
1313 * running in the future either. We're all done!
1314 */
1315 break;
1316 }
85ba2d86
RM
1317
1318 return ncsw;
1da177e4
LT
1319}
1320
1321/***
1322 * kick_process - kick a running thread to enter/exit the kernel
1323 * @p: the to-be-kicked thread
1324 *
1325 * Cause a process which is running on another CPU to enter
1326 * kernel-mode, without any delay. (to get signals handled.)
1327 *
25985edc 1328 * NOTE: this function doesn't have to take the runqueue lock,
1da177e4
LT
1329 * because all it wants to ensure is that the remote task enters
1330 * the kernel. If the IPI races and the task has been migrated
1331 * to another CPU then no harm is done and the purpose has been
1332 * achieved as well.
1333 */
36c8b586 1334void kick_process(struct task_struct *p)
1da177e4
LT
1335{
1336 int cpu;
1337
1338 preempt_disable();
1339 cpu = task_cpu(p);
1340 if ((cpu != smp_processor_id()) && task_curr(p))
1341 smp_send_reschedule(cpu);
1342 preempt_enable();
1343}
b43e3521 1344EXPORT_SYMBOL_GPL(kick_process);
476d139c 1345#endif /* CONFIG_SMP */
1da177e4 1346
970b13ba 1347#ifdef CONFIG_SMP
30da688e 1348/*
013fdb80 1349 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
30da688e 1350 */
5da9a0fb
PZ
1351static int select_fallback_rq(int cpu, struct task_struct *p)
1352{
aa00d89c
TC
1353 int nid = cpu_to_node(cpu);
1354 const struct cpumask *nodemask = NULL;
2baab4e9
PZ
1355 enum { cpuset, possible, fail } state = cpuset;
1356 int dest_cpu;
5da9a0fb 1357
aa00d89c
TC
1358 /*
1359 * If the node that the cpu is on has been offlined, cpu_to_node()
1360 * will return -1. There is no cpu on the node, and we should
1361 * select the cpu on the other node.
1362 */
1363 if (nid != -1) {
1364 nodemask = cpumask_of_node(nid);
1365
1366 /* Look for allowed, online CPU in same node. */
1367 for_each_cpu(dest_cpu, nodemask) {
1368 if (!cpu_online(dest_cpu))
1369 continue;
1370 if (!cpu_active(dest_cpu))
1371 continue;
1372 if (cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
1373 return dest_cpu;
1374 }
2baab4e9 1375 }
5da9a0fb 1376
2baab4e9
PZ
1377 for (;;) {
1378 /* Any allowed, online CPU? */
e3831edd 1379 for_each_cpu(dest_cpu, tsk_cpus_allowed(p)) {
2baab4e9
PZ
1380 if (!cpu_online(dest_cpu))
1381 continue;
1382 if (!cpu_active(dest_cpu))
1383 continue;
1384 goto out;
1385 }
5da9a0fb 1386
2baab4e9
PZ
1387 switch (state) {
1388 case cpuset:
1389 /* No more Mr. Nice Guy. */
1390 cpuset_cpus_allowed_fallback(p);
1391 state = possible;
1392 break;
1393
1394 case possible:
1395 do_set_cpus_allowed(p, cpu_possible_mask);
1396 state = fail;
1397 break;
1398
1399 case fail:
1400 BUG();
1401 break;
1402 }
1403 }
1404
1405out:
1406 if (state != cpuset) {
1407 /*
1408 * Don't tell them about moving exiting tasks or
1409 * kernel threads (both mm NULL), since they never
1410 * leave kernel.
1411 */
1412 if (p->mm && printk_ratelimit()) {
aac74dc4 1413 printk_deferred("process %d (%s) no longer affine to cpu%d\n",
2baab4e9
PZ
1414 task_pid_nr(p), p->comm, cpu);
1415 }
5da9a0fb
PZ
1416 }
1417
1418 return dest_cpu;
1419}
1420
e2912009 1421/*
013fdb80 1422 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
e2912009 1423 */
970b13ba 1424static inline
ac66f547 1425int select_task_rq(struct task_struct *p, int cpu, int sd_flags, int wake_flags)
970b13ba 1426{
6c1d9410
WL
1427 if (p->nr_cpus_allowed > 1)
1428 cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
e2912009
PZ
1429
1430 /*
1431 * In order not to call set_task_cpu() on a blocking task we need
1432 * to rely on ttwu() to place the task on a valid ->cpus_allowed
1433 * cpu.
1434 *
1435 * Since this is common to all placement strategies, this lives here.
1436 *
1437 * [ this allows ->select_task() to simply return task_cpu(p) and
1438 * not worry about this generic constraint ]
1439 */
fa17b507 1440 if (unlikely(!cpumask_test_cpu(cpu, tsk_cpus_allowed(p)) ||
70f11205 1441 !cpu_online(cpu)))
5da9a0fb 1442 cpu = select_fallback_rq(task_cpu(p), p);
e2912009
PZ
1443
1444 return cpu;
970b13ba 1445}
09a40af5
MG
1446
1447static void update_avg(u64 *avg, u64 sample)
1448{
1449 s64 diff = sample - *avg;
1450 *avg += diff >> 3;
1451}
970b13ba
PZ
1452#endif
1453
d7c01d27 1454static void
b84cb5df 1455ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
9ed3811a 1456{
d7c01d27 1457#ifdef CONFIG_SCHEDSTATS
b84cb5df
PZ
1458 struct rq *rq = this_rq();
1459
d7c01d27
PZ
1460#ifdef CONFIG_SMP
1461 int this_cpu = smp_processor_id();
1462
1463 if (cpu == this_cpu) {
1464 schedstat_inc(rq, ttwu_local);
1465 schedstat_inc(p, se.statistics.nr_wakeups_local);
1466 } else {
1467 struct sched_domain *sd;
1468
1469 schedstat_inc(p, se.statistics.nr_wakeups_remote);
057f3fad 1470 rcu_read_lock();
d7c01d27
PZ
1471 for_each_domain(this_cpu, sd) {
1472 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
1473 schedstat_inc(sd, ttwu_wake_remote);
1474 break;
1475 }
1476 }
057f3fad 1477 rcu_read_unlock();
d7c01d27 1478 }
f339b9dc
PZ
1479
1480 if (wake_flags & WF_MIGRATED)
1481 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
1482
d7c01d27
PZ
1483#endif /* CONFIG_SMP */
1484
1485 schedstat_inc(rq, ttwu_count);
9ed3811a 1486 schedstat_inc(p, se.statistics.nr_wakeups);
d7c01d27
PZ
1487
1488 if (wake_flags & WF_SYNC)
9ed3811a 1489 schedstat_inc(p, se.statistics.nr_wakeups_sync);
d7c01d27 1490
d7c01d27
PZ
1491#endif /* CONFIG_SCHEDSTATS */
1492}
1493
1494static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
1495{
9ed3811a 1496 activate_task(rq, p, en_flags);
da0c1e65 1497 p->on_rq = TASK_ON_RQ_QUEUED;
c2f7115e
PZ
1498
1499 /* if a worker is waking up, notify workqueue */
1500 if (p->flags & PF_WQ_WORKER)
1501 wq_worker_waking_up(p, cpu_of(rq));
9ed3811a
TH
1502}
1503
23f41eeb
PZ
1504/*
1505 * Mark the task runnable and perform wakeup-preemption.
1506 */
89363381 1507static void
23f41eeb 1508ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
9ed3811a 1509{
9ed3811a 1510 check_preempt_curr(rq, p, wake_flags);
a8d7ad52 1511 trace_sched_wakeup(p, true);
9ed3811a
TH
1512
1513 p->state = TASK_RUNNING;
1514#ifdef CONFIG_SMP
1515 if (p->sched_class->task_woken)
1516 p->sched_class->task_woken(rq, p);
1517
e69c6341 1518 if (rq->idle_stamp) {
78becc27 1519 u64 delta = rq_clock(rq) - rq->idle_stamp;
9bd721c5 1520 u64 max = 2*rq->max_idle_balance_cost;
9ed3811a 1521
abfafa54
JL
1522 update_avg(&rq->avg_idle, delta);
1523
1524 if (rq->avg_idle > max)
9ed3811a 1525 rq->avg_idle = max;
abfafa54 1526
9ed3811a
TH
1527 rq->idle_stamp = 0;
1528 }
1529#endif
1530}
1531
c05fbafb
PZ
1532static void
1533ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
1534{
1535#ifdef CONFIG_SMP
1536 if (p->sched_contributes_to_load)
1537 rq->nr_uninterruptible--;
1538#endif
1539
1540 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
1541 ttwu_do_wakeup(rq, p, wake_flags);
1542}
1543
1544/*
1545 * Called in case the task @p isn't fully descheduled from its runqueue,
1546 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
1547 * since all we need to do is flip p->state to TASK_RUNNING, since
1548 * the task is still ->on_rq.
1549 */
1550static int ttwu_remote(struct task_struct *p, int wake_flags)
1551{
1552 struct rq *rq;
1553 int ret = 0;
1554
1555 rq = __task_rq_lock(p);
da0c1e65 1556 if (task_on_rq_queued(p)) {
1ad4ec0d
FW
1557 /* check_preempt_curr() may use rq clock */
1558 update_rq_clock(rq);
c05fbafb
PZ
1559 ttwu_do_wakeup(rq, p, wake_flags);
1560 ret = 1;
1561 }
1562 __task_rq_unlock(rq);
1563
1564 return ret;
1565}
1566
317f3941 1567#ifdef CONFIG_SMP
e3baac47 1568void sched_ttwu_pending(void)
317f3941
PZ
1569{
1570 struct rq *rq = this_rq();
fa14ff4a
PZ
1571 struct llist_node *llist = llist_del_all(&rq->wake_list);
1572 struct task_struct *p;
e3baac47 1573 unsigned long flags;
317f3941 1574
e3baac47
PZ
1575 if (!llist)
1576 return;
1577
1578 raw_spin_lock_irqsave(&rq->lock, flags);
317f3941 1579
fa14ff4a
PZ
1580 while (llist) {
1581 p = llist_entry(llist, struct task_struct, wake_entry);
1582 llist = llist_next(llist);
317f3941
PZ
1583 ttwu_do_activate(rq, p, 0);
1584 }
1585
e3baac47 1586 raw_spin_unlock_irqrestore(&rq->lock, flags);
317f3941
PZ
1587}
1588
1589void scheduler_ipi(void)
1590{
f27dde8d
PZ
1591 /*
1592 * Fold TIF_NEED_RESCHED into the preempt_count; anybody setting
1593 * TIF_NEED_RESCHED remotely (for the first time) will also send
1594 * this IPI.
1595 */
8cb75e0c 1596 preempt_fold_need_resched();
f27dde8d 1597
fd2ac4f4 1598 if (llist_empty(&this_rq()->wake_list) && !got_nohz_idle_kick())
c5d753a5
PZ
1599 return;
1600
1601 /*
1602 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
1603 * traditionally all their work was done from the interrupt return
1604 * path. Now that we actually do some work, we need to make sure
1605 * we do call them.
1606 *
1607 * Some archs already do call them, luckily irq_enter/exit nest
1608 * properly.
1609 *
1610 * Arguably we should visit all archs and update all handlers,
1611 * however a fair share of IPIs are still resched only so this would
1612 * somewhat pessimize the simple resched case.
1613 */
1614 irq_enter();
fa14ff4a 1615 sched_ttwu_pending();
ca38062e
SS
1616
1617 /*
1618 * Check if someone kicked us for doing the nohz idle load balance.
1619 */
873b4c65 1620 if (unlikely(got_nohz_idle_kick())) {
6eb57e0d 1621 this_rq()->idle_balance = 1;
ca38062e 1622 raise_softirq_irqoff(SCHED_SOFTIRQ);
6eb57e0d 1623 }
c5d753a5 1624 irq_exit();
317f3941
PZ
1625}
1626
1627static void ttwu_queue_remote(struct task_struct *p, int cpu)
1628{
e3baac47
PZ
1629 struct rq *rq = cpu_rq(cpu);
1630
1631 if (llist_add(&p->wake_entry, &cpu_rq(cpu)->wake_list)) {
1632 if (!set_nr_if_polling(rq->idle))
1633 smp_send_reschedule(cpu);
1634 else
1635 trace_sched_wake_idle_without_ipi(cpu);
1636 }
317f3941 1637}
d6aa8f85 1638
f6be8af1
CL
1639void wake_up_if_idle(int cpu)
1640{
1641 struct rq *rq = cpu_rq(cpu);
1642 unsigned long flags;
1643
fd7de1e8
AL
1644 rcu_read_lock();
1645
1646 if (!is_idle_task(rcu_dereference(rq->curr)))
1647 goto out;
f6be8af1
CL
1648
1649 if (set_nr_if_polling(rq->idle)) {
1650 trace_sched_wake_idle_without_ipi(cpu);
1651 } else {
1652 raw_spin_lock_irqsave(&rq->lock, flags);
1653 if (is_idle_task(rq->curr))
1654 smp_send_reschedule(cpu);
1655 /* Else cpu is not in idle, do nothing here */
1656 raw_spin_unlock_irqrestore(&rq->lock, flags);
1657 }
fd7de1e8
AL
1658
1659out:
1660 rcu_read_unlock();
f6be8af1
CL
1661}
1662
39be3501 1663bool cpus_share_cache(int this_cpu, int that_cpu)
518cd623
PZ
1664{
1665 return per_cpu(sd_llc_id, this_cpu) == per_cpu(sd_llc_id, that_cpu);
1666}
d6aa8f85 1667#endif /* CONFIG_SMP */
317f3941 1668
c05fbafb
PZ
1669static void ttwu_queue(struct task_struct *p, int cpu)
1670{
1671 struct rq *rq = cpu_rq(cpu);
1672
17d9f311 1673#if defined(CONFIG_SMP)
39be3501 1674 if (sched_feat(TTWU_QUEUE) && !cpus_share_cache(smp_processor_id(), cpu)) {
f01114cb 1675 sched_clock_cpu(cpu); /* sync clocks x-cpu */
317f3941
PZ
1676 ttwu_queue_remote(p, cpu);
1677 return;
1678 }
1679#endif
1680
c05fbafb
PZ
1681 raw_spin_lock(&rq->lock);
1682 ttwu_do_activate(rq, p, 0);
1683 raw_spin_unlock(&rq->lock);
9ed3811a
TH
1684}
1685
1686/**
1da177e4 1687 * try_to_wake_up - wake up a thread
9ed3811a 1688 * @p: the thread to be awakened
1da177e4 1689 * @state: the mask of task states that can be woken
9ed3811a 1690 * @wake_flags: wake modifier flags (WF_*)
1da177e4
LT
1691 *
1692 * Put it on the run-queue if it's not already there. The "current"
1693 * thread is always on the run-queue (except when the actual
1694 * re-schedule is in progress), and as such you're allowed to do
1695 * the simpler "current->state = TASK_RUNNING" to mark yourself
1696 * runnable without the overhead of this.
1697 *
e69f6186 1698 * Return: %true if @p was woken up, %false if it was already running.
9ed3811a 1699 * or @state didn't match @p's state.
1da177e4 1700 */
e4a52bcb
PZ
1701static int
1702try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
1da177e4 1703{
1da177e4 1704 unsigned long flags;
c05fbafb 1705 int cpu, success = 0;
2398f2c6 1706
e0acd0a6
ON
1707 /*
1708 * If we are going to wake up a thread waiting for CONDITION we
1709 * need to ensure that CONDITION=1 done by the caller can not be
1710 * reordered with p->state check below. This pairs with mb() in
1711 * set_current_state() the waiting thread does.
1712 */
1713 smp_mb__before_spinlock();
013fdb80 1714 raw_spin_lock_irqsave(&p->pi_lock, flags);
e9c84311 1715 if (!(p->state & state))
1da177e4
LT
1716 goto out;
1717
c05fbafb 1718 success = 1; /* we're going to change ->state */
1da177e4 1719 cpu = task_cpu(p);
1da177e4 1720
c05fbafb
PZ
1721 if (p->on_rq && ttwu_remote(p, wake_flags))
1722 goto stat;
1da177e4 1723
1da177e4 1724#ifdef CONFIG_SMP
e9c84311 1725 /*
c05fbafb
PZ
1726 * If the owning (remote) cpu is still in the middle of schedule() with
1727 * this task as prev, wait until its done referencing the task.
e9c84311 1728 */
f3e94786 1729 while (p->on_cpu)
e4a52bcb 1730 cpu_relax();
0970d299 1731 /*
e4a52bcb 1732 * Pairs with the smp_wmb() in finish_lock_switch().
0970d299 1733 */
e4a52bcb 1734 smp_rmb();
1da177e4 1735
a8e4f2ea 1736 p->sched_contributes_to_load = !!task_contributes_to_load(p);
e9c84311 1737 p->state = TASK_WAKING;
e7693a36 1738
e4a52bcb 1739 if (p->sched_class->task_waking)
74f8e4b2 1740 p->sched_class->task_waking(p);
efbbd05a 1741
ac66f547 1742 cpu = select_task_rq(p, p->wake_cpu, SD_BALANCE_WAKE, wake_flags);
f339b9dc
PZ
1743 if (task_cpu(p) != cpu) {
1744 wake_flags |= WF_MIGRATED;
e4a52bcb 1745 set_task_cpu(p, cpu);
f339b9dc 1746 }
1da177e4 1747#endif /* CONFIG_SMP */
1da177e4 1748
c05fbafb
PZ
1749 ttwu_queue(p, cpu);
1750stat:
b84cb5df 1751 ttwu_stat(p, cpu, wake_flags);
1da177e4 1752out:
013fdb80 1753 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
1da177e4
LT
1754
1755 return success;
1756}
1757
21aa9af0
TH
1758/**
1759 * try_to_wake_up_local - try to wake up a local task with rq lock held
1760 * @p: the thread to be awakened
1761 *
2acca55e 1762 * Put @p on the run-queue if it's not already there. The caller must
21aa9af0 1763 * ensure that this_rq() is locked, @p is bound to this_rq() and not
2acca55e 1764 * the current task.
21aa9af0
TH
1765 */
1766static void try_to_wake_up_local(struct task_struct *p)
1767{
1768 struct rq *rq = task_rq(p);
21aa9af0 1769
383efcd0
TH
1770 if (WARN_ON_ONCE(rq != this_rq()) ||
1771 WARN_ON_ONCE(p == current))
1772 return;
1773
21aa9af0
TH
1774 lockdep_assert_held(&rq->lock);
1775
2acca55e
PZ
1776 if (!raw_spin_trylock(&p->pi_lock)) {
1777 raw_spin_unlock(&rq->lock);
1778 raw_spin_lock(&p->pi_lock);
1779 raw_spin_lock(&rq->lock);
1780 }
1781
21aa9af0 1782 if (!(p->state & TASK_NORMAL))
2acca55e 1783 goto out;
21aa9af0 1784
da0c1e65 1785 if (!task_on_rq_queued(p))
d7c01d27
PZ
1786 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
1787
23f41eeb 1788 ttwu_do_wakeup(rq, p, 0);
b84cb5df 1789 ttwu_stat(p, smp_processor_id(), 0);
2acca55e
PZ
1790out:
1791 raw_spin_unlock(&p->pi_lock);
21aa9af0
TH
1792}
1793
50fa610a
DH
1794/**
1795 * wake_up_process - Wake up a specific process
1796 * @p: The process to be woken up.
1797 *
1798 * Attempt to wake up the nominated process and move it to the set of runnable
e69f6186
YB
1799 * processes.
1800 *
1801 * Return: 1 if the process was woken up, 0 if it was already running.
50fa610a
DH
1802 *
1803 * It may be assumed that this function implies a write memory barrier before
1804 * changing the task state if and only if any tasks are woken up.
1805 */
7ad5b3a5 1806int wake_up_process(struct task_struct *p)
1da177e4 1807{
9067ac85
ON
1808 WARN_ON(task_is_stopped_or_traced(p));
1809 return try_to_wake_up(p, TASK_NORMAL, 0);
1da177e4 1810}
1da177e4
LT
1811EXPORT_SYMBOL(wake_up_process);
1812
7ad5b3a5 1813int wake_up_state(struct task_struct *p, unsigned int state)
1da177e4
LT
1814{
1815 return try_to_wake_up(p, state, 0);
1816}
1817
a5e7be3b
JL
1818/*
1819 * This function clears the sched_dl_entity static params.
1820 */
1821void __dl_clear_params(struct task_struct *p)
1822{
1823 struct sched_dl_entity *dl_se = &p->dl;
1824
1825 dl_se->dl_runtime = 0;
1826 dl_se->dl_deadline = 0;
1827 dl_se->dl_period = 0;
1828 dl_se->flags = 0;
1829 dl_se->dl_bw = 0;
40767b0d
PZ
1830
1831 dl_se->dl_throttled = 0;
1832 dl_se->dl_new = 1;
1833 dl_se->dl_yielded = 0;
a5e7be3b
JL
1834}
1835
1da177e4
LT
1836/*
1837 * Perform scheduler related setup for a newly forked process p.
1838 * p is forked by current.
dd41f596
IM
1839 *
1840 * __sched_fork() is basic setup used by init_idle() too:
1841 */
5e1576ed 1842static void __sched_fork(unsigned long clone_flags, struct task_struct *p)
dd41f596 1843{
fd2f4419
PZ
1844 p->on_rq = 0;
1845
1846 p->se.on_rq = 0;
dd41f596
IM
1847 p->se.exec_start = 0;
1848 p->se.sum_exec_runtime = 0;
f6cf891c 1849 p->se.prev_sum_exec_runtime = 0;
6c594c21 1850 p->se.nr_migrations = 0;
da7a735e 1851 p->se.vruntime = 0;
bb04159d
KT
1852#ifdef CONFIG_SMP
1853 p->se.avg.decay_count = 0;
1854#endif
fd2f4419 1855 INIT_LIST_HEAD(&p->se.group_node);
6cfb0d5d
IM
1856
1857#ifdef CONFIG_SCHEDSTATS
41acab88 1858 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
6cfb0d5d 1859#endif
476d139c 1860
aab03e05 1861 RB_CLEAR_NODE(&p->dl.rb_node);
40767b0d 1862 init_dl_task_timer(&p->dl);
a5e7be3b 1863 __dl_clear_params(p);
aab03e05 1864
fa717060 1865 INIT_LIST_HEAD(&p->rt.run_list);
476d139c 1866
e107be36
AK
1867#ifdef CONFIG_PREEMPT_NOTIFIERS
1868 INIT_HLIST_HEAD(&p->preempt_notifiers);
1869#endif
cbee9f88
PZ
1870
1871#ifdef CONFIG_NUMA_BALANCING
1872 if (p->mm && atomic_read(&p->mm->mm_users) == 1) {
7e8d16b6 1873 p->mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
cbee9f88
PZ
1874 p->mm->numa_scan_seq = 0;
1875 }
1876
5e1576ed
RR
1877 if (clone_flags & CLONE_VM)
1878 p->numa_preferred_nid = current->numa_preferred_nid;
1879 else
1880 p->numa_preferred_nid = -1;
1881
cbee9f88
PZ
1882 p->node_stamp = 0ULL;
1883 p->numa_scan_seq = p->mm ? p->mm->numa_scan_seq : 0;
4b96a29b 1884 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
cbee9f88 1885 p->numa_work.next = &p->numa_work;
44dba3d5 1886 p->numa_faults = NULL;
7e2703e6
RR
1887 p->last_task_numa_placement = 0;
1888 p->last_sum_exec_runtime = 0;
8c8a743c 1889
8c8a743c 1890 p->numa_group = NULL;
cbee9f88 1891#endif /* CONFIG_NUMA_BALANCING */
dd41f596
IM
1892}
1893
1a687c2e 1894#ifdef CONFIG_NUMA_BALANCING
3105b86a 1895#ifdef CONFIG_SCHED_DEBUG
1a687c2e
MG
1896void set_numabalancing_state(bool enabled)
1897{
1898 if (enabled)
1899 sched_feat_set("NUMA");
1900 else
1901 sched_feat_set("NO_NUMA");
1902}
3105b86a
MG
1903#else
1904__read_mostly bool numabalancing_enabled;
1905
1906void set_numabalancing_state(bool enabled)
1907{
1908 numabalancing_enabled = enabled;
dd41f596 1909}
3105b86a 1910#endif /* CONFIG_SCHED_DEBUG */
54a43d54
AK
1911
1912#ifdef CONFIG_PROC_SYSCTL
1913int sysctl_numa_balancing(struct ctl_table *table, int write,
1914 void __user *buffer, size_t *lenp, loff_t *ppos)
1915{
1916 struct ctl_table t;
1917 int err;
1918 int state = numabalancing_enabled;
1919
1920 if (write && !capable(CAP_SYS_ADMIN))
1921 return -EPERM;
1922
1923 t = *table;
1924 t.data = &state;
1925 err = proc_dointvec_minmax(&t, write, buffer, lenp, ppos);
1926 if (err < 0)
1927 return err;
1928 if (write)
1929 set_numabalancing_state(state);
1930 return err;
1931}
1932#endif
1933#endif
dd41f596
IM
1934
1935/*
1936 * fork()/clone()-time setup:
1937 */
aab03e05 1938int sched_fork(unsigned long clone_flags, struct task_struct *p)
dd41f596 1939{
0122ec5b 1940 unsigned long flags;
dd41f596
IM
1941 int cpu = get_cpu();
1942
5e1576ed 1943 __sched_fork(clone_flags, p);
06b83b5f 1944 /*
0017d735 1945 * We mark the process as running here. This guarantees that
06b83b5f
PZ
1946 * nobody will actually run it, and a signal or other external
1947 * event cannot wake it up and insert it on the runqueue either.
1948 */
0017d735 1949 p->state = TASK_RUNNING;
dd41f596 1950
c350a04e
MG
1951 /*
1952 * Make sure we do not leak PI boosting priority to the child.
1953 */
1954 p->prio = current->normal_prio;
1955
b9dc29e7
MG
1956 /*
1957 * Revert to default priority/policy on fork if requested.
1958 */
1959 if (unlikely(p->sched_reset_on_fork)) {
aab03e05 1960 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
b9dc29e7 1961 p->policy = SCHED_NORMAL;
6c697bdf 1962 p->static_prio = NICE_TO_PRIO(0);
c350a04e
MG
1963 p->rt_priority = 0;
1964 } else if (PRIO_TO_NICE(p->static_prio) < 0)
1965 p->static_prio = NICE_TO_PRIO(0);
1966
1967 p->prio = p->normal_prio = __normal_prio(p);
1968 set_load_weight(p);
6c697bdf 1969
b9dc29e7
MG
1970 /*
1971 * We don't need the reset flag anymore after the fork. It has
1972 * fulfilled its duty:
1973 */
1974 p->sched_reset_on_fork = 0;
1975 }
ca94c442 1976
aab03e05
DF
1977 if (dl_prio(p->prio)) {
1978 put_cpu();
1979 return -EAGAIN;
1980 } else if (rt_prio(p->prio)) {
1981 p->sched_class = &rt_sched_class;
1982 } else {
2ddbf952 1983 p->sched_class = &fair_sched_class;
aab03e05 1984 }
b29739f9 1985
cd29fe6f
PZ
1986 if (p->sched_class->task_fork)
1987 p->sched_class->task_fork(p);
1988
86951599
PZ
1989 /*
1990 * The child is not yet in the pid-hash so no cgroup attach races,
1991 * and the cgroup is pinned to this child due to cgroup_fork()
1992 * is ran before sched_fork().
1993 *
1994 * Silence PROVE_RCU.
1995 */
0122ec5b 1996 raw_spin_lock_irqsave(&p->pi_lock, flags);
5f3edc1b 1997 set_task_cpu(p, cpu);
0122ec5b 1998 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
5f3edc1b 1999
52f17b6c 2000#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
dd41f596 2001 if (likely(sched_info_on()))
52f17b6c 2002 memset(&p->sched_info, 0, sizeof(p->sched_info));
1da177e4 2003#endif
3ca7a440
PZ
2004#if defined(CONFIG_SMP)
2005 p->on_cpu = 0;
4866cde0 2006#endif
01028747 2007 init_task_preempt_count(p);
806c09a7 2008#ifdef CONFIG_SMP
917b627d 2009 plist_node_init(&p->pushable_tasks, MAX_PRIO);
1baca4ce 2010 RB_CLEAR_NODE(&p->pushable_dl_tasks);
806c09a7 2011#endif
917b627d 2012
476d139c 2013 put_cpu();
aab03e05 2014 return 0;
1da177e4
LT
2015}
2016
332ac17e
DF
2017unsigned long to_ratio(u64 period, u64 runtime)
2018{
2019 if (runtime == RUNTIME_INF)
2020 return 1ULL << 20;
2021
2022 /*
2023 * Doing this here saves a lot of checks in all
2024 * the calling paths, and returning zero seems
2025 * safe for them anyway.
2026 */
2027 if (period == 0)
2028 return 0;
2029
2030 return div64_u64(runtime << 20, period);
2031}
2032
2033#ifdef CONFIG_SMP
2034inline struct dl_bw *dl_bw_of(int i)
2035{
66339c31
KT
2036 rcu_lockdep_assert(rcu_read_lock_sched_held(),
2037 "sched RCU must be held");
332ac17e
DF
2038 return &cpu_rq(i)->rd->dl_bw;
2039}
2040
de212f18 2041static inline int dl_bw_cpus(int i)
332ac17e 2042{
de212f18
PZ
2043 struct root_domain *rd = cpu_rq(i)->rd;
2044 int cpus = 0;
2045
66339c31
KT
2046 rcu_lockdep_assert(rcu_read_lock_sched_held(),
2047 "sched RCU must be held");
de212f18
PZ
2048 for_each_cpu_and(i, rd->span, cpu_active_mask)
2049 cpus++;
2050
2051 return cpus;
332ac17e
DF
2052}
2053#else
2054inline struct dl_bw *dl_bw_of(int i)
2055{
2056 return &cpu_rq(i)->dl.dl_bw;
2057}
2058
de212f18 2059static inline int dl_bw_cpus(int i)
332ac17e
DF
2060{
2061 return 1;
2062}
2063#endif
2064
332ac17e
DF
2065/*
2066 * We must be sure that accepting a new task (or allowing changing the
2067 * parameters of an existing one) is consistent with the bandwidth
2068 * constraints. If yes, this function also accordingly updates the currently
2069 * allocated bandwidth to reflect the new situation.
2070 *
2071 * This function is called while holding p's rq->lock.
40767b0d
PZ
2072 *
2073 * XXX we should delay bw change until the task's 0-lag point, see
2074 * __setparam_dl().
332ac17e
DF
2075 */
2076static int dl_overflow(struct task_struct *p, int policy,
2077 const struct sched_attr *attr)
2078{
2079
2080 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
4df1638c 2081 u64 period = attr->sched_period ?: attr->sched_deadline;
332ac17e
DF
2082 u64 runtime = attr->sched_runtime;
2083 u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
de212f18 2084 int cpus, err = -1;
332ac17e
DF
2085
2086 if (new_bw == p->dl.dl_bw)
2087 return 0;
2088
2089 /*
2090 * Either if a task, enters, leave, or stays -deadline but changes
2091 * its parameters, we may need to update accordingly the total
2092 * allocated bandwidth of the container.
2093 */
2094 raw_spin_lock(&dl_b->lock);
de212f18 2095 cpus = dl_bw_cpus(task_cpu(p));
332ac17e
DF
2096 if (dl_policy(policy) && !task_has_dl_policy(p) &&
2097 !__dl_overflow(dl_b, cpus, 0, new_bw)) {
2098 __dl_add(dl_b, new_bw);
2099 err = 0;
2100 } else if (dl_policy(policy) && task_has_dl_policy(p) &&
2101 !__dl_overflow(dl_b, cpus, p->dl.dl_bw, new_bw)) {
2102 __dl_clear(dl_b, p->dl.dl_bw);
2103 __dl_add(dl_b, new_bw);
2104 err = 0;
2105 } else if (!dl_policy(policy) && task_has_dl_policy(p)) {
2106 __dl_clear(dl_b, p->dl.dl_bw);
2107 err = 0;
2108 }
2109 raw_spin_unlock(&dl_b->lock);
2110
2111 return err;
2112}
2113
2114extern void init_dl_bw(struct dl_bw *dl_b);
2115
1da177e4
LT
2116/*
2117 * wake_up_new_task - wake up a newly created task for the first time.
2118 *
2119 * This function will do some initial scheduler statistics housekeeping
2120 * that must be done for every newly created context, then puts the task
2121 * on the runqueue and wakes it.
2122 */
3e51e3ed 2123void wake_up_new_task(struct task_struct *p)
1da177e4
LT
2124{
2125 unsigned long flags;
dd41f596 2126 struct rq *rq;
fabf318e 2127
ab2515c4 2128 raw_spin_lock_irqsave(&p->pi_lock, flags);
fabf318e
PZ
2129#ifdef CONFIG_SMP
2130 /*
2131 * Fork balancing, do it here and not earlier because:
2132 * - cpus_allowed can change in the fork path
2133 * - any previously selected cpu might disappear through hotplug
fabf318e 2134 */
ac66f547 2135 set_task_cpu(p, select_task_rq(p, task_cpu(p), SD_BALANCE_FORK, 0));
0017d735
PZ
2136#endif
2137
a75cdaa9
AS
2138 /* Initialize new task's runnable average */
2139 init_task_runnable_average(p);
ab2515c4 2140 rq = __task_rq_lock(p);
cd29fe6f 2141 activate_task(rq, p, 0);
da0c1e65 2142 p->on_rq = TASK_ON_RQ_QUEUED;
89363381 2143 trace_sched_wakeup_new(p, true);
a7558e01 2144 check_preempt_curr(rq, p, WF_FORK);
9a897c5a 2145#ifdef CONFIG_SMP
efbbd05a
PZ
2146 if (p->sched_class->task_woken)
2147 p->sched_class->task_woken(rq, p);
9a897c5a 2148#endif
0122ec5b 2149 task_rq_unlock(rq, p, &flags);
1da177e4
LT
2150}
2151
e107be36
AK
2152#ifdef CONFIG_PREEMPT_NOTIFIERS
2153
2154/**
80dd99b3 2155 * preempt_notifier_register - tell me when current is being preempted & rescheduled
421cee29 2156 * @notifier: notifier struct to register
e107be36
AK
2157 */
2158void preempt_notifier_register(struct preempt_notifier *notifier)
2159{
2160 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2161}
2162EXPORT_SYMBOL_GPL(preempt_notifier_register);
2163
2164/**
2165 * preempt_notifier_unregister - no longer interested in preemption notifications
421cee29 2166 * @notifier: notifier struct to unregister
e107be36 2167 *
d84525a8 2168 * This is *not* safe to call from within a preemption notifier.
e107be36
AK
2169 */
2170void preempt_notifier_unregister(struct preempt_notifier *notifier)
2171{
2172 hlist_del(&notifier->link);
2173}
2174EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2175
2176static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2177{
2178 struct preempt_notifier *notifier;
e107be36 2179
b67bfe0d 2180 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
e107be36
AK
2181 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2182}
2183
2184static void
2185fire_sched_out_preempt_notifiers(struct task_struct *curr,
2186 struct task_struct *next)
2187{
2188 struct preempt_notifier *notifier;
e107be36 2189
b67bfe0d 2190 hlist_for_each_entry(notifier, &curr->preempt_notifiers, link)
e107be36
AK
2191 notifier->ops->sched_out(notifier, next);
2192}
2193
6d6bc0ad 2194#else /* !CONFIG_PREEMPT_NOTIFIERS */
e107be36
AK
2195
2196static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2197{
2198}
2199
2200static void
2201fire_sched_out_preempt_notifiers(struct task_struct *curr,
2202 struct task_struct *next)
2203{
2204}
2205
6d6bc0ad 2206#endif /* CONFIG_PREEMPT_NOTIFIERS */
e107be36 2207
4866cde0
NP
2208/**
2209 * prepare_task_switch - prepare to switch tasks
2210 * @rq: the runqueue preparing to switch
421cee29 2211 * @prev: the current task that is being switched out
4866cde0
NP
2212 * @next: the task we are going to switch to.
2213 *
2214 * This is called with the rq lock held and interrupts off. It must
2215 * be paired with a subsequent finish_task_switch after the context
2216 * switch.
2217 *
2218 * prepare_task_switch sets up locking and calls architecture specific
2219 * hooks.
2220 */
e107be36
AK
2221static inline void
2222prepare_task_switch(struct rq *rq, struct task_struct *prev,
2223 struct task_struct *next)
4866cde0 2224{
895dd92c 2225 trace_sched_switch(prev, next);
43148951 2226 sched_info_switch(rq, prev, next);
fe4b04fa 2227 perf_event_task_sched_out(prev, next);
e107be36 2228 fire_sched_out_preempt_notifiers(prev, next);
4866cde0
NP
2229 prepare_lock_switch(rq, next);
2230 prepare_arch_switch(next);
2231}
2232
1da177e4
LT
2233/**
2234 * finish_task_switch - clean up after a task-switch
2235 * @prev: the thread we just switched away from.
2236 *
4866cde0
NP
2237 * finish_task_switch must be called after the context switch, paired
2238 * with a prepare_task_switch call before the context switch.
2239 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2240 * and do any other architecture-specific cleanup actions.
1da177e4
LT
2241 *
2242 * Note that we may have delayed dropping an mm in context_switch(). If
41a2d6cf 2243 * so, we finish that here outside of the runqueue lock. (Doing it
1da177e4
LT
2244 * with the lock held can cause deadlocks; see schedule() for
2245 * details.)
dfa50b60
ON
2246 *
2247 * The context switch have flipped the stack from under us and restored the
2248 * local variables which were saved when this task called schedule() in the
2249 * past. prev == current is still correct but we need to recalculate this_rq
2250 * because prev may have moved to another CPU.
1da177e4 2251 */
dfa50b60 2252static struct rq *finish_task_switch(struct task_struct *prev)
1da177e4
LT
2253 __releases(rq->lock)
2254{
dfa50b60 2255 struct rq *rq = this_rq();
1da177e4 2256 struct mm_struct *mm = rq->prev_mm;
55a101f8 2257 long prev_state;
1da177e4
LT
2258
2259 rq->prev_mm = NULL;
2260
2261 /*
2262 * A task struct has one reference for the use as "current".
c394cc9f 2263 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
55a101f8
ON
2264 * schedule one last time. The schedule call will never return, and
2265 * the scheduled task must drop that reference.
c394cc9f 2266 * The test for TASK_DEAD must occur while the runqueue locks are
1da177e4
LT
2267 * still held, otherwise prev could be scheduled on another cpu, die
2268 * there before we look at prev->state, and then the reference would
2269 * be dropped twice.
2270 * Manfred Spraul <manfred@colorfullife.com>
2271 */
55a101f8 2272 prev_state = prev->state;
bf9fae9f 2273 vtime_task_switch(prev);
4866cde0 2274 finish_arch_switch(prev);
a8d757ef 2275 perf_event_task_sched_in(prev, current);
4866cde0 2276 finish_lock_switch(rq, prev);
01f23e16 2277 finish_arch_post_lock_switch();
e8fa1362 2278
e107be36 2279 fire_sched_in_preempt_notifiers(current);
1da177e4
LT
2280 if (mm)
2281 mmdrop(mm);
c394cc9f 2282 if (unlikely(prev_state == TASK_DEAD)) {
e6c390f2
DF
2283 if (prev->sched_class->task_dead)
2284 prev->sched_class->task_dead(prev);
2285
c6fd91f0 2286 /*
2287 * Remove function-return probe instances associated with this
2288 * task and put them back on the free list.
9761eea8 2289 */
c6fd91f0 2290 kprobe_flush_task(prev);
1da177e4 2291 put_task_struct(prev);
c6fd91f0 2292 }
99e5ada9
FW
2293
2294 tick_nohz_task_switch(current);
dfa50b60 2295 return rq;
1da177e4
LT
2296}
2297
3f029d3c
GH
2298#ifdef CONFIG_SMP
2299
3f029d3c
GH
2300/* rq->lock is NOT held, but preemption is disabled */
2301static inline void post_schedule(struct rq *rq)
2302{
2303 if (rq->post_schedule) {
2304 unsigned long flags;
2305
05fa785c 2306 raw_spin_lock_irqsave(&rq->lock, flags);
3f029d3c
GH
2307 if (rq->curr->sched_class->post_schedule)
2308 rq->curr->sched_class->post_schedule(rq);
05fa785c 2309 raw_spin_unlock_irqrestore(&rq->lock, flags);
3f029d3c
GH
2310
2311 rq->post_schedule = 0;
2312 }
2313}
2314
2315#else
da19ab51 2316
3f029d3c
GH
2317static inline void post_schedule(struct rq *rq)
2318{
1da177e4
LT
2319}
2320
3f029d3c
GH
2321#endif
2322
1da177e4
LT
2323/**
2324 * schedule_tail - first thing a freshly forked thread must call.
2325 * @prev: the thread we just switched away from.
2326 */
722a9f92 2327asmlinkage __visible void schedule_tail(struct task_struct *prev)
1da177e4
LT
2328 __releases(rq->lock)
2329{
1a43a14a 2330 struct rq *rq;
da19ab51 2331
1a43a14a
ON
2332 /* finish_task_switch() drops rq->lock and enables preemtion */
2333 preempt_disable();
dfa50b60 2334 rq = finish_task_switch(prev);
3f029d3c 2335 post_schedule(rq);
1a43a14a 2336 preempt_enable();
70b97a7f 2337
1da177e4 2338 if (current->set_child_tid)
b488893a 2339 put_user(task_pid_vnr(current), current->set_child_tid);
1da177e4
LT
2340}
2341
2342/*
dfa50b60 2343 * context_switch - switch to the new MM and the new thread's register state.
1da177e4 2344 */
dfa50b60 2345static inline struct rq *
70b97a7f 2346context_switch(struct rq *rq, struct task_struct *prev,
36c8b586 2347 struct task_struct *next)
1da177e4 2348{
dd41f596 2349 struct mm_struct *mm, *oldmm;
1da177e4 2350
e107be36 2351 prepare_task_switch(rq, prev, next);
fe4b04fa 2352
dd41f596
IM
2353 mm = next->mm;
2354 oldmm = prev->active_mm;
9226d125
ZA
2355 /*
2356 * For paravirt, this is coupled with an exit in switch_to to
2357 * combine the page table reload and the switch backend into
2358 * one hypercall.
2359 */
224101ed 2360 arch_start_context_switch(prev);
9226d125 2361
31915ab4 2362 if (!mm) {
1da177e4
LT
2363 next->active_mm = oldmm;
2364 atomic_inc(&oldmm->mm_count);
2365 enter_lazy_tlb(oldmm, next);
2366 } else
2367 switch_mm(oldmm, mm, next);
2368
31915ab4 2369 if (!prev->mm) {
1da177e4 2370 prev->active_mm = NULL;
1da177e4
LT
2371 rq->prev_mm = oldmm;
2372 }
3a5f5e48
IM
2373 /*
2374 * Since the runqueue lock will be released by the next
2375 * task (which is an invalid locking op but in the case
2376 * of the scheduler it's an obvious special-case), so we
2377 * do an early lockdep release here:
2378 */
8a25d5de 2379 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
1da177e4 2380
91d1aa43 2381 context_tracking_task_switch(prev, next);
1da177e4
LT
2382 /* Here we just switch the register state and the stack. */
2383 switch_to(prev, next, prev);
dd41f596 2384 barrier();
dfa50b60
ON
2385
2386 return finish_task_switch(prev);
1da177e4
LT
2387}
2388
2389/*
1c3e8264 2390 * nr_running and nr_context_switches:
1da177e4
LT
2391 *
2392 * externally visible scheduler statistics: current number of runnable
1c3e8264 2393 * threads, total number of context switches performed since bootup.
1da177e4
LT
2394 */
2395unsigned long nr_running(void)
2396{
2397 unsigned long i, sum = 0;
2398
2399 for_each_online_cpu(i)
2400 sum += cpu_rq(i)->nr_running;
2401
2402 return sum;
f711f609 2403}
1da177e4 2404
2ee507c4
TC
2405/*
2406 * Check if only the current task is running on the cpu.
2407 */
2408bool single_task_running(void)
2409{
2410 if (cpu_rq(smp_processor_id())->nr_running == 1)
2411 return true;
2412 else
2413 return false;
2414}
2415EXPORT_SYMBOL(single_task_running);
2416
1da177e4 2417unsigned long long nr_context_switches(void)
46cb4b7c 2418{
cc94abfc
SR
2419 int i;
2420 unsigned long long sum = 0;
46cb4b7c 2421
0a945022 2422 for_each_possible_cpu(i)
1da177e4 2423 sum += cpu_rq(i)->nr_switches;
46cb4b7c 2424
1da177e4
LT
2425 return sum;
2426}
483b4ee6 2427
1da177e4
LT
2428unsigned long nr_iowait(void)
2429{
2430 unsigned long i, sum = 0;
483b4ee6 2431
0a945022 2432 for_each_possible_cpu(i)
1da177e4 2433 sum += atomic_read(&cpu_rq(i)->nr_iowait);
46cb4b7c 2434
1da177e4
LT
2435 return sum;
2436}
483b4ee6 2437
8c215bd3 2438unsigned long nr_iowait_cpu(int cpu)
69d25870 2439{
8c215bd3 2440 struct rq *this = cpu_rq(cpu);
69d25870
AV
2441 return atomic_read(&this->nr_iowait);
2442}
46cb4b7c 2443
372ba8cb
MG
2444void get_iowait_load(unsigned long *nr_waiters, unsigned long *load)
2445{
3289bdb4
PZ
2446 struct rq *rq = this_rq();
2447 *nr_waiters = atomic_read(&rq->nr_iowait);
2448 *load = rq->load.weight;
372ba8cb
MG
2449}
2450
dd41f596 2451#ifdef CONFIG_SMP
8a0be9ef 2452
46cb4b7c 2453/*
38022906
PZ
2454 * sched_exec - execve() is a valuable balancing opportunity, because at
2455 * this point the task has the smallest effective memory and cache footprint.
46cb4b7c 2456 */
38022906 2457void sched_exec(void)
46cb4b7c 2458{
38022906 2459 struct task_struct *p = current;
1da177e4 2460 unsigned long flags;
0017d735 2461 int dest_cpu;
46cb4b7c 2462
8f42ced9 2463 raw_spin_lock_irqsave(&p->pi_lock, flags);
ac66f547 2464 dest_cpu = p->sched_class->select_task_rq(p, task_cpu(p), SD_BALANCE_EXEC, 0);
0017d735
PZ
2465 if (dest_cpu == smp_processor_id())
2466 goto unlock;
38022906 2467
8f42ced9 2468 if (likely(cpu_active(dest_cpu))) {
969c7921 2469 struct migration_arg arg = { p, dest_cpu };
46cb4b7c 2470
8f42ced9
PZ
2471 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
2472 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
1da177e4
LT
2473 return;
2474 }
0017d735 2475unlock:
8f42ced9 2476 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
1da177e4 2477}
dd41f596 2478
1da177e4
LT
2479#endif
2480
1da177e4 2481DEFINE_PER_CPU(struct kernel_stat, kstat);
3292beb3 2482DEFINE_PER_CPU(struct kernel_cpustat, kernel_cpustat);
1da177e4
LT
2483
2484EXPORT_PER_CPU_SYMBOL(kstat);
3292beb3 2485EXPORT_PER_CPU_SYMBOL(kernel_cpustat);
1da177e4 2486
c5f8d995
HS
2487/*
2488 * Return accounted runtime for the task.
2489 * In case the task is currently running, return the runtime plus current's
2490 * pending runtime that have not been accounted yet.
2491 */
2492unsigned long long task_sched_runtime(struct task_struct *p)
2493{
2494 unsigned long flags;
2495 struct rq *rq;
6e998916 2496 u64 ns;
c5f8d995 2497
911b2898
PZ
2498#if defined(CONFIG_64BIT) && defined(CONFIG_SMP)
2499 /*
2500 * 64-bit doesn't need locks to atomically read a 64bit value.
2501 * So we have a optimization chance when the task's delta_exec is 0.
2502 * Reading ->on_cpu is racy, but this is ok.
2503 *
2504 * If we race with it leaving cpu, we'll take a lock. So we're correct.
2505 * If we race with it entering cpu, unaccounted time is 0. This is
2506 * indistinguishable from the read occurring a few cycles earlier.
4036ac15
MG
2507 * If we see ->on_cpu without ->on_rq, the task is leaving, and has
2508 * been accounted, so we're correct here as well.
911b2898 2509 */
da0c1e65 2510 if (!p->on_cpu || !task_on_rq_queued(p))
911b2898
PZ
2511 return p->se.sum_exec_runtime;
2512#endif
2513
c5f8d995 2514 rq = task_rq_lock(p, &flags);
6e998916
SG
2515 /*
2516 * Must be ->curr _and_ ->on_rq. If dequeued, we would
2517 * project cycles that may never be accounted to this
2518 * thread, breaking clock_gettime().
2519 */
2520 if (task_current(rq, p) && task_on_rq_queued(p)) {
2521 update_rq_clock(rq);
2522 p->sched_class->update_curr(rq);
2523 }
2524 ns = p->se.sum_exec_runtime;
0122ec5b 2525 task_rq_unlock(rq, p, &flags);
c5f8d995
HS
2526
2527 return ns;
2528}
48f24c4d 2529
7835b98b
CL
2530/*
2531 * This function gets called by the timer code, with HZ frequency.
2532 * We call it with interrupts disabled.
7835b98b
CL
2533 */
2534void scheduler_tick(void)
2535{
7835b98b
CL
2536 int cpu = smp_processor_id();
2537 struct rq *rq = cpu_rq(cpu);
dd41f596 2538 struct task_struct *curr = rq->curr;
3e51f33f
PZ
2539
2540 sched_clock_tick();
dd41f596 2541
05fa785c 2542 raw_spin_lock(&rq->lock);
3e51f33f 2543 update_rq_clock(rq);
fa85ae24 2544 curr->sched_class->task_tick(rq, curr, 0);
83dfd523 2545 update_cpu_load_active(rq);
3289bdb4 2546 calc_global_load_tick(rq);
05fa785c 2547 raw_spin_unlock(&rq->lock);
7835b98b 2548
e9d2b064 2549 perf_event_task_tick();
e220d2dc 2550
e418e1c2 2551#ifdef CONFIG_SMP
6eb57e0d 2552 rq->idle_balance = idle_cpu(cpu);
7caff66f 2553 trigger_load_balance(rq);
e418e1c2 2554#endif
265f22a9 2555 rq_last_tick_reset(rq);
1da177e4
LT
2556}
2557
265f22a9
FW
2558#ifdef CONFIG_NO_HZ_FULL
2559/**
2560 * scheduler_tick_max_deferment
2561 *
2562 * Keep at least one tick per second when a single
2563 * active task is running because the scheduler doesn't
2564 * yet completely support full dynticks environment.
2565 *
2566 * This makes sure that uptime, CFS vruntime, load
2567 * balancing, etc... continue to move forward, even
2568 * with a very low granularity.
e69f6186
YB
2569 *
2570 * Return: Maximum deferment in nanoseconds.
265f22a9
FW
2571 */
2572u64 scheduler_tick_max_deferment(void)
2573{
2574 struct rq *rq = this_rq();
316c1608 2575 unsigned long next, now = READ_ONCE(jiffies);
265f22a9
FW
2576
2577 next = rq->last_sched_tick + HZ;
2578
2579 if (time_before_eq(next, now))
2580 return 0;
2581
8fe8ff09 2582 return jiffies_to_nsecs(next - now);
1da177e4 2583}
265f22a9 2584#endif
1da177e4 2585
132380a0 2586notrace unsigned long get_parent_ip(unsigned long addr)
6cd8a4bb
SR
2587{
2588 if (in_lock_functions(addr)) {
2589 addr = CALLER_ADDR2;
2590 if (in_lock_functions(addr))
2591 addr = CALLER_ADDR3;
2592 }
2593 return addr;
2594}
1da177e4 2595
7e49fcce
SR
2596#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
2597 defined(CONFIG_PREEMPT_TRACER))
2598
edafe3a5 2599void preempt_count_add(int val)
1da177e4 2600{
6cd8a4bb 2601#ifdef CONFIG_DEBUG_PREEMPT
1da177e4
LT
2602 /*
2603 * Underflow?
2604 */
9a11b49a
IM
2605 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
2606 return;
6cd8a4bb 2607#endif
bdb43806 2608 __preempt_count_add(val);
6cd8a4bb 2609#ifdef CONFIG_DEBUG_PREEMPT
1da177e4
LT
2610 /*
2611 * Spinlock count overflowing soon?
2612 */
33859f7f
MOS
2613 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
2614 PREEMPT_MASK - 10);
6cd8a4bb 2615#endif
8f47b187
TG
2616 if (preempt_count() == val) {
2617 unsigned long ip = get_parent_ip(CALLER_ADDR1);
2618#ifdef CONFIG_DEBUG_PREEMPT
2619 current->preempt_disable_ip = ip;
2620#endif
2621 trace_preempt_off(CALLER_ADDR0, ip);
2622 }
1da177e4 2623}
bdb43806 2624EXPORT_SYMBOL(preempt_count_add);
edafe3a5 2625NOKPROBE_SYMBOL(preempt_count_add);
1da177e4 2626
edafe3a5 2627void preempt_count_sub(int val)
1da177e4 2628{
6cd8a4bb 2629#ifdef CONFIG_DEBUG_PREEMPT
1da177e4
LT
2630 /*
2631 * Underflow?
2632 */
01e3eb82 2633 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
9a11b49a 2634 return;
1da177e4
LT
2635 /*
2636 * Is the spinlock portion underflowing?
2637 */
9a11b49a
IM
2638 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
2639 !(preempt_count() & PREEMPT_MASK)))
2640 return;
6cd8a4bb 2641#endif
9a11b49a 2642
6cd8a4bb
SR
2643 if (preempt_count() == val)
2644 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
bdb43806 2645 __preempt_count_sub(val);
1da177e4 2646}
bdb43806 2647EXPORT_SYMBOL(preempt_count_sub);
edafe3a5 2648NOKPROBE_SYMBOL(preempt_count_sub);
1da177e4
LT
2649
2650#endif
2651
2652/*
dd41f596 2653 * Print scheduling while atomic bug:
1da177e4 2654 */
dd41f596 2655static noinline void __schedule_bug(struct task_struct *prev)
1da177e4 2656{
664dfa65
DJ
2657 if (oops_in_progress)
2658 return;
2659
3df0fc5b
PZ
2660 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
2661 prev->comm, prev->pid, preempt_count());
838225b4 2662
dd41f596 2663 debug_show_held_locks(prev);
e21f5b15 2664 print_modules();
dd41f596
IM
2665 if (irqs_disabled())
2666 print_irqtrace_events(prev);
8f47b187
TG
2667#ifdef CONFIG_DEBUG_PREEMPT
2668 if (in_atomic_preempt_off()) {
2669 pr_err("Preemption disabled at:");
2670 print_ip_sym(current->preempt_disable_ip);
2671 pr_cont("\n");
2672 }
2673#endif
6135fc1e 2674 dump_stack();
373d4d09 2675 add_taint(TAINT_WARN, LOCKDEP_STILL_OK);
dd41f596 2676}
1da177e4 2677
dd41f596
IM
2678/*
2679 * Various schedule()-time debugging checks and statistics:
2680 */
2681static inline void schedule_debug(struct task_struct *prev)
2682{
0d9e2632
AT
2683#ifdef CONFIG_SCHED_STACK_END_CHECK
2684 BUG_ON(unlikely(task_stack_end_corrupted(prev)));
2685#endif
1da177e4 2686 /*
41a2d6cf 2687 * Test if we are atomic. Since do_exit() needs to call into
192301e7
ON
2688 * schedule() atomically, we ignore that path. Otherwise whine
2689 * if we are scheduling when we should not.
1da177e4 2690 */
192301e7 2691 if (unlikely(in_atomic_preempt_off() && prev->state != TASK_DEAD))
dd41f596 2692 __schedule_bug(prev);
b3fbab05 2693 rcu_sleep_check();
dd41f596 2694
1da177e4
LT
2695 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2696
2d72376b 2697 schedstat_inc(this_rq(), sched_count);
dd41f596
IM
2698}
2699
2700/*
2701 * Pick up the highest-prio task:
2702 */
2703static inline struct task_struct *
606dba2e 2704pick_next_task(struct rq *rq, struct task_struct *prev)
dd41f596 2705{
37e117c0 2706 const struct sched_class *class = &fair_sched_class;
dd41f596 2707 struct task_struct *p;
1da177e4
LT
2708
2709 /*
dd41f596
IM
2710 * Optimization: we know that if all tasks are in
2711 * the fair class we can call that function directly:
1da177e4 2712 */
37e117c0 2713 if (likely(prev->sched_class == class &&
38033c37 2714 rq->nr_running == rq->cfs.h_nr_running)) {
606dba2e 2715 p = fair_sched_class.pick_next_task(rq, prev);
6ccdc84b
PZ
2716 if (unlikely(p == RETRY_TASK))
2717 goto again;
2718
2719 /* assumes fair_sched_class->next == idle_sched_class */
2720 if (unlikely(!p))
2721 p = idle_sched_class.pick_next_task(rq, prev);
2722
2723 return p;
1da177e4
LT
2724 }
2725
37e117c0 2726again:
34f971f6 2727 for_each_class(class) {
606dba2e 2728 p = class->pick_next_task(rq, prev);
37e117c0
PZ
2729 if (p) {
2730 if (unlikely(p == RETRY_TASK))
2731 goto again;
dd41f596 2732 return p;
37e117c0 2733 }
dd41f596 2734 }
34f971f6
PZ
2735
2736 BUG(); /* the idle class will always have a runnable task */
dd41f596 2737}
1da177e4 2738
dd41f596 2739/*
c259e01a 2740 * __schedule() is the main scheduler function.
edde96ea
PE
2741 *
2742 * The main means of driving the scheduler and thus entering this function are:
2743 *
2744 * 1. Explicit blocking: mutex, semaphore, waitqueue, etc.
2745 *
2746 * 2. TIF_NEED_RESCHED flag is checked on interrupt and userspace return
2747 * paths. For example, see arch/x86/entry_64.S.
2748 *
2749 * To drive preemption between tasks, the scheduler sets the flag in timer
2750 * interrupt handler scheduler_tick().
2751 *
2752 * 3. Wakeups don't really cause entry into schedule(). They add a
2753 * task to the run-queue and that's it.
2754 *
2755 * Now, if the new task added to the run-queue preempts the current
2756 * task, then the wakeup sets TIF_NEED_RESCHED and schedule() gets
2757 * called on the nearest possible occasion:
2758 *
2759 * - If the kernel is preemptible (CONFIG_PREEMPT=y):
2760 *
2761 * - in syscall or exception context, at the next outmost
2762 * preempt_enable(). (this might be as soon as the wake_up()'s
2763 * spin_unlock()!)
2764 *
2765 * - in IRQ context, return from interrupt-handler to
2766 * preemptible context
2767 *
2768 * - If the kernel is not preemptible (CONFIG_PREEMPT is not set)
2769 * then at the next:
2770 *
2771 * - cond_resched() call
2772 * - explicit schedule() call
2773 * - return from syscall or exception to user-space
2774 * - return from interrupt-handler to user-space
bfd9b2b5 2775 *
b30f0e3f 2776 * WARNING: must be called with preemption disabled!
dd41f596 2777 */
c259e01a 2778static void __sched __schedule(void)
dd41f596
IM
2779{
2780 struct task_struct *prev, *next;
67ca7bde 2781 unsigned long *switch_count;
dd41f596 2782 struct rq *rq;
31656519 2783 int cpu;
dd41f596 2784
dd41f596
IM
2785 cpu = smp_processor_id();
2786 rq = cpu_rq(cpu);
38200cf2 2787 rcu_note_context_switch();
dd41f596 2788 prev = rq->curr;
dd41f596 2789
dd41f596 2790 schedule_debug(prev);
1da177e4 2791
31656519 2792 if (sched_feat(HRTICK))
f333fdc9 2793 hrtick_clear(rq);
8f4d37ec 2794
e0acd0a6
ON
2795 /*
2796 * Make sure that signal_pending_state()->signal_pending() below
2797 * can't be reordered with __set_current_state(TASK_INTERRUPTIBLE)
2798 * done by the caller to avoid the race with signal_wake_up().
2799 */
2800 smp_mb__before_spinlock();
05fa785c 2801 raw_spin_lock_irq(&rq->lock);
1da177e4 2802
9edfbfed
PZ
2803 rq->clock_skip_update <<= 1; /* promote REQ to ACT */
2804
246d86b5 2805 switch_count = &prev->nivcsw;
1da177e4 2806 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
21aa9af0 2807 if (unlikely(signal_pending_state(prev->state, prev))) {
1da177e4 2808 prev->state = TASK_RUNNING;
21aa9af0 2809 } else {
2acca55e
PZ
2810 deactivate_task(rq, prev, DEQUEUE_SLEEP);
2811 prev->on_rq = 0;
2812
21aa9af0 2813 /*
2acca55e
PZ
2814 * If a worker went to sleep, notify and ask workqueue
2815 * whether it wants to wake up a task to maintain
2816 * concurrency.
21aa9af0
TH
2817 */
2818 if (prev->flags & PF_WQ_WORKER) {
2819 struct task_struct *to_wakeup;
2820
2821 to_wakeup = wq_worker_sleeping(prev, cpu);
2822 if (to_wakeup)
2823 try_to_wake_up_local(to_wakeup);
2824 }
21aa9af0 2825 }
dd41f596 2826 switch_count = &prev->nvcsw;
1da177e4
LT
2827 }
2828
9edfbfed 2829 if (task_on_rq_queued(prev))
606dba2e
PZ
2830 update_rq_clock(rq);
2831
2832 next = pick_next_task(rq, prev);
f26f9aff 2833 clear_tsk_need_resched(prev);
f27dde8d 2834 clear_preempt_need_resched();
9edfbfed 2835 rq->clock_skip_update = 0;
1da177e4 2836
1da177e4 2837 if (likely(prev != next)) {
1da177e4
LT
2838 rq->nr_switches++;
2839 rq->curr = next;
2840 ++*switch_count;
2841
dfa50b60
ON
2842 rq = context_switch(rq, prev, next); /* unlocks the rq */
2843 cpu = cpu_of(rq);
1da177e4 2844 } else
05fa785c 2845 raw_spin_unlock_irq(&rq->lock);
1da177e4 2846
3f029d3c 2847 post_schedule(rq);
1da177e4 2848}
c259e01a 2849
9c40cef2
TG
2850static inline void sched_submit_work(struct task_struct *tsk)
2851{
3c7d5184 2852 if (!tsk->state || tsk_is_pi_blocked(tsk))
9c40cef2
TG
2853 return;
2854 /*
2855 * If we are going to sleep and we have plugged IO queued,
2856 * make sure to submit it to avoid deadlocks.
2857 */
2858 if (blk_needs_flush_plug(tsk))
2859 blk_schedule_flush_plug(tsk);
2860}
2861
722a9f92 2862asmlinkage __visible void __sched schedule(void)
c259e01a 2863{
9c40cef2
TG
2864 struct task_struct *tsk = current;
2865
2866 sched_submit_work(tsk);
bfd9b2b5 2867 do {
b30f0e3f 2868 preempt_disable();
bfd9b2b5 2869 __schedule();
b30f0e3f 2870 sched_preempt_enable_no_resched();
bfd9b2b5 2871 } while (need_resched());
c259e01a 2872}
1da177e4
LT
2873EXPORT_SYMBOL(schedule);
2874
91d1aa43 2875#ifdef CONFIG_CONTEXT_TRACKING
722a9f92 2876asmlinkage __visible void __sched schedule_user(void)
20ab65e3
FW
2877{
2878 /*
2879 * If we come here after a random call to set_need_resched(),
2880 * or we have been woken up remotely but the IPI has not yet arrived,
2881 * we haven't yet exited the RCU idle mode. Do it here manually until
2882 * we find a better solution.
7cc78f8f
AL
2883 *
2884 * NB: There are buggy callers of this function. Ideally we
c467ea76 2885 * should warn if prev_state != CONTEXT_USER, but that will trigger
7cc78f8f 2886 * too frequently to make sense yet.
20ab65e3 2887 */
7cc78f8f 2888 enum ctx_state prev_state = exception_enter();
20ab65e3 2889 schedule();
7cc78f8f 2890 exception_exit(prev_state);
20ab65e3
FW
2891}
2892#endif
2893
c5491ea7
TG
2894/**
2895 * schedule_preempt_disabled - called with preemption disabled
2896 *
2897 * Returns with preemption disabled. Note: preempt_count must be 1
2898 */
2899void __sched schedule_preempt_disabled(void)
2900{
ba74c144 2901 sched_preempt_enable_no_resched();
c5491ea7
TG
2902 schedule();
2903 preempt_disable();
2904}
2905
06b1f808 2906static void __sched notrace preempt_schedule_common(void)
a18b5d01
FW
2907{
2908 do {
b30f0e3f 2909 preempt_active_enter();
a18b5d01 2910 __schedule();
b30f0e3f 2911 preempt_active_exit();
a18b5d01
FW
2912
2913 /*
2914 * Check again in case we missed a preemption opportunity
2915 * between schedule and now.
2916 */
a18b5d01
FW
2917 } while (need_resched());
2918}
2919
1da177e4
LT
2920#ifdef CONFIG_PREEMPT
2921/*
2ed6e34f 2922 * this is the entry point to schedule() from in-kernel preemption
41a2d6cf 2923 * off of preempt_enable. Kernel preemptions off return from interrupt
1da177e4
LT
2924 * occur there and call schedule directly.
2925 */
722a9f92 2926asmlinkage __visible void __sched notrace preempt_schedule(void)
1da177e4 2927{
1da177e4
LT
2928 /*
2929 * If there is a non-zero preempt_count or interrupts are disabled,
41a2d6cf 2930 * we do not want to preempt the current task. Just return..
1da177e4 2931 */
fbb00b56 2932 if (likely(!preemptible()))
1da177e4
LT
2933 return;
2934
a18b5d01 2935 preempt_schedule_common();
1da177e4 2936}
376e2424 2937NOKPROBE_SYMBOL(preempt_schedule);
1da177e4 2938EXPORT_SYMBOL(preempt_schedule);
009f60e2 2939
009f60e2 2940/**
4eaca0a8 2941 * preempt_schedule_notrace - preempt_schedule called by tracing
009f60e2
ON
2942 *
2943 * The tracing infrastructure uses preempt_enable_notrace to prevent
2944 * recursion and tracing preempt enabling caused by the tracing
2945 * infrastructure itself. But as tracing can happen in areas coming
2946 * from userspace or just about to enter userspace, a preempt enable
2947 * can occur before user_exit() is called. This will cause the scheduler
2948 * to be called when the system is still in usermode.
2949 *
2950 * To prevent this, the preempt_enable_notrace will use this function
2951 * instead of preempt_schedule() to exit user context if needed before
2952 * calling the scheduler.
2953 */
4eaca0a8 2954asmlinkage __visible void __sched notrace preempt_schedule_notrace(void)
009f60e2
ON
2955{
2956 enum ctx_state prev_ctx;
2957
2958 if (likely(!preemptible()))
2959 return;
2960
2961 do {
be690035
FW
2962 /*
2963 * Use raw __prempt_count() ops that don't call function.
2964 * We can't call functions before disabling preemption which
2965 * disarm preemption tracing recursions.
2966 */
2967 __preempt_count_add(PREEMPT_ACTIVE + PREEMPT_DISABLE_OFFSET);
2968 barrier();
009f60e2
ON
2969 /*
2970 * Needs preempt disabled in case user_exit() is traced
2971 * and the tracer calls preempt_enable_notrace() causing
2972 * an infinite recursion.
2973 */
2974 prev_ctx = exception_enter();
2975 __schedule();
2976 exception_exit(prev_ctx);
2977
be690035
FW
2978 barrier();
2979 __preempt_count_sub(PREEMPT_ACTIVE + PREEMPT_DISABLE_OFFSET);
009f60e2
ON
2980 } while (need_resched());
2981}
4eaca0a8 2982EXPORT_SYMBOL_GPL(preempt_schedule_notrace);
009f60e2 2983
32e475d7 2984#endif /* CONFIG_PREEMPT */
1da177e4
LT
2985
2986/*
2ed6e34f 2987 * this is the entry point to schedule() from kernel preemption
1da177e4
LT
2988 * off of irq context.
2989 * Note, that this is called and return with irqs disabled. This will
2990 * protect us against recursive calling from irq.
2991 */
722a9f92 2992asmlinkage __visible void __sched preempt_schedule_irq(void)
1da177e4 2993{
b22366cd 2994 enum ctx_state prev_state;
6478d880 2995
2ed6e34f 2996 /* Catch callers which need to be fixed */
f27dde8d 2997 BUG_ON(preempt_count() || !irqs_disabled());
1da177e4 2998
b22366cd
FW
2999 prev_state = exception_enter();
3000
3a5c359a 3001 do {
b30f0e3f 3002 preempt_active_enter();
3a5c359a 3003 local_irq_enable();
c259e01a 3004 __schedule();
3a5c359a 3005 local_irq_disable();
b30f0e3f 3006 preempt_active_exit();
5ed0cec0 3007 } while (need_resched());
b22366cd
FW
3008
3009 exception_exit(prev_state);
1da177e4
LT
3010}
3011
63859d4f 3012int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
95cdf3b7 3013 void *key)
1da177e4 3014{
63859d4f 3015 return try_to_wake_up(curr->private, mode, wake_flags);
1da177e4 3016}
1da177e4
LT
3017EXPORT_SYMBOL(default_wake_function);
3018
b29739f9
IM
3019#ifdef CONFIG_RT_MUTEXES
3020
3021/*
3022 * rt_mutex_setprio - set the current priority of a task
3023 * @p: task
3024 * @prio: prio value (kernel-internal form)
3025 *
3026 * This function changes the 'effective' priority of a task. It does
3027 * not touch ->normal_prio like __setscheduler().
3028 *
c365c292
TG
3029 * Used by the rt_mutex code to implement priority inheritance
3030 * logic. Call site only calls if the priority of the task changed.
b29739f9 3031 */
36c8b586 3032void rt_mutex_setprio(struct task_struct *p, int prio)
b29739f9 3033{
da0c1e65 3034 int oldprio, queued, running, enqueue_flag = 0;
70b97a7f 3035 struct rq *rq;
83ab0aa0 3036 const struct sched_class *prev_class;
b29739f9 3037
aab03e05 3038 BUG_ON(prio > MAX_PRIO);
b29739f9 3039
0122ec5b 3040 rq = __task_rq_lock(p);
b29739f9 3041
1c4dd99b
TG
3042 /*
3043 * Idle task boosting is a nono in general. There is one
3044 * exception, when PREEMPT_RT and NOHZ is active:
3045 *
3046 * The idle task calls get_next_timer_interrupt() and holds
3047 * the timer wheel base->lock on the CPU and another CPU wants
3048 * to access the timer (probably to cancel it). We can safely
3049 * ignore the boosting request, as the idle CPU runs this code
3050 * with interrupts disabled and will complete the lock
3051 * protected section without being interrupted. So there is no
3052 * real need to boost.
3053 */
3054 if (unlikely(p == rq->idle)) {
3055 WARN_ON(p != rq->curr);
3056 WARN_ON(p->pi_blocked_on);
3057 goto out_unlock;
3058 }
3059
a8027073 3060 trace_sched_pi_setprio(p, prio);
d5f9f942 3061 oldprio = p->prio;
83ab0aa0 3062 prev_class = p->sched_class;
da0c1e65 3063 queued = task_on_rq_queued(p);
051a1d1a 3064 running = task_current(rq, p);
da0c1e65 3065 if (queued)
69be72c1 3066 dequeue_task(rq, p, 0);
0e1f3483 3067 if (running)
f3cd1c4e 3068 put_prev_task(rq, p);
dd41f596 3069
2d3d891d
DF
3070 /*
3071 * Boosting condition are:
3072 * 1. -rt task is running and holds mutex A
3073 * --> -dl task blocks on mutex A
3074 *
3075 * 2. -dl task is running and holds mutex A
3076 * --> -dl task blocks on mutex A and could preempt the
3077 * running task
3078 */
3079 if (dl_prio(prio)) {
466af29b
ON
3080 struct task_struct *pi_task = rt_mutex_get_top_task(p);
3081 if (!dl_prio(p->normal_prio) ||
3082 (pi_task && dl_entity_preempt(&pi_task->dl, &p->dl))) {
2d3d891d
DF
3083 p->dl.dl_boosted = 1;
3084 p->dl.dl_throttled = 0;
3085 enqueue_flag = ENQUEUE_REPLENISH;
3086 } else
3087 p->dl.dl_boosted = 0;
aab03e05 3088 p->sched_class = &dl_sched_class;
2d3d891d
DF
3089 } else if (rt_prio(prio)) {
3090 if (dl_prio(oldprio))
3091 p->dl.dl_boosted = 0;
3092 if (oldprio < prio)
3093 enqueue_flag = ENQUEUE_HEAD;
dd41f596 3094 p->sched_class = &rt_sched_class;
2d3d891d
DF
3095 } else {
3096 if (dl_prio(oldprio))
3097 p->dl.dl_boosted = 0;
746db944
BS
3098 if (rt_prio(oldprio))
3099 p->rt.timeout = 0;
dd41f596 3100 p->sched_class = &fair_sched_class;
2d3d891d 3101 }
dd41f596 3102
b29739f9
IM
3103 p->prio = prio;
3104
0e1f3483
HS
3105 if (running)
3106 p->sched_class->set_curr_task(rq);
da0c1e65 3107 if (queued)
2d3d891d 3108 enqueue_task(rq, p, enqueue_flag);
cb469845 3109
da7a735e 3110 check_class_changed(rq, p, prev_class, oldprio);
1c4dd99b 3111out_unlock:
0122ec5b 3112 __task_rq_unlock(rq);
b29739f9 3113}
b29739f9 3114#endif
d50dde5a 3115
36c8b586 3116void set_user_nice(struct task_struct *p, long nice)
1da177e4 3117{
da0c1e65 3118 int old_prio, delta, queued;
1da177e4 3119 unsigned long flags;
70b97a7f 3120 struct rq *rq;
1da177e4 3121
75e45d51 3122 if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
1da177e4
LT
3123 return;
3124 /*
3125 * We have to be careful, if called from sys_setpriority(),
3126 * the task might be in the middle of scheduling on another CPU.
3127 */
3128 rq = task_rq_lock(p, &flags);
3129 /*
3130 * The RT priorities are set via sched_setscheduler(), but we still
3131 * allow the 'normal' nice value to be set - but as expected
3132 * it wont have any effect on scheduling until the task is
aab03e05 3133 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
1da177e4 3134 */
aab03e05 3135 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
1da177e4
LT
3136 p->static_prio = NICE_TO_PRIO(nice);
3137 goto out_unlock;
3138 }
da0c1e65
KT
3139 queued = task_on_rq_queued(p);
3140 if (queued)
69be72c1 3141 dequeue_task(rq, p, 0);
1da177e4 3142
1da177e4 3143 p->static_prio = NICE_TO_PRIO(nice);
2dd73a4f 3144 set_load_weight(p);
b29739f9
IM
3145 old_prio = p->prio;
3146 p->prio = effective_prio(p);
3147 delta = p->prio - old_prio;
1da177e4 3148
da0c1e65 3149 if (queued) {
371fd7e7 3150 enqueue_task(rq, p, 0);
1da177e4 3151 /*
d5f9f942
AM
3152 * If the task increased its priority or is running and
3153 * lowered its priority, then reschedule its CPU:
1da177e4 3154 */
d5f9f942 3155 if (delta < 0 || (delta > 0 && task_running(rq, p)))
8875125e 3156 resched_curr(rq);
1da177e4
LT
3157 }
3158out_unlock:
0122ec5b 3159 task_rq_unlock(rq, p, &flags);
1da177e4 3160}
1da177e4
LT
3161EXPORT_SYMBOL(set_user_nice);
3162
e43379f1
MM
3163/*
3164 * can_nice - check if a task can reduce its nice value
3165 * @p: task
3166 * @nice: nice value
3167 */
36c8b586 3168int can_nice(const struct task_struct *p, const int nice)
e43379f1 3169{
024f4747 3170 /* convert nice value [19,-20] to rlimit style value [1,40] */
7aa2c016 3171 int nice_rlim = nice_to_rlimit(nice);
48f24c4d 3172
78d7d407 3173 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
e43379f1
MM
3174 capable(CAP_SYS_NICE));
3175}
3176
1da177e4
LT
3177#ifdef __ARCH_WANT_SYS_NICE
3178
3179/*
3180 * sys_nice - change the priority of the current process.
3181 * @increment: priority increment
3182 *
3183 * sys_setpriority is a more generic, but much slower function that
3184 * does similar things.
3185 */
5add95d4 3186SYSCALL_DEFINE1(nice, int, increment)
1da177e4 3187{
48f24c4d 3188 long nice, retval;
1da177e4
LT
3189
3190 /*
3191 * Setpriority might change our priority at the same moment.
3192 * We don't have to worry. Conceptually one call occurs first
3193 * and we have a single winner.
3194 */
a9467fa3 3195 increment = clamp(increment, -NICE_WIDTH, NICE_WIDTH);
d0ea0268 3196 nice = task_nice(current) + increment;
1da177e4 3197
a9467fa3 3198 nice = clamp_val(nice, MIN_NICE, MAX_NICE);
e43379f1
MM
3199 if (increment < 0 && !can_nice(current, nice))
3200 return -EPERM;
3201
1da177e4
LT
3202 retval = security_task_setnice(current, nice);
3203 if (retval)
3204 return retval;
3205
3206 set_user_nice(current, nice);
3207 return 0;
3208}
3209
3210#endif
3211
3212/**
3213 * task_prio - return the priority value of a given task.
3214 * @p: the task in question.
3215 *
e69f6186 3216 * Return: The priority value as seen by users in /proc.
1da177e4
LT
3217 * RT tasks are offset by -200. Normal tasks are centered
3218 * around 0, value goes from -16 to +15.
3219 */
36c8b586 3220int task_prio(const struct task_struct *p)
1da177e4
LT
3221{
3222 return p->prio - MAX_RT_PRIO;
3223}
3224
1da177e4
LT
3225/**
3226 * idle_cpu - is a given cpu idle currently?
3227 * @cpu: the processor in question.
e69f6186
YB
3228 *
3229 * Return: 1 if the CPU is currently idle. 0 otherwise.
1da177e4
LT
3230 */
3231int idle_cpu(int cpu)
3232{
908a3283
TG
3233 struct rq *rq = cpu_rq(cpu);
3234
3235 if (rq->curr != rq->idle)
3236 return 0;
3237
3238 if (rq->nr_running)
3239 return 0;
3240
3241#ifdef CONFIG_SMP
3242 if (!llist_empty(&rq->wake_list))
3243 return 0;
3244#endif
3245
3246 return 1;
1da177e4
LT
3247}
3248
1da177e4
LT
3249/**
3250 * idle_task - return the idle task for a given cpu.
3251 * @cpu: the processor in question.
e69f6186
YB
3252 *
3253 * Return: The idle task for the cpu @cpu.
1da177e4 3254 */
36c8b586 3255struct task_struct *idle_task(int cpu)
1da177e4
LT
3256{
3257 return cpu_rq(cpu)->idle;
3258}
3259
3260/**
3261 * find_process_by_pid - find a process with a matching PID value.
3262 * @pid: the pid in question.
e69f6186
YB
3263 *
3264 * The task of @pid, if found. %NULL otherwise.
1da177e4 3265 */
a9957449 3266static struct task_struct *find_process_by_pid(pid_t pid)
1da177e4 3267{
228ebcbe 3268 return pid ? find_task_by_vpid(pid) : current;
1da177e4
LT
3269}
3270
aab03e05
DF
3271/*
3272 * This function initializes the sched_dl_entity of a newly becoming
3273 * SCHED_DEADLINE task.
3274 *
3275 * Only the static values are considered here, the actual runtime and the
3276 * absolute deadline will be properly calculated when the task is enqueued
3277 * for the first time with its new policy.
3278 */
3279static void
3280__setparam_dl(struct task_struct *p, const struct sched_attr *attr)
3281{
3282 struct sched_dl_entity *dl_se = &p->dl;
3283
aab03e05
DF
3284 dl_se->dl_runtime = attr->sched_runtime;
3285 dl_se->dl_deadline = attr->sched_deadline;
755378a4 3286 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline;
aab03e05 3287 dl_se->flags = attr->sched_flags;
332ac17e 3288 dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
40767b0d
PZ
3289
3290 /*
3291 * Changing the parameters of a task is 'tricky' and we're not doing
3292 * the correct thing -- also see task_dead_dl() and switched_from_dl().
3293 *
3294 * What we SHOULD do is delay the bandwidth release until the 0-lag
3295 * point. This would include retaining the task_struct until that time
3296 * and change dl_overflow() to not immediately decrement the current
3297 * amount.
3298 *
3299 * Instead we retain the current runtime/deadline and let the new
3300 * parameters take effect after the current reservation period lapses.
3301 * This is safe (albeit pessimistic) because the 0-lag point is always
3302 * before the current scheduling deadline.
3303 *
3304 * We can still have temporary overloads because we do not delay the
3305 * change in bandwidth until that time; so admission control is
3306 * not on the safe side. It does however guarantee tasks will never
3307 * consume more than promised.
3308 */
aab03e05
DF
3309}
3310
c13db6b1
SR
3311/*
3312 * sched_setparam() passes in -1 for its policy, to let the functions
3313 * it calls know not to change it.
3314 */
3315#define SETPARAM_POLICY -1
3316
c365c292
TG
3317static void __setscheduler_params(struct task_struct *p,
3318 const struct sched_attr *attr)
1da177e4 3319{
d50dde5a
DF
3320 int policy = attr->sched_policy;
3321
c13db6b1 3322 if (policy == SETPARAM_POLICY)
39fd8fd2
PZ
3323 policy = p->policy;
3324
1da177e4 3325 p->policy = policy;
d50dde5a 3326
aab03e05
DF
3327 if (dl_policy(policy))
3328 __setparam_dl(p, attr);
39fd8fd2 3329 else if (fair_policy(policy))
d50dde5a
DF
3330 p->static_prio = NICE_TO_PRIO(attr->sched_nice);
3331
39fd8fd2
PZ
3332 /*
3333 * __sched_setscheduler() ensures attr->sched_priority == 0 when
3334 * !rt_policy. Always setting this ensures that things like
3335 * getparam()/getattr() don't report silly values for !rt tasks.
3336 */
3337 p->rt_priority = attr->sched_priority;
383afd09 3338 p->normal_prio = normal_prio(p);
c365c292
TG
3339 set_load_weight(p);
3340}
39fd8fd2 3341
c365c292
TG
3342/* Actually do priority change: must hold pi & rq lock. */
3343static void __setscheduler(struct rq *rq, struct task_struct *p,
0782e63b 3344 const struct sched_attr *attr, bool keep_boost)
c365c292
TG
3345{
3346 __setscheduler_params(p, attr);
d50dde5a 3347
383afd09 3348 /*
0782e63b
TG
3349 * Keep a potential priority boosting if called from
3350 * sched_setscheduler().
383afd09 3351 */
0782e63b
TG
3352 if (keep_boost)
3353 p->prio = rt_mutex_get_effective_prio(p, normal_prio(p));
3354 else
3355 p->prio = normal_prio(p);
383afd09 3356
aab03e05
DF
3357 if (dl_prio(p->prio))
3358 p->sched_class = &dl_sched_class;
3359 else if (rt_prio(p->prio))
ffd44db5
PZ
3360 p->sched_class = &rt_sched_class;
3361 else
3362 p->sched_class = &fair_sched_class;
1da177e4 3363}
aab03e05
DF
3364
3365static void
3366__getparam_dl(struct task_struct *p, struct sched_attr *attr)
3367{
3368 struct sched_dl_entity *dl_se = &p->dl;
3369
3370 attr->sched_priority = p->rt_priority;
3371 attr->sched_runtime = dl_se->dl_runtime;
3372 attr->sched_deadline = dl_se->dl_deadline;
755378a4 3373 attr->sched_period = dl_se->dl_period;
aab03e05
DF
3374 attr->sched_flags = dl_se->flags;
3375}
3376
3377/*
3378 * This function validates the new parameters of a -deadline task.
3379 * We ask for the deadline not being zero, and greater or equal
755378a4 3380 * than the runtime, as well as the period of being zero or
332ac17e 3381 * greater than deadline. Furthermore, we have to be sure that
b0827819
JL
3382 * user parameters are above the internal resolution of 1us (we
3383 * check sched_runtime only since it is always the smaller one) and
3384 * below 2^63 ns (we have to check both sched_deadline and
3385 * sched_period, as the latter can be zero).
aab03e05
DF
3386 */
3387static bool
3388__checkparam_dl(const struct sched_attr *attr)
3389{
b0827819
JL
3390 /* deadline != 0 */
3391 if (attr->sched_deadline == 0)
3392 return false;
3393
3394 /*
3395 * Since we truncate DL_SCALE bits, make sure we're at least
3396 * that big.
3397 */
3398 if (attr->sched_runtime < (1ULL << DL_SCALE))
3399 return false;
3400
3401 /*
3402 * Since we use the MSB for wrap-around and sign issues, make
3403 * sure it's not set (mind that period can be equal to zero).
3404 */
3405 if (attr->sched_deadline & (1ULL << 63) ||
3406 attr->sched_period & (1ULL << 63))
3407 return false;
3408
3409 /* runtime <= deadline <= period (if period != 0) */
3410 if ((attr->sched_period != 0 &&
3411 attr->sched_period < attr->sched_deadline) ||
3412 attr->sched_deadline < attr->sched_runtime)
3413 return false;
3414
3415 return true;
aab03e05
DF
3416}
3417
c69e8d9c
DH
3418/*
3419 * check the target process has a UID that matches the current process's
3420 */
3421static bool check_same_owner(struct task_struct *p)
3422{
3423 const struct cred *cred = current_cred(), *pcred;
3424 bool match;
3425
3426 rcu_read_lock();
3427 pcred = __task_cred(p);
9c806aa0
EB
3428 match = (uid_eq(cred->euid, pcred->euid) ||
3429 uid_eq(cred->euid, pcred->uid));
c69e8d9c
DH
3430 rcu_read_unlock();
3431 return match;
3432}
3433
75381608
WL
3434static bool dl_param_changed(struct task_struct *p,
3435 const struct sched_attr *attr)
3436{
3437 struct sched_dl_entity *dl_se = &p->dl;
3438
3439 if (dl_se->dl_runtime != attr->sched_runtime ||
3440 dl_se->dl_deadline != attr->sched_deadline ||
3441 dl_se->dl_period != attr->sched_period ||
3442 dl_se->flags != attr->sched_flags)
3443 return true;
3444
3445 return false;
3446}
3447
d50dde5a
DF
3448static int __sched_setscheduler(struct task_struct *p,
3449 const struct sched_attr *attr,
3450 bool user)
1da177e4 3451{
383afd09
SR
3452 int newprio = dl_policy(attr->sched_policy) ? MAX_DL_PRIO - 1 :
3453 MAX_RT_PRIO - 1 - attr->sched_priority;
da0c1e65 3454 int retval, oldprio, oldpolicy = -1, queued, running;
0782e63b 3455 int new_effective_prio, policy = attr->sched_policy;
1da177e4 3456 unsigned long flags;
83ab0aa0 3457 const struct sched_class *prev_class;
70b97a7f 3458 struct rq *rq;
ca94c442 3459 int reset_on_fork;
1da177e4 3460
66e5393a
SR
3461 /* may grab non-irq protected spin_locks */
3462 BUG_ON(in_interrupt());
1da177e4
LT
3463recheck:
3464 /* double check policy once rq lock held */
ca94c442
LP
3465 if (policy < 0) {
3466 reset_on_fork = p->sched_reset_on_fork;
1da177e4 3467 policy = oldpolicy = p->policy;
ca94c442 3468 } else {
7479f3c9 3469 reset_on_fork = !!(attr->sched_flags & SCHED_FLAG_RESET_ON_FORK);
ca94c442 3470
aab03e05
DF
3471 if (policy != SCHED_DEADLINE &&
3472 policy != SCHED_FIFO && policy != SCHED_RR &&
ca94c442
LP
3473 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
3474 policy != SCHED_IDLE)
3475 return -EINVAL;
3476 }
3477
7479f3c9
PZ
3478 if (attr->sched_flags & ~(SCHED_FLAG_RESET_ON_FORK))
3479 return -EINVAL;
3480
1da177e4
LT
3481 /*
3482 * Valid priorities for SCHED_FIFO and SCHED_RR are
dd41f596
IM
3483 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
3484 * SCHED_BATCH and SCHED_IDLE is 0.
1da177e4 3485 */
0bb040a4 3486 if ((p->mm && attr->sched_priority > MAX_USER_RT_PRIO-1) ||
d50dde5a 3487 (!p->mm && attr->sched_priority > MAX_RT_PRIO-1))
1da177e4 3488 return -EINVAL;
aab03e05
DF
3489 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
3490 (rt_policy(policy) != (attr->sched_priority != 0)))
1da177e4
LT
3491 return -EINVAL;
3492
37e4ab3f
OC
3493 /*
3494 * Allow unprivileged RT tasks to decrease priority:
3495 */
961ccddd 3496 if (user && !capable(CAP_SYS_NICE)) {
d50dde5a 3497 if (fair_policy(policy)) {
d0ea0268 3498 if (attr->sched_nice < task_nice(p) &&
eaad4513 3499 !can_nice(p, attr->sched_nice))
d50dde5a
DF
3500 return -EPERM;
3501 }
3502
e05606d3 3503 if (rt_policy(policy)) {
a44702e8
ON
3504 unsigned long rlim_rtprio =
3505 task_rlimit(p, RLIMIT_RTPRIO);
8dc3e909
ON
3506
3507 /* can't set/change the rt policy */
3508 if (policy != p->policy && !rlim_rtprio)
3509 return -EPERM;
3510
3511 /* can't increase priority */
d50dde5a
DF
3512 if (attr->sched_priority > p->rt_priority &&
3513 attr->sched_priority > rlim_rtprio)
8dc3e909
ON
3514 return -EPERM;
3515 }
c02aa73b 3516
d44753b8
JL
3517 /*
3518 * Can't set/change SCHED_DEADLINE policy at all for now
3519 * (safest behavior); in the future we would like to allow
3520 * unprivileged DL tasks to increase their relative deadline
3521 * or reduce their runtime (both ways reducing utilization)
3522 */
3523 if (dl_policy(policy))
3524 return -EPERM;
3525
dd41f596 3526 /*
c02aa73b
DH
3527 * Treat SCHED_IDLE as nice 20. Only allow a switch to
3528 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
dd41f596 3529 */
c02aa73b 3530 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
d0ea0268 3531 if (!can_nice(p, task_nice(p)))
c02aa73b
DH
3532 return -EPERM;
3533 }
5fe1d75f 3534
37e4ab3f 3535 /* can't change other user's priorities */
c69e8d9c 3536 if (!check_same_owner(p))
37e4ab3f 3537 return -EPERM;
ca94c442
LP
3538
3539 /* Normal users shall not reset the sched_reset_on_fork flag */
3540 if (p->sched_reset_on_fork && !reset_on_fork)
3541 return -EPERM;
37e4ab3f 3542 }
1da177e4 3543
725aad24 3544 if (user) {
b0ae1981 3545 retval = security_task_setscheduler(p);
725aad24
JF
3546 if (retval)
3547 return retval;
3548 }
3549
b29739f9
IM
3550 /*
3551 * make sure no PI-waiters arrive (or leave) while we are
3552 * changing the priority of the task:
0122ec5b 3553 *
25985edc 3554 * To be able to change p->policy safely, the appropriate
1da177e4
LT
3555 * runqueue lock must be held.
3556 */
0122ec5b 3557 rq = task_rq_lock(p, &flags);
dc61b1d6 3558
34f971f6
PZ
3559 /*
3560 * Changing the policy of the stop threads its a very bad idea
3561 */
3562 if (p == rq->stop) {
0122ec5b 3563 task_rq_unlock(rq, p, &flags);
34f971f6
PZ
3564 return -EINVAL;
3565 }
3566
a51e9198 3567 /*
d6b1e911
TG
3568 * If not changing anything there's no need to proceed further,
3569 * but store a possible modification of reset_on_fork.
a51e9198 3570 */
d50dde5a 3571 if (unlikely(policy == p->policy)) {
d0ea0268 3572 if (fair_policy(policy) && attr->sched_nice != task_nice(p))
d50dde5a
DF
3573 goto change;
3574 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
3575 goto change;
75381608 3576 if (dl_policy(policy) && dl_param_changed(p, attr))
aab03e05 3577 goto change;
d50dde5a 3578
d6b1e911 3579 p->sched_reset_on_fork = reset_on_fork;
45afb173 3580 task_rq_unlock(rq, p, &flags);
a51e9198
DF
3581 return 0;
3582 }
d50dde5a 3583change:
a51e9198 3584
dc61b1d6 3585 if (user) {
332ac17e 3586#ifdef CONFIG_RT_GROUP_SCHED
dc61b1d6
PZ
3587 /*
3588 * Do not allow realtime tasks into groups that have no runtime
3589 * assigned.
3590 */
3591 if (rt_bandwidth_enabled() && rt_policy(policy) &&
f4493771
MG
3592 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
3593 !task_group_is_autogroup(task_group(p))) {
0122ec5b 3594 task_rq_unlock(rq, p, &flags);
dc61b1d6
PZ
3595 return -EPERM;
3596 }
dc61b1d6 3597#endif
332ac17e
DF
3598#ifdef CONFIG_SMP
3599 if (dl_bandwidth_enabled() && dl_policy(policy)) {
3600 cpumask_t *span = rq->rd->span;
332ac17e
DF
3601
3602 /*
3603 * Don't allow tasks with an affinity mask smaller than
3604 * the entire root_domain to become SCHED_DEADLINE. We
3605 * will also fail if there's no bandwidth available.
3606 */
e4099a5e
PZ
3607 if (!cpumask_subset(span, &p->cpus_allowed) ||
3608 rq->rd->dl_bw.bw == 0) {
332ac17e
DF
3609 task_rq_unlock(rq, p, &flags);
3610 return -EPERM;
3611 }
3612 }
3613#endif
3614 }
dc61b1d6 3615
1da177e4
LT
3616 /* recheck policy now with rq lock held */
3617 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3618 policy = oldpolicy = -1;
0122ec5b 3619 task_rq_unlock(rq, p, &flags);
1da177e4
LT
3620 goto recheck;
3621 }
332ac17e
DF
3622
3623 /*
3624 * If setscheduling to SCHED_DEADLINE (or changing the parameters
3625 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
3626 * is available.
3627 */
e4099a5e 3628 if ((dl_policy(policy) || dl_task(p)) && dl_overflow(p, policy, attr)) {
332ac17e
DF
3629 task_rq_unlock(rq, p, &flags);
3630 return -EBUSY;
3631 }
3632
c365c292
TG
3633 p->sched_reset_on_fork = reset_on_fork;
3634 oldprio = p->prio;
3635
3636 /*
0782e63b
TG
3637 * Take priority boosted tasks into account. If the new
3638 * effective priority is unchanged, we just store the new
c365c292
TG
3639 * normal parameters and do not touch the scheduler class and
3640 * the runqueue. This will be done when the task deboost
3641 * itself.
3642 */
0782e63b
TG
3643 new_effective_prio = rt_mutex_get_effective_prio(p, newprio);
3644 if (new_effective_prio == oldprio) {
c365c292
TG
3645 __setscheduler_params(p, attr);
3646 task_rq_unlock(rq, p, &flags);
3647 return 0;
3648 }
3649
da0c1e65 3650 queued = task_on_rq_queued(p);
051a1d1a 3651 running = task_current(rq, p);
da0c1e65 3652 if (queued)
4ca9b72b 3653 dequeue_task(rq, p, 0);
0e1f3483 3654 if (running)
f3cd1c4e 3655 put_prev_task(rq, p);
f6b53205 3656
83ab0aa0 3657 prev_class = p->sched_class;
0782e63b 3658 __setscheduler(rq, p, attr, true);
f6b53205 3659
0e1f3483
HS
3660 if (running)
3661 p->sched_class->set_curr_task(rq);
da0c1e65 3662 if (queued) {
81a44c54
TG
3663 /*
3664 * We enqueue to tail when the priority of a task is
3665 * increased (user space view).
3666 */
3667 enqueue_task(rq, p, oldprio <= p->prio ? ENQUEUE_HEAD : 0);
3668 }
cb469845 3669
da7a735e 3670 check_class_changed(rq, p, prev_class, oldprio);
0122ec5b 3671 task_rq_unlock(rq, p, &flags);
b29739f9 3672
95e02ca9
TG
3673 rt_mutex_adjust_pi(p);
3674
1da177e4
LT
3675 return 0;
3676}
961ccddd 3677
7479f3c9
PZ
3678static int _sched_setscheduler(struct task_struct *p, int policy,
3679 const struct sched_param *param, bool check)
3680{
3681 struct sched_attr attr = {
3682 .sched_policy = policy,
3683 .sched_priority = param->sched_priority,
3684 .sched_nice = PRIO_TO_NICE(p->static_prio),
3685 };
3686
c13db6b1
SR
3687 /* Fixup the legacy SCHED_RESET_ON_FORK hack. */
3688 if ((policy != SETPARAM_POLICY) && (policy & SCHED_RESET_ON_FORK)) {
7479f3c9
PZ
3689 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
3690 policy &= ~SCHED_RESET_ON_FORK;
3691 attr.sched_policy = policy;
3692 }
3693
3694 return __sched_setscheduler(p, &attr, check);
3695}
961ccddd
RR
3696/**
3697 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
3698 * @p: the task in question.
3699 * @policy: new policy.
3700 * @param: structure containing the new RT priority.
3701 *
e69f6186
YB
3702 * Return: 0 on success. An error code otherwise.
3703 *
961ccddd
RR
3704 * NOTE that the task may be already dead.
3705 */
3706int sched_setscheduler(struct task_struct *p, int policy,
fe7de49f 3707 const struct sched_param *param)
961ccddd 3708{
7479f3c9 3709 return _sched_setscheduler(p, policy, param, true);
961ccddd 3710}
1da177e4
LT
3711EXPORT_SYMBOL_GPL(sched_setscheduler);
3712
d50dde5a
DF
3713int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
3714{
3715 return __sched_setscheduler(p, attr, true);
3716}
3717EXPORT_SYMBOL_GPL(sched_setattr);
3718
961ccddd
RR
3719/**
3720 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
3721 * @p: the task in question.
3722 * @policy: new policy.
3723 * @param: structure containing the new RT priority.
3724 *
3725 * Just like sched_setscheduler, only don't bother checking if the
3726 * current context has permission. For example, this is needed in
3727 * stop_machine(): we create temporary high priority worker threads,
3728 * but our caller might not have that capability.
e69f6186
YB
3729 *
3730 * Return: 0 on success. An error code otherwise.
961ccddd
RR
3731 */
3732int sched_setscheduler_nocheck(struct task_struct *p, int policy,
fe7de49f 3733 const struct sched_param *param)
961ccddd 3734{
7479f3c9 3735 return _sched_setscheduler(p, policy, param, false);
961ccddd
RR
3736}
3737
95cdf3b7
IM
3738static int
3739do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
1da177e4 3740{
1da177e4
LT
3741 struct sched_param lparam;
3742 struct task_struct *p;
36c8b586 3743 int retval;
1da177e4
LT
3744
3745 if (!param || pid < 0)
3746 return -EINVAL;
3747 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3748 return -EFAULT;
5fe1d75f
ON
3749
3750 rcu_read_lock();
3751 retval = -ESRCH;
1da177e4 3752 p = find_process_by_pid(pid);
5fe1d75f
ON
3753 if (p != NULL)
3754 retval = sched_setscheduler(p, policy, &lparam);
3755 rcu_read_unlock();
36c8b586 3756
1da177e4
LT
3757 return retval;
3758}
3759
d50dde5a
DF
3760/*
3761 * Mimics kernel/events/core.c perf_copy_attr().
3762 */
3763static int sched_copy_attr(struct sched_attr __user *uattr,
3764 struct sched_attr *attr)
3765{
3766 u32 size;
3767 int ret;
3768
3769 if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0))
3770 return -EFAULT;
3771
3772 /*
3773 * zero the full structure, so that a short copy will be nice.
3774 */
3775 memset(attr, 0, sizeof(*attr));
3776
3777 ret = get_user(size, &uattr->size);
3778 if (ret)
3779 return ret;
3780
3781 if (size > PAGE_SIZE) /* silly large */
3782 goto err_size;
3783
3784 if (!size) /* abi compat */
3785 size = SCHED_ATTR_SIZE_VER0;
3786
3787 if (size < SCHED_ATTR_SIZE_VER0)
3788 goto err_size;
3789
3790 /*
3791 * If we're handed a bigger struct than we know of,
3792 * ensure all the unknown bits are 0 - i.e. new
3793 * user-space does not rely on any kernel feature
3794 * extensions we dont know about yet.
3795 */
3796 if (size > sizeof(*attr)) {
3797 unsigned char __user *addr;
3798 unsigned char __user *end;
3799 unsigned char val;
3800
3801 addr = (void __user *)uattr + sizeof(*attr);
3802 end = (void __user *)uattr + size;
3803
3804 for (; addr < end; addr++) {
3805 ret = get_user(val, addr);
3806 if (ret)
3807 return ret;
3808 if (val)
3809 goto err_size;
3810 }
3811 size = sizeof(*attr);
3812 }
3813
3814 ret = copy_from_user(attr, uattr, size);
3815 if (ret)
3816 return -EFAULT;
3817
3818 /*
3819 * XXX: do we want to be lenient like existing syscalls; or do we want
3820 * to be strict and return an error on out-of-bounds values?
3821 */
75e45d51 3822 attr->sched_nice = clamp(attr->sched_nice, MIN_NICE, MAX_NICE);
d50dde5a 3823
e78c7bca 3824 return 0;
d50dde5a
DF
3825
3826err_size:
3827 put_user(sizeof(*attr), &uattr->size);
e78c7bca 3828 return -E2BIG;
d50dde5a
DF
3829}
3830
1da177e4
LT
3831/**
3832 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3833 * @pid: the pid in question.
3834 * @policy: new policy.
3835 * @param: structure containing the new RT priority.
e69f6186
YB
3836 *
3837 * Return: 0 on success. An error code otherwise.
1da177e4 3838 */
5add95d4
HC
3839SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
3840 struct sched_param __user *, param)
1da177e4 3841{
c21761f1
JB
3842 /* negative values for policy are not valid */
3843 if (policy < 0)
3844 return -EINVAL;
3845
1da177e4
LT
3846 return do_sched_setscheduler(pid, policy, param);
3847}
3848
3849/**
3850 * sys_sched_setparam - set/change the RT priority of a thread
3851 * @pid: the pid in question.
3852 * @param: structure containing the new RT priority.
e69f6186
YB
3853 *
3854 * Return: 0 on success. An error code otherwise.
1da177e4 3855 */
5add95d4 3856SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
1da177e4 3857{
c13db6b1 3858 return do_sched_setscheduler(pid, SETPARAM_POLICY, param);
1da177e4
LT
3859}
3860
d50dde5a
DF
3861/**
3862 * sys_sched_setattr - same as above, but with extended sched_attr
3863 * @pid: the pid in question.
5778fccf 3864 * @uattr: structure containing the extended parameters.
db66d756 3865 * @flags: for future extension.
d50dde5a 3866 */
6d35ab48
PZ
3867SYSCALL_DEFINE3(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr,
3868 unsigned int, flags)
d50dde5a
DF
3869{
3870 struct sched_attr attr;
3871 struct task_struct *p;
3872 int retval;
3873
6d35ab48 3874 if (!uattr || pid < 0 || flags)
d50dde5a
DF
3875 return -EINVAL;
3876
143cf23d
MK
3877 retval = sched_copy_attr(uattr, &attr);
3878 if (retval)
3879 return retval;
d50dde5a 3880
b14ed2c2 3881 if ((int)attr.sched_policy < 0)
dbdb2275 3882 return -EINVAL;
d50dde5a
DF
3883
3884 rcu_read_lock();
3885 retval = -ESRCH;
3886 p = find_process_by_pid(pid);
3887 if (p != NULL)
3888 retval = sched_setattr(p, &attr);
3889 rcu_read_unlock();
3890
3891 return retval;
3892}
3893
1da177e4
LT
3894/**
3895 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3896 * @pid: the pid in question.
e69f6186
YB
3897 *
3898 * Return: On success, the policy of the thread. Otherwise, a negative error
3899 * code.
1da177e4 3900 */
5add95d4 3901SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
1da177e4 3902{
36c8b586 3903 struct task_struct *p;
3a5c359a 3904 int retval;
1da177e4
LT
3905
3906 if (pid < 0)
3a5c359a 3907 return -EINVAL;
1da177e4
LT
3908
3909 retval = -ESRCH;
5fe85be0 3910 rcu_read_lock();
1da177e4
LT
3911 p = find_process_by_pid(pid);
3912 if (p) {
3913 retval = security_task_getscheduler(p);
3914 if (!retval)
ca94c442
LP
3915 retval = p->policy
3916 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
1da177e4 3917 }
5fe85be0 3918 rcu_read_unlock();
1da177e4
LT
3919 return retval;
3920}
3921
3922/**
ca94c442 3923 * sys_sched_getparam - get the RT priority of a thread
1da177e4
LT
3924 * @pid: the pid in question.
3925 * @param: structure containing the RT priority.
e69f6186
YB
3926 *
3927 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
3928 * code.
1da177e4 3929 */
5add95d4 3930SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
1da177e4 3931{
ce5f7f82 3932 struct sched_param lp = { .sched_priority = 0 };
36c8b586 3933 struct task_struct *p;
3a5c359a 3934 int retval;
1da177e4
LT
3935
3936 if (!param || pid < 0)
3a5c359a 3937 return -EINVAL;
1da177e4 3938
5fe85be0 3939 rcu_read_lock();
1da177e4
LT
3940 p = find_process_by_pid(pid);
3941 retval = -ESRCH;
3942 if (!p)
3943 goto out_unlock;
3944
3945 retval = security_task_getscheduler(p);
3946 if (retval)
3947 goto out_unlock;
3948
ce5f7f82
PZ
3949 if (task_has_rt_policy(p))
3950 lp.sched_priority = p->rt_priority;
5fe85be0 3951 rcu_read_unlock();
1da177e4
LT
3952
3953 /*
3954 * This one might sleep, we cannot do it with a spinlock held ...
3955 */
3956 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3957
1da177e4
LT
3958 return retval;
3959
3960out_unlock:
5fe85be0 3961 rcu_read_unlock();
1da177e4
LT
3962 return retval;
3963}
3964
d50dde5a
DF
3965static int sched_read_attr(struct sched_attr __user *uattr,
3966 struct sched_attr *attr,
3967 unsigned int usize)
3968{
3969 int ret;
3970
3971 if (!access_ok(VERIFY_WRITE, uattr, usize))
3972 return -EFAULT;
3973
3974 /*
3975 * If we're handed a smaller struct than we know of,
3976 * ensure all the unknown bits are 0 - i.e. old
3977 * user-space does not get uncomplete information.
3978 */
3979 if (usize < sizeof(*attr)) {
3980 unsigned char *addr;
3981 unsigned char *end;
3982
3983 addr = (void *)attr + usize;
3984 end = (void *)attr + sizeof(*attr);
3985
3986 for (; addr < end; addr++) {
3987 if (*addr)
22400674 3988 return -EFBIG;
d50dde5a
DF
3989 }
3990
3991 attr->size = usize;
3992 }
3993
4efbc454 3994 ret = copy_to_user(uattr, attr, attr->size);
d50dde5a
DF
3995 if (ret)
3996 return -EFAULT;
3997
22400674 3998 return 0;
d50dde5a
DF
3999}
4000
4001/**
aab03e05 4002 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
d50dde5a 4003 * @pid: the pid in question.
5778fccf 4004 * @uattr: structure containing the extended parameters.
d50dde5a 4005 * @size: sizeof(attr) for fwd/bwd comp.
db66d756 4006 * @flags: for future extension.
d50dde5a 4007 */
6d35ab48
PZ
4008SYSCALL_DEFINE4(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
4009 unsigned int, size, unsigned int, flags)
d50dde5a
DF
4010{
4011 struct sched_attr attr = {
4012 .size = sizeof(struct sched_attr),
4013 };
4014 struct task_struct *p;
4015 int retval;
4016
4017 if (!uattr || pid < 0 || size > PAGE_SIZE ||
6d35ab48 4018 size < SCHED_ATTR_SIZE_VER0 || flags)
d50dde5a
DF
4019 return -EINVAL;
4020
4021 rcu_read_lock();
4022 p = find_process_by_pid(pid);
4023 retval = -ESRCH;
4024 if (!p)
4025 goto out_unlock;
4026
4027 retval = security_task_getscheduler(p);
4028 if (retval)
4029 goto out_unlock;
4030
4031 attr.sched_policy = p->policy;
7479f3c9
PZ
4032 if (p->sched_reset_on_fork)
4033 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
aab03e05
DF
4034 if (task_has_dl_policy(p))
4035 __getparam_dl(p, &attr);
4036 else if (task_has_rt_policy(p))
d50dde5a
DF
4037 attr.sched_priority = p->rt_priority;
4038 else
d0ea0268 4039 attr.sched_nice = task_nice(p);
d50dde5a
DF
4040
4041 rcu_read_unlock();
4042
4043 retval = sched_read_attr(uattr, &attr, size);
4044 return retval;
4045
4046out_unlock:
4047 rcu_read_unlock();
4048 return retval;
4049}
4050
96f874e2 4051long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
1da177e4 4052{
5a16f3d3 4053 cpumask_var_t cpus_allowed, new_mask;
36c8b586
IM
4054 struct task_struct *p;
4055 int retval;
1da177e4 4056
23f5d142 4057 rcu_read_lock();
1da177e4
LT
4058
4059 p = find_process_by_pid(pid);
4060 if (!p) {
23f5d142 4061 rcu_read_unlock();
1da177e4
LT
4062 return -ESRCH;
4063 }
4064
23f5d142 4065 /* Prevent p going away */
1da177e4 4066 get_task_struct(p);
23f5d142 4067 rcu_read_unlock();
1da177e4 4068
14a40ffc
TH
4069 if (p->flags & PF_NO_SETAFFINITY) {
4070 retval = -EINVAL;
4071 goto out_put_task;
4072 }
5a16f3d3
RR
4073 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
4074 retval = -ENOMEM;
4075 goto out_put_task;
4076 }
4077 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
4078 retval = -ENOMEM;
4079 goto out_free_cpus_allowed;
4080 }
1da177e4 4081 retval = -EPERM;
4c44aaaf
EB
4082 if (!check_same_owner(p)) {
4083 rcu_read_lock();
4084 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
4085 rcu_read_unlock();
16303ab2 4086 goto out_free_new_mask;
4c44aaaf
EB
4087 }
4088 rcu_read_unlock();
4089 }
1da177e4 4090
b0ae1981 4091 retval = security_task_setscheduler(p);
e7834f8f 4092 if (retval)
16303ab2 4093 goto out_free_new_mask;
e7834f8f 4094
e4099a5e
PZ
4095
4096 cpuset_cpus_allowed(p, cpus_allowed);
4097 cpumask_and(new_mask, in_mask, cpus_allowed);
4098
332ac17e
DF
4099 /*
4100 * Since bandwidth control happens on root_domain basis,
4101 * if admission test is enabled, we only admit -deadline
4102 * tasks allowed to run on all the CPUs in the task's
4103 * root_domain.
4104 */
4105#ifdef CONFIG_SMP
f1e3a093
KT
4106 if (task_has_dl_policy(p) && dl_bandwidth_enabled()) {
4107 rcu_read_lock();
4108 if (!cpumask_subset(task_rq(p)->rd->span, new_mask)) {
332ac17e 4109 retval = -EBUSY;
f1e3a093 4110 rcu_read_unlock();
16303ab2 4111 goto out_free_new_mask;
332ac17e 4112 }
f1e3a093 4113 rcu_read_unlock();
332ac17e
DF
4114 }
4115#endif
49246274 4116again:
5a16f3d3 4117 retval = set_cpus_allowed_ptr(p, new_mask);
1da177e4 4118
8707d8b8 4119 if (!retval) {
5a16f3d3
RR
4120 cpuset_cpus_allowed(p, cpus_allowed);
4121 if (!cpumask_subset(new_mask, cpus_allowed)) {
8707d8b8
PM
4122 /*
4123 * We must have raced with a concurrent cpuset
4124 * update. Just reset the cpus_allowed to the
4125 * cpuset's cpus_allowed
4126 */
5a16f3d3 4127 cpumask_copy(new_mask, cpus_allowed);
8707d8b8
PM
4128 goto again;
4129 }
4130 }
16303ab2 4131out_free_new_mask:
5a16f3d3
RR
4132 free_cpumask_var(new_mask);
4133out_free_cpus_allowed:
4134 free_cpumask_var(cpus_allowed);
4135out_put_task:
1da177e4 4136 put_task_struct(p);
1da177e4
LT
4137 return retval;
4138}
4139
4140static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
96f874e2 4141 struct cpumask *new_mask)
1da177e4 4142{
96f874e2
RR
4143 if (len < cpumask_size())
4144 cpumask_clear(new_mask);
4145 else if (len > cpumask_size())
4146 len = cpumask_size();
4147
1da177e4
LT
4148 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4149}
4150
4151/**
4152 * sys_sched_setaffinity - set the cpu affinity of a process
4153 * @pid: pid of the process
4154 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4155 * @user_mask_ptr: user-space pointer to the new cpu mask
e69f6186
YB
4156 *
4157 * Return: 0 on success. An error code otherwise.
1da177e4 4158 */
5add95d4
HC
4159SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
4160 unsigned long __user *, user_mask_ptr)
1da177e4 4161{
5a16f3d3 4162 cpumask_var_t new_mask;
1da177e4
LT
4163 int retval;
4164
5a16f3d3
RR
4165 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
4166 return -ENOMEM;
1da177e4 4167
5a16f3d3
RR
4168 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
4169 if (retval == 0)
4170 retval = sched_setaffinity(pid, new_mask);
4171 free_cpumask_var(new_mask);
4172 return retval;
1da177e4
LT
4173}
4174
96f874e2 4175long sched_getaffinity(pid_t pid, struct cpumask *mask)
1da177e4 4176{
36c8b586 4177 struct task_struct *p;
31605683 4178 unsigned long flags;
1da177e4 4179 int retval;
1da177e4 4180
23f5d142 4181 rcu_read_lock();
1da177e4
LT
4182
4183 retval = -ESRCH;
4184 p = find_process_by_pid(pid);
4185 if (!p)
4186 goto out_unlock;
4187
e7834f8f
DQ
4188 retval = security_task_getscheduler(p);
4189 if (retval)
4190 goto out_unlock;
4191
013fdb80 4192 raw_spin_lock_irqsave(&p->pi_lock, flags);
6acce3ef 4193 cpumask_and(mask, &p->cpus_allowed, cpu_active_mask);
013fdb80 4194 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
1da177e4
LT
4195
4196out_unlock:
23f5d142 4197 rcu_read_unlock();
1da177e4 4198
9531b62f 4199 return retval;
1da177e4
LT
4200}
4201
4202/**
4203 * sys_sched_getaffinity - get the cpu affinity of a process
4204 * @pid: pid of the process
4205 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4206 * @user_mask_ptr: user-space pointer to hold the current cpu mask
e69f6186
YB
4207 *
4208 * Return: 0 on success. An error code otherwise.
1da177e4 4209 */
5add95d4
HC
4210SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
4211 unsigned long __user *, user_mask_ptr)
1da177e4
LT
4212{
4213 int ret;
f17c8607 4214 cpumask_var_t mask;
1da177e4 4215
84fba5ec 4216 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
cd3d8031
KM
4217 return -EINVAL;
4218 if (len & (sizeof(unsigned long)-1))
1da177e4
LT
4219 return -EINVAL;
4220
f17c8607
RR
4221 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
4222 return -ENOMEM;
1da177e4 4223
f17c8607
RR
4224 ret = sched_getaffinity(pid, mask);
4225 if (ret == 0) {
8bc037fb 4226 size_t retlen = min_t(size_t, len, cpumask_size());
cd3d8031
KM
4227
4228 if (copy_to_user(user_mask_ptr, mask, retlen))
f17c8607
RR
4229 ret = -EFAULT;
4230 else
cd3d8031 4231 ret = retlen;
f17c8607
RR
4232 }
4233 free_cpumask_var(mask);
1da177e4 4234
f17c8607 4235 return ret;
1da177e4
LT
4236}
4237
4238/**
4239 * sys_sched_yield - yield the current processor to other threads.
4240 *
dd41f596
IM
4241 * This function yields the current CPU to other tasks. If there are no
4242 * other threads running on this CPU then this function will return.
e69f6186
YB
4243 *
4244 * Return: 0.
1da177e4 4245 */
5add95d4 4246SYSCALL_DEFINE0(sched_yield)
1da177e4 4247{
70b97a7f 4248 struct rq *rq = this_rq_lock();
1da177e4 4249
2d72376b 4250 schedstat_inc(rq, yld_count);
4530d7ab 4251 current->sched_class->yield_task(rq);
1da177e4
LT
4252
4253 /*
4254 * Since we are going to call schedule() anyway, there's
4255 * no need to preempt or enable interrupts:
4256 */
4257 __release(rq->lock);
8a25d5de 4258 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
9828ea9d 4259 do_raw_spin_unlock(&rq->lock);
ba74c144 4260 sched_preempt_enable_no_resched();
1da177e4
LT
4261
4262 schedule();
4263
4264 return 0;
4265}
4266
02b67cc3 4267int __sched _cond_resched(void)
1da177e4 4268{
d86ee480 4269 if (should_resched()) {
a18b5d01 4270 preempt_schedule_common();
1da177e4
LT
4271 return 1;
4272 }
4273 return 0;
4274}
02b67cc3 4275EXPORT_SYMBOL(_cond_resched);
1da177e4
LT
4276
4277/*
613afbf8 4278 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
1da177e4
LT
4279 * call schedule, and on return reacquire the lock.
4280 *
41a2d6cf 4281 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
1da177e4
LT
4282 * operations here to prevent schedule() from being called twice (once via
4283 * spin_unlock(), once by hand).
4284 */
613afbf8 4285int __cond_resched_lock(spinlock_t *lock)
1da177e4 4286{
d86ee480 4287 int resched = should_resched();
6df3cecb
JK
4288 int ret = 0;
4289
f607c668
PZ
4290 lockdep_assert_held(lock);
4291
4a81e832 4292 if (spin_needbreak(lock) || resched) {
1da177e4 4293 spin_unlock(lock);
d86ee480 4294 if (resched)
a18b5d01 4295 preempt_schedule_common();
95c354fe
NP
4296 else
4297 cpu_relax();
6df3cecb 4298 ret = 1;
1da177e4 4299 spin_lock(lock);
1da177e4 4300 }
6df3cecb 4301 return ret;
1da177e4 4302}
613afbf8 4303EXPORT_SYMBOL(__cond_resched_lock);
1da177e4 4304
613afbf8 4305int __sched __cond_resched_softirq(void)
1da177e4
LT
4306{
4307 BUG_ON(!in_softirq());
4308
d86ee480 4309 if (should_resched()) {
98d82567 4310 local_bh_enable();
a18b5d01 4311 preempt_schedule_common();
1da177e4
LT
4312 local_bh_disable();
4313 return 1;
4314 }
4315 return 0;
4316}
613afbf8 4317EXPORT_SYMBOL(__cond_resched_softirq);
1da177e4 4318
1da177e4
LT
4319/**
4320 * yield - yield the current processor to other threads.
4321 *
8e3fabfd
PZ
4322 * Do not ever use this function, there's a 99% chance you're doing it wrong.
4323 *
4324 * The scheduler is at all times free to pick the calling task as the most
4325 * eligible task to run, if removing the yield() call from your code breaks
4326 * it, its already broken.
4327 *
4328 * Typical broken usage is:
4329 *
4330 * while (!event)
4331 * yield();
4332 *
4333 * where one assumes that yield() will let 'the other' process run that will
4334 * make event true. If the current task is a SCHED_FIFO task that will never
4335 * happen. Never use yield() as a progress guarantee!!
4336 *
4337 * If you want to use yield() to wait for something, use wait_event().
4338 * If you want to use yield() to be 'nice' for others, use cond_resched().
4339 * If you still want to use yield(), do not!
1da177e4
LT
4340 */
4341void __sched yield(void)
4342{
4343 set_current_state(TASK_RUNNING);
4344 sys_sched_yield();
4345}
1da177e4
LT
4346EXPORT_SYMBOL(yield);
4347
d95f4122
MG
4348/**
4349 * yield_to - yield the current processor to another thread in
4350 * your thread group, or accelerate that thread toward the
4351 * processor it's on.
16addf95
RD
4352 * @p: target task
4353 * @preempt: whether task preemption is allowed or not
d95f4122
MG
4354 *
4355 * It's the caller's job to ensure that the target task struct
4356 * can't go away on us before we can do any checks.
4357 *
e69f6186 4358 * Return:
7b270f60
PZ
4359 * true (>0) if we indeed boosted the target task.
4360 * false (0) if we failed to boost the target.
4361 * -ESRCH if there's no task to yield to.
d95f4122 4362 */
fa93384f 4363int __sched yield_to(struct task_struct *p, bool preempt)
d95f4122
MG
4364{
4365 struct task_struct *curr = current;
4366 struct rq *rq, *p_rq;
4367 unsigned long flags;
c3c18640 4368 int yielded = 0;
d95f4122
MG
4369
4370 local_irq_save(flags);
4371 rq = this_rq();
4372
4373again:
4374 p_rq = task_rq(p);
7b270f60
PZ
4375 /*
4376 * If we're the only runnable task on the rq and target rq also
4377 * has only one task, there's absolutely no point in yielding.
4378 */
4379 if (rq->nr_running == 1 && p_rq->nr_running == 1) {
4380 yielded = -ESRCH;
4381 goto out_irq;
4382 }
4383
d95f4122 4384 double_rq_lock(rq, p_rq);
39e24d8f 4385 if (task_rq(p) != p_rq) {
d95f4122
MG
4386 double_rq_unlock(rq, p_rq);
4387 goto again;
4388 }
4389
4390 if (!curr->sched_class->yield_to_task)
7b270f60 4391 goto out_unlock;
d95f4122
MG
4392
4393 if (curr->sched_class != p->sched_class)
7b270f60 4394 goto out_unlock;
d95f4122
MG
4395
4396 if (task_running(p_rq, p) || p->state)
7b270f60 4397 goto out_unlock;
d95f4122
MG
4398
4399 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
6d1cafd8 4400 if (yielded) {
d95f4122 4401 schedstat_inc(rq, yld_count);
6d1cafd8
VP
4402 /*
4403 * Make p's CPU reschedule; pick_next_entity takes care of
4404 * fairness.
4405 */
4406 if (preempt && rq != p_rq)
8875125e 4407 resched_curr(p_rq);
6d1cafd8 4408 }
d95f4122 4409
7b270f60 4410out_unlock:
d95f4122 4411 double_rq_unlock(rq, p_rq);
7b270f60 4412out_irq:
d95f4122
MG
4413 local_irq_restore(flags);
4414
7b270f60 4415 if (yielded > 0)
d95f4122
MG
4416 schedule();
4417
4418 return yielded;
4419}
4420EXPORT_SYMBOL_GPL(yield_to);
4421
1da177e4 4422/*
41a2d6cf 4423 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
1da177e4 4424 * that process accounting knows that this is a task in IO wait state.
1da177e4 4425 */
1da177e4
LT
4426long __sched io_schedule_timeout(long timeout)
4427{
9cff8ade
N
4428 int old_iowait = current->in_iowait;
4429 struct rq *rq;
1da177e4
LT
4430 long ret;
4431
9cff8ade 4432 current->in_iowait = 1;
10d784ea 4433 blk_schedule_flush_plug(current);
9cff8ade 4434
0ff92245 4435 delayacct_blkio_start();
9cff8ade 4436 rq = raw_rq();
1da177e4
LT
4437 atomic_inc(&rq->nr_iowait);
4438 ret = schedule_timeout(timeout);
9cff8ade 4439 current->in_iowait = old_iowait;
1da177e4 4440 atomic_dec(&rq->nr_iowait);
0ff92245 4441 delayacct_blkio_end();
9cff8ade 4442
1da177e4
LT
4443 return ret;
4444}
9cff8ade 4445EXPORT_SYMBOL(io_schedule_timeout);
1da177e4
LT
4446
4447/**
4448 * sys_sched_get_priority_max - return maximum RT priority.
4449 * @policy: scheduling class.
4450 *
e69f6186
YB
4451 * Return: On success, this syscall returns the maximum
4452 * rt_priority that can be used by a given scheduling class.
4453 * On failure, a negative error code is returned.
1da177e4 4454 */
5add95d4 4455SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
1da177e4
LT
4456{
4457 int ret = -EINVAL;
4458
4459 switch (policy) {
4460 case SCHED_FIFO:
4461 case SCHED_RR:
4462 ret = MAX_USER_RT_PRIO-1;
4463 break;
aab03e05 4464 case SCHED_DEADLINE:
1da177e4 4465 case SCHED_NORMAL:
b0a9499c 4466 case SCHED_BATCH:
dd41f596 4467 case SCHED_IDLE:
1da177e4
LT
4468 ret = 0;
4469 break;
4470 }
4471 return ret;
4472}
4473
4474/**
4475 * sys_sched_get_priority_min - return minimum RT priority.
4476 * @policy: scheduling class.
4477 *
e69f6186
YB
4478 * Return: On success, this syscall returns the minimum
4479 * rt_priority that can be used by a given scheduling class.
4480 * On failure, a negative error code is returned.
1da177e4 4481 */
5add95d4 4482SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
1da177e4
LT
4483{
4484 int ret = -EINVAL;
4485
4486 switch (policy) {
4487 case SCHED_FIFO:
4488 case SCHED_RR:
4489 ret = 1;
4490 break;
aab03e05 4491 case SCHED_DEADLINE:
1da177e4 4492 case SCHED_NORMAL:
b0a9499c 4493 case SCHED_BATCH:
dd41f596 4494 case SCHED_IDLE:
1da177e4
LT
4495 ret = 0;
4496 }
4497 return ret;
4498}
4499
4500/**
4501 * sys_sched_rr_get_interval - return the default timeslice of a process.
4502 * @pid: pid of the process.
4503 * @interval: userspace pointer to the timeslice value.
4504 *
4505 * this syscall writes the default timeslice value of a given process
4506 * into the user-space timespec buffer. A value of '0' means infinity.
e69f6186
YB
4507 *
4508 * Return: On success, 0 and the timeslice is in @interval. Otherwise,
4509 * an error code.
1da177e4 4510 */
17da2bd9 4511SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
754fe8d2 4512 struct timespec __user *, interval)
1da177e4 4513{
36c8b586 4514 struct task_struct *p;
a4ec24b4 4515 unsigned int time_slice;
dba091b9
TG
4516 unsigned long flags;
4517 struct rq *rq;
3a5c359a 4518 int retval;
1da177e4 4519 struct timespec t;
1da177e4
LT
4520
4521 if (pid < 0)
3a5c359a 4522 return -EINVAL;
1da177e4
LT
4523
4524 retval = -ESRCH;
1a551ae7 4525 rcu_read_lock();
1da177e4
LT
4526 p = find_process_by_pid(pid);
4527 if (!p)
4528 goto out_unlock;
4529
4530 retval = security_task_getscheduler(p);
4531 if (retval)
4532 goto out_unlock;
4533
dba091b9 4534 rq = task_rq_lock(p, &flags);
a57beec5
PZ
4535 time_slice = 0;
4536 if (p->sched_class->get_rr_interval)
4537 time_slice = p->sched_class->get_rr_interval(rq, p);
0122ec5b 4538 task_rq_unlock(rq, p, &flags);
a4ec24b4 4539
1a551ae7 4540 rcu_read_unlock();
a4ec24b4 4541 jiffies_to_timespec(time_slice, &t);
1da177e4 4542 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
1da177e4 4543 return retval;
3a5c359a 4544
1da177e4 4545out_unlock:
1a551ae7 4546 rcu_read_unlock();
1da177e4
LT
4547 return retval;
4548}
4549
7c731e0a 4550static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
36c8b586 4551
82a1fcb9 4552void sched_show_task(struct task_struct *p)
1da177e4 4553{
1da177e4 4554 unsigned long free = 0;
4e79752c 4555 int ppid;
1f8a7633 4556 unsigned long state = p->state;
1da177e4 4557
1f8a7633
TH
4558 if (state)
4559 state = __ffs(state) + 1;
28d0686c 4560 printk(KERN_INFO "%-15.15s %c", p->comm,
2ed6e34f 4561 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
4bd77321 4562#if BITS_PER_LONG == 32
1da177e4 4563 if (state == TASK_RUNNING)
3df0fc5b 4564 printk(KERN_CONT " running ");
1da177e4 4565 else
3df0fc5b 4566 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
1da177e4
LT
4567#else
4568 if (state == TASK_RUNNING)
3df0fc5b 4569 printk(KERN_CONT " running task ");
1da177e4 4570 else
3df0fc5b 4571 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
1da177e4
LT
4572#endif
4573#ifdef CONFIG_DEBUG_STACK_USAGE
7c9f8861 4574 free = stack_not_used(p);
1da177e4 4575#endif
a90e984c 4576 ppid = 0;
4e79752c 4577 rcu_read_lock();
a90e984c
ON
4578 if (pid_alive(p))
4579 ppid = task_pid_nr(rcu_dereference(p->real_parent));
4e79752c 4580 rcu_read_unlock();
3df0fc5b 4581 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
4e79752c 4582 task_pid_nr(p), ppid,
aa47b7e0 4583 (unsigned long)task_thread_info(p)->flags);
1da177e4 4584
3d1cb205 4585 print_worker_info(KERN_INFO, p);
5fb5e6de 4586 show_stack(p, NULL);
1da177e4
LT
4587}
4588
e59e2ae2 4589void show_state_filter(unsigned long state_filter)
1da177e4 4590{
36c8b586 4591 struct task_struct *g, *p;
1da177e4 4592
4bd77321 4593#if BITS_PER_LONG == 32
3df0fc5b
PZ
4594 printk(KERN_INFO
4595 " task PC stack pid father\n");
1da177e4 4596#else
3df0fc5b
PZ
4597 printk(KERN_INFO
4598 " task PC stack pid father\n");
1da177e4 4599#endif
510f5acc 4600 rcu_read_lock();
5d07f420 4601 for_each_process_thread(g, p) {
1da177e4
LT
4602 /*
4603 * reset the NMI-timeout, listing all files on a slow
25985edc 4604 * console might take a lot of time:
1da177e4
LT
4605 */
4606 touch_nmi_watchdog();
39bc89fd 4607 if (!state_filter || (p->state & state_filter))
82a1fcb9 4608 sched_show_task(p);
5d07f420 4609 }
1da177e4 4610
04c9167f
JF
4611 touch_all_softlockup_watchdogs();
4612
dd41f596
IM
4613#ifdef CONFIG_SCHED_DEBUG
4614 sysrq_sched_debug_show();
4615#endif
510f5acc 4616 rcu_read_unlock();
e59e2ae2
IM
4617 /*
4618 * Only show locks if all tasks are dumped:
4619 */
93335a21 4620 if (!state_filter)
e59e2ae2 4621 debug_show_all_locks();
1da177e4
LT
4622}
4623
0db0628d 4624void init_idle_bootup_task(struct task_struct *idle)
1df21055 4625{
dd41f596 4626 idle->sched_class = &idle_sched_class;
1df21055
IM
4627}
4628
f340c0d1
IM
4629/**
4630 * init_idle - set up an idle thread for a given CPU
4631 * @idle: task in question
4632 * @cpu: cpu the idle task belongs to
4633 *
4634 * NOTE: this function does not set the idle thread's NEED_RESCHED
4635 * flag, to make booting more robust.
4636 */
0db0628d 4637void init_idle(struct task_struct *idle, int cpu)
1da177e4 4638{
70b97a7f 4639 struct rq *rq = cpu_rq(cpu);
1da177e4
LT
4640 unsigned long flags;
4641
05fa785c 4642 raw_spin_lock_irqsave(&rq->lock, flags);
5cbd54ef 4643
5e1576ed 4644 __sched_fork(0, idle);
06b83b5f 4645 idle->state = TASK_RUNNING;
dd41f596
IM
4646 idle->se.exec_start = sched_clock();
4647
1e1b6c51 4648 do_set_cpus_allowed(idle, cpumask_of(cpu));
6506cf6c
PZ
4649 /*
4650 * We're having a chicken and egg problem, even though we are
4651 * holding rq->lock, the cpu isn't yet set to this cpu so the
4652 * lockdep check in task_group() will fail.
4653 *
4654 * Similar case to sched_fork(). / Alternatively we could
4655 * use task_rq_lock() here and obtain the other rq->lock.
4656 *
4657 * Silence PROVE_RCU
4658 */
4659 rcu_read_lock();
dd41f596 4660 __set_task_cpu(idle, cpu);
6506cf6c 4661 rcu_read_unlock();
1da177e4 4662
1da177e4 4663 rq->curr = rq->idle = idle;
da0c1e65 4664 idle->on_rq = TASK_ON_RQ_QUEUED;
3ca7a440
PZ
4665#if defined(CONFIG_SMP)
4666 idle->on_cpu = 1;
4866cde0 4667#endif
05fa785c 4668 raw_spin_unlock_irqrestore(&rq->lock, flags);
1da177e4
LT
4669
4670 /* Set the preempt count _outside_ the spinlocks! */
01028747 4671 init_idle_preempt_count(idle, cpu);
55cd5340 4672
dd41f596
IM
4673 /*
4674 * The idle tasks have their own, simple scheduling class:
4675 */
4676 idle->sched_class = &idle_sched_class;
868baf07 4677 ftrace_graph_init_idle_task(idle, cpu);
45eacc69 4678 vtime_init_idle(idle, cpu);
f1c6f1a7
CE
4679#if defined(CONFIG_SMP)
4680 sprintf(idle->comm, "%s/%d", INIT_TASK_COMM, cpu);
4681#endif
19978ca6
IM
4682}
4683
f82f8042
JL
4684int cpuset_cpumask_can_shrink(const struct cpumask *cur,
4685 const struct cpumask *trial)
4686{
4687 int ret = 1, trial_cpus;
4688 struct dl_bw *cur_dl_b;
4689 unsigned long flags;
4690
bb2bc55a
MG
4691 if (!cpumask_weight(cur))
4692 return ret;
4693
75e23e49 4694 rcu_read_lock_sched();
f82f8042
JL
4695 cur_dl_b = dl_bw_of(cpumask_any(cur));
4696 trial_cpus = cpumask_weight(trial);
4697
4698 raw_spin_lock_irqsave(&cur_dl_b->lock, flags);
4699 if (cur_dl_b->bw != -1 &&
4700 cur_dl_b->bw * trial_cpus < cur_dl_b->total_bw)
4701 ret = 0;
4702 raw_spin_unlock_irqrestore(&cur_dl_b->lock, flags);
75e23e49 4703 rcu_read_unlock_sched();
f82f8042
JL
4704
4705 return ret;
4706}
4707
7f51412a
JL
4708int task_can_attach(struct task_struct *p,
4709 const struct cpumask *cs_cpus_allowed)
4710{
4711 int ret = 0;
4712
4713 /*
4714 * Kthreads which disallow setaffinity shouldn't be moved
4715 * to a new cpuset; we don't want to change their cpu
4716 * affinity and isolating such threads by their set of
4717 * allowed nodes is unnecessary. Thus, cpusets are not
4718 * applicable for such threads. This prevents checking for
4719 * success of set_cpus_allowed_ptr() on all attached tasks
4720 * before cpus_allowed may be changed.
4721 */
4722 if (p->flags & PF_NO_SETAFFINITY) {
4723 ret = -EINVAL;
4724 goto out;
4725 }
4726
4727#ifdef CONFIG_SMP
4728 if (dl_task(p) && !cpumask_intersects(task_rq(p)->rd->span,
4729 cs_cpus_allowed)) {
4730 unsigned int dest_cpu = cpumask_any_and(cpu_active_mask,
4731 cs_cpus_allowed);
75e23e49 4732 struct dl_bw *dl_b;
7f51412a
JL
4733 bool overflow;
4734 int cpus;
4735 unsigned long flags;
4736
75e23e49
JL
4737 rcu_read_lock_sched();
4738 dl_b = dl_bw_of(dest_cpu);
7f51412a
JL
4739 raw_spin_lock_irqsave(&dl_b->lock, flags);
4740 cpus = dl_bw_cpus(dest_cpu);
4741 overflow = __dl_overflow(dl_b, cpus, 0, p->dl.dl_bw);
4742 if (overflow)
4743 ret = -EBUSY;
4744 else {
4745 /*
4746 * We reserve space for this task in the destination
4747 * root_domain, as we can't fail after this point.
4748 * We will free resources in the source root_domain
4749 * later on (see set_cpus_allowed_dl()).
4750 */
4751 __dl_add(dl_b, p->dl.dl_bw);
4752 }
4753 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
75e23e49 4754 rcu_read_unlock_sched();
7f51412a
JL
4755
4756 }
4757#endif
4758out:
4759 return ret;
4760}
4761
1da177e4 4762#ifdef CONFIG_SMP
a15b12ac
KT
4763/*
4764 * move_queued_task - move a queued task to new rq.
4765 *
4766 * Returns (locked) new rq. Old rq's lock is released.
4767 */
4768static struct rq *move_queued_task(struct task_struct *p, int new_cpu)
4769{
4770 struct rq *rq = task_rq(p);
4771
4772 lockdep_assert_held(&rq->lock);
4773
4774 dequeue_task(rq, p, 0);
4775 p->on_rq = TASK_ON_RQ_MIGRATING;
4776 set_task_cpu(p, new_cpu);
4777 raw_spin_unlock(&rq->lock);
4778
4779 rq = cpu_rq(new_cpu);
4780
4781 raw_spin_lock(&rq->lock);
4782 BUG_ON(task_cpu(p) != new_cpu);
4783 p->on_rq = TASK_ON_RQ_QUEUED;
4784 enqueue_task(rq, p, 0);
4785 check_preempt_curr(rq, p, 0);
4786
4787 return rq;
4788}
4789
1e1b6c51
KM
4790void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
4791{
1b537c7d 4792 if (p->sched_class->set_cpus_allowed)
1e1b6c51 4793 p->sched_class->set_cpus_allowed(p, new_mask);
4939602a
PZ
4794
4795 cpumask_copy(&p->cpus_allowed, new_mask);
29baa747 4796 p->nr_cpus_allowed = cpumask_weight(new_mask);
1e1b6c51
KM
4797}
4798
1da177e4
LT
4799/*
4800 * This is how migration works:
4801 *
969c7921
TH
4802 * 1) we invoke migration_cpu_stop() on the target CPU using
4803 * stop_one_cpu().
4804 * 2) stopper starts to run (implicitly forcing the migrated thread
4805 * off the CPU)
4806 * 3) it checks whether the migrated task is still in the wrong runqueue.
4807 * 4) if it's in the wrong runqueue then the migration thread removes
1da177e4 4808 * it and puts it into the right queue.
969c7921
TH
4809 * 5) stopper completes and stop_one_cpu() returns and the migration
4810 * is done.
1da177e4
LT
4811 */
4812
4813/*
4814 * Change a given task's CPU affinity. Migrate the thread to a
4815 * proper CPU and schedule it away if the CPU it's executing on
4816 * is removed from the allowed bitmask.
4817 *
4818 * NOTE: the caller must have a valid reference to the task, the
41a2d6cf 4819 * task must not exit() & deallocate itself prematurely. The
1da177e4
LT
4820 * call is not atomic; no spinlocks may be held.
4821 */
96f874e2 4822int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
1da177e4
LT
4823{
4824 unsigned long flags;
70b97a7f 4825 struct rq *rq;
969c7921 4826 unsigned int dest_cpu;
48f24c4d 4827 int ret = 0;
1da177e4
LT
4828
4829 rq = task_rq_lock(p, &flags);
e2912009 4830
db44fc01
YZ
4831 if (cpumask_equal(&p->cpus_allowed, new_mask))
4832 goto out;
4833
6ad4c188 4834 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
1da177e4
LT
4835 ret = -EINVAL;
4836 goto out;
4837 }
4838
1e1b6c51 4839 do_set_cpus_allowed(p, new_mask);
73fe6aae 4840
1da177e4 4841 /* Can the task run on the task's current CPU? If so, we're done */
96f874e2 4842 if (cpumask_test_cpu(task_cpu(p), new_mask))
1da177e4
LT
4843 goto out;
4844
969c7921 4845 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
a15b12ac 4846 if (task_running(rq, p) || p->state == TASK_WAKING) {
969c7921 4847 struct migration_arg arg = { p, dest_cpu };
1da177e4 4848 /* Need help from migration thread: drop lock and wait. */
0122ec5b 4849 task_rq_unlock(rq, p, &flags);
969c7921 4850 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
1da177e4
LT
4851 tlb_migrate_finish(p->mm);
4852 return 0;
a15b12ac
KT
4853 } else if (task_on_rq_queued(p))
4854 rq = move_queued_task(p, dest_cpu);
1da177e4 4855out:
0122ec5b 4856 task_rq_unlock(rq, p, &flags);
48f24c4d 4857
1da177e4
LT
4858 return ret;
4859}
cd8ba7cd 4860EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
1da177e4
LT
4861
4862/*
41a2d6cf 4863 * Move (not current) task off this cpu, onto dest cpu. We're doing
1da177e4
LT
4864 * this because either it can't run here any more (set_cpus_allowed()
4865 * away from this CPU, or CPU going down), or because we're
4866 * attempting to rebalance this task on exec (sched_exec).
4867 *
4868 * So we race with normal scheduler movements, but that's OK, as long
4869 * as the task is no longer on this CPU.
efc30814
KK
4870 *
4871 * Returns non-zero if task was successfully migrated.
1da177e4 4872 */
efc30814 4873static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
1da177e4 4874{
a1e01829 4875 struct rq *rq;
e2912009 4876 int ret = 0;
1da177e4 4877
e761b772 4878 if (unlikely(!cpu_active(dest_cpu)))
efc30814 4879 return ret;
1da177e4 4880
a1e01829 4881 rq = cpu_rq(src_cpu);
1da177e4 4882
0122ec5b 4883 raw_spin_lock(&p->pi_lock);
a1e01829 4884 raw_spin_lock(&rq->lock);
1da177e4
LT
4885 /* Already moved. */
4886 if (task_cpu(p) != src_cpu)
b1e38734 4887 goto done;
a1e01829 4888
1da177e4 4889 /* Affinity changed (again). */
fa17b507 4890 if (!cpumask_test_cpu(dest_cpu, tsk_cpus_allowed(p)))
b1e38734 4891 goto fail;
1da177e4 4892
e2912009
PZ
4893 /*
4894 * If we're not on a rq, the next wake-up will ensure we're
4895 * placed properly.
4896 */
a15b12ac
KT
4897 if (task_on_rq_queued(p))
4898 rq = move_queued_task(p, dest_cpu);
b1e38734 4899done:
efc30814 4900 ret = 1;
b1e38734 4901fail:
a1e01829 4902 raw_spin_unlock(&rq->lock);
0122ec5b 4903 raw_spin_unlock(&p->pi_lock);
efc30814 4904 return ret;
1da177e4
LT
4905}
4906
e6628d5b
MG
4907#ifdef CONFIG_NUMA_BALANCING
4908/* Migrate current task p to target_cpu */
4909int migrate_task_to(struct task_struct *p, int target_cpu)
4910{
4911 struct migration_arg arg = { p, target_cpu };
4912 int curr_cpu = task_cpu(p);
4913
4914 if (curr_cpu == target_cpu)
4915 return 0;
4916
4917 if (!cpumask_test_cpu(target_cpu, tsk_cpus_allowed(p)))
4918 return -EINVAL;
4919
4920 /* TODO: This is not properly updating schedstats */
4921
286549dc 4922 trace_sched_move_numa(p, curr_cpu, target_cpu);
e6628d5b
MG
4923 return stop_one_cpu(curr_cpu, migration_cpu_stop, &arg);
4924}
0ec8aa00
PZ
4925
4926/*
4927 * Requeue a task on a given node and accurately track the number of NUMA
4928 * tasks on the runqueues
4929 */
4930void sched_setnuma(struct task_struct *p, int nid)
4931{
4932 struct rq *rq;
4933 unsigned long flags;
da0c1e65 4934 bool queued, running;
0ec8aa00
PZ
4935
4936 rq = task_rq_lock(p, &flags);
da0c1e65 4937 queued = task_on_rq_queued(p);
0ec8aa00
PZ
4938 running = task_current(rq, p);
4939
da0c1e65 4940 if (queued)
0ec8aa00
PZ
4941 dequeue_task(rq, p, 0);
4942 if (running)
f3cd1c4e 4943 put_prev_task(rq, p);
0ec8aa00
PZ
4944
4945 p->numa_preferred_nid = nid;
0ec8aa00
PZ
4946
4947 if (running)
4948 p->sched_class->set_curr_task(rq);
da0c1e65 4949 if (queued)
0ec8aa00
PZ
4950 enqueue_task(rq, p, 0);
4951 task_rq_unlock(rq, p, &flags);
4952}
e6628d5b
MG
4953#endif
4954
1da177e4 4955/*
969c7921
TH
4956 * migration_cpu_stop - this will be executed by a highprio stopper thread
4957 * and performs thread migration by bumping thread off CPU then
4958 * 'pushing' onto another runqueue.
1da177e4 4959 */
969c7921 4960static int migration_cpu_stop(void *data)
1da177e4 4961{
969c7921 4962 struct migration_arg *arg = data;
f7b4cddc 4963
969c7921
TH
4964 /*
4965 * The original target cpu might have gone down and we might
4966 * be on another cpu but it doesn't matter.
4967 */
f7b4cddc 4968 local_irq_disable();
5cd038f5
LJ
4969 /*
4970 * We need to explicitly wake pending tasks before running
4971 * __migrate_task() such that we will not miss enforcing cpus_allowed
4972 * during wakeups, see set_cpus_allowed_ptr()'s TASK_WAKING test.
4973 */
4974 sched_ttwu_pending();
969c7921 4975 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
f7b4cddc 4976 local_irq_enable();
1da177e4 4977 return 0;
f7b4cddc
ON
4978}
4979
1da177e4 4980#ifdef CONFIG_HOTPLUG_CPU
48c5ccae 4981
054b9108 4982/*
48c5ccae
PZ
4983 * Ensures that the idle task is using init_mm right before its cpu goes
4984 * offline.
054b9108 4985 */
48c5ccae 4986void idle_task_exit(void)
1da177e4 4987{
48c5ccae 4988 struct mm_struct *mm = current->active_mm;
e76bd8d9 4989
48c5ccae 4990 BUG_ON(cpu_online(smp_processor_id()));
e76bd8d9 4991
a53efe5f 4992 if (mm != &init_mm) {
48c5ccae 4993 switch_mm(mm, &init_mm, current);
a53efe5f
MS
4994 finish_arch_post_lock_switch();
4995 }
48c5ccae 4996 mmdrop(mm);
1da177e4
LT
4997}
4998
4999/*
5d180232
PZ
5000 * Since this CPU is going 'away' for a while, fold any nr_active delta
5001 * we might have. Assumes we're called after migrate_tasks() so that the
5002 * nr_active count is stable.
5003 *
5004 * Also see the comment "Global load-average calculations".
1da177e4 5005 */
5d180232 5006static void calc_load_migrate(struct rq *rq)
1da177e4 5007{
5d180232
PZ
5008 long delta = calc_load_fold_active(rq);
5009 if (delta)
5010 atomic_long_add(delta, &calc_load_tasks);
1da177e4
LT
5011}
5012
3f1d2a31
PZ
5013static void put_prev_task_fake(struct rq *rq, struct task_struct *prev)
5014{
5015}
5016
5017static const struct sched_class fake_sched_class = {
5018 .put_prev_task = put_prev_task_fake,
5019};
5020
5021static struct task_struct fake_task = {
5022 /*
5023 * Avoid pull_{rt,dl}_task()
5024 */
5025 .prio = MAX_PRIO + 1,
5026 .sched_class = &fake_sched_class,
5027};
5028
48f24c4d 5029/*
48c5ccae
PZ
5030 * Migrate all tasks from the rq, sleeping tasks will be migrated by
5031 * try_to_wake_up()->select_task_rq().
5032 *
5033 * Called with rq->lock held even though we'er in stop_machine() and
5034 * there's no concurrency possible, we hold the required locks anyway
5035 * because of lock validation efforts.
1da177e4 5036 */
48c5ccae 5037static void migrate_tasks(unsigned int dead_cpu)
1da177e4 5038{
70b97a7f 5039 struct rq *rq = cpu_rq(dead_cpu);
48c5ccae
PZ
5040 struct task_struct *next, *stop = rq->stop;
5041 int dest_cpu;
1da177e4
LT
5042
5043 /*
48c5ccae
PZ
5044 * Fudge the rq selection such that the below task selection loop
5045 * doesn't get stuck on the currently eligible stop task.
5046 *
5047 * We're currently inside stop_machine() and the rq is either stuck
5048 * in the stop_machine_cpu_stop() loop, or we're executing this code,
5049 * either way we should never end up calling schedule() until we're
5050 * done here.
1da177e4 5051 */
48c5ccae 5052 rq->stop = NULL;
48f24c4d 5053
77bd3970
FW
5054 /*
5055 * put_prev_task() and pick_next_task() sched
5056 * class method both need to have an up-to-date
5057 * value of rq->clock[_task]
5058 */
5059 update_rq_clock(rq);
5060
dd41f596 5061 for ( ; ; ) {
48c5ccae
PZ
5062 /*
5063 * There's this thread running, bail when that's the only
5064 * remaining thread.
5065 */
5066 if (rq->nr_running == 1)
dd41f596 5067 break;
48c5ccae 5068
3f1d2a31 5069 next = pick_next_task(rq, &fake_task);
48c5ccae 5070 BUG_ON(!next);
79c53799 5071 next->sched_class->put_prev_task(rq, next);
e692ab53 5072
48c5ccae
PZ
5073 /* Find suitable destination for @next, with force if needed. */
5074 dest_cpu = select_fallback_rq(dead_cpu, next);
5075 raw_spin_unlock(&rq->lock);
5076
5077 __migrate_task(next, dead_cpu, dest_cpu);
5078
5079 raw_spin_lock(&rq->lock);
1da177e4 5080 }
dce48a84 5081
48c5ccae 5082 rq->stop = stop;
dce48a84 5083}
48c5ccae 5084
1da177e4
LT
5085#endif /* CONFIG_HOTPLUG_CPU */
5086
e692ab53
NP
5087#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5088
5089static struct ctl_table sd_ctl_dir[] = {
e0361851
AD
5090 {
5091 .procname = "sched_domain",
c57baf1e 5092 .mode = 0555,
e0361851 5093 },
56992309 5094 {}
e692ab53
NP
5095};
5096
5097static struct ctl_table sd_ctl_root[] = {
e0361851
AD
5098 {
5099 .procname = "kernel",
c57baf1e 5100 .mode = 0555,
e0361851
AD
5101 .child = sd_ctl_dir,
5102 },
56992309 5103 {}
e692ab53
NP
5104};
5105
5106static struct ctl_table *sd_alloc_ctl_entry(int n)
5107{
5108 struct ctl_table *entry =
5cf9f062 5109 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
e692ab53 5110
e692ab53
NP
5111 return entry;
5112}
5113
6382bc90
MM
5114static void sd_free_ctl_entry(struct ctl_table **tablep)
5115{
cd790076 5116 struct ctl_table *entry;
6382bc90 5117
cd790076
MM
5118 /*
5119 * In the intermediate directories, both the child directory and
5120 * procname are dynamically allocated and could fail but the mode
41a2d6cf 5121 * will always be set. In the lowest directory the names are
cd790076
MM
5122 * static strings and all have proc handlers.
5123 */
5124 for (entry = *tablep; entry->mode; entry++) {
6382bc90
MM
5125 if (entry->child)
5126 sd_free_ctl_entry(&entry->child);
cd790076
MM
5127 if (entry->proc_handler == NULL)
5128 kfree(entry->procname);
5129 }
6382bc90
MM
5130
5131 kfree(*tablep);
5132 *tablep = NULL;
5133}
5134
201c373e 5135static int min_load_idx = 0;
fd9b86d3 5136static int max_load_idx = CPU_LOAD_IDX_MAX-1;
201c373e 5137
e692ab53 5138static void
e0361851 5139set_table_entry(struct ctl_table *entry,
e692ab53 5140 const char *procname, void *data, int maxlen,
201c373e
NK
5141 umode_t mode, proc_handler *proc_handler,
5142 bool load_idx)
e692ab53 5143{
e692ab53
NP
5144 entry->procname = procname;
5145 entry->data = data;
5146 entry->maxlen = maxlen;
5147 entry->mode = mode;
5148 entry->proc_handler = proc_handler;
201c373e
NK
5149
5150 if (load_idx) {
5151 entry->extra1 = &min_load_idx;
5152 entry->extra2 = &max_load_idx;
5153 }
e692ab53
NP
5154}
5155
5156static struct ctl_table *
5157sd_alloc_ctl_domain_table(struct sched_domain *sd)
5158{
37e6bae8 5159 struct ctl_table *table = sd_alloc_ctl_entry(14);
e692ab53 5160
ad1cdc1d
MM
5161 if (table == NULL)
5162 return NULL;
5163
e0361851 5164 set_table_entry(&table[0], "min_interval", &sd->min_interval,
201c373e 5165 sizeof(long), 0644, proc_doulongvec_minmax, false);
e0361851 5166 set_table_entry(&table[1], "max_interval", &sd->max_interval,
201c373e 5167 sizeof(long), 0644, proc_doulongvec_minmax, false);
e0361851 5168 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
201c373e 5169 sizeof(int), 0644, proc_dointvec_minmax, true);
e0361851 5170 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
201c373e 5171 sizeof(int), 0644, proc_dointvec_minmax, true);
e0361851 5172 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
201c373e 5173 sizeof(int), 0644, proc_dointvec_minmax, true);
e0361851 5174 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
201c373e 5175 sizeof(int), 0644, proc_dointvec_minmax, true);
e0361851 5176 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
201c373e 5177 sizeof(int), 0644, proc_dointvec_minmax, true);
e0361851 5178 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
201c373e 5179 sizeof(int), 0644, proc_dointvec_minmax, false);
e0361851 5180 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
201c373e 5181 sizeof(int), 0644, proc_dointvec_minmax, false);
ace8b3d6 5182 set_table_entry(&table[9], "cache_nice_tries",
e692ab53 5183 &sd->cache_nice_tries,
201c373e 5184 sizeof(int), 0644, proc_dointvec_minmax, false);
ace8b3d6 5185 set_table_entry(&table[10], "flags", &sd->flags,
201c373e 5186 sizeof(int), 0644, proc_dointvec_minmax, false);
37e6bae8
AS
5187 set_table_entry(&table[11], "max_newidle_lb_cost",
5188 &sd->max_newidle_lb_cost,
5189 sizeof(long), 0644, proc_doulongvec_minmax, false);
5190 set_table_entry(&table[12], "name", sd->name,
201c373e 5191 CORENAME_MAX_SIZE, 0444, proc_dostring, false);
37e6bae8 5192 /* &table[13] is terminator */
e692ab53
NP
5193
5194 return table;
5195}
5196
be7002e6 5197static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
e692ab53
NP
5198{
5199 struct ctl_table *entry, *table;
5200 struct sched_domain *sd;
5201 int domain_num = 0, i;
5202 char buf[32];
5203
5204 for_each_domain(cpu, sd)
5205 domain_num++;
5206 entry = table = sd_alloc_ctl_entry(domain_num + 1);
ad1cdc1d
MM
5207 if (table == NULL)
5208 return NULL;
e692ab53
NP
5209
5210 i = 0;
5211 for_each_domain(cpu, sd) {
5212 snprintf(buf, 32, "domain%d", i);
e692ab53 5213 entry->procname = kstrdup(buf, GFP_KERNEL);
c57baf1e 5214 entry->mode = 0555;
e692ab53
NP
5215 entry->child = sd_alloc_ctl_domain_table(sd);
5216 entry++;
5217 i++;
5218 }
5219 return table;
5220}
5221
5222static struct ctl_table_header *sd_sysctl_header;
6382bc90 5223static void register_sched_domain_sysctl(void)
e692ab53 5224{
6ad4c188 5225 int i, cpu_num = num_possible_cpus();
e692ab53
NP
5226 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5227 char buf[32];
5228
7378547f
MM
5229 WARN_ON(sd_ctl_dir[0].child);
5230 sd_ctl_dir[0].child = entry;
5231
ad1cdc1d
MM
5232 if (entry == NULL)
5233 return;
5234
6ad4c188 5235 for_each_possible_cpu(i) {
e692ab53 5236 snprintf(buf, 32, "cpu%d", i);
e692ab53 5237 entry->procname = kstrdup(buf, GFP_KERNEL);
c57baf1e 5238 entry->mode = 0555;
e692ab53 5239 entry->child = sd_alloc_ctl_cpu_table(i);
97b6ea7b 5240 entry++;
e692ab53 5241 }
7378547f
MM
5242
5243 WARN_ON(sd_sysctl_header);
e692ab53
NP
5244 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5245}
6382bc90 5246
7378547f 5247/* may be called multiple times per register */
6382bc90
MM
5248static void unregister_sched_domain_sysctl(void)
5249{
7378547f
MM
5250 if (sd_sysctl_header)
5251 unregister_sysctl_table(sd_sysctl_header);
6382bc90 5252 sd_sysctl_header = NULL;
7378547f
MM
5253 if (sd_ctl_dir[0].child)
5254 sd_free_ctl_entry(&sd_ctl_dir[0].child);
6382bc90 5255}
e692ab53 5256#else
6382bc90
MM
5257static void register_sched_domain_sysctl(void)
5258{
5259}
5260static void unregister_sched_domain_sysctl(void)
e692ab53
NP
5261{
5262}
5263#endif
5264
1f11eb6a
GH
5265static void set_rq_online(struct rq *rq)
5266{
5267 if (!rq->online) {
5268 const struct sched_class *class;
5269
c6c4927b 5270 cpumask_set_cpu(rq->cpu, rq->rd->online);
1f11eb6a
GH
5271 rq->online = 1;
5272
5273 for_each_class(class) {
5274 if (class->rq_online)
5275 class->rq_online(rq);
5276 }
5277 }
5278}
5279
5280static void set_rq_offline(struct rq *rq)
5281{
5282 if (rq->online) {
5283 const struct sched_class *class;
5284
5285 for_each_class(class) {
5286 if (class->rq_offline)
5287 class->rq_offline(rq);
5288 }
5289
c6c4927b 5290 cpumask_clear_cpu(rq->cpu, rq->rd->online);
1f11eb6a
GH
5291 rq->online = 0;
5292 }
5293}
5294
1da177e4
LT
5295/*
5296 * migration_call - callback that gets triggered when a CPU is added.
5297 * Here we can start up the necessary migration thread for the new CPU.
5298 */
0db0628d 5299static int
48f24c4d 5300migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
1da177e4 5301{
48f24c4d 5302 int cpu = (long)hcpu;
1da177e4 5303 unsigned long flags;
969c7921 5304 struct rq *rq = cpu_rq(cpu);
1da177e4 5305
48c5ccae 5306 switch (action & ~CPU_TASKS_FROZEN) {
5be9361c 5307
1da177e4 5308 case CPU_UP_PREPARE:
a468d389 5309 rq->calc_load_update = calc_load_update;
1da177e4 5310 break;
48f24c4d 5311
1da177e4 5312 case CPU_ONLINE:
1f94ef59 5313 /* Update our root-domain */
05fa785c 5314 raw_spin_lock_irqsave(&rq->lock, flags);
1f94ef59 5315 if (rq->rd) {
c6c4927b 5316 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
1f11eb6a
GH
5317
5318 set_rq_online(rq);
1f94ef59 5319 }
05fa785c 5320 raw_spin_unlock_irqrestore(&rq->lock, flags);
1da177e4 5321 break;
48f24c4d 5322
1da177e4 5323#ifdef CONFIG_HOTPLUG_CPU
08f503b0 5324 case CPU_DYING:
317f3941 5325 sched_ttwu_pending();
57d885fe 5326 /* Update our root-domain */
05fa785c 5327 raw_spin_lock_irqsave(&rq->lock, flags);
57d885fe 5328 if (rq->rd) {
c6c4927b 5329 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
1f11eb6a 5330 set_rq_offline(rq);
57d885fe 5331 }
48c5ccae
PZ
5332 migrate_tasks(cpu);
5333 BUG_ON(rq->nr_running != 1); /* the migration thread */
05fa785c 5334 raw_spin_unlock_irqrestore(&rq->lock, flags);
5d180232 5335 break;
48c5ccae 5336
5d180232 5337 case CPU_DEAD:
f319da0c 5338 calc_load_migrate(rq);
57d885fe 5339 break;
1da177e4
LT
5340#endif
5341 }
49c022e6
PZ
5342
5343 update_max_interval();
5344
1da177e4
LT
5345 return NOTIFY_OK;
5346}
5347
f38b0820
PM
5348/*
5349 * Register at high priority so that task migration (migrate_all_tasks)
5350 * happens before everything else. This has to be lower priority than
cdd6c482 5351 * the notifier in the perf_event subsystem, though.
1da177e4 5352 */
0db0628d 5353static struct notifier_block migration_notifier = {
1da177e4 5354 .notifier_call = migration_call,
50a323b7 5355 .priority = CPU_PRI_MIGRATION,
1da177e4
LT
5356};
5357
6a82b60d 5358static void set_cpu_rq_start_time(void)
a803f026
CM
5359{
5360 int cpu = smp_processor_id();
5361 struct rq *rq = cpu_rq(cpu);
5362 rq->age_stamp = sched_clock_cpu(cpu);
5363}
5364
0db0628d 5365static int sched_cpu_active(struct notifier_block *nfb,
3a101d05
TH
5366 unsigned long action, void *hcpu)
5367{
5368 switch (action & ~CPU_TASKS_FROZEN) {
a803f026
CM
5369 case CPU_STARTING:
5370 set_cpu_rq_start_time();
5371 return NOTIFY_OK;
3a101d05
TH
5372 case CPU_DOWN_FAILED:
5373 set_cpu_active((long)hcpu, true);
5374 return NOTIFY_OK;
5375 default:
5376 return NOTIFY_DONE;
5377 }
5378}
5379
0db0628d 5380static int sched_cpu_inactive(struct notifier_block *nfb,
3a101d05
TH
5381 unsigned long action, void *hcpu)
5382{
5383 switch (action & ~CPU_TASKS_FROZEN) {
5384 case CPU_DOWN_PREPARE:
3c18d447 5385 set_cpu_active((long)hcpu, false);
3a101d05 5386 return NOTIFY_OK;
3c18d447
JL
5387 default:
5388 return NOTIFY_DONE;
3a101d05
TH
5389 }
5390}
5391
7babe8db 5392static int __init migration_init(void)
1da177e4
LT
5393{
5394 void *cpu = (void *)(long)smp_processor_id();
07dccf33 5395 int err;
48f24c4d 5396
3a101d05 5397 /* Initialize migration for the boot CPU */
07dccf33
AM
5398 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5399 BUG_ON(err == NOTIFY_BAD);
1da177e4
LT
5400 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5401 register_cpu_notifier(&migration_notifier);
7babe8db 5402
3a101d05
TH
5403 /* Register cpu active notifiers */
5404 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
5405 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
5406
a004cd42 5407 return 0;
1da177e4 5408}
7babe8db 5409early_initcall(migration_init);
1da177e4
LT
5410#endif
5411
5412#ifdef CONFIG_SMP
476f3534 5413
4cb98839
PZ
5414static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
5415
3e9830dc 5416#ifdef CONFIG_SCHED_DEBUG
4dcf6aff 5417
d039ac60 5418static __read_mostly int sched_debug_enabled;
f6630114 5419
d039ac60 5420static int __init sched_debug_setup(char *str)
f6630114 5421{
d039ac60 5422 sched_debug_enabled = 1;
f6630114
MT
5423
5424 return 0;
5425}
d039ac60
PZ
5426early_param("sched_debug", sched_debug_setup);
5427
5428static inline bool sched_debug(void)
5429{
5430 return sched_debug_enabled;
5431}
f6630114 5432
7c16ec58 5433static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
96f874e2 5434 struct cpumask *groupmask)
1da177e4 5435{
4dcf6aff 5436 struct sched_group *group = sd->groups;
1da177e4 5437
96f874e2 5438 cpumask_clear(groupmask);
4dcf6aff
IM
5439
5440 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5441
5442 if (!(sd->flags & SD_LOAD_BALANCE)) {
3df0fc5b 5443 printk("does not load-balance\n");
4dcf6aff 5444 if (sd->parent)
3df0fc5b
PZ
5445 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5446 " has parent");
4dcf6aff 5447 return -1;
41c7ce9a
NP
5448 }
5449
333470ee
TH
5450 printk(KERN_CONT "span %*pbl level %s\n",
5451 cpumask_pr_args(sched_domain_span(sd)), sd->name);
4dcf6aff 5452
758b2cdc 5453 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
3df0fc5b
PZ
5454 printk(KERN_ERR "ERROR: domain->span does not contain "
5455 "CPU%d\n", cpu);
4dcf6aff 5456 }
758b2cdc 5457 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
3df0fc5b
PZ
5458 printk(KERN_ERR "ERROR: domain->groups does not contain"
5459 " CPU%d\n", cpu);
4dcf6aff 5460 }
1da177e4 5461
4dcf6aff 5462 printk(KERN_DEBUG "%*s groups:", level + 1, "");
1da177e4 5463 do {
4dcf6aff 5464 if (!group) {
3df0fc5b
PZ
5465 printk("\n");
5466 printk(KERN_ERR "ERROR: group is NULL\n");
1da177e4
LT
5467 break;
5468 }
5469
758b2cdc 5470 if (!cpumask_weight(sched_group_cpus(group))) {
3df0fc5b
PZ
5471 printk(KERN_CONT "\n");
5472 printk(KERN_ERR "ERROR: empty group\n");
4dcf6aff
IM
5473 break;
5474 }
1da177e4 5475
cb83b629
PZ
5476 if (!(sd->flags & SD_OVERLAP) &&
5477 cpumask_intersects(groupmask, sched_group_cpus(group))) {
3df0fc5b
PZ
5478 printk(KERN_CONT "\n");
5479 printk(KERN_ERR "ERROR: repeated CPUs\n");
4dcf6aff
IM
5480 break;
5481 }
1da177e4 5482
758b2cdc 5483 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
1da177e4 5484
333470ee
TH
5485 printk(KERN_CONT " %*pbl",
5486 cpumask_pr_args(sched_group_cpus(group)));
ca8ce3d0 5487 if (group->sgc->capacity != SCHED_CAPACITY_SCALE) {
63b2ca30
NP
5488 printk(KERN_CONT " (cpu_capacity = %d)",
5489 group->sgc->capacity);
381512cf 5490 }
1da177e4 5491
4dcf6aff
IM
5492 group = group->next;
5493 } while (group != sd->groups);
3df0fc5b 5494 printk(KERN_CONT "\n");
1da177e4 5495
758b2cdc 5496 if (!cpumask_equal(sched_domain_span(sd), groupmask))
3df0fc5b 5497 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
1da177e4 5498
758b2cdc
RR
5499 if (sd->parent &&
5500 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
3df0fc5b
PZ
5501 printk(KERN_ERR "ERROR: parent span is not a superset "
5502 "of domain->span\n");
4dcf6aff
IM
5503 return 0;
5504}
1da177e4 5505
4dcf6aff
IM
5506static void sched_domain_debug(struct sched_domain *sd, int cpu)
5507{
5508 int level = 0;
1da177e4 5509
d039ac60 5510 if (!sched_debug_enabled)
f6630114
MT
5511 return;
5512
4dcf6aff
IM
5513 if (!sd) {
5514 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5515 return;
5516 }
1da177e4 5517
4dcf6aff
IM
5518 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5519
5520 for (;;) {
4cb98839 5521 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
4dcf6aff 5522 break;
1da177e4
LT
5523 level++;
5524 sd = sd->parent;
33859f7f 5525 if (!sd)
4dcf6aff
IM
5526 break;
5527 }
1da177e4 5528}
6d6bc0ad 5529#else /* !CONFIG_SCHED_DEBUG */
48f24c4d 5530# define sched_domain_debug(sd, cpu) do { } while (0)
d039ac60
PZ
5531static inline bool sched_debug(void)
5532{
5533 return false;
5534}
6d6bc0ad 5535#endif /* CONFIG_SCHED_DEBUG */
1da177e4 5536
1a20ff27 5537static int sd_degenerate(struct sched_domain *sd)
245af2c7 5538{
758b2cdc 5539 if (cpumask_weight(sched_domain_span(sd)) == 1)
245af2c7
SS
5540 return 1;
5541
5542 /* Following flags need at least 2 groups */
5543 if (sd->flags & (SD_LOAD_BALANCE |
5544 SD_BALANCE_NEWIDLE |
5545 SD_BALANCE_FORK |
89c4710e 5546 SD_BALANCE_EXEC |
5d4dfddd 5547 SD_SHARE_CPUCAPACITY |
d77b3ed5
VG
5548 SD_SHARE_PKG_RESOURCES |
5549 SD_SHARE_POWERDOMAIN)) {
245af2c7
SS
5550 if (sd->groups != sd->groups->next)
5551 return 0;
5552 }
5553
5554 /* Following flags don't use groups */
c88d5910 5555 if (sd->flags & (SD_WAKE_AFFINE))
245af2c7
SS
5556 return 0;
5557
5558 return 1;
5559}
5560
48f24c4d
IM
5561static int
5562sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
245af2c7
SS
5563{
5564 unsigned long cflags = sd->flags, pflags = parent->flags;
5565
5566 if (sd_degenerate(parent))
5567 return 1;
5568
758b2cdc 5569 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
245af2c7
SS
5570 return 0;
5571
245af2c7
SS
5572 /* Flags needing groups don't count if only 1 group in parent */
5573 if (parent->groups == parent->groups->next) {
5574 pflags &= ~(SD_LOAD_BALANCE |
5575 SD_BALANCE_NEWIDLE |
5576 SD_BALANCE_FORK |
89c4710e 5577 SD_BALANCE_EXEC |
5d4dfddd 5578 SD_SHARE_CPUCAPACITY |
10866e62 5579 SD_SHARE_PKG_RESOURCES |
d77b3ed5
VG
5580 SD_PREFER_SIBLING |
5581 SD_SHARE_POWERDOMAIN);
5436499e
KC
5582 if (nr_node_ids == 1)
5583 pflags &= ~SD_SERIALIZE;
245af2c7
SS
5584 }
5585 if (~cflags & pflags)
5586 return 0;
5587
5588 return 1;
5589}
5590
dce840a0 5591static void free_rootdomain(struct rcu_head *rcu)
c6c4927b 5592{
dce840a0 5593 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
047106ad 5594
68e74568 5595 cpupri_cleanup(&rd->cpupri);
6bfd6d72 5596 cpudl_cleanup(&rd->cpudl);
1baca4ce 5597 free_cpumask_var(rd->dlo_mask);
c6c4927b
RR
5598 free_cpumask_var(rd->rto_mask);
5599 free_cpumask_var(rd->online);
5600 free_cpumask_var(rd->span);
5601 kfree(rd);
5602}
5603
57d885fe
GH
5604static void rq_attach_root(struct rq *rq, struct root_domain *rd)
5605{
a0490fa3 5606 struct root_domain *old_rd = NULL;
57d885fe 5607 unsigned long flags;
57d885fe 5608
05fa785c 5609 raw_spin_lock_irqsave(&rq->lock, flags);
57d885fe
GH
5610
5611 if (rq->rd) {
a0490fa3 5612 old_rd = rq->rd;
57d885fe 5613
c6c4927b 5614 if (cpumask_test_cpu(rq->cpu, old_rd->online))
1f11eb6a 5615 set_rq_offline(rq);
57d885fe 5616
c6c4927b 5617 cpumask_clear_cpu(rq->cpu, old_rd->span);
dc938520 5618
a0490fa3 5619 /*
0515973f 5620 * If we dont want to free the old_rd yet then
a0490fa3
IM
5621 * set old_rd to NULL to skip the freeing later
5622 * in this function:
5623 */
5624 if (!atomic_dec_and_test(&old_rd->refcount))
5625 old_rd = NULL;
57d885fe
GH
5626 }
5627
5628 atomic_inc(&rd->refcount);
5629 rq->rd = rd;
5630
c6c4927b 5631 cpumask_set_cpu(rq->cpu, rd->span);
00aec93d 5632 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
1f11eb6a 5633 set_rq_online(rq);
57d885fe 5634
05fa785c 5635 raw_spin_unlock_irqrestore(&rq->lock, flags);
a0490fa3
IM
5636
5637 if (old_rd)
dce840a0 5638 call_rcu_sched(&old_rd->rcu, free_rootdomain);
57d885fe
GH
5639}
5640
68c38fc3 5641static int init_rootdomain(struct root_domain *rd)
57d885fe
GH
5642{
5643 memset(rd, 0, sizeof(*rd));
5644
68c38fc3 5645 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
0c910d28 5646 goto out;
68c38fc3 5647 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
c6c4927b 5648 goto free_span;
1baca4ce 5649 if (!alloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
c6c4927b 5650 goto free_online;
1baca4ce
JL
5651 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
5652 goto free_dlo_mask;
6e0534f2 5653
332ac17e 5654 init_dl_bw(&rd->dl_bw);
6bfd6d72
JL
5655 if (cpudl_init(&rd->cpudl) != 0)
5656 goto free_dlo_mask;
332ac17e 5657
68c38fc3 5658 if (cpupri_init(&rd->cpupri) != 0)
68e74568 5659 goto free_rto_mask;
c6c4927b 5660 return 0;
6e0534f2 5661
68e74568
RR
5662free_rto_mask:
5663 free_cpumask_var(rd->rto_mask);
1baca4ce
JL
5664free_dlo_mask:
5665 free_cpumask_var(rd->dlo_mask);
c6c4927b
RR
5666free_online:
5667 free_cpumask_var(rd->online);
5668free_span:
5669 free_cpumask_var(rd->span);
0c910d28 5670out:
c6c4927b 5671 return -ENOMEM;
57d885fe
GH
5672}
5673
029632fb
PZ
5674/*
5675 * By default the system creates a single root-domain with all cpus as
5676 * members (mimicking the global state we have today).
5677 */
5678struct root_domain def_root_domain;
5679
57d885fe
GH
5680static void init_defrootdomain(void)
5681{
68c38fc3 5682 init_rootdomain(&def_root_domain);
c6c4927b 5683
57d885fe
GH
5684 atomic_set(&def_root_domain.refcount, 1);
5685}
5686
dc938520 5687static struct root_domain *alloc_rootdomain(void)
57d885fe
GH
5688{
5689 struct root_domain *rd;
5690
5691 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
5692 if (!rd)
5693 return NULL;
5694
68c38fc3 5695 if (init_rootdomain(rd) != 0) {
c6c4927b
RR
5696 kfree(rd);
5697 return NULL;
5698 }
57d885fe
GH
5699
5700 return rd;
5701}
5702
63b2ca30 5703static void free_sched_groups(struct sched_group *sg, int free_sgc)
e3589f6c
PZ
5704{
5705 struct sched_group *tmp, *first;
5706
5707 if (!sg)
5708 return;
5709
5710 first = sg;
5711 do {
5712 tmp = sg->next;
5713
63b2ca30
NP
5714 if (free_sgc && atomic_dec_and_test(&sg->sgc->ref))
5715 kfree(sg->sgc);
e3589f6c
PZ
5716
5717 kfree(sg);
5718 sg = tmp;
5719 } while (sg != first);
5720}
5721
dce840a0
PZ
5722static void free_sched_domain(struct rcu_head *rcu)
5723{
5724 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
e3589f6c
PZ
5725
5726 /*
5727 * If its an overlapping domain it has private groups, iterate and
5728 * nuke them all.
5729 */
5730 if (sd->flags & SD_OVERLAP) {
5731 free_sched_groups(sd->groups, 1);
5732 } else if (atomic_dec_and_test(&sd->groups->ref)) {
63b2ca30 5733 kfree(sd->groups->sgc);
dce840a0 5734 kfree(sd->groups);
9c3f75cb 5735 }
dce840a0
PZ
5736 kfree(sd);
5737}
5738
5739static void destroy_sched_domain(struct sched_domain *sd, int cpu)
5740{
5741 call_rcu(&sd->rcu, free_sched_domain);
5742}
5743
5744static void destroy_sched_domains(struct sched_domain *sd, int cpu)
5745{
5746 for (; sd; sd = sd->parent)
5747 destroy_sched_domain(sd, cpu);
5748}
5749
518cd623
PZ
5750/*
5751 * Keep a special pointer to the highest sched_domain that has
5752 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
5753 * allows us to avoid some pointer chasing select_idle_sibling().
5754 *
5755 * Also keep a unique ID per domain (we use the first cpu number in
5756 * the cpumask of the domain), this allows us to quickly tell if
39be3501 5757 * two cpus are in the same cache domain, see cpus_share_cache().
518cd623
PZ
5758 */
5759DEFINE_PER_CPU(struct sched_domain *, sd_llc);
7d9ffa89 5760DEFINE_PER_CPU(int, sd_llc_size);
518cd623 5761DEFINE_PER_CPU(int, sd_llc_id);
fb13c7ee 5762DEFINE_PER_CPU(struct sched_domain *, sd_numa);
37dc6b50
PM
5763DEFINE_PER_CPU(struct sched_domain *, sd_busy);
5764DEFINE_PER_CPU(struct sched_domain *, sd_asym);
518cd623
PZ
5765
5766static void update_top_cache_domain(int cpu)
5767{
5768 struct sched_domain *sd;
5d4cf996 5769 struct sched_domain *busy_sd = NULL;
518cd623 5770 int id = cpu;
7d9ffa89 5771 int size = 1;
518cd623
PZ
5772
5773 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
7d9ffa89 5774 if (sd) {
518cd623 5775 id = cpumask_first(sched_domain_span(sd));
7d9ffa89 5776 size = cpumask_weight(sched_domain_span(sd));
5d4cf996 5777 busy_sd = sd->parent; /* sd_busy */
7d9ffa89 5778 }
5d4cf996 5779 rcu_assign_pointer(per_cpu(sd_busy, cpu), busy_sd);
518cd623
PZ
5780
5781 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
7d9ffa89 5782 per_cpu(sd_llc_size, cpu) = size;
518cd623 5783 per_cpu(sd_llc_id, cpu) = id;
fb13c7ee
MG
5784
5785 sd = lowest_flag_domain(cpu, SD_NUMA);
5786 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
37dc6b50
PM
5787
5788 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
5789 rcu_assign_pointer(per_cpu(sd_asym, cpu), sd);
518cd623
PZ
5790}
5791
1da177e4 5792/*
0eab9146 5793 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
1da177e4
LT
5794 * hold the hotplug lock.
5795 */
0eab9146
IM
5796static void
5797cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
1da177e4 5798{
70b97a7f 5799 struct rq *rq = cpu_rq(cpu);
245af2c7
SS
5800 struct sched_domain *tmp;
5801
5802 /* Remove the sched domains which do not contribute to scheduling. */
f29c9b1c 5803 for (tmp = sd; tmp; ) {
245af2c7
SS
5804 struct sched_domain *parent = tmp->parent;
5805 if (!parent)
5806 break;
f29c9b1c 5807
1a848870 5808 if (sd_parent_degenerate(tmp, parent)) {
245af2c7 5809 tmp->parent = parent->parent;
1a848870
SS
5810 if (parent->parent)
5811 parent->parent->child = tmp;
10866e62
PZ
5812 /*
5813 * Transfer SD_PREFER_SIBLING down in case of a
5814 * degenerate parent; the spans match for this
5815 * so the property transfers.
5816 */
5817 if (parent->flags & SD_PREFER_SIBLING)
5818 tmp->flags |= SD_PREFER_SIBLING;
dce840a0 5819 destroy_sched_domain(parent, cpu);
f29c9b1c
LZ
5820 } else
5821 tmp = tmp->parent;
245af2c7
SS
5822 }
5823
1a848870 5824 if (sd && sd_degenerate(sd)) {
dce840a0 5825 tmp = sd;
245af2c7 5826 sd = sd->parent;
dce840a0 5827 destroy_sched_domain(tmp, cpu);
1a848870
SS
5828 if (sd)
5829 sd->child = NULL;
5830 }
1da177e4 5831
4cb98839 5832 sched_domain_debug(sd, cpu);
1da177e4 5833
57d885fe 5834 rq_attach_root(rq, rd);
dce840a0 5835 tmp = rq->sd;
674311d5 5836 rcu_assign_pointer(rq->sd, sd);
dce840a0 5837 destroy_sched_domains(tmp, cpu);
518cd623
PZ
5838
5839 update_top_cache_domain(cpu);
1da177e4
LT
5840}
5841
1da177e4
LT
5842/* Setup the mask of cpus configured for isolated domains */
5843static int __init isolated_cpu_setup(char *str)
5844{
bdddd296 5845 alloc_bootmem_cpumask_var(&cpu_isolated_map);
968ea6d8 5846 cpulist_parse(str, cpu_isolated_map);
1da177e4
LT
5847 return 1;
5848}
5849
8927f494 5850__setup("isolcpus=", isolated_cpu_setup);
1da177e4 5851
49a02c51 5852struct s_data {
21d42ccf 5853 struct sched_domain ** __percpu sd;
49a02c51
AH
5854 struct root_domain *rd;
5855};
5856
2109b99e 5857enum s_alloc {
2109b99e 5858 sa_rootdomain,
21d42ccf 5859 sa_sd,
dce840a0 5860 sa_sd_storage,
2109b99e
AH
5861 sa_none,
5862};
5863
c1174876
PZ
5864/*
5865 * Build an iteration mask that can exclude certain CPUs from the upwards
5866 * domain traversal.
5867 *
5868 * Asymmetric node setups can result in situations where the domain tree is of
5869 * unequal depth, make sure to skip domains that already cover the entire
5870 * range.
5871 *
5872 * In that case build_sched_domains() will have terminated the iteration early
5873 * and our sibling sd spans will be empty. Domains should always include the
5874 * cpu they're built on, so check that.
5875 *
5876 */
5877static void build_group_mask(struct sched_domain *sd, struct sched_group *sg)
5878{
5879 const struct cpumask *span = sched_domain_span(sd);
5880 struct sd_data *sdd = sd->private;
5881 struct sched_domain *sibling;
5882 int i;
5883
5884 for_each_cpu(i, span) {
5885 sibling = *per_cpu_ptr(sdd->sd, i);
5886 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
5887 continue;
5888
5889 cpumask_set_cpu(i, sched_group_mask(sg));
5890 }
5891}
5892
5893/*
5894 * Return the canonical balance cpu for this group, this is the first cpu
5895 * of this group that's also in the iteration mask.
5896 */
5897int group_balance_cpu(struct sched_group *sg)
5898{
5899 return cpumask_first_and(sched_group_cpus(sg), sched_group_mask(sg));
5900}
5901
e3589f6c
PZ
5902static int
5903build_overlap_sched_groups(struct sched_domain *sd, int cpu)
5904{
5905 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
5906 const struct cpumask *span = sched_domain_span(sd);
5907 struct cpumask *covered = sched_domains_tmpmask;
5908 struct sd_data *sdd = sd->private;
aaecac4a 5909 struct sched_domain *sibling;
e3589f6c
PZ
5910 int i;
5911
5912 cpumask_clear(covered);
5913
5914 for_each_cpu(i, span) {
5915 struct cpumask *sg_span;
5916
5917 if (cpumask_test_cpu(i, covered))
5918 continue;
5919
aaecac4a 5920 sibling = *per_cpu_ptr(sdd->sd, i);
c1174876
PZ
5921
5922 /* See the comment near build_group_mask(). */
aaecac4a 5923 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
c1174876
PZ
5924 continue;
5925
e3589f6c 5926 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
4d78a223 5927 GFP_KERNEL, cpu_to_node(cpu));
e3589f6c
PZ
5928
5929 if (!sg)
5930 goto fail;
5931
5932 sg_span = sched_group_cpus(sg);
aaecac4a
ZZ
5933 if (sibling->child)
5934 cpumask_copy(sg_span, sched_domain_span(sibling->child));
5935 else
e3589f6c
PZ
5936 cpumask_set_cpu(i, sg_span);
5937
5938 cpumask_or(covered, covered, sg_span);
5939
63b2ca30
NP
5940 sg->sgc = *per_cpu_ptr(sdd->sgc, i);
5941 if (atomic_inc_return(&sg->sgc->ref) == 1)
c1174876
PZ
5942 build_group_mask(sd, sg);
5943
c3decf0d 5944 /*
63b2ca30 5945 * Initialize sgc->capacity such that even if we mess up the
c3decf0d
PZ
5946 * domains and no possible iteration will get us here, we won't
5947 * die on a /0 trap.
5948 */
ca8ce3d0 5949 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span);
e3589f6c 5950
c1174876
PZ
5951 /*
5952 * Make sure the first group of this domain contains the
5953 * canonical balance cpu. Otherwise the sched_domain iteration
5954 * breaks. See update_sg_lb_stats().
5955 */
74a5ce20 5956 if ((!groups && cpumask_test_cpu(cpu, sg_span)) ||
c1174876 5957 group_balance_cpu(sg) == cpu)
e3589f6c
PZ
5958 groups = sg;
5959
5960 if (!first)
5961 first = sg;
5962 if (last)
5963 last->next = sg;
5964 last = sg;
5965 last->next = first;
5966 }
5967 sd->groups = groups;
5968
5969 return 0;
5970
5971fail:
5972 free_sched_groups(first, 0);
5973
5974 return -ENOMEM;
5975}
5976
dce840a0 5977static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
1da177e4 5978{
dce840a0
PZ
5979 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
5980 struct sched_domain *child = sd->child;
1da177e4 5981
dce840a0
PZ
5982 if (child)
5983 cpu = cpumask_first(sched_domain_span(child));
1e9f28fa 5984
9c3f75cb 5985 if (sg) {
dce840a0 5986 *sg = *per_cpu_ptr(sdd->sg, cpu);
63b2ca30
NP
5987 (*sg)->sgc = *per_cpu_ptr(sdd->sgc, cpu);
5988 atomic_set(&(*sg)->sgc->ref, 1); /* for claim_allocations */
9c3f75cb 5989 }
dce840a0
PZ
5990
5991 return cpu;
1e9f28fa 5992}
1e9f28fa 5993
01a08546 5994/*
dce840a0
PZ
5995 * build_sched_groups will build a circular linked list of the groups
5996 * covered by the given span, and will set each group's ->cpumask correctly,
ced549fa 5997 * and ->cpu_capacity to 0.
e3589f6c
PZ
5998 *
5999 * Assumes the sched_domain tree is fully constructed
01a08546 6000 */
e3589f6c
PZ
6001static int
6002build_sched_groups(struct sched_domain *sd, int cpu)
1da177e4 6003{
dce840a0
PZ
6004 struct sched_group *first = NULL, *last = NULL;
6005 struct sd_data *sdd = sd->private;
6006 const struct cpumask *span = sched_domain_span(sd);
f96225fd 6007 struct cpumask *covered;
dce840a0 6008 int i;
9c1cfda2 6009
e3589f6c
PZ
6010 get_group(cpu, sdd, &sd->groups);
6011 atomic_inc(&sd->groups->ref);
6012
0936629f 6013 if (cpu != cpumask_first(span))
e3589f6c
PZ
6014 return 0;
6015
f96225fd
PZ
6016 lockdep_assert_held(&sched_domains_mutex);
6017 covered = sched_domains_tmpmask;
6018
dce840a0 6019 cpumask_clear(covered);
6711cab4 6020
dce840a0
PZ
6021 for_each_cpu(i, span) {
6022 struct sched_group *sg;
cd08e923 6023 int group, j;
6711cab4 6024
dce840a0
PZ
6025 if (cpumask_test_cpu(i, covered))
6026 continue;
6711cab4 6027
cd08e923 6028 group = get_group(i, sdd, &sg);
c1174876 6029 cpumask_setall(sched_group_mask(sg));
0601a88d 6030
dce840a0
PZ
6031 for_each_cpu(j, span) {
6032 if (get_group(j, sdd, NULL) != group)
6033 continue;
0601a88d 6034
dce840a0
PZ
6035 cpumask_set_cpu(j, covered);
6036 cpumask_set_cpu(j, sched_group_cpus(sg));
6037 }
0601a88d 6038
dce840a0
PZ
6039 if (!first)
6040 first = sg;
6041 if (last)
6042 last->next = sg;
6043 last = sg;
6044 }
6045 last->next = first;
e3589f6c
PZ
6046
6047 return 0;
0601a88d 6048}
51888ca2 6049
89c4710e 6050/*
63b2ca30 6051 * Initialize sched groups cpu_capacity.
89c4710e 6052 *
63b2ca30 6053 * cpu_capacity indicates the capacity of sched group, which is used while
89c4710e 6054 * distributing the load between different sched groups in a sched domain.
63b2ca30
NP
6055 * Typically cpu_capacity for all the groups in a sched domain will be same
6056 * unless there are asymmetries in the topology. If there are asymmetries,
6057 * group having more cpu_capacity will pickup more load compared to the
6058 * group having less cpu_capacity.
89c4710e 6059 */
63b2ca30 6060static void init_sched_groups_capacity(int cpu, struct sched_domain *sd)
89c4710e 6061{
e3589f6c 6062 struct sched_group *sg = sd->groups;
89c4710e 6063
94c95ba6 6064 WARN_ON(!sg);
e3589f6c
PZ
6065
6066 do {
6067 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
6068 sg = sg->next;
6069 } while (sg != sd->groups);
89c4710e 6070
c1174876 6071 if (cpu != group_balance_cpu(sg))
e3589f6c 6072 return;
aae6d3dd 6073
63b2ca30
NP
6074 update_group_capacity(sd, cpu);
6075 atomic_set(&sg->sgc->nr_busy_cpus, sg->group_weight);
89c4710e
SS
6076}
6077
7c16ec58
MT
6078/*
6079 * Initializers for schedule domains
6080 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
6081 */
6082
1d3504fc 6083static int default_relax_domain_level = -1;
60495e77 6084int sched_domain_level_max;
1d3504fc
HS
6085
6086static int __init setup_relax_domain_level(char *str)
6087{
a841f8ce
DS
6088 if (kstrtoint(str, 0, &default_relax_domain_level))
6089 pr_warn("Unable to set relax_domain_level\n");
30e0e178 6090
1d3504fc
HS
6091 return 1;
6092}
6093__setup("relax_domain_level=", setup_relax_domain_level);
6094
6095static void set_domain_attribute(struct sched_domain *sd,
6096 struct sched_domain_attr *attr)
6097{
6098 int request;
6099
6100 if (!attr || attr->relax_domain_level < 0) {
6101 if (default_relax_domain_level < 0)
6102 return;
6103 else
6104 request = default_relax_domain_level;
6105 } else
6106 request = attr->relax_domain_level;
6107 if (request < sd->level) {
6108 /* turn off idle balance on this domain */
c88d5910 6109 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
1d3504fc
HS
6110 } else {
6111 /* turn on idle balance on this domain */
c88d5910 6112 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
1d3504fc
HS
6113 }
6114}
6115
54ab4ff4
PZ
6116static void __sdt_free(const struct cpumask *cpu_map);
6117static int __sdt_alloc(const struct cpumask *cpu_map);
6118
2109b99e
AH
6119static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
6120 const struct cpumask *cpu_map)
6121{
6122 switch (what) {
2109b99e 6123 case sa_rootdomain:
822ff793
PZ
6124 if (!atomic_read(&d->rd->refcount))
6125 free_rootdomain(&d->rd->rcu); /* fall through */
21d42ccf
PZ
6126 case sa_sd:
6127 free_percpu(d->sd); /* fall through */
dce840a0 6128 case sa_sd_storage:
54ab4ff4 6129 __sdt_free(cpu_map); /* fall through */
2109b99e
AH
6130 case sa_none:
6131 break;
6132 }
6133}
3404c8d9 6134
2109b99e
AH
6135static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
6136 const struct cpumask *cpu_map)
6137{
dce840a0
PZ
6138 memset(d, 0, sizeof(*d));
6139
54ab4ff4
PZ
6140 if (__sdt_alloc(cpu_map))
6141 return sa_sd_storage;
dce840a0
PZ
6142 d->sd = alloc_percpu(struct sched_domain *);
6143 if (!d->sd)
6144 return sa_sd_storage;
2109b99e 6145 d->rd = alloc_rootdomain();
dce840a0 6146 if (!d->rd)
21d42ccf 6147 return sa_sd;
2109b99e
AH
6148 return sa_rootdomain;
6149}
57d885fe 6150
dce840a0
PZ
6151/*
6152 * NULL the sd_data elements we've used to build the sched_domain and
6153 * sched_group structure so that the subsequent __free_domain_allocs()
6154 * will not free the data we're using.
6155 */
6156static void claim_allocations(int cpu, struct sched_domain *sd)
6157{
6158 struct sd_data *sdd = sd->private;
dce840a0
PZ
6159
6160 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
6161 *per_cpu_ptr(sdd->sd, cpu) = NULL;
6162
e3589f6c 6163 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
dce840a0 6164 *per_cpu_ptr(sdd->sg, cpu) = NULL;
e3589f6c 6165
63b2ca30
NP
6166 if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref))
6167 *per_cpu_ptr(sdd->sgc, cpu) = NULL;
dce840a0
PZ
6168}
6169
cb83b629 6170#ifdef CONFIG_NUMA
cb83b629 6171static int sched_domains_numa_levels;
e3fe70b1 6172enum numa_topology_type sched_numa_topology_type;
cb83b629 6173static int *sched_domains_numa_distance;
9942f79b 6174int sched_max_numa_distance;
cb83b629
PZ
6175static struct cpumask ***sched_domains_numa_masks;
6176static int sched_domains_curr_level;
143e1e28 6177#endif
cb83b629 6178
143e1e28
VG
6179/*
6180 * SD_flags allowed in topology descriptions.
6181 *
5d4dfddd 6182 * SD_SHARE_CPUCAPACITY - describes SMT topologies
143e1e28
VG
6183 * SD_SHARE_PKG_RESOURCES - describes shared caches
6184 * SD_NUMA - describes NUMA topologies
d77b3ed5 6185 * SD_SHARE_POWERDOMAIN - describes shared power domain
143e1e28
VG
6186 *
6187 * Odd one out:
6188 * SD_ASYM_PACKING - describes SMT quirks
6189 */
6190#define TOPOLOGY_SD_FLAGS \
5d4dfddd 6191 (SD_SHARE_CPUCAPACITY | \
143e1e28
VG
6192 SD_SHARE_PKG_RESOURCES | \
6193 SD_NUMA | \
d77b3ed5
VG
6194 SD_ASYM_PACKING | \
6195 SD_SHARE_POWERDOMAIN)
cb83b629
PZ
6196
6197static struct sched_domain *
143e1e28 6198sd_init(struct sched_domain_topology_level *tl, int cpu)
cb83b629
PZ
6199{
6200 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu);
143e1e28
VG
6201 int sd_weight, sd_flags = 0;
6202
6203#ifdef CONFIG_NUMA
6204 /*
6205 * Ugly hack to pass state to sd_numa_mask()...
6206 */
6207 sched_domains_curr_level = tl->numa_level;
6208#endif
6209
6210 sd_weight = cpumask_weight(tl->mask(cpu));
6211
6212 if (tl->sd_flags)
6213 sd_flags = (*tl->sd_flags)();
6214 if (WARN_ONCE(sd_flags & ~TOPOLOGY_SD_FLAGS,
6215 "wrong sd_flags in topology description\n"))
6216 sd_flags &= ~TOPOLOGY_SD_FLAGS;
cb83b629
PZ
6217
6218 *sd = (struct sched_domain){
6219 .min_interval = sd_weight,
6220 .max_interval = 2*sd_weight,
6221 .busy_factor = 32,
870a0bb5 6222 .imbalance_pct = 125,
143e1e28
VG
6223
6224 .cache_nice_tries = 0,
6225 .busy_idx = 0,
6226 .idle_idx = 0,
cb83b629
PZ
6227 .newidle_idx = 0,
6228 .wake_idx = 0,
6229 .forkexec_idx = 0,
6230
6231 .flags = 1*SD_LOAD_BALANCE
6232 | 1*SD_BALANCE_NEWIDLE
143e1e28
VG
6233 | 1*SD_BALANCE_EXEC
6234 | 1*SD_BALANCE_FORK
cb83b629 6235 | 0*SD_BALANCE_WAKE
143e1e28 6236 | 1*SD_WAKE_AFFINE
5d4dfddd 6237 | 0*SD_SHARE_CPUCAPACITY
cb83b629 6238 | 0*SD_SHARE_PKG_RESOURCES
143e1e28 6239 | 0*SD_SERIALIZE
cb83b629 6240 | 0*SD_PREFER_SIBLING
143e1e28
VG
6241 | 0*SD_NUMA
6242 | sd_flags
cb83b629 6243 ,
143e1e28 6244
cb83b629
PZ
6245 .last_balance = jiffies,
6246 .balance_interval = sd_weight,
143e1e28 6247 .smt_gain = 0,
2b4cfe64
JL
6248 .max_newidle_lb_cost = 0,
6249 .next_decay_max_lb_cost = jiffies,
143e1e28
VG
6250#ifdef CONFIG_SCHED_DEBUG
6251 .name = tl->name,
6252#endif
cb83b629 6253 };
cb83b629
PZ
6254
6255 /*
143e1e28 6256 * Convert topological properties into behaviour.
cb83b629 6257 */
143e1e28 6258
5d4dfddd 6259 if (sd->flags & SD_SHARE_CPUCAPACITY) {
caff37ef 6260 sd->flags |= SD_PREFER_SIBLING;
143e1e28
VG
6261 sd->imbalance_pct = 110;
6262 sd->smt_gain = 1178; /* ~15% */
143e1e28
VG
6263
6264 } else if (sd->flags & SD_SHARE_PKG_RESOURCES) {
6265 sd->imbalance_pct = 117;
6266 sd->cache_nice_tries = 1;
6267 sd->busy_idx = 2;
6268
6269#ifdef CONFIG_NUMA
6270 } else if (sd->flags & SD_NUMA) {
6271 sd->cache_nice_tries = 2;
6272 sd->busy_idx = 3;
6273 sd->idle_idx = 2;
6274
6275 sd->flags |= SD_SERIALIZE;
6276 if (sched_domains_numa_distance[tl->numa_level] > RECLAIM_DISTANCE) {
6277 sd->flags &= ~(SD_BALANCE_EXEC |
6278 SD_BALANCE_FORK |
6279 SD_WAKE_AFFINE);
6280 }
6281
6282#endif
6283 } else {
6284 sd->flags |= SD_PREFER_SIBLING;
6285 sd->cache_nice_tries = 1;
6286 sd->busy_idx = 2;
6287 sd->idle_idx = 1;
6288 }
6289
6290 sd->private = &tl->data;
cb83b629
PZ
6291
6292 return sd;
6293}
6294
143e1e28
VG
6295/*
6296 * Topology list, bottom-up.
6297 */
6298static struct sched_domain_topology_level default_topology[] = {
6299#ifdef CONFIG_SCHED_SMT
6300 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
6301#endif
6302#ifdef CONFIG_SCHED_MC
6303 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
143e1e28
VG
6304#endif
6305 { cpu_cpu_mask, SD_INIT_NAME(DIE) },
6306 { NULL, },
6307};
6308
6309struct sched_domain_topology_level *sched_domain_topology = default_topology;
6310
6311#define for_each_sd_topology(tl) \
6312 for (tl = sched_domain_topology; tl->mask; tl++)
6313
6314void set_sched_topology(struct sched_domain_topology_level *tl)
6315{
6316 sched_domain_topology = tl;
6317}
6318
6319#ifdef CONFIG_NUMA
6320
cb83b629
PZ
6321static const struct cpumask *sd_numa_mask(int cpu)
6322{
6323 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
6324}
6325
d039ac60
PZ
6326static void sched_numa_warn(const char *str)
6327{
6328 static int done = false;
6329 int i,j;
6330
6331 if (done)
6332 return;
6333
6334 done = true;
6335
6336 printk(KERN_WARNING "ERROR: %s\n\n", str);
6337
6338 for (i = 0; i < nr_node_ids; i++) {
6339 printk(KERN_WARNING " ");
6340 for (j = 0; j < nr_node_ids; j++)
6341 printk(KERN_CONT "%02d ", node_distance(i,j));
6342 printk(KERN_CONT "\n");
6343 }
6344 printk(KERN_WARNING "\n");
6345}
6346
9942f79b 6347bool find_numa_distance(int distance)
d039ac60
PZ
6348{
6349 int i;
6350
6351 if (distance == node_distance(0, 0))
6352 return true;
6353
6354 for (i = 0; i < sched_domains_numa_levels; i++) {
6355 if (sched_domains_numa_distance[i] == distance)
6356 return true;
6357 }
6358
6359 return false;
6360}
6361
e3fe70b1
RR
6362/*
6363 * A system can have three types of NUMA topology:
6364 * NUMA_DIRECT: all nodes are directly connected, or not a NUMA system
6365 * NUMA_GLUELESS_MESH: some nodes reachable through intermediary nodes
6366 * NUMA_BACKPLANE: nodes can reach other nodes through a backplane
6367 *
6368 * The difference between a glueless mesh topology and a backplane
6369 * topology lies in whether communication between not directly
6370 * connected nodes goes through intermediary nodes (where programs
6371 * could run), or through backplane controllers. This affects
6372 * placement of programs.
6373 *
6374 * The type of topology can be discerned with the following tests:
6375 * - If the maximum distance between any nodes is 1 hop, the system
6376 * is directly connected.
6377 * - If for two nodes A and B, located N > 1 hops away from each other,
6378 * there is an intermediary node C, which is < N hops away from both
6379 * nodes A and B, the system is a glueless mesh.
6380 */
6381static void init_numa_topology_type(void)
6382{
6383 int a, b, c, n;
6384
6385 n = sched_max_numa_distance;
6386
6387 if (n <= 1)
6388 sched_numa_topology_type = NUMA_DIRECT;
6389
6390 for_each_online_node(a) {
6391 for_each_online_node(b) {
6392 /* Find two nodes furthest removed from each other. */
6393 if (node_distance(a, b) < n)
6394 continue;
6395
6396 /* Is there an intermediary node between a and b? */
6397 for_each_online_node(c) {
6398 if (node_distance(a, c) < n &&
6399 node_distance(b, c) < n) {
6400 sched_numa_topology_type =
6401 NUMA_GLUELESS_MESH;
6402 return;
6403 }
6404 }
6405
6406 sched_numa_topology_type = NUMA_BACKPLANE;
6407 return;
6408 }
6409 }
6410}
6411
cb83b629
PZ
6412static void sched_init_numa(void)
6413{
6414 int next_distance, curr_distance = node_distance(0, 0);
6415 struct sched_domain_topology_level *tl;
6416 int level = 0;
6417 int i, j, k;
6418
cb83b629
PZ
6419 sched_domains_numa_distance = kzalloc(sizeof(int) * nr_node_ids, GFP_KERNEL);
6420 if (!sched_domains_numa_distance)
6421 return;
6422
6423 /*
6424 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
6425 * unique distances in the node_distance() table.
6426 *
6427 * Assumes node_distance(0,j) includes all distances in
6428 * node_distance(i,j) in order to avoid cubic time.
cb83b629
PZ
6429 */
6430 next_distance = curr_distance;
6431 for (i = 0; i < nr_node_ids; i++) {
6432 for (j = 0; j < nr_node_ids; j++) {
d039ac60
PZ
6433 for (k = 0; k < nr_node_ids; k++) {
6434 int distance = node_distance(i, k);
6435
6436 if (distance > curr_distance &&
6437 (distance < next_distance ||
6438 next_distance == curr_distance))
6439 next_distance = distance;
6440
6441 /*
6442 * While not a strong assumption it would be nice to know
6443 * about cases where if node A is connected to B, B is not
6444 * equally connected to A.
6445 */
6446 if (sched_debug() && node_distance(k, i) != distance)
6447 sched_numa_warn("Node-distance not symmetric");
6448
6449 if (sched_debug() && i && !find_numa_distance(distance))
6450 sched_numa_warn("Node-0 not representative");
6451 }
6452 if (next_distance != curr_distance) {
6453 sched_domains_numa_distance[level++] = next_distance;
6454 sched_domains_numa_levels = level;
6455 curr_distance = next_distance;
6456 } else break;
cb83b629 6457 }
d039ac60
PZ
6458
6459 /*
6460 * In case of sched_debug() we verify the above assumption.
6461 */
6462 if (!sched_debug())
6463 break;
cb83b629 6464 }
c123588b
AR
6465
6466 if (!level)
6467 return;
6468
cb83b629
PZ
6469 /*
6470 * 'level' contains the number of unique distances, excluding the
6471 * identity distance node_distance(i,i).
6472 *
28b4a521 6473 * The sched_domains_numa_distance[] array includes the actual distance
cb83b629
PZ
6474 * numbers.
6475 */
6476
5f7865f3
TC
6477 /*
6478 * Here, we should temporarily reset sched_domains_numa_levels to 0.
6479 * If it fails to allocate memory for array sched_domains_numa_masks[][],
6480 * the array will contain less then 'level' members. This could be
6481 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
6482 * in other functions.
6483 *
6484 * We reset it to 'level' at the end of this function.
6485 */
6486 sched_domains_numa_levels = 0;
6487
cb83b629
PZ
6488 sched_domains_numa_masks = kzalloc(sizeof(void *) * level, GFP_KERNEL);
6489 if (!sched_domains_numa_masks)
6490 return;
6491
6492 /*
6493 * Now for each level, construct a mask per node which contains all
6494 * cpus of nodes that are that many hops away from us.
6495 */
6496 for (i = 0; i < level; i++) {
6497 sched_domains_numa_masks[i] =
6498 kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
6499 if (!sched_domains_numa_masks[i])
6500 return;
6501
6502 for (j = 0; j < nr_node_ids; j++) {
2ea45800 6503 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
cb83b629
PZ
6504 if (!mask)
6505 return;
6506
6507 sched_domains_numa_masks[i][j] = mask;
6508
6509 for (k = 0; k < nr_node_ids; k++) {
dd7d8634 6510 if (node_distance(j, k) > sched_domains_numa_distance[i])
cb83b629
PZ
6511 continue;
6512
6513 cpumask_or(mask, mask, cpumask_of_node(k));
6514 }
6515 }
6516 }
6517
143e1e28
VG
6518 /* Compute default topology size */
6519 for (i = 0; sched_domain_topology[i].mask; i++);
6520
c515db8c 6521 tl = kzalloc((i + level + 1) *
cb83b629
PZ
6522 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
6523 if (!tl)
6524 return;
6525
6526 /*
6527 * Copy the default topology bits..
6528 */
143e1e28
VG
6529 for (i = 0; sched_domain_topology[i].mask; i++)
6530 tl[i] = sched_domain_topology[i];
cb83b629
PZ
6531
6532 /*
6533 * .. and append 'j' levels of NUMA goodness.
6534 */
6535 for (j = 0; j < level; i++, j++) {
6536 tl[i] = (struct sched_domain_topology_level){
cb83b629 6537 .mask = sd_numa_mask,
143e1e28 6538 .sd_flags = cpu_numa_flags,
cb83b629
PZ
6539 .flags = SDTL_OVERLAP,
6540 .numa_level = j,
143e1e28 6541 SD_INIT_NAME(NUMA)
cb83b629
PZ
6542 };
6543 }
6544
6545 sched_domain_topology = tl;
5f7865f3
TC
6546
6547 sched_domains_numa_levels = level;
9942f79b 6548 sched_max_numa_distance = sched_domains_numa_distance[level - 1];
e3fe70b1
RR
6549
6550 init_numa_topology_type();
cb83b629 6551}
301a5cba
TC
6552
6553static void sched_domains_numa_masks_set(int cpu)
6554{
6555 int i, j;
6556 int node = cpu_to_node(cpu);
6557
6558 for (i = 0; i < sched_domains_numa_levels; i++) {
6559 for (j = 0; j < nr_node_ids; j++) {
6560 if (node_distance(j, node) <= sched_domains_numa_distance[i])
6561 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
6562 }
6563 }
6564}
6565
6566static void sched_domains_numa_masks_clear(int cpu)
6567{
6568 int i, j;
6569 for (i = 0; i < sched_domains_numa_levels; i++) {
6570 for (j = 0; j < nr_node_ids; j++)
6571 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
6572 }
6573}
6574
6575/*
6576 * Update sched_domains_numa_masks[level][node] array when new cpus
6577 * are onlined.
6578 */
6579static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6580 unsigned long action,
6581 void *hcpu)
6582{
6583 int cpu = (long)hcpu;
6584
6585 switch (action & ~CPU_TASKS_FROZEN) {
6586 case CPU_ONLINE:
6587 sched_domains_numa_masks_set(cpu);
6588 break;
6589
6590 case CPU_DEAD:
6591 sched_domains_numa_masks_clear(cpu);
6592 break;
6593
6594 default:
6595 return NOTIFY_DONE;
6596 }
6597
6598 return NOTIFY_OK;
cb83b629
PZ
6599}
6600#else
6601static inline void sched_init_numa(void)
6602{
6603}
301a5cba
TC
6604
6605static int sched_domains_numa_masks_update(struct notifier_block *nfb,
6606 unsigned long action,
6607 void *hcpu)
6608{
6609 return 0;
6610}
cb83b629
PZ
6611#endif /* CONFIG_NUMA */
6612
54ab4ff4
PZ
6613static int __sdt_alloc(const struct cpumask *cpu_map)
6614{
6615 struct sched_domain_topology_level *tl;
6616 int j;
6617
27723a68 6618 for_each_sd_topology(tl) {
54ab4ff4
PZ
6619 struct sd_data *sdd = &tl->data;
6620
6621 sdd->sd = alloc_percpu(struct sched_domain *);
6622 if (!sdd->sd)
6623 return -ENOMEM;
6624
6625 sdd->sg = alloc_percpu(struct sched_group *);
6626 if (!sdd->sg)
6627 return -ENOMEM;
6628
63b2ca30
NP
6629 sdd->sgc = alloc_percpu(struct sched_group_capacity *);
6630 if (!sdd->sgc)
9c3f75cb
PZ
6631 return -ENOMEM;
6632
54ab4ff4
PZ
6633 for_each_cpu(j, cpu_map) {
6634 struct sched_domain *sd;
6635 struct sched_group *sg;
63b2ca30 6636 struct sched_group_capacity *sgc;
54ab4ff4
PZ
6637
6638 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
6639 GFP_KERNEL, cpu_to_node(j));
6640 if (!sd)
6641 return -ENOMEM;
6642
6643 *per_cpu_ptr(sdd->sd, j) = sd;
6644
6645 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
6646 GFP_KERNEL, cpu_to_node(j));
6647 if (!sg)
6648 return -ENOMEM;
6649
30b4e9eb
IM
6650 sg->next = sg;
6651
54ab4ff4 6652 *per_cpu_ptr(sdd->sg, j) = sg;
9c3f75cb 6653
63b2ca30 6654 sgc = kzalloc_node(sizeof(struct sched_group_capacity) + cpumask_size(),
9c3f75cb 6655 GFP_KERNEL, cpu_to_node(j));
63b2ca30 6656 if (!sgc)
9c3f75cb
PZ
6657 return -ENOMEM;
6658
63b2ca30 6659 *per_cpu_ptr(sdd->sgc, j) = sgc;
54ab4ff4
PZ
6660 }
6661 }
6662
6663 return 0;
6664}
6665
6666static void __sdt_free(const struct cpumask *cpu_map)
6667{
6668 struct sched_domain_topology_level *tl;
6669 int j;
6670
27723a68 6671 for_each_sd_topology(tl) {
54ab4ff4
PZ
6672 struct sd_data *sdd = &tl->data;
6673
6674 for_each_cpu(j, cpu_map) {
fb2cf2c6 6675 struct sched_domain *sd;
6676
6677 if (sdd->sd) {
6678 sd = *per_cpu_ptr(sdd->sd, j);
6679 if (sd && (sd->flags & SD_OVERLAP))
6680 free_sched_groups(sd->groups, 0);
6681 kfree(*per_cpu_ptr(sdd->sd, j));
6682 }
6683
6684 if (sdd->sg)
6685 kfree(*per_cpu_ptr(sdd->sg, j));
63b2ca30
NP
6686 if (sdd->sgc)
6687 kfree(*per_cpu_ptr(sdd->sgc, j));
54ab4ff4
PZ
6688 }
6689 free_percpu(sdd->sd);
fb2cf2c6 6690 sdd->sd = NULL;
54ab4ff4 6691 free_percpu(sdd->sg);
fb2cf2c6 6692 sdd->sg = NULL;
63b2ca30
NP
6693 free_percpu(sdd->sgc);
6694 sdd->sgc = NULL;
54ab4ff4
PZ
6695 }
6696}
6697
2c402dc3 6698struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
4a850cbe
VK
6699 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
6700 struct sched_domain *child, int cpu)
2c402dc3 6701{
143e1e28 6702 struct sched_domain *sd = sd_init(tl, cpu);
2c402dc3 6703 if (!sd)
d069b916 6704 return child;
2c402dc3 6705
2c402dc3 6706 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
60495e77
PZ
6707 if (child) {
6708 sd->level = child->level + 1;
6709 sched_domain_level_max = max(sched_domain_level_max, sd->level);
d069b916 6710 child->parent = sd;
c75e0128 6711 sd->child = child;
6ae72dff
PZ
6712
6713 if (!cpumask_subset(sched_domain_span(child),
6714 sched_domain_span(sd))) {
6715 pr_err("BUG: arch topology borken\n");
6716#ifdef CONFIG_SCHED_DEBUG
6717 pr_err(" the %s domain not a subset of the %s domain\n",
6718 child->name, sd->name);
6719#endif
6720 /* Fixup, ensure @sd has at least @child cpus. */
6721 cpumask_or(sched_domain_span(sd),
6722 sched_domain_span(sd),
6723 sched_domain_span(child));
6724 }
6725
60495e77 6726 }
a841f8ce 6727 set_domain_attribute(sd, attr);
2c402dc3
PZ
6728
6729 return sd;
6730}
6731
2109b99e
AH
6732/*
6733 * Build sched domains for a given set of cpus and attach the sched domains
6734 * to the individual cpus
6735 */
dce840a0
PZ
6736static int build_sched_domains(const struct cpumask *cpu_map,
6737 struct sched_domain_attr *attr)
2109b99e 6738{
1c632169 6739 enum s_alloc alloc_state;
dce840a0 6740 struct sched_domain *sd;
2109b99e 6741 struct s_data d;
822ff793 6742 int i, ret = -ENOMEM;
9c1cfda2 6743
2109b99e
AH
6744 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
6745 if (alloc_state != sa_rootdomain)
6746 goto error;
9c1cfda2 6747
dce840a0 6748 /* Set up domains for cpus specified by the cpu_map. */
abcd083a 6749 for_each_cpu(i, cpu_map) {
eb7a74e6
PZ
6750 struct sched_domain_topology_level *tl;
6751
3bd65a80 6752 sd = NULL;
27723a68 6753 for_each_sd_topology(tl) {
4a850cbe 6754 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
22da9569
VK
6755 if (tl == sched_domain_topology)
6756 *per_cpu_ptr(d.sd, i) = sd;
e3589f6c
PZ
6757 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
6758 sd->flags |= SD_OVERLAP;
d110235d
PZ
6759 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
6760 break;
e3589f6c 6761 }
dce840a0
PZ
6762 }
6763
6764 /* Build the groups for the domains */
6765 for_each_cpu(i, cpu_map) {
6766 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6767 sd->span_weight = cpumask_weight(sched_domain_span(sd));
e3589f6c
PZ
6768 if (sd->flags & SD_OVERLAP) {
6769 if (build_overlap_sched_groups(sd, i))
6770 goto error;
6771 } else {
6772 if (build_sched_groups(sd, i))
6773 goto error;
6774 }
1cf51902 6775 }
a06dadbe 6776 }
9c1cfda2 6777
ced549fa 6778 /* Calculate CPU capacity for physical packages and nodes */
a9c9a9b6
PZ
6779 for (i = nr_cpumask_bits-1; i >= 0; i--) {
6780 if (!cpumask_test_cpu(i, cpu_map))
6781 continue;
9c1cfda2 6782
dce840a0
PZ
6783 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
6784 claim_allocations(i, sd);
63b2ca30 6785 init_sched_groups_capacity(i, sd);
dce840a0 6786 }
f712c0c7 6787 }
9c1cfda2 6788
1da177e4 6789 /* Attach the domains */
dce840a0 6790 rcu_read_lock();
abcd083a 6791 for_each_cpu(i, cpu_map) {
21d42ccf 6792 sd = *per_cpu_ptr(d.sd, i);
49a02c51 6793 cpu_attach_domain(sd, d.rd, i);
1da177e4 6794 }
dce840a0 6795 rcu_read_unlock();
51888ca2 6796
822ff793 6797 ret = 0;
51888ca2 6798error:
2109b99e 6799 __free_domain_allocs(&d, alloc_state, cpu_map);
822ff793 6800 return ret;
1da177e4 6801}
029190c5 6802
acc3f5d7 6803static cpumask_var_t *doms_cur; /* current sched domains */
029190c5 6804static int ndoms_cur; /* number of sched domains in 'doms_cur' */
4285f594
IM
6805static struct sched_domain_attr *dattr_cur;
6806 /* attribues of custom domains in 'doms_cur' */
029190c5
PJ
6807
6808/*
6809 * Special case: If a kmalloc of a doms_cur partition (array of
4212823f
RR
6810 * cpumask) fails, then fallback to a single sched domain,
6811 * as determined by the single cpumask fallback_doms.
029190c5 6812 */
4212823f 6813static cpumask_var_t fallback_doms;
029190c5 6814
ee79d1bd
HC
6815/*
6816 * arch_update_cpu_topology lets virtualized architectures update the
6817 * cpu core maps. It is supposed to return 1 if the topology changed
6818 * or 0 if it stayed the same.
6819 */
52f5684c 6820int __weak arch_update_cpu_topology(void)
22e52b07 6821{
ee79d1bd 6822 return 0;
22e52b07
HC
6823}
6824
acc3f5d7
RR
6825cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
6826{
6827 int i;
6828 cpumask_var_t *doms;
6829
6830 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
6831 if (!doms)
6832 return NULL;
6833 for (i = 0; i < ndoms; i++) {
6834 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
6835 free_sched_domains(doms, i);
6836 return NULL;
6837 }
6838 }
6839 return doms;
6840}
6841
6842void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
6843{
6844 unsigned int i;
6845 for (i = 0; i < ndoms; i++)
6846 free_cpumask_var(doms[i]);
6847 kfree(doms);
6848}
6849
1a20ff27 6850/*
41a2d6cf 6851 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
029190c5
PJ
6852 * For now this just excludes isolated cpus, but could be used to
6853 * exclude other special cases in the future.
1a20ff27 6854 */
c4a8849a 6855static int init_sched_domains(const struct cpumask *cpu_map)
1a20ff27 6856{
7378547f
MM
6857 int err;
6858
22e52b07 6859 arch_update_cpu_topology();
029190c5 6860 ndoms_cur = 1;
acc3f5d7 6861 doms_cur = alloc_sched_domains(ndoms_cur);
029190c5 6862 if (!doms_cur)
acc3f5d7
RR
6863 doms_cur = &fallback_doms;
6864 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
dce840a0 6865 err = build_sched_domains(doms_cur[0], NULL);
6382bc90 6866 register_sched_domain_sysctl();
7378547f
MM
6867
6868 return err;
1a20ff27
DG
6869}
6870
1a20ff27
DG
6871/*
6872 * Detach sched domains from a group of cpus specified in cpu_map
6873 * These cpus will now be attached to the NULL domain
6874 */
96f874e2 6875static void detach_destroy_domains(const struct cpumask *cpu_map)
1a20ff27
DG
6876{
6877 int i;
6878
dce840a0 6879 rcu_read_lock();
abcd083a 6880 for_each_cpu(i, cpu_map)
57d885fe 6881 cpu_attach_domain(NULL, &def_root_domain, i);
dce840a0 6882 rcu_read_unlock();
1a20ff27
DG
6883}
6884
1d3504fc
HS
6885/* handle null as "default" */
6886static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
6887 struct sched_domain_attr *new, int idx_new)
6888{
6889 struct sched_domain_attr tmp;
6890
6891 /* fast path */
6892 if (!new && !cur)
6893 return 1;
6894
6895 tmp = SD_ATTR_INIT;
6896 return !memcmp(cur ? (cur + idx_cur) : &tmp,
6897 new ? (new + idx_new) : &tmp,
6898 sizeof(struct sched_domain_attr));
6899}
6900
029190c5
PJ
6901/*
6902 * Partition sched domains as specified by the 'ndoms_new'
41a2d6cf 6903 * cpumasks in the array doms_new[] of cpumasks. This compares
029190c5
PJ
6904 * doms_new[] to the current sched domain partitioning, doms_cur[].
6905 * It destroys each deleted domain and builds each new domain.
6906 *
acc3f5d7 6907 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
41a2d6cf
IM
6908 * The masks don't intersect (don't overlap.) We should setup one
6909 * sched domain for each mask. CPUs not in any of the cpumasks will
6910 * not be load balanced. If the same cpumask appears both in the
029190c5
PJ
6911 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6912 * it as it is.
6913 *
acc3f5d7
RR
6914 * The passed in 'doms_new' should be allocated using
6915 * alloc_sched_domains. This routine takes ownership of it and will
6916 * free_sched_domains it when done with it. If the caller failed the
6917 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
6918 * and partition_sched_domains() will fallback to the single partition
6919 * 'fallback_doms', it also forces the domains to be rebuilt.
029190c5 6920 *
96f874e2 6921 * If doms_new == NULL it will be replaced with cpu_online_mask.
700018e0
LZ
6922 * ndoms_new == 0 is a special case for destroying existing domains,
6923 * and it will not create the default domain.
dfb512ec 6924 *
029190c5
PJ
6925 * Call with hotplug lock held
6926 */
acc3f5d7 6927void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
1d3504fc 6928 struct sched_domain_attr *dattr_new)
029190c5 6929{
dfb512ec 6930 int i, j, n;
d65bd5ec 6931 int new_topology;
029190c5 6932
712555ee 6933 mutex_lock(&sched_domains_mutex);
a1835615 6934
7378547f
MM
6935 /* always unregister in case we don't destroy any domains */
6936 unregister_sched_domain_sysctl();
6937
d65bd5ec
HC
6938 /* Let architecture update cpu core mappings. */
6939 new_topology = arch_update_cpu_topology();
6940
dfb512ec 6941 n = doms_new ? ndoms_new : 0;
029190c5
PJ
6942
6943 /* Destroy deleted domains */
6944 for (i = 0; i < ndoms_cur; i++) {
d65bd5ec 6945 for (j = 0; j < n && !new_topology; j++) {
acc3f5d7 6946 if (cpumask_equal(doms_cur[i], doms_new[j])
1d3504fc 6947 && dattrs_equal(dattr_cur, i, dattr_new, j))
029190c5
PJ
6948 goto match1;
6949 }
6950 /* no match - a current sched domain not in new doms_new[] */
acc3f5d7 6951 detach_destroy_domains(doms_cur[i]);
029190c5
PJ
6952match1:
6953 ;
6954 }
6955
c8d2d47a 6956 n = ndoms_cur;
e761b772 6957 if (doms_new == NULL) {
c8d2d47a 6958 n = 0;
acc3f5d7 6959 doms_new = &fallback_doms;
6ad4c188 6960 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
faa2f98f 6961 WARN_ON_ONCE(dattr_new);
e761b772
MK
6962 }
6963
029190c5
PJ
6964 /* Build new domains */
6965 for (i = 0; i < ndoms_new; i++) {
c8d2d47a 6966 for (j = 0; j < n && !new_topology; j++) {
acc3f5d7 6967 if (cpumask_equal(doms_new[i], doms_cur[j])
1d3504fc 6968 && dattrs_equal(dattr_new, i, dattr_cur, j))
029190c5
PJ
6969 goto match2;
6970 }
6971 /* no match - add a new doms_new */
dce840a0 6972 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
029190c5
PJ
6973match2:
6974 ;
6975 }
6976
6977 /* Remember the new sched domains */
acc3f5d7
RR
6978 if (doms_cur != &fallback_doms)
6979 free_sched_domains(doms_cur, ndoms_cur);
1d3504fc 6980 kfree(dattr_cur); /* kfree(NULL) is safe */
029190c5 6981 doms_cur = doms_new;
1d3504fc 6982 dattr_cur = dattr_new;
029190c5 6983 ndoms_cur = ndoms_new;
7378547f
MM
6984
6985 register_sched_domain_sysctl();
a1835615 6986
712555ee 6987 mutex_unlock(&sched_domains_mutex);
029190c5
PJ
6988}
6989
d35be8ba
SB
6990static int num_cpus_frozen; /* used to mark begin/end of suspend/resume */
6991
1da177e4 6992/*
3a101d05
TH
6993 * Update cpusets according to cpu_active mask. If cpusets are
6994 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
6995 * around partition_sched_domains().
d35be8ba
SB
6996 *
6997 * If we come here as part of a suspend/resume, don't touch cpusets because we
6998 * want to restore it back to its original state upon resume anyway.
1da177e4 6999 */
0b2e918a
TH
7000static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
7001 void *hcpu)
e761b772 7002{
d35be8ba
SB
7003 switch (action) {
7004 case CPU_ONLINE_FROZEN:
7005 case CPU_DOWN_FAILED_FROZEN:
7006
7007 /*
7008 * num_cpus_frozen tracks how many CPUs are involved in suspend
7009 * resume sequence. As long as this is not the last online
7010 * operation in the resume sequence, just build a single sched
7011 * domain, ignoring cpusets.
7012 */
7013 num_cpus_frozen--;
7014 if (likely(num_cpus_frozen)) {
7015 partition_sched_domains(1, NULL, NULL);
7016 break;
7017 }
7018
7019 /*
7020 * This is the last CPU online operation. So fall through and
7021 * restore the original sched domains by considering the
7022 * cpuset configurations.
7023 */
7024
e761b772 7025 case CPU_ONLINE:
7ddf96b0 7026 cpuset_update_active_cpus(true);
d35be8ba 7027 break;
3a101d05
TH
7028 default:
7029 return NOTIFY_DONE;
7030 }
d35be8ba 7031 return NOTIFY_OK;
3a101d05 7032}
e761b772 7033
0b2e918a
TH
7034static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
7035 void *hcpu)
3a101d05 7036{
3c18d447
JL
7037 unsigned long flags;
7038 long cpu = (long)hcpu;
7039 struct dl_bw *dl_b;
533445c6
OS
7040 bool overflow;
7041 int cpus;
3c18d447 7042
533445c6 7043 switch (action) {
3a101d05 7044 case CPU_DOWN_PREPARE:
533445c6
OS
7045 rcu_read_lock_sched();
7046 dl_b = dl_bw_of(cpu);
3c18d447 7047
533445c6
OS
7048 raw_spin_lock_irqsave(&dl_b->lock, flags);
7049 cpus = dl_bw_cpus(cpu);
7050 overflow = __dl_overflow(dl_b, cpus, 0, 0);
7051 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
3c18d447 7052
533445c6 7053 rcu_read_unlock_sched();
3c18d447 7054
533445c6
OS
7055 if (overflow)
7056 return notifier_from_errno(-EBUSY);
7ddf96b0 7057 cpuset_update_active_cpus(false);
d35be8ba
SB
7058 break;
7059 case CPU_DOWN_PREPARE_FROZEN:
7060 num_cpus_frozen++;
7061 partition_sched_domains(1, NULL, NULL);
7062 break;
e761b772
MK
7063 default:
7064 return NOTIFY_DONE;
7065 }
d35be8ba 7066 return NOTIFY_OK;
e761b772 7067}
e761b772 7068
1da177e4
LT
7069void __init sched_init_smp(void)
7070{
dcc30a35
RR
7071 cpumask_var_t non_isolated_cpus;
7072
7073 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
cb5fd13f 7074 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
5c1e1767 7075
cb83b629
PZ
7076 sched_init_numa();
7077
6acce3ef
PZ
7078 /*
7079 * There's no userspace yet to cause hotplug operations; hence all the
7080 * cpu masks are stable and all blatant races in the below code cannot
7081 * happen.
7082 */
712555ee 7083 mutex_lock(&sched_domains_mutex);
c4a8849a 7084 init_sched_domains(cpu_active_mask);
dcc30a35
RR
7085 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
7086 if (cpumask_empty(non_isolated_cpus))
7087 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
712555ee 7088 mutex_unlock(&sched_domains_mutex);
e761b772 7089
301a5cba 7090 hotcpu_notifier(sched_domains_numa_masks_update, CPU_PRI_SCHED_ACTIVE);
3a101d05
TH
7091 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
7092 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
e761b772 7093
b328ca18 7094 init_hrtick();
5c1e1767
NP
7095
7096 /* Move init over to a non-isolated CPU */
dcc30a35 7097 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
5c1e1767 7098 BUG();
19978ca6 7099 sched_init_granularity();
dcc30a35 7100 free_cpumask_var(non_isolated_cpus);
4212823f 7101
0e3900e6 7102 init_sched_rt_class();
1baca4ce 7103 init_sched_dl_class();
1da177e4
LT
7104}
7105#else
7106void __init sched_init_smp(void)
7107{
19978ca6 7108 sched_init_granularity();
1da177e4
LT
7109}
7110#endif /* CONFIG_SMP */
7111
cd1bb94b
AB
7112const_debug unsigned int sysctl_timer_migration = 1;
7113
1da177e4
LT
7114int in_sched_functions(unsigned long addr)
7115{
1da177e4
LT
7116 return in_lock_functions(addr) ||
7117 (addr >= (unsigned long)__sched_text_start
7118 && addr < (unsigned long)__sched_text_end);
7119}
7120
029632fb 7121#ifdef CONFIG_CGROUP_SCHED
27b4b931
LZ
7122/*
7123 * Default task group.
7124 * Every task in system belongs to this group at bootup.
7125 */
029632fb 7126struct task_group root_task_group;
35cf4e50 7127LIST_HEAD(task_groups);
052f1dc7 7128#endif
6f505b16 7129
e6252c3e 7130DECLARE_PER_CPU(cpumask_var_t, load_balance_mask);
6f505b16 7131
1da177e4
LT
7132void __init sched_init(void)
7133{
dd41f596 7134 int i, j;
434d53b0
MT
7135 unsigned long alloc_size = 0, ptr;
7136
7137#ifdef CONFIG_FAIR_GROUP_SCHED
7138 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7139#endif
7140#ifdef CONFIG_RT_GROUP_SCHED
7141 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7142#endif
434d53b0 7143 if (alloc_size) {
36b7b6d4 7144 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
434d53b0
MT
7145
7146#ifdef CONFIG_FAIR_GROUP_SCHED
07e06b01 7147 root_task_group.se = (struct sched_entity **)ptr;
434d53b0
MT
7148 ptr += nr_cpu_ids * sizeof(void **);
7149
07e06b01 7150 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
434d53b0 7151 ptr += nr_cpu_ids * sizeof(void **);
eff766a6 7152
6d6bc0ad 7153#endif /* CONFIG_FAIR_GROUP_SCHED */
434d53b0 7154#ifdef CONFIG_RT_GROUP_SCHED
07e06b01 7155 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
434d53b0
MT
7156 ptr += nr_cpu_ids * sizeof(void **);
7157
07e06b01 7158 root_task_group.rt_rq = (struct rt_rq **)ptr;
eff766a6
PZ
7159 ptr += nr_cpu_ids * sizeof(void **);
7160
6d6bc0ad 7161#endif /* CONFIG_RT_GROUP_SCHED */
b74e6278 7162 }
df7c8e84 7163#ifdef CONFIG_CPUMASK_OFFSTACK
b74e6278
AT
7164 for_each_possible_cpu(i) {
7165 per_cpu(load_balance_mask, i) = (cpumask_var_t)kzalloc_node(
7166 cpumask_size(), GFP_KERNEL, cpu_to_node(i));
434d53b0 7167 }
b74e6278 7168#endif /* CONFIG_CPUMASK_OFFSTACK */
dd41f596 7169
332ac17e
DF
7170 init_rt_bandwidth(&def_rt_bandwidth,
7171 global_rt_period(), global_rt_runtime());
7172 init_dl_bandwidth(&def_dl_bandwidth,
1724813d 7173 global_rt_period(), global_rt_runtime());
332ac17e 7174
57d885fe
GH
7175#ifdef CONFIG_SMP
7176 init_defrootdomain();
7177#endif
7178
d0b27fa7 7179#ifdef CONFIG_RT_GROUP_SCHED
07e06b01 7180 init_rt_bandwidth(&root_task_group.rt_bandwidth,
d0b27fa7 7181 global_rt_period(), global_rt_runtime());
6d6bc0ad 7182#endif /* CONFIG_RT_GROUP_SCHED */
d0b27fa7 7183
7c941438 7184#ifdef CONFIG_CGROUP_SCHED
07e06b01
YZ
7185 list_add(&root_task_group.list, &task_groups);
7186 INIT_LIST_HEAD(&root_task_group.children);
f4d6f6c2 7187 INIT_LIST_HEAD(&root_task_group.siblings);
5091faa4 7188 autogroup_init(&init_task);
54c707e9 7189
7c941438 7190#endif /* CONFIG_CGROUP_SCHED */
6f505b16 7191
0a945022 7192 for_each_possible_cpu(i) {
70b97a7f 7193 struct rq *rq;
1da177e4
LT
7194
7195 rq = cpu_rq(i);
05fa785c 7196 raw_spin_lock_init(&rq->lock);
7897986b 7197 rq->nr_running = 0;
dce48a84
TG
7198 rq->calc_load_active = 0;
7199 rq->calc_load_update = jiffies + LOAD_FREQ;
acb5a9ba 7200 init_cfs_rq(&rq->cfs);
07c54f7a
AV
7201 init_rt_rq(&rq->rt);
7202 init_dl_rq(&rq->dl);
dd41f596 7203#ifdef CONFIG_FAIR_GROUP_SCHED
029632fb 7204 root_task_group.shares = ROOT_TASK_GROUP_LOAD;
6f505b16 7205 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
354d60c2 7206 /*
07e06b01 7207 * How much cpu bandwidth does root_task_group get?
354d60c2
DG
7208 *
7209 * In case of task-groups formed thr' the cgroup filesystem, it
7210 * gets 100% of the cpu resources in the system. This overall
7211 * system cpu resource is divided among the tasks of
07e06b01 7212 * root_task_group and its child task-groups in a fair manner,
354d60c2
DG
7213 * based on each entity's (task or task-group's) weight
7214 * (se->load.weight).
7215 *
07e06b01 7216 * In other words, if root_task_group has 10 tasks of weight
354d60c2
DG
7217 * 1024) and two child groups A0 and A1 (of weight 1024 each),
7218 * then A0's share of the cpu resource is:
7219 *
0d905bca 7220 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
354d60c2 7221 *
07e06b01
YZ
7222 * We achieve this by letting root_task_group's tasks sit
7223 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
354d60c2 7224 */
ab84d31e 7225 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
07e06b01 7226 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
354d60c2
DG
7227#endif /* CONFIG_FAIR_GROUP_SCHED */
7228
7229 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
052f1dc7 7230#ifdef CONFIG_RT_GROUP_SCHED
07e06b01 7231 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
dd41f596 7232#endif
1da177e4 7233
dd41f596
IM
7234 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7235 rq->cpu_load[j] = 0;
fdf3e95d
VP
7236
7237 rq->last_load_update_tick = jiffies;
7238
1da177e4 7239#ifdef CONFIG_SMP
41c7ce9a 7240 rq->sd = NULL;
57d885fe 7241 rq->rd = NULL;
ca6d75e6 7242 rq->cpu_capacity = rq->cpu_capacity_orig = SCHED_CAPACITY_SCALE;
3f029d3c 7243 rq->post_schedule = 0;
1da177e4 7244 rq->active_balance = 0;
dd41f596 7245 rq->next_balance = jiffies;
1da177e4 7246 rq->push_cpu = 0;
0a2966b4 7247 rq->cpu = i;
1f11eb6a 7248 rq->online = 0;
eae0c9df
MG
7249 rq->idle_stamp = 0;
7250 rq->avg_idle = 2*sysctl_sched_migration_cost;
9bd721c5 7251 rq->max_idle_balance_cost = sysctl_sched_migration_cost;
367456c7
PZ
7252
7253 INIT_LIST_HEAD(&rq->cfs_tasks);
7254
dc938520 7255 rq_attach_root(rq, &def_root_domain);
3451d024 7256#ifdef CONFIG_NO_HZ_COMMON
1c792db7 7257 rq->nohz_flags = 0;
83cd4fe2 7258#endif
265f22a9
FW
7259#ifdef CONFIG_NO_HZ_FULL
7260 rq->last_sched_tick = 0;
7261#endif
1da177e4 7262#endif
8f4d37ec 7263 init_rq_hrtick(rq);
1da177e4 7264 atomic_set(&rq->nr_iowait, 0);
1da177e4
LT
7265 }
7266
2dd73a4f 7267 set_load_weight(&init_task);
b50f60ce 7268
e107be36
AK
7269#ifdef CONFIG_PREEMPT_NOTIFIERS
7270 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7271#endif
7272
1da177e4
LT
7273 /*
7274 * The boot idle thread does lazy MMU switching as well:
7275 */
7276 atomic_inc(&init_mm.mm_count);
7277 enter_lazy_tlb(&init_mm, current);
7278
1b537c7d
YD
7279 /*
7280 * During early bootup we pretend to be a normal task:
7281 */
7282 current->sched_class = &fair_sched_class;
7283
1da177e4
LT
7284 /*
7285 * Make us the idle thread. Technically, schedule() should not be
7286 * called from this thread, however somewhere below it might be,
7287 * but because we are the idle thread, we just pick up running again
7288 * when this runqueue becomes "idle".
7289 */
7290 init_idle(current, smp_processor_id());
dce48a84
TG
7291
7292 calc_load_update = jiffies + LOAD_FREQ;
7293
bf4d83f6 7294#ifdef CONFIG_SMP
4cb98839 7295 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
bdddd296
RR
7296 /* May be allocated at isolcpus cmdline parse time */
7297 if (cpu_isolated_map == NULL)
7298 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
29d5e047 7299 idle_thread_set_boot_cpu();
a803f026 7300 set_cpu_rq_start_time();
029632fb
PZ
7301#endif
7302 init_sched_fair_class();
6a7b3dc3 7303
6892b75e 7304 scheduler_running = 1;
1da177e4
LT
7305}
7306
d902db1e 7307#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
e4aafea2
FW
7308static inline int preempt_count_equals(int preempt_offset)
7309{
234da7bc 7310 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
e4aafea2 7311
4ba8216c 7312 return (nested == preempt_offset);
e4aafea2
FW
7313}
7314
d894837f 7315void __might_sleep(const char *file, int line, int preempt_offset)
1da177e4 7316{
8eb23b9f
PZ
7317 /*
7318 * Blocking primitives will set (and therefore destroy) current->state,
7319 * since we will exit with TASK_RUNNING make sure we enter with it,
7320 * otherwise we will destroy state.
7321 */
00845eb9 7322 WARN_ONCE(current->state != TASK_RUNNING && current->task_state_change,
8eb23b9f
PZ
7323 "do not call blocking ops when !TASK_RUNNING; "
7324 "state=%lx set at [<%p>] %pS\n",
7325 current->state,
7326 (void *)current->task_state_change,
00845eb9 7327 (void *)current->task_state_change);
8eb23b9f 7328
3427445a
PZ
7329 ___might_sleep(file, line, preempt_offset);
7330}
7331EXPORT_SYMBOL(__might_sleep);
7332
7333void ___might_sleep(const char *file, int line, int preempt_offset)
1da177e4 7334{
1da177e4
LT
7335 static unsigned long prev_jiffy; /* ratelimiting */
7336
b3fbab05 7337 rcu_sleep_check(); /* WARN_ON_ONCE() by default, no rate limit reqd. */
db273be2
TG
7338 if ((preempt_count_equals(preempt_offset) && !irqs_disabled() &&
7339 !is_idle_task(current)) ||
e4aafea2 7340 system_state != SYSTEM_RUNNING || oops_in_progress)
aef745fc
IM
7341 return;
7342 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7343 return;
7344 prev_jiffy = jiffies;
7345
3df0fc5b
PZ
7346 printk(KERN_ERR
7347 "BUG: sleeping function called from invalid context at %s:%d\n",
7348 file, line);
7349 printk(KERN_ERR
7350 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
7351 in_atomic(), irqs_disabled(),
7352 current->pid, current->comm);
aef745fc 7353
a8b686b3
ES
7354 if (task_stack_end_corrupted(current))
7355 printk(KERN_EMERG "Thread overran stack, or stack corrupted\n");
7356
aef745fc
IM
7357 debug_show_held_locks(current);
7358 if (irqs_disabled())
7359 print_irqtrace_events(current);
8f47b187
TG
7360#ifdef CONFIG_DEBUG_PREEMPT
7361 if (!preempt_count_equals(preempt_offset)) {
7362 pr_err("Preemption disabled at:");
7363 print_ip_sym(current->preempt_disable_ip);
7364 pr_cont("\n");
7365 }
7366#endif
aef745fc 7367 dump_stack();
1da177e4 7368}
3427445a 7369EXPORT_SYMBOL(___might_sleep);
1da177e4
LT
7370#endif
7371
7372#ifdef CONFIG_MAGIC_SYSRQ
3a5e4dc1
AK
7373static void normalize_task(struct rq *rq, struct task_struct *p)
7374{
da7a735e 7375 const struct sched_class *prev_class = p->sched_class;
d50dde5a
DF
7376 struct sched_attr attr = {
7377 .sched_policy = SCHED_NORMAL,
7378 };
da7a735e 7379 int old_prio = p->prio;
da0c1e65 7380 int queued;
3e51f33f 7381
da0c1e65
KT
7382 queued = task_on_rq_queued(p);
7383 if (queued)
4ca9b72b 7384 dequeue_task(rq, p, 0);
0782e63b 7385 __setscheduler(rq, p, &attr, false);
da0c1e65 7386 if (queued) {
4ca9b72b 7387 enqueue_task(rq, p, 0);
8875125e 7388 resched_curr(rq);
3a5e4dc1 7389 }
da7a735e
PZ
7390
7391 check_class_changed(rq, p, prev_class, old_prio);
3a5e4dc1
AK
7392}
7393
1da177e4
LT
7394void normalize_rt_tasks(void)
7395{
a0f98a1c 7396 struct task_struct *g, *p;
1da177e4 7397 unsigned long flags;
70b97a7f 7398 struct rq *rq;
1da177e4 7399
3472eaa1 7400 read_lock(&tasklist_lock);
5d07f420 7401 for_each_process_thread(g, p) {
178be793
IM
7402 /*
7403 * Only normalize user tasks:
7404 */
3472eaa1 7405 if (p->flags & PF_KTHREAD)
178be793
IM
7406 continue;
7407
6cfb0d5d 7408 p->se.exec_start = 0;
6cfb0d5d 7409#ifdef CONFIG_SCHEDSTATS
41acab88
LDM
7410 p->se.statistics.wait_start = 0;
7411 p->se.statistics.sleep_start = 0;
7412 p->se.statistics.block_start = 0;
6cfb0d5d 7413#endif
dd41f596 7414
aab03e05 7415 if (!dl_task(p) && !rt_task(p)) {
dd41f596
IM
7416 /*
7417 * Renice negative nice level userspace
7418 * tasks back to 0:
7419 */
3472eaa1 7420 if (task_nice(p) < 0)
dd41f596 7421 set_user_nice(p, 0);
1da177e4 7422 continue;
dd41f596 7423 }
1da177e4 7424
3472eaa1 7425 rq = task_rq_lock(p, &flags);
178be793 7426 normalize_task(rq, p);
3472eaa1 7427 task_rq_unlock(rq, p, &flags);
5d07f420 7428 }
3472eaa1 7429 read_unlock(&tasklist_lock);
1da177e4
LT
7430}
7431
7432#endif /* CONFIG_MAGIC_SYSRQ */
1df5c10a 7433
67fc4e0c 7434#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
1df5c10a 7435/*
67fc4e0c 7436 * These functions are only useful for the IA64 MCA handling, or kdb.
1df5c10a
LT
7437 *
7438 * They can only be called when the whole system has been
7439 * stopped - every CPU needs to be quiescent, and no scheduling
7440 * activity can take place. Using them for anything else would
7441 * be a serious bug, and as a result, they aren't even visible
7442 * under any other configuration.
7443 */
7444
7445/**
7446 * curr_task - return the current task for a given cpu.
7447 * @cpu: the processor in question.
7448 *
7449 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
e69f6186
YB
7450 *
7451 * Return: The current task for @cpu.
1df5c10a 7452 */
36c8b586 7453struct task_struct *curr_task(int cpu)
1df5c10a
LT
7454{
7455 return cpu_curr(cpu);
7456}
7457
67fc4e0c
JW
7458#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
7459
7460#ifdef CONFIG_IA64
1df5c10a
LT
7461/**
7462 * set_curr_task - set the current task for a given cpu.
7463 * @cpu: the processor in question.
7464 * @p: the task pointer to set.
7465 *
7466 * Description: This function must only be used when non-maskable interrupts
41a2d6cf
IM
7467 * are serviced on a separate stack. It allows the architecture to switch the
7468 * notion of the current task on a cpu in a non-blocking manner. This function
1df5c10a
LT
7469 * must be called with all CPU's synchronized, and interrupts disabled, the
7470 * and caller must save the original value of the current task (see
7471 * curr_task() above) and restore that value before reenabling interrupts and
7472 * re-starting the system.
7473 *
7474 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7475 */
36c8b586 7476void set_curr_task(int cpu, struct task_struct *p)
1df5c10a
LT
7477{
7478 cpu_curr(cpu) = p;
7479}
7480
7481#endif
29f59db3 7482
7c941438 7483#ifdef CONFIG_CGROUP_SCHED
029632fb
PZ
7484/* task_group_lock serializes the addition/removal of task groups */
7485static DEFINE_SPINLOCK(task_group_lock);
7486
bccbe08a
PZ
7487static void free_sched_group(struct task_group *tg)
7488{
7489 free_fair_sched_group(tg);
7490 free_rt_sched_group(tg);
e9aa1dd1 7491 autogroup_free(tg);
bccbe08a
PZ
7492 kfree(tg);
7493}
7494
7495/* allocate runqueue etc for a new task group */
ec7dc8ac 7496struct task_group *sched_create_group(struct task_group *parent)
bccbe08a
PZ
7497{
7498 struct task_group *tg;
bccbe08a
PZ
7499
7500 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7501 if (!tg)
7502 return ERR_PTR(-ENOMEM);
7503
ec7dc8ac 7504 if (!alloc_fair_sched_group(tg, parent))
bccbe08a
PZ
7505 goto err;
7506
ec7dc8ac 7507 if (!alloc_rt_sched_group(tg, parent))
bccbe08a
PZ
7508 goto err;
7509
ace783b9
LZ
7510 return tg;
7511
7512err:
7513 free_sched_group(tg);
7514 return ERR_PTR(-ENOMEM);
7515}
7516
7517void sched_online_group(struct task_group *tg, struct task_group *parent)
7518{
7519 unsigned long flags;
7520
8ed36996 7521 spin_lock_irqsave(&task_group_lock, flags);
6f505b16 7522 list_add_rcu(&tg->list, &task_groups);
f473aa5e
PZ
7523
7524 WARN_ON(!parent); /* root should already exist */
7525
7526 tg->parent = parent;
f473aa5e 7527 INIT_LIST_HEAD(&tg->children);
09f2724a 7528 list_add_rcu(&tg->siblings, &parent->children);
8ed36996 7529 spin_unlock_irqrestore(&task_group_lock, flags);
29f59db3
SV
7530}
7531
9b5b7751 7532/* rcu callback to free various structures associated with a task group */
6f505b16 7533static void free_sched_group_rcu(struct rcu_head *rhp)
29f59db3 7534{
29f59db3 7535 /* now it should be safe to free those cfs_rqs */
6f505b16 7536 free_sched_group(container_of(rhp, struct task_group, rcu));
29f59db3
SV
7537}
7538
9b5b7751 7539/* Destroy runqueue etc associated with a task group */
4cf86d77 7540void sched_destroy_group(struct task_group *tg)
ace783b9
LZ
7541{
7542 /* wait for possible concurrent references to cfs_rqs complete */
7543 call_rcu(&tg->rcu, free_sched_group_rcu);
7544}
7545
7546void sched_offline_group(struct task_group *tg)
29f59db3 7547{
8ed36996 7548 unsigned long flags;
9b5b7751 7549 int i;
29f59db3 7550
3d4b47b4
PZ
7551 /* end participation in shares distribution */
7552 for_each_possible_cpu(i)
bccbe08a 7553 unregister_fair_sched_group(tg, i);
3d4b47b4
PZ
7554
7555 spin_lock_irqsave(&task_group_lock, flags);
6f505b16 7556 list_del_rcu(&tg->list);
f473aa5e 7557 list_del_rcu(&tg->siblings);
8ed36996 7558 spin_unlock_irqrestore(&task_group_lock, flags);
29f59db3
SV
7559}
7560
9b5b7751 7561/* change task's runqueue when it moves between groups.
3a252015
IM
7562 * The caller of this function should have put the task in its new group
7563 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7564 * reflect its new group.
9b5b7751
SV
7565 */
7566void sched_move_task(struct task_struct *tsk)
29f59db3 7567{
8323f26c 7568 struct task_group *tg;
da0c1e65 7569 int queued, running;
29f59db3
SV
7570 unsigned long flags;
7571 struct rq *rq;
7572
7573 rq = task_rq_lock(tsk, &flags);
7574
051a1d1a 7575 running = task_current(rq, tsk);
da0c1e65 7576 queued = task_on_rq_queued(tsk);
29f59db3 7577
da0c1e65 7578 if (queued)
29f59db3 7579 dequeue_task(rq, tsk, 0);
0e1f3483 7580 if (unlikely(running))
f3cd1c4e 7581 put_prev_task(rq, tsk);
29f59db3 7582
f7b8a47d
KT
7583 /*
7584 * All callers are synchronized by task_rq_lock(); we do not use RCU
7585 * which is pointless here. Thus, we pass "true" to task_css_check()
7586 * to prevent lockdep warnings.
7587 */
7588 tg = container_of(task_css_check(tsk, cpu_cgrp_id, true),
8323f26c
PZ
7589 struct task_group, css);
7590 tg = autogroup_task_group(tsk, tg);
7591 tsk->sched_task_group = tg;
7592
810b3817 7593#ifdef CONFIG_FAIR_GROUP_SCHED
b2b5ce02 7594 if (tsk->sched_class->task_move_group)
da0c1e65 7595 tsk->sched_class->task_move_group(tsk, queued);
b2b5ce02 7596 else
810b3817 7597#endif
b2b5ce02 7598 set_task_rq(tsk, task_cpu(tsk));
810b3817 7599
0e1f3483
HS
7600 if (unlikely(running))
7601 tsk->sched_class->set_curr_task(rq);
da0c1e65 7602 if (queued)
371fd7e7 7603 enqueue_task(rq, tsk, 0);
29f59db3 7604
0122ec5b 7605 task_rq_unlock(rq, tsk, &flags);
29f59db3 7606}
7c941438 7607#endif /* CONFIG_CGROUP_SCHED */
29f59db3 7608
a790de99
PT
7609#ifdef CONFIG_RT_GROUP_SCHED
7610/*
7611 * Ensure that the real time constraints are schedulable.
7612 */
7613static DEFINE_MUTEX(rt_constraints_mutex);
9f0c1e56 7614
9a7e0b18
PZ
7615/* Must be called with tasklist_lock held */
7616static inline int tg_has_rt_tasks(struct task_group *tg)
b40b2e8e 7617{
9a7e0b18 7618 struct task_struct *g, *p;
b40b2e8e 7619
1fe89e1b
PZ
7620 /*
7621 * Autogroups do not have RT tasks; see autogroup_create().
7622 */
7623 if (task_group_is_autogroup(tg))
7624 return 0;
7625
5d07f420 7626 for_each_process_thread(g, p) {
8651c658 7627 if (rt_task(p) && task_group(p) == tg)
9a7e0b18 7628 return 1;
5d07f420 7629 }
b40b2e8e 7630
9a7e0b18
PZ
7631 return 0;
7632}
b40b2e8e 7633
9a7e0b18
PZ
7634struct rt_schedulable_data {
7635 struct task_group *tg;
7636 u64 rt_period;
7637 u64 rt_runtime;
7638};
b40b2e8e 7639
a790de99 7640static int tg_rt_schedulable(struct task_group *tg, void *data)
9a7e0b18
PZ
7641{
7642 struct rt_schedulable_data *d = data;
7643 struct task_group *child;
7644 unsigned long total, sum = 0;
7645 u64 period, runtime;
b40b2e8e 7646
9a7e0b18
PZ
7647 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7648 runtime = tg->rt_bandwidth.rt_runtime;
b40b2e8e 7649
9a7e0b18
PZ
7650 if (tg == d->tg) {
7651 period = d->rt_period;
7652 runtime = d->rt_runtime;
b40b2e8e 7653 }
b40b2e8e 7654
4653f803
PZ
7655 /*
7656 * Cannot have more runtime than the period.
7657 */
7658 if (runtime > period && runtime != RUNTIME_INF)
7659 return -EINVAL;
6f505b16 7660
4653f803
PZ
7661 /*
7662 * Ensure we don't starve existing RT tasks.
7663 */
9a7e0b18
PZ
7664 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
7665 return -EBUSY;
6f505b16 7666
9a7e0b18 7667 total = to_ratio(period, runtime);
6f505b16 7668
4653f803
PZ
7669 /*
7670 * Nobody can have more than the global setting allows.
7671 */
7672 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
7673 return -EINVAL;
6f505b16 7674
4653f803
PZ
7675 /*
7676 * The sum of our children's runtime should not exceed our own.
7677 */
9a7e0b18
PZ
7678 list_for_each_entry_rcu(child, &tg->children, siblings) {
7679 period = ktime_to_ns(child->rt_bandwidth.rt_period);
7680 runtime = child->rt_bandwidth.rt_runtime;
6f505b16 7681
9a7e0b18
PZ
7682 if (child == d->tg) {
7683 period = d->rt_period;
7684 runtime = d->rt_runtime;
7685 }
6f505b16 7686
9a7e0b18 7687 sum += to_ratio(period, runtime);
9f0c1e56 7688 }
6f505b16 7689
9a7e0b18
PZ
7690 if (sum > total)
7691 return -EINVAL;
7692
7693 return 0;
6f505b16
PZ
7694}
7695
9a7e0b18 7696static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
521f1a24 7697{
8277434e
PT
7698 int ret;
7699
9a7e0b18
PZ
7700 struct rt_schedulable_data data = {
7701 .tg = tg,
7702 .rt_period = period,
7703 .rt_runtime = runtime,
7704 };
7705
8277434e
PT
7706 rcu_read_lock();
7707 ret = walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
7708 rcu_read_unlock();
7709
7710 return ret;
521f1a24
DG
7711}
7712
ab84d31e 7713static int tg_set_rt_bandwidth(struct task_group *tg,
d0b27fa7 7714 u64 rt_period, u64 rt_runtime)
6f505b16 7715{
ac086bc2 7716 int i, err = 0;
9f0c1e56 7717
2636ed5f
PZ
7718 /*
7719 * Disallowing the root group RT runtime is BAD, it would disallow the
7720 * kernel creating (and or operating) RT threads.
7721 */
7722 if (tg == &root_task_group && rt_runtime == 0)
7723 return -EINVAL;
7724
7725 /* No period doesn't make any sense. */
7726 if (rt_period == 0)
7727 return -EINVAL;
7728
9f0c1e56 7729 mutex_lock(&rt_constraints_mutex);
521f1a24 7730 read_lock(&tasklist_lock);
9a7e0b18
PZ
7731 err = __rt_schedulable(tg, rt_period, rt_runtime);
7732 if (err)
9f0c1e56 7733 goto unlock;
ac086bc2 7734
0986b11b 7735 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
d0b27fa7
PZ
7736 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
7737 tg->rt_bandwidth.rt_runtime = rt_runtime;
ac086bc2
PZ
7738
7739 for_each_possible_cpu(i) {
7740 struct rt_rq *rt_rq = tg->rt_rq[i];
7741
0986b11b 7742 raw_spin_lock(&rt_rq->rt_runtime_lock);
ac086bc2 7743 rt_rq->rt_runtime = rt_runtime;
0986b11b 7744 raw_spin_unlock(&rt_rq->rt_runtime_lock);
ac086bc2 7745 }
0986b11b 7746 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
49246274 7747unlock:
521f1a24 7748 read_unlock(&tasklist_lock);
9f0c1e56
PZ
7749 mutex_unlock(&rt_constraints_mutex);
7750
7751 return err;
6f505b16
PZ
7752}
7753
25cc7da7 7754static int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
d0b27fa7
PZ
7755{
7756 u64 rt_runtime, rt_period;
7757
7758 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
7759 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
7760 if (rt_runtime_us < 0)
7761 rt_runtime = RUNTIME_INF;
7762
ab84d31e 7763 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
d0b27fa7
PZ
7764}
7765
25cc7da7 7766static long sched_group_rt_runtime(struct task_group *tg)
9f0c1e56
PZ
7767{
7768 u64 rt_runtime_us;
7769
d0b27fa7 7770 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
9f0c1e56
PZ
7771 return -1;
7772
d0b27fa7 7773 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
9f0c1e56
PZ
7774 do_div(rt_runtime_us, NSEC_PER_USEC);
7775 return rt_runtime_us;
7776}
d0b27fa7 7777
ce2f5fe4 7778static int sched_group_set_rt_period(struct task_group *tg, u64 rt_period_us)
d0b27fa7
PZ
7779{
7780 u64 rt_runtime, rt_period;
7781
ce2f5fe4 7782 rt_period = rt_period_us * NSEC_PER_USEC;
d0b27fa7
PZ
7783 rt_runtime = tg->rt_bandwidth.rt_runtime;
7784
ab84d31e 7785 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
d0b27fa7
PZ
7786}
7787
25cc7da7 7788static long sched_group_rt_period(struct task_group *tg)
d0b27fa7
PZ
7789{
7790 u64 rt_period_us;
7791
7792 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
7793 do_div(rt_period_us, NSEC_PER_USEC);
7794 return rt_period_us;
7795}
332ac17e 7796#endif /* CONFIG_RT_GROUP_SCHED */
d0b27fa7 7797
332ac17e 7798#ifdef CONFIG_RT_GROUP_SCHED
d0b27fa7
PZ
7799static int sched_rt_global_constraints(void)
7800{
7801 int ret = 0;
7802
7803 mutex_lock(&rt_constraints_mutex);
9a7e0b18 7804 read_lock(&tasklist_lock);
4653f803 7805 ret = __rt_schedulable(NULL, 0, 0);
9a7e0b18 7806 read_unlock(&tasklist_lock);
d0b27fa7
PZ
7807 mutex_unlock(&rt_constraints_mutex);
7808
7809 return ret;
7810}
54e99124 7811
25cc7da7 7812static int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
54e99124
DG
7813{
7814 /* Don't accept realtime tasks when there is no way for them to run */
7815 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
7816 return 0;
7817
7818 return 1;
7819}
7820
6d6bc0ad 7821#else /* !CONFIG_RT_GROUP_SCHED */
d0b27fa7
PZ
7822static int sched_rt_global_constraints(void)
7823{
ac086bc2 7824 unsigned long flags;
332ac17e 7825 int i, ret = 0;
ec5d4989 7826
0986b11b 7827 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
ac086bc2
PZ
7828 for_each_possible_cpu(i) {
7829 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
7830
0986b11b 7831 raw_spin_lock(&rt_rq->rt_runtime_lock);
ac086bc2 7832 rt_rq->rt_runtime = global_rt_runtime();
0986b11b 7833 raw_spin_unlock(&rt_rq->rt_runtime_lock);
ac086bc2 7834 }
0986b11b 7835 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
ac086bc2 7836
332ac17e 7837 return ret;
d0b27fa7 7838}
6d6bc0ad 7839#endif /* CONFIG_RT_GROUP_SCHED */
d0b27fa7 7840
a1963b81 7841static int sched_dl_global_validate(void)
332ac17e 7842{
1724813d
PZ
7843 u64 runtime = global_rt_runtime();
7844 u64 period = global_rt_period();
332ac17e 7845 u64 new_bw = to_ratio(period, runtime);
f10e00f4 7846 struct dl_bw *dl_b;
1724813d 7847 int cpu, ret = 0;
49516342 7848 unsigned long flags;
332ac17e
DF
7849
7850 /*
7851 * Here we want to check the bandwidth not being set to some
7852 * value smaller than the currently allocated bandwidth in
7853 * any of the root_domains.
7854 *
7855 * FIXME: Cycling on all the CPUs is overdoing, but simpler than
7856 * cycling on root_domains... Discussion on different/better
7857 * solutions is welcome!
7858 */
1724813d 7859 for_each_possible_cpu(cpu) {
f10e00f4
KT
7860 rcu_read_lock_sched();
7861 dl_b = dl_bw_of(cpu);
332ac17e 7862
49516342 7863 raw_spin_lock_irqsave(&dl_b->lock, flags);
1724813d
PZ
7864 if (new_bw < dl_b->total_bw)
7865 ret = -EBUSY;
49516342 7866 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
1724813d 7867
f10e00f4
KT
7868 rcu_read_unlock_sched();
7869
1724813d
PZ
7870 if (ret)
7871 break;
332ac17e
DF
7872 }
7873
1724813d 7874 return ret;
332ac17e
DF
7875}
7876
1724813d 7877static void sched_dl_do_global(void)
ce0dbbbb 7878{
1724813d 7879 u64 new_bw = -1;
f10e00f4 7880 struct dl_bw *dl_b;
1724813d 7881 int cpu;
49516342 7882 unsigned long flags;
ce0dbbbb 7883
1724813d
PZ
7884 def_dl_bandwidth.dl_period = global_rt_period();
7885 def_dl_bandwidth.dl_runtime = global_rt_runtime();
7886
7887 if (global_rt_runtime() != RUNTIME_INF)
7888 new_bw = to_ratio(global_rt_period(), global_rt_runtime());
7889
7890 /*
7891 * FIXME: As above...
7892 */
7893 for_each_possible_cpu(cpu) {
f10e00f4
KT
7894 rcu_read_lock_sched();
7895 dl_b = dl_bw_of(cpu);
1724813d 7896
49516342 7897 raw_spin_lock_irqsave(&dl_b->lock, flags);
1724813d 7898 dl_b->bw = new_bw;
49516342 7899 raw_spin_unlock_irqrestore(&dl_b->lock, flags);
f10e00f4
KT
7900
7901 rcu_read_unlock_sched();
ce0dbbbb 7902 }
1724813d
PZ
7903}
7904
7905static int sched_rt_global_validate(void)
7906{
7907 if (sysctl_sched_rt_period <= 0)
7908 return -EINVAL;
7909
e9e7cb38
JL
7910 if ((sysctl_sched_rt_runtime != RUNTIME_INF) &&
7911 (sysctl_sched_rt_runtime > sysctl_sched_rt_period))
1724813d
PZ
7912 return -EINVAL;
7913
7914 return 0;
7915}
7916
7917static void sched_rt_do_global(void)
7918{
7919 def_rt_bandwidth.rt_runtime = global_rt_runtime();
7920 def_rt_bandwidth.rt_period = ns_to_ktime(global_rt_period());
ce0dbbbb
CW
7921}
7922
d0b27fa7 7923int sched_rt_handler(struct ctl_table *table, int write,
8d65af78 7924 void __user *buffer, size_t *lenp,
d0b27fa7
PZ
7925 loff_t *ppos)
7926{
d0b27fa7
PZ
7927 int old_period, old_runtime;
7928 static DEFINE_MUTEX(mutex);
1724813d 7929 int ret;
d0b27fa7
PZ
7930
7931 mutex_lock(&mutex);
7932 old_period = sysctl_sched_rt_period;
7933 old_runtime = sysctl_sched_rt_runtime;
7934
8d65af78 7935 ret = proc_dointvec(table, write, buffer, lenp, ppos);
d0b27fa7
PZ
7936
7937 if (!ret && write) {
1724813d
PZ
7938 ret = sched_rt_global_validate();
7939 if (ret)
7940 goto undo;
7941
a1963b81 7942 ret = sched_dl_global_validate();
1724813d
PZ
7943 if (ret)
7944 goto undo;
7945
a1963b81 7946 ret = sched_rt_global_constraints();
1724813d
PZ
7947 if (ret)
7948 goto undo;
7949
7950 sched_rt_do_global();
7951 sched_dl_do_global();
7952 }
7953 if (0) {
7954undo:
7955 sysctl_sched_rt_period = old_period;
7956 sysctl_sched_rt_runtime = old_runtime;
d0b27fa7
PZ
7957 }
7958 mutex_unlock(&mutex);
7959
7960 return ret;
7961}
68318b8e 7962
1724813d 7963int sched_rr_handler(struct ctl_table *table, int write,
332ac17e
DF
7964 void __user *buffer, size_t *lenp,
7965 loff_t *ppos)
7966{
7967 int ret;
332ac17e 7968 static DEFINE_MUTEX(mutex);
332ac17e
DF
7969
7970 mutex_lock(&mutex);
332ac17e 7971 ret = proc_dointvec(table, write, buffer, lenp, ppos);
1724813d
PZ
7972 /* make sure that internally we keep jiffies */
7973 /* also, writing zero resets timeslice to default */
332ac17e 7974 if (!ret && write) {
1724813d
PZ
7975 sched_rr_timeslice = sched_rr_timeslice <= 0 ?
7976 RR_TIMESLICE : msecs_to_jiffies(sched_rr_timeslice);
332ac17e
DF
7977 }
7978 mutex_unlock(&mutex);
332ac17e
DF
7979 return ret;
7980}
7981
052f1dc7 7982#ifdef CONFIG_CGROUP_SCHED
68318b8e 7983
a7c6d554 7984static inline struct task_group *css_tg(struct cgroup_subsys_state *css)
68318b8e 7985{
a7c6d554 7986 return css ? container_of(css, struct task_group, css) : NULL;
68318b8e
SV
7987}
7988
eb95419b
TH
7989static struct cgroup_subsys_state *
7990cpu_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
68318b8e 7991{
eb95419b
TH
7992 struct task_group *parent = css_tg(parent_css);
7993 struct task_group *tg;
68318b8e 7994
eb95419b 7995 if (!parent) {
68318b8e 7996 /* This is early initialization for the top cgroup */
07e06b01 7997 return &root_task_group.css;
68318b8e
SV
7998 }
7999
ec7dc8ac 8000 tg = sched_create_group(parent);
68318b8e
SV
8001 if (IS_ERR(tg))
8002 return ERR_PTR(-ENOMEM);
8003
68318b8e
SV
8004 return &tg->css;
8005}
8006
eb95419b 8007static int cpu_cgroup_css_online(struct cgroup_subsys_state *css)
ace783b9 8008{
eb95419b 8009 struct task_group *tg = css_tg(css);
5c9d535b 8010 struct task_group *parent = css_tg(css->parent);
ace783b9 8011
63876986
TH
8012 if (parent)
8013 sched_online_group(tg, parent);
ace783b9
LZ
8014 return 0;
8015}
8016
eb95419b 8017static void cpu_cgroup_css_free(struct cgroup_subsys_state *css)
68318b8e 8018{
eb95419b 8019 struct task_group *tg = css_tg(css);
68318b8e
SV
8020
8021 sched_destroy_group(tg);
8022}
8023
eb95419b 8024static void cpu_cgroup_css_offline(struct cgroup_subsys_state *css)
ace783b9 8025{
eb95419b 8026 struct task_group *tg = css_tg(css);
ace783b9
LZ
8027
8028 sched_offline_group(tg);
8029}
8030
eeb61e53
KT
8031static void cpu_cgroup_fork(struct task_struct *task)
8032{
8033 sched_move_task(task);
8034}
8035
eb95419b 8036static int cpu_cgroup_can_attach(struct cgroup_subsys_state *css,
bb9d97b6 8037 struct cgroup_taskset *tset)
68318b8e 8038{
bb9d97b6
TH
8039 struct task_struct *task;
8040
924f0d9a 8041 cgroup_taskset_for_each(task, tset) {
b68aa230 8042#ifdef CONFIG_RT_GROUP_SCHED
eb95419b 8043 if (!sched_rt_can_attach(css_tg(css), task))
bb9d97b6 8044 return -EINVAL;
b68aa230 8045#else
bb9d97b6
TH
8046 /* We don't support RT-tasks being in separate groups */
8047 if (task->sched_class != &fair_sched_class)
8048 return -EINVAL;
b68aa230 8049#endif
bb9d97b6 8050 }
be367d09
BB
8051 return 0;
8052}
68318b8e 8053
eb95419b 8054static void cpu_cgroup_attach(struct cgroup_subsys_state *css,
bb9d97b6 8055 struct cgroup_taskset *tset)
68318b8e 8056{
bb9d97b6
TH
8057 struct task_struct *task;
8058
924f0d9a 8059 cgroup_taskset_for_each(task, tset)
bb9d97b6 8060 sched_move_task(task);
68318b8e
SV
8061}
8062
eb95419b
TH
8063static void cpu_cgroup_exit(struct cgroup_subsys_state *css,
8064 struct cgroup_subsys_state *old_css,
8065 struct task_struct *task)
068c5cc5
PZ
8066{
8067 /*
8068 * cgroup_exit() is called in the copy_process() failure path.
8069 * Ignore this case since the task hasn't ran yet, this avoids
8070 * trying to poke a half freed task state from generic code.
8071 */
8072 if (!(task->flags & PF_EXITING))
8073 return;
8074
8075 sched_move_task(task);
8076}
8077
052f1dc7 8078#ifdef CONFIG_FAIR_GROUP_SCHED
182446d0
TH
8079static int cpu_shares_write_u64(struct cgroup_subsys_state *css,
8080 struct cftype *cftype, u64 shareval)
68318b8e 8081{
182446d0 8082 return sched_group_set_shares(css_tg(css), scale_load(shareval));
68318b8e
SV
8083}
8084
182446d0
TH
8085static u64 cpu_shares_read_u64(struct cgroup_subsys_state *css,
8086 struct cftype *cft)
68318b8e 8087{
182446d0 8088 struct task_group *tg = css_tg(css);
68318b8e 8089
c8b28116 8090 return (u64) scale_load_down(tg->shares);
68318b8e 8091}
ab84d31e
PT
8092
8093#ifdef CONFIG_CFS_BANDWIDTH
a790de99
PT
8094static DEFINE_MUTEX(cfs_constraints_mutex);
8095
ab84d31e
PT
8096const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
8097const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
8098
a790de99
PT
8099static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
8100
ab84d31e
PT
8101static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
8102{
56f570e5 8103 int i, ret = 0, runtime_enabled, runtime_was_enabled;
029632fb 8104 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
ab84d31e
PT
8105
8106 if (tg == &root_task_group)
8107 return -EINVAL;
8108
8109 /*
8110 * Ensure we have at some amount of bandwidth every period. This is
8111 * to prevent reaching a state of large arrears when throttled via
8112 * entity_tick() resulting in prolonged exit starvation.
8113 */
8114 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
8115 return -EINVAL;
8116
8117 /*
8118 * Likewise, bound things on the otherside by preventing insane quota
8119 * periods. This also allows us to normalize in computing quota
8120 * feasibility.
8121 */
8122 if (period > max_cfs_quota_period)
8123 return -EINVAL;
8124
0e59bdae
KT
8125 /*
8126 * Prevent race between setting of cfs_rq->runtime_enabled and
8127 * unthrottle_offline_cfs_rqs().
8128 */
8129 get_online_cpus();
a790de99
PT
8130 mutex_lock(&cfs_constraints_mutex);
8131 ret = __cfs_schedulable(tg, period, quota);
8132 if (ret)
8133 goto out_unlock;
8134
58088ad0 8135 runtime_enabled = quota != RUNTIME_INF;
56f570e5 8136 runtime_was_enabled = cfs_b->quota != RUNTIME_INF;
1ee14e6c
BS
8137 /*
8138 * If we need to toggle cfs_bandwidth_used, off->on must occur
8139 * before making related changes, and on->off must occur afterwards
8140 */
8141 if (runtime_enabled && !runtime_was_enabled)
8142 cfs_bandwidth_usage_inc();
ab84d31e
PT
8143 raw_spin_lock_irq(&cfs_b->lock);
8144 cfs_b->period = ns_to_ktime(period);
8145 cfs_b->quota = quota;
58088ad0 8146
a9cf55b2 8147 __refill_cfs_bandwidth_runtime(cfs_b);
58088ad0
PT
8148 /* restart the period timer (if active) to handle new period expiry */
8149 if (runtime_enabled && cfs_b->timer_active) {
8150 /* force a reprogram */
09dc4ab0 8151 __start_cfs_bandwidth(cfs_b, true);
58088ad0 8152 }
ab84d31e
PT
8153 raw_spin_unlock_irq(&cfs_b->lock);
8154
0e59bdae 8155 for_each_online_cpu(i) {
ab84d31e 8156 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
029632fb 8157 struct rq *rq = cfs_rq->rq;
ab84d31e
PT
8158
8159 raw_spin_lock_irq(&rq->lock);
58088ad0 8160 cfs_rq->runtime_enabled = runtime_enabled;
ab84d31e 8161 cfs_rq->runtime_remaining = 0;
671fd9da 8162
029632fb 8163 if (cfs_rq->throttled)
671fd9da 8164 unthrottle_cfs_rq(cfs_rq);
ab84d31e
PT
8165 raw_spin_unlock_irq(&rq->lock);
8166 }
1ee14e6c
BS
8167 if (runtime_was_enabled && !runtime_enabled)
8168 cfs_bandwidth_usage_dec();
a790de99
PT
8169out_unlock:
8170 mutex_unlock(&cfs_constraints_mutex);
0e59bdae 8171 put_online_cpus();
ab84d31e 8172
a790de99 8173 return ret;
ab84d31e
PT
8174}
8175
8176int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
8177{
8178 u64 quota, period;
8179
029632fb 8180 period = ktime_to_ns(tg->cfs_bandwidth.period);
ab84d31e
PT
8181 if (cfs_quota_us < 0)
8182 quota = RUNTIME_INF;
8183 else
8184 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
8185
8186 return tg_set_cfs_bandwidth(tg, period, quota);
8187}
8188
8189long tg_get_cfs_quota(struct task_group *tg)
8190{
8191 u64 quota_us;
8192
029632fb 8193 if (tg->cfs_bandwidth.quota == RUNTIME_INF)
ab84d31e
PT
8194 return -1;
8195
029632fb 8196 quota_us = tg->cfs_bandwidth.quota;
ab84d31e
PT
8197 do_div(quota_us, NSEC_PER_USEC);
8198
8199 return quota_us;
8200}
8201
8202int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
8203{
8204 u64 quota, period;
8205
8206 period = (u64)cfs_period_us * NSEC_PER_USEC;
029632fb 8207 quota = tg->cfs_bandwidth.quota;
ab84d31e 8208
ab84d31e
PT
8209 return tg_set_cfs_bandwidth(tg, period, quota);
8210}
8211
8212long tg_get_cfs_period(struct task_group *tg)
8213{
8214 u64 cfs_period_us;
8215
029632fb 8216 cfs_period_us = ktime_to_ns(tg->cfs_bandwidth.period);
ab84d31e
PT
8217 do_div(cfs_period_us, NSEC_PER_USEC);
8218
8219 return cfs_period_us;
8220}
8221
182446d0
TH
8222static s64 cpu_cfs_quota_read_s64(struct cgroup_subsys_state *css,
8223 struct cftype *cft)
ab84d31e 8224{
182446d0 8225 return tg_get_cfs_quota(css_tg(css));
ab84d31e
PT
8226}
8227
182446d0
TH
8228static int cpu_cfs_quota_write_s64(struct cgroup_subsys_state *css,
8229 struct cftype *cftype, s64 cfs_quota_us)
ab84d31e 8230{
182446d0 8231 return tg_set_cfs_quota(css_tg(css), cfs_quota_us);
ab84d31e
PT
8232}
8233
182446d0
TH
8234static u64 cpu_cfs_period_read_u64(struct cgroup_subsys_state *css,
8235 struct cftype *cft)
ab84d31e 8236{
182446d0 8237 return tg_get_cfs_period(css_tg(css));
ab84d31e
PT
8238}
8239
182446d0
TH
8240static int cpu_cfs_period_write_u64(struct cgroup_subsys_state *css,
8241 struct cftype *cftype, u64 cfs_period_us)
ab84d31e 8242{
182446d0 8243 return tg_set_cfs_period(css_tg(css), cfs_period_us);
ab84d31e
PT
8244}
8245
a790de99
PT
8246struct cfs_schedulable_data {
8247 struct task_group *tg;
8248 u64 period, quota;
8249};
8250
8251/*
8252 * normalize group quota/period to be quota/max_period
8253 * note: units are usecs
8254 */
8255static u64 normalize_cfs_quota(struct task_group *tg,
8256 struct cfs_schedulable_data *d)
8257{
8258 u64 quota, period;
8259
8260 if (tg == d->tg) {
8261 period = d->period;
8262 quota = d->quota;
8263 } else {
8264 period = tg_get_cfs_period(tg);
8265 quota = tg_get_cfs_quota(tg);
8266 }
8267
8268 /* note: these should typically be equivalent */
8269 if (quota == RUNTIME_INF || quota == -1)
8270 return RUNTIME_INF;
8271
8272 return to_ratio(period, quota);
8273}
8274
8275static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
8276{
8277 struct cfs_schedulable_data *d = data;
029632fb 8278 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
a790de99
PT
8279 s64 quota = 0, parent_quota = -1;
8280
8281 if (!tg->parent) {
8282 quota = RUNTIME_INF;
8283 } else {
029632fb 8284 struct cfs_bandwidth *parent_b = &tg->parent->cfs_bandwidth;
a790de99
PT
8285
8286 quota = normalize_cfs_quota(tg, d);
9c58c79a 8287 parent_quota = parent_b->hierarchical_quota;
a790de99
PT
8288
8289 /*
8290 * ensure max(child_quota) <= parent_quota, inherit when no
8291 * limit is set
8292 */
8293 if (quota == RUNTIME_INF)
8294 quota = parent_quota;
8295 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
8296 return -EINVAL;
8297 }
9c58c79a 8298 cfs_b->hierarchical_quota = quota;
a790de99
PT
8299
8300 return 0;
8301}
8302
8303static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
8304{
8277434e 8305 int ret;
a790de99
PT
8306 struct cfs_schedulable_data data = {
8307 .tg = tg,
8308 .period = period,
8309 .quota = quota,
8310 };
8311
8312 if (quota != RUNTIME_INF) {
8313 do_div(data.period, NSEC_PER_USEC);
8314 do_div(data.quota, NSEC_PER_USEC);
8315 }
8316
8277434e
PT
8317 rcu_read_lock();
8318 ret = walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
8319 rcu_read_unlock();
8320
8321 return ret;
a790de99 8322}
e8da1b18 8323
2da8ca82 8324static int cpu_stats_show(struct seq_file *sf, void *v)
e8da1b18 8325{
2da8ca82 8326 struct task_group *tg = css_tg(seq_css(sf));
029632fb 8327 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
e8da1b18 8328
44ffc75b
TH
8329 seq_printf(sf, "nr_periods %d\n", cfs_b->nr_periods);
8330 seq_printf(sf, "nr_throttled %d\n", cfs_b->nr_throttled);
8331 seq_printf(sf, "throttled_time %llu\n", cfs_b->throttled_time);
e8da1b18
NR
8332
8333 return 0;
8334}
ab84d31e 8335#endif /* CONFIG_CFS_BANDWIDTH */
6d6bc0ad 8336#endif /* CONFIG_FAIR_GROUP_SCHED */
68318b8e 8337
052f1dc7 8338#ifdef CONFIG_RT_GROUP_SCHED
182446d0
TH
8339static int cpu_rt_runtime_write(struct cgroup_subsys_state *css,
8340 struct cftype *cft, s64 val)
6f505b16 8341{
182446d0 8342 return sched_group_set_rt_runtime(css_tg(css), val);
6f505b16
PZ
8343}
8344
182446d0
TH
8345static s64 cpu_rt_runtime_read(struct cgroup_subsys_state *css,
8346 struct cftype *cft)
6f505b16 8347{
182446d0 8348 return sched_group_rt_runtime(css_tg(css));
6f505b16 8349}
d0b27fa7 8350
182446d0
TH
8351static int cpu_rt_period_write_uint(struct cgroup_subsys_state *css,
8352 struct cftype *cftype, u64 rt_period_us)
d0b27fa7 8353{
182446d0 8354 return sched_group_set_rt_period(css_tg(css), rt_period_us);
d0b27fa7
PZ
8355}
8356
182446d0
TH
8357static u64 cpu_rt_period_read_uint(struct cgroup_subsys_state *css,
8358 struct cftype *cft)
d0b27fa7 8359{
182446d0 8360 return sched_group_rt_period(css_tg(css));
d0b27fa7 8361}
6d6bc0ad 8362#endif /* CONFIG_RT_GROUP_SCHED */
6f505b16 8363
fe5c7cc2 8364static struct cftype cpu_files[] = {
052f1dc7 8365#ifdef CONFIG_FAIR_GROUP_SCHED
fe5c7cc2
PM
8366 {
8367 .name = "shares",
f4c753b7
PM
8368 .read_u64 = cpu_shares_read_u64,
8369 .write_u64 = cpu_shares_write_u64,
fe5c7cc2 8370 },
052f1dc7 8371#endif
ab84d31e
PT
8372#ifdef CONFIG_CFS_BANDWIDTH
8373 {
8374 .name = "cfs_quota_us",
8375 .read_s64 = cpu_cfs_quota_read_s64,
8376 .write_s64 = cpu_cfs_quota_write_s64,
8377 },
8378 {
8379 .name = "cfs_period_us",
8380 .read_u64 = cpu_cfs_period_read_u64,
8381 .write_u64 = cpu_cfs_period_write_u64,
8382 },
e8da1b18
NR
8383 {
8384 .name = "stat",
2da8ca82 8385 .seq_show = cpu_stats_show,
e8da1b18 8386 },
ab84d31e 8387#endif
052f1dc7 8388#ifdef CONFIG_RT_GROUP_SCHED
6f505b16 8389 {
9f0c1e56 8390 .name = "rt_runtime_us",
06ecb27c
PM
8391 .read_s64 = cpu_rt_runtime_read,
8392 .write_s64 = cpu_rt_runtime_write,
6f505b16 8393 },
d0b27fa7
PZ
8394 {
8395 .name = "rt_period_us",
f4c753b7
PM
8396 .read_u64 = cpu_rt_period_read_uint,
8397 .write_u64 = cpu_rt_period_write_uint,
d0b27fa7 8398 },
052f1dc7 8399#endif
4baf6e33 8400 { } /* terminate */
68318b8e
SV
8401};
8402
073219e9 8403struct cgroup_subsys cpu_cgrp_subsys = {
92fb9748
TH
8404 .css_alloc = cpu_cgroup_css_alloc,
8405 .css_free = cpu_cgroup_css_free,
ace783b9
LZ
8406 .css_online = cpu_cgroup_css_online,
8407 .css_offline = cpu_cgroup_css_offline,
eeb61e53 8408 .fork = cpu_cgroup_fork,
bb9d97b6
TH
8409 .can_attach = cpu_cgroup_can_attach,
8410 .attach = cpu_cgroup_attach,
068c5cc5 8411 .exit = cpu_cgroup_exit,
5577964e 8412 .legacy_cftypes = cpu_files,
68318b8e
SV
8413 .early_init = 1,
8414};
8415
052f1dc7 8416#endif /* CONFIG_CGROUP_SCHED */
d842de87 8417
b637a328
PM
8418void dump_cpu_task(int cpu)
8419{
8420 pr_info("Task dump for CPU %d:\n", cpu);
8421 sched_show_task(cpu_curr(cpu));
8422}
This page took 3.338709 seconds and 5 git commands to generate.