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