42899dce837d6f27a5f90db3d2037c2ff0a05489
[pandora-kernel.git] / kernel / sched.c
1 /*
2  *  kernel/sched.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 <linux/smp_lock.h>
36 #include <asm/mmu_context.h>
37 #include <linux/interrupt.h>
38 #include <linux/capability.h>
39 #include <linux/completion.h>
40 #include <linux/kernel_stat.h>
41 #include <linux/debug_locks.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/kthread.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/reciprocal_div.h>
66 #include <linux/unistd.h>
67 #include <linux/pagemap.h>
68 #include <linux/hrtimer.h>
69 #include <linux/tick.h>
70 #include <linux/bootmem.h>
71 #include <linux/debugfs.h>
72 #include <linux/ctype.h>
73 #include <linux/ftrace.h>
74
75 #include <asm/tlb.h>
76 #include <asm/irq_regs.h>
77
78 /*
79  * Convert user-nice values [ -20 ... 0 ... 19 ]
80  * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
81  * and back.
82  */
83 #define NICE_TO_PRIO(nice)      (MAX_RT_PRIO + (nice) + 20)
84 #define PRIO_TO_NICE(prio)      ((prio) - MAX_RT_PRIO - 20)
85 #define TASK_NICE(p)            PRIO_TO_NICE((p)->static_prio)
86
87 /*
88  * 'User priority' is the nice value converted to something we
89  * can work with better when scaling various scheduler parameters,
90  * it's a [ 0 ... 39 ] range.
91  */
92 #define USER_PRIO(p)            ((p)-MAX_RT_PRIO)
93 #define TASK_USER_PRIO(p)       USER_PRIO((p)->static_prio)
94 #define MAX_USER_PRIO           (USER_PRIO(MAX_PRIO))
95
96 /*
97  * Helpers for converting nanosecond timing to jiffy resolution
98  */
99 #define NS_TO_JIFFIES(TIME)     ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
100
101 #define NICE_0_LOAD             SCHED_LOAD_SCALE
102 #define NICE_0_SHIFT            SCHED_LOAD_SHIFT
103
104 /*
105  * These are the 'tuning knobs' of the scheduler:
106  *
107  * default timeslice is 100 msecs (used only for SCHED_RR tasks).
108  * Timeslices get refilled after they expire.
109  */
110 #define DEF_TIMESLICE           (100 * HZ / 1000)
111
112 /*
113  * single value that denotes runtime == period, ie unlimited time.
114  */
115 #define RUNTIME_INF     ((u64)~0ULL)
116
117 #ifdef CONFIG_SMP
118 /*
119  * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
120  * Since cpu_power is a 'constant', we can use a reciprocal divide.
121  */
122 static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
123 {
124         return reciprocal_divide(load, sg->reciprocal_cpu_power);
125 }
126
127 /*
128  * Each time a sched group cpu_power is changed,
129  * we must compute its reciprocal value
130  */
131 static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
132 {
133         sg->__cpu_power += val;
134         sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
135 }
136 #endif
137
138 static inline int rt_policy(int policy)
139 {
140         if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
141                 return 1;
142         return 0;
143 }
144
145 static inline int task_has_rt_policy(struct task_struct *p)
146 {
147         return rt_policy(p->policy);
148 }
149
150 /*
151  * This is the priority-queue data structure of the RT scheduling class:
152  */
153 struct rt_prio_array {
154         DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
155         struct list_head queue[MAX_RT_PRIO];
156 };
157
158 struct rt_bandwidth {
159         /* nests inside the rq lock: */
160         spinlock_t              rt_runtime_lock;
161         ktime_t                 rt_period;
162         u64                     rt_runtime;
163         struct hrtimer          rt_period_timer;
164 };
165
166 static struct rt_bandwidth def_rt_bandwidth;
167
168 static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
169
170 static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
171 {
172         struct rt_bandwidth *rt_b =
173                 container_of(timer, struct rt_bandwidth, rt_period_timer);
174         ktime_t now;
175         int overrun;
176         int idle = 0;
177
178         for (;;) {
179                 now = hrtimer_cb_get_time(timer);
180                 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
181
182                 if (!overrun)
183                         break;
184
185                 idle = do_sched_rt_period_timer(rt_b, overrun);
186         }
187
188         return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
189 }
190
191 static
192 void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
193 {
194         rt_b->rt_period = ns_to_ktime(period);
195         rt_b->rt_runtime = runtime;
196
197         spin_lock_init(&rt_b->rt_runtime_lock);
198
199         hrtimer_init(&rt_b->rt_period_timer,
200                         CLOCK_MONOTONIC, HRTIMER_MODE_REL);
201         rt_b->rt_period_timer.function = sched_rt_period_timer;
202         rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
203 }
204
205 static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
206 {
207         ktime_t now;
208
209         if (rt_b->rt_runtime == RUNTIME_INF)
210                 return;
211
212         if (hrtimer_active(&rt_b->rt_period_timer))
213                 return;
214
215         spin_lock(&rt_b->rt_runtime_lock);
216         for (;;) {
217                 if (hrtimer_active(&rt_b->rt_period_timer))
218                         break;
219
220                 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
221                 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
222                 hrtimer_start(&rt_b->rt_period_timer,
223                               rt_b->rt_period_timer.expires,
224                               HRTIMER_MODE_ABS);
225         }
226         spin_unlock(&rt_b->rt_runtime_lock);
227 }
228
229 #ifdef CONFIG_RT_GROUP_SCHED
230 static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
231 {
232         hrtimer_cancel(&rt_b->rt_period_timer);
233 }
234 #endif
235
236 /*
237  * sched_domains_mutex serializes calls to arch_init_sched_domains,
238  * detach_destroy_domains and partition_sched_domains.
239  */
240 static DEFINE_MUTEX(sched_domains_mutex);
241
242 #ifdef CONFIG_GROUP_SCHED
243
244 #include <linux/cgroup.h>
245
246 struct cfs_rq;
247
248 static LIST_HEAD(task_groups);
249
250 /* task group related information */
251 struct task_group {
252 #ifdef CONFIG_CGROUP_SCHED
253         struct cgroup_subsys_state css;
254 #endif
255
256 #ifdef CONFIG_FAIR_GROUP_SCHED
257         /* schedulable entities of this group on each cpu */
258         struct sched_entity **se;
259         /* runqueue "owned" by this group on each cpu */
260         struct cfs_rq **cfs_rq;
261         unsigned long shares;
262 #endif
263
264 #ifdef CONFIG_RT_GROUP_SCHED
265         struct sched_rt_entity **rt_se;
266         struct rt_rq **rt_rq;
267
268         struct rt_bandwidth rt_bandwidth;
269 #endif
270
271         struct rcu_head rcu;
272         struct list_head list;
273
274         struct task_group *parent;
275         struct list_head siblings;
276         struct list_head children;
277 };
278
279 #ifdef CONFIG_USER_SCHED
280
281 /*
282  * Root task group.
283  *      Every UID task group (including init_task_group aka UID-0) will
284  *      be a child to this group.
285  */
286 struct task_group root_task_group;
287
288 #ifdef CONFIG_FAIR_GROUP_SCHED
289 /* Default task group's sched entity on each cpu */
290 static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
291 /* Default task group's cfs_rq on each cpu */
292 static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
293 #endif
294
295 #ifdef CONFIG_RT_GROUP_SCHED
296 static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
297 static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
298 #endif
299 #else
300 #define root_task_group init_task_group
301 #endif
302
303 /* task_group_lock serializes add/remove of task groups and also changes to
304  * a task group's cpu shares.
305  */
306 static DEFINE_SPINLOCK(task_group_lock);
307
308 #ifdef CONFIG_FAIR_GROUP_SCHED
309 #ifdef CONFIG_USER_SCHED
310 # define INIT_TASK_GROUP_LOAD   (2*NICE_0_LOAD)
311 #else
312 # define INIT_TASK_GROUP_LOAD   NICE_0_LOAD
313 #endif
314
315 /*
316  * A weight of 0 or 1 can cause arithmetics problems.
317  * A weight of a cfs_rq is the sum of weights of which entities
318  * are queued on this cfs_rq, so a weight of a entity should not be
319  * too large, so as the shares value of a task group.
320  * (The default weight is 1024 - so there's no practical
321  *  limitation from this.)
322  */
323 #define MIN_SHARES      2
324 #define MAX_SHARES      (1UL << 18)
325
326 static int init_task_group_load = INIT_TASK_GROUP_LOAD;
327 #endif
328
329 /* Default task group.
330  *      Every task in system belong to this group at bootup.
331  */
332 struct task_group init_task_group;
333
334 /* return group to which a task belongs */
335 static inline struct task_group *task_group(struct task_struct *p)
336 {
337         struct task_group *tg;
338
339 #ifdef CONFIG_USER_SCHED
340         tg = p->user->tg;
341 #elif defined(CONFIG_CGROUP_SCHED)
342         tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
343                                 struct task_group, css);
344 #else
345         tg = &init_task_group;
346 #endif
347         return tg;
348 }
349
350 /* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
351 static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
352 {
353 #ifdef CONFIG_FAIR_GROUP_SCHED
354         p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
355         p->se.parent = task_group(p)->se[cpu];
356 #endif
357
358 #ifdef CONFIG_RT_GROUP_SCHED
359         p->rt.rt_rq  = task_group(p)->rt_rq[cpu];
360         p->rt.parent = task_group(p)->rt_se[cpu];
361 #endif
362 }
363
364 #else
365
366 static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
367
368 #endif  /* CONFIG_GROUP_SCHED */
369
370 /* CFS-related fields in a runqueue */
371 struct cfs_rq {
372         struct load_weight load;
373         unsigned long nr_running;
374
375         u64 exec_clock;
376         u64 min_vruntime;
377
378         struct rb_root tasks_timeline;
379         struct rb_node *rb_leftmost;
380
381         struct list_head tasks;
382         struct list_head *balance_iterator;
383
384         /*
385          * 'curr' points to currently running entity on this cfs_rq.
386          * It is set to NULL otherwise (i.e when none are currently running).
387          */
388         struct sched_entity *curr, *next;
389
390         unsigned long nr_spread_over;
391
392 #ifdef CONFIG_FAIR_GROUP_SCHED
393         struct rq *rq;  /* cpu runqueue to which this cfs_rq is attached */
394
395         /*
396          * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
397          * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
398          * (like users, containers etc.)
399          *
400          * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
401          * list is used during load balance.
402          */
403         struct list_head leaf_cfs_rq_list;
404         struct task_group *tg;  /* group that "owns" this runqueue */
405 #endif
406 };
407
408 /* Real-Time classes' related field in a runqueue: */
409 struct rt_rq {
410         struct rt_prio_array active;
411         unsigned long rt_nr_running;
412 #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
413         int highest_prio; /* highest queued rt task prio */
414 #endif
415 #ifdef CONFIG_SMP
416         unsigned long rt_nr_migratory;
417         int overloaded;
418 #endif
419         int rt_throttled;
420         u64 rt_time;
421         u64 rt_runtime;
422         /* Nests inside the rq lock: */
423         spinlock_t rt_runtime_lock;
424
425 #ifdef CONFIG_RT_GROUP_SCHED
426         unsigned long rt_nr_boosted;
427
428         struct rq *rq;
429         struct list_head leaf_rt_rq_list;
430         struct task_group *tg;
431         struct sched_rt_entity *rt_se;
432 #endif
433 };
434
435 #ifdef CONFIG_SMP
436
437 /*
438  * We add the notion of a root-domain which will be used to define per-domain
439  * variables. Each exclusive cpuset essentially defines an island domain by
440  * fully partitioning the member cpus from any other cpuset. Whenever a new
441  * exclusive cpuset is created, we also create and attach a new root-domain
442  * object.
443  *
444  */
445 struct root_domain {
446         atomic_t refcount;
447         cpumask_t span;
448         cpumask_t online;
449
450         /*
451          * The "RT overload" flag: it gets set if a CPU has more than
452          * one runnable RT task.
453          */
454         cpumask_t rto_mask;
455         atomic_t rto_count;
456 };
457
458 /*
459  * By default the system creates a single root-domain with all cpus as
460  * members (mimicking the global state we have today).
461  */
462 static struct root_domain def_root_domain;
463
464 #endif
465
466 /*
467  * This is the main, per-CPU runqueue data structure.
468  *
469  * Locking rule: those places that want to lock multiple runqueues
470  * (such as the load balancing or the thread migration code), lock
471  * acquire operations must be ordered by ascending &runqueue.
472  */
473 struct rq {
474         /* runqueue lock: */
475         spinlock_t lock;
476
477         /*
478          * nr_running and cpu_load should be in the same cacheline because
479          * remote CPUs use both these fields when doing load calculation.
480          */
481         unsigned long nr_running;
482         #define CPU_LOAD_IDX_MAX 5
483         unsigned long cpu_load[CPU_LOAD_IDX_MAX];
484         unsigned char idle_at_tick;
485 #ifdef CONFIG_NO_HZ
486         unsigned long last_tick_seen;
487         unsigned char in_nohz_recently;
488 #endif
489         /* capture load from *all* tasks on this cpu: */
490         struct load_weight load;
491         unsigned long nr_load_updates;
492         u64 nr_switches;
493
494         struct cfs_rq cfs;
495         struct rt_rq rt;
496
497 #ifdef CONFIG_FAIR_GROUP_SCHED
498         /* list of leaf cfs_rq on this cpu: */
499         struct list_head leaf_cfs_rq_list;
500 #endif
501 #ifdef CONFIG_RT_GROUP_SCHED
502         struct list_head leaf_rt_rq_list;
503 #endif
504
505         /*
506          * This is part of a global counter where only the total sum
507          * over all CPUs matters. A task can increase this counter on
508          * one CPU and if it got migrated afterwards it may decrease
509          * it on another CPU. Always updated under the runqueue lock:
510          */
511         unsigned long nr_uninterruptible;
512
513         struct task_struct *curr, *idle;
514         unsigned long next_balance;
515         struct mm_struct *prev_mm;
516
517         u64 clock;
518
519         atomic_t nr_iowait;
520
521 #ifdef CONFIG_SMP
522         struct root_domain *rd;
523         struct sched_domain *sd;
524
525         /* For active balancing */
526         int active_balance;
527         int push_cpu;
528         /* cpu of this runqueue: */
529         int cpu;
530
531         struct task_struct *migration_thread;
532         struct list_head migration_queue;
533 #endif
534
535 #ifdef CONFIG_SCHED_HRTICK
536         unsigned long hrtick_flags;
537         ktime_t hrtick_expire;
538         struct hrtimer hrtick_timer;
539 #endif
540
541 #ifdef CONFIG_SCHEDSTATS
542         /* latency stats */
543         struct sched_info rq_sched_info;
544
545         /* sys_sched_yield() stats */
546         unsigned int yld_exp_empty;
547         unsigned int yld_act_empty;
548         unsigned int yld_both_empty;
549         unsigned int yld_count;
550
551         /* schedule() stats */
552         unsigned int sched_switch;
553         unsigned int sched_count;
554         unsigned int sched_goidle;
555
556         /* try_to_wake_up() stats */
557         unsigned int ttwu_count;
558         unsigned int ttwu_local;
559
560         /* BKL stats */
561         unsigned int bkl_count;
562 #endif
563         struct lock_class_key rq_lock_key;
564 };
565
566 static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
567
568 static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
569 {
570         rq->curr->sched_class->check_preempt_curr(rq, p);
571 }
572
573 static inline int cpu_of(struct rq *rq)
574 {
575 #ifdef CONFIG_SMP
576         return rq->cpu;
577 #else
578         return 0;
579 #endif
580 }
581
582 /*
583  * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
584  * See detach_destroy_domains: synchronize_sched for details.
585  *
586  * The domain tree of any CPU may only be accessed from within
587  * preempt-disabled sections.
588  */
589 #define for_each_domain(cpu, __sd) \
590         for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
591
592 #define cpu_rq(cpu)             (&per_cpu(runqueues, (cpu)))
593 #define this_rq()               (&__get_cpu_var(runqueues))
594 #define task_rq(p)              cpu_rq(task_cpu(p))
595 #define cpu_curr(cpu)           (cpu_rq(cpu)->curr)
596
597 static inline void update_rq_clock(struct rq *rq)
598 {
599         rq->clock = sched_clock_cpu(cpu_of(rq));
600 }
601
602 /*
603  * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
604  */
605 #ifdef CONFIG_SCHED_DEBUG
606 # define const_debug __read_mostly
607 #else
608 # define const_debug static const
609 #endif
610
611 /**
612  * runqueue_is_locked
613  *
614  * Returns true if the current cpu runqueue is locked.
615  * This interface allows printk to be called with the runqueue lock
616  * held and know whether or not it is OK to wake up the klogd.
617  */
618 int runqueue_is_locked(void)
619 {
620         int cpu = get_cpu();
621         struct rq *rq = cpu_rq(cpu);
622         int ret;
623
624         ret = spin_is_locked(&rq->lock);
625         put_cpu();
626         return ret;
627 }
628
629 /*
630  * Debugging: various feature bits
631  */
632
633 #define SCHED_FEAT(name, enabled)       \
634         __SCHED_FEAT_##name ,
635
636 enum {
637 #include "sched_features.h"
638 };
639
640 #undef SCHED_FEAT
641
642 #define SCHED_FEAT(name, enabled)       \
643         (1UL << __SCHED_FEAT_##name) * enabled |
644
645 const_debug unsigned int sysctl_sched_features =
646 #include "sched_features.h"
647         0;
648
649 #undef SCHED_FEAT
650
651 #ifdef CONFIG_SCHED_DEBUG
652 #define SCHED_FEAT(name, enabled)       \
653         #name ,
654
655 static __read_mostly char *sched_feat_names[] = {
656 #include "sched_features.h"
657         NULL
658 };
659
660 #undef SCHED_FEAT
661
662 static int sched_feat_open(struct inode *inode, struct file *filp)
663 {
664         filp->private_data = inode->i_private;
665         return 0;
666 }
667
668 static ssize_t
669 sched_feat_read(struct file *filp, char __user *ubuf,
670                 size_t cnt, loff_t *ppos)
671 {
672         char *buf;
673         int r = 0;
674         int len = 0;
675         int i;
676
677         for (i = 0; sched_feat_names[i]; i++) {
678                 len += strlen(sched_feat_names[i]);
679                 len += 4;
680         }
681
682         buf = kmalloc(len + 2, GFP_KERNEL);
683         if (!buf)
684                 return -ENOMEM;
685
686         for (i = 0; sched_feat_names[i]; i++) {
687                 if (sysctl_sched_features & (1UL << i))
688                         r += sprintf(buf + r, "%s ", sched_feat_names[i]);
689                 else
690                         r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
691         }
692
693         r += sprintf(buf + r, "\n");
694         WARN_ON(r >= len + 2);
695
696         r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
697
698         kfree(buf);
699
700         return r;
701 }
702
703 static ssize_t
704 sched_feat_write(struct file *filp, const char __user *ubuf,
705                 size_t cnt, loff_t *ppos)
706 {
707         char buf[64];
708         char *cmp = buf;
709         int neg = 0;
710         int i;
711
712         if (cnt > 63)
713                 cnt = 63;
714
715         if (copy_from_user(&buf, ubuf, cnt))
716                 return -EFAULT;
717
718         buf[cnt] = 0;
719
720         if (strncmp(buf, "NO_", 3) == 0) {
721                 neg = 1;
722                 cmp += 3;
723         }
724
725         for (i = 0; sched_feat_names[i]; i++) {
726                 int len = strlen(sched_feat_names[i]);
727
728                 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
729                         if (neg)
730                                 sysctl_sched_features &= ~(1UL << i);
731                         else
732                                 sysctl_sched_features |= (1UL << i);
733                         break;
734                 }
735         }
736
737         if (!sched_feat_names[i])
738                 return -EINVAL;
739
740         filp->f_pos += cnt;
741
742         return cnt;
743 }
744
745 static struct file_operations sched_feat_fops = {
746         .open   = sched_feat_open,
747         .read   = sched_feat_read,
748         .write  = sched_feat_write,
749 };
750
751 static __init int sched_init_debug(void)
752 {
753         debugfs_create_file("sched_features", 0644, NULL, NULL,
754                         &sched_feat_fops);
755
756         return 0;
757 }
758 late_initcall(sched_init_debug);
759
760 #endif
761
762 #define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
763
764 /*
765  * Number of tasks to iterate in a single balance run.
766  * Limited because this is done with IRQs disabled.
767  */
768 const_debug unsigned int sysctl_sched_nr_migrate = 32;
769
770 /*
771  * period over which we measure -rt task cpu usage in us.
772  * default: 1s
773  */
774 unsigned int sysctl_sched_rt_period = 1000000;
775
776 static __read_mostly int scheduler_running;
777
778 /*
779  * part of the period that we allow rt tasks to run in us.
780  * default: 0.95s
781  */
782 int sysctl_sched_rt_runtime = 950000;
783
784 static inline u64 global_rt_period(void)
785 {
786         return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
787 }
788
789 static inline u64 global_rt_runtime(void)
790 {
791         if (sysctl_sched_rt_period < 0)
792                 return RUNTIME_INF;
793
794         return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
795 }
796
797 unsigned long long time_sync_thresh = 100000;
798
799 static DEFINE_PER_CPU(unsigned long long, time_offset);
800 static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
801
802 /*
803  * Global lock which we take every now and then to synchronize
804  * the CPUs time. This method is not warp-safe, but it's good
805  * enough to synchronize slowly diverging time sources and thus
806  * it's good enough for tracing:
807  */
808 static DEFINE_SPINLOCK(time_sync_lock);
809 static unsigned long long prev_global_time;
810
811 static unsigned long long __sync_cpu_clock(unsigned long long time, int cpu)
812 {
813         /*
814          * We want this inlined, to not get tracer function calls
815          * in this critical section:
816          */
817         spin_acquire(&time_sync_lock.dep_map, 0, 0, _THIS_IP_);
818         __raw_spin_lock(&time_sync_lock.raw_lock);
819
820         if (time < prev_global_time) {
821                 per_cpu(time_offset, cpu) += prev_global_time - time;
822                 time = prev_global_time;
823         } else {
824                 prev_global_time = time;
825         }
826
827         __raw_spin_unlock(&time_sync_lock.raw_lock);
828         spin_release(&time_sync_lock.dep_map, 1, _THIS_IP_);
829
830         return time;
831 }
832
833 static unsigned long long __cpu_clock(int cpu)
834 {
835         unsigned long long now;
836
837         /*
838          * Only call sched_clock() if the scheduler has already been
839          * initialized (some code might call cpu_clock() very early):
840          */
841         if (unlikely(!scheduler_running))
842                 return 0;
843
844         now = sched_clock_cpu(cpu);
845
846         return now;
847 }
848
849 /*
850  * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
851  * clock constructed from sched_clock():
852  */
853 unsigned long long notrace cpu_clock(int cpu)
854 {
855         unsigned long long prev_cpu_time, time, delta_time;
856         unsigned long flags;
857
858         local_irq_save(flags);
859         prev_cpu_time = per_cpu(prev_cpu_time, cpu);
860         time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
861         delta_time = time-prev_cpu_time;
862
863         if (unlikely(delta_time > time_sync_thresh)) {
864                 time = __sync_cpu_clock(time, cpu);
865                 per_cpu(prev_cpu_time, cpu) = time;
866         }
867         local_irq_restore(flags);
868
869         return time;
870 }
871 EXPORT_SYMBOL_GPL(cpu_clock);
872
873 #ifndef prepare_arch_switch
874 # define prepare_arch_switch(next)      do { } while (0)
875 #endif
876 #ifndef finish_arch_switch
877 # define finish_arch_switch(prev)       do { } while (0)
878 #endif
879
880 static inline int task_current(struct rq *rq, struct task_struct *p)
881 {
882         return rq->curr == p;
883 }
884
885 #ifndef __ARCH_WANT_UNLOCKED_CTXSW
886 static inline int task_running(struct rq *rq, struct task_struct *p)
887 {
888         return task_current(rq, p);
889 }
890
891 static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
892 {
893 }
894
895 static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
896 {
897 #ifdef CONFIG_DEBUG_SPINLOCK
898         /* this is a valid case when another task releases the spinlock */
899         rq->lock.owner = current;
900 #endif
901         /*
902          * If we are tracking spinlock dependencies then we have to
903          * fix up the runqueue lock - which gets 'carried over' from
904          * prev into current:
905          */
906         spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
907
908         spin_unlock_irq(&rq->lock);
909 }
910
911 #else /* __ARCH_WANT_UNLOCKED_CTXSW */
912 static inline int task_running(struct rq *rq, struct task_struct *p)
913 {
914 #ifdef CONFIG_SMP
915         return p->oncpu;
916 #else
917         return task_current(rq, p);
918 #endif
919 }
920
921 static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
922 {
923 #ifdef CONFIG_SMP
924         /*
925          * We can optimise this out completely for !SMP, because the
926          * SMP rebalancing from interrupt is the only thing that cares
927          * here.
928          */
929         next->oncpu = 1;
930 #endif
931 #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
932         spin_unlock_irq(&rq->lock);
933 #else
934         spin_unlock(&rq->lock);
935 #endif
936 }
937
938 static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
939 {
940 #ifdef CONFIG_SMP
941         /*
942          * After ->oncpu is cleared, the task can be moved to a different CPU.
943          * We must ensure this doesn't happen until the switch is completely
944          * finished.
945          */
946         smp_wmb();
947         prev->oncpu = 0;
948 #endif
949 #ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
950         local_irq_enable();
951 #endif
952 }
953 #endif /* __ARCH_WANT_UNLOCKED_CTXSW */
954
955 /*
956  * __task_rq_lock - lock the runqueue a given task resides on.
957  * Must be called interrupts disabled.
958  */
959 static inline struct rq *__task_rq_lock(struct task_struct *p)
960         __acquires(rq->lock)
961 {
962         for (;;) {
963                 struct rq *rq = task_rq(p);
964                 spin_lock(&rq->lock);
965                 if (likely(rq == task_rq(p)))
966                         return rq;
967                 spin_unlock(&rq->lock);
968         }
969 }
970
971 /*
972  * task_rq_lock - lock the runqueue a given task resides on and disable
973  * interrupts. Note the ordering: we can safely lookup the task_rq without
974  * explicitly disabling preemption.
975  */
976 static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
977         __acquires(rq->lock)
978 {
979         struct rq *rq;
980
981         for (;;) {
982                 local_irq_save(*flags);
983                 rq = task_rq(p);
984                 spin_lock(&rq->lock);
985                 if (likely(rq == task_rq(p)))
986                         return rq;
987                 spin_unlock_irqrestore(&rq->lock, *flags);
988         }
989 }
990
991 static void __task_rq_unlock(struct rq *rq)
992         __releases(rq->lock)
993 {
994         spin_unlock(&rq->lock);
995 }
996
997 static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
998         __releases(rq->lock)
999 {
1000         spin_unlock_irqrestore(&rq->lock, *flags);
1001 }
1002
1003 /*
1004  * this_rq_lock - lock this runqueue and disable interrupts.
1005  */
1006 static struct rq *this_rq_lock(void)
1007         __acquires(rq->lock)
1008 {
1009         struct rq *rq;
1010
1011         local_irq_disable();
1012         rq = this_rq();
1013         spin_lock(&rq->lock);
1014
1015         return rq;
1016 }
1017
1018 static void __resched_task(struct task_struct *p, int tif_bit);
1019
1020 static inline void resched_task(struct task_struct *p)
1021 {
1022         __resched_task(p, TIF_NEED_RESCHED);
1023 }
1024
1025 #ifdef CONFIG_SCHED_HRTICK
1026 /*
1027  * Use HR-timers to deliver accurate preemption points.
1028  *
1029  * Its all a bit involved since we cannot program an hrt while holding the
1030  * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1031  * reschedule event.
1032  *
1033  * When we get rescheduled we reprogram the hrtick_timer outside of the
1034  * rq->lock.
1035  */
1036 static inline void resched_hrt(struct task_struct *p)
1037 {
1038         __resched_task(p, TIF_HRTICK_RESCHED);
1039 }
1040
1041 static inline void resched_rq(struct rq *rq)
1042 {
1043         unsigned long flags;
1044
1045         spin_lock_irqsave(&rq->lock, flags);
1046         resched_task(rq->curr);
1047         spin_unlock_irqrestore(&rq->lock, flags);
1048 }
1049
1050 enum {
1051         HRTICK_SET,             /* re-programm hrtick_timer */
1052         HRTICK_RESET,           /* not a new slice */
1053         HRTICK_BLOCK,           /* stop hrtick operations */
1054 };
1055
1056 /*
1057  * Use hrtick when:
1058  *  - enabled by features
1059  *  - hrtimer is actually high res
1060  */
1061 static inline int hrtick_enabled(struct rq *rq)
1062 {
1063         if (!sched_feat(HRTICK))
1064                 return 0;
1065         if (unlikely(test_bit(HRTICK_BLOCK, &rq->hrtick_flags)))
1066                 return 0;
1067         return hrtimer_is_hres_active(&rq->hrtick_timer);
1068 }
1069
1070 /*
1071  * Called to set the hrtick timer state.
1072  *
1073  * called with rq->lock held and irqs disabled
1074  */
1075 static void hrtick_start(struct rq *rq, u64 delay, int reset)
1076 {
1077         assert_spin_locked(&rq->lock);
1078
1079         /*
1080          * preempt at: now + delay
1081          */
1082         rq->hrtick_expire =
1083                 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1084         /*
1085          * indicate we need to program the timer
1086          */
1087         __set_bit(HRTICK_SET, &rq->hrtick_flags);
1088         if (reset)
1089                 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1090
1091         /*
1092          * New slices are called from the schedule path and don't need a
1093          * forced reschedule.
1094          */
1095         if (reset)
1096                 resched_hrt(rq->curr);
1097 }
1098
1099 static void hrtick_clear(struct rq *rq)
1100 {
1101         if (hrtimer_active(&rq->hrtick_timer))
1102                 hrtimer_cancel(&rq->hrtick_timer);
1103 }
1104
1105 /*
1106  * Update the timer from the possible pending state.
1107  */
1108 static void hrtick_set(struct rq *rq)
1109 {
1110         ktime_t time;
1111         int set, reset;
1112         unsigned long flags;
1113
1114         WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1115
1116         spin_lock_irqsave(&rq->lock, flags);
1117         set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1118         reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1119         time = rq->hrtick_expire;
1120         clear_thread_flag(TIF_HRTICK_RESCHED);
1121         spin_unlock_irqrestore(&rq->lock, flags);
1122
1123         if (set) {
1124                 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1125                 if (reset && !hrtimer_active(&rq->hrtick_timer))
1126                         resched_rq(rq);
1127         } else
1128                 hrtick_clear(rq);
1129 }
1130
1131 /*
1132  * High-resolution timer tick.
1133  * Runs from hardirq context with interrupts disabled.
1134  */
1135 static enum hrtimer_restart hrtick(struct hrtimer *timer)
1136 {
1137         struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1138
1139         WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1140
1141         spin_lock(&rq->lock);
1142         update_rq_clock(rq);
1143         rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1144         spin_unlock(&rq->lock);
1145
1146         return HRTIMER_NORESTART;
1147 }
1148
1149 #ifdef CONFIG_SMP
1150 static void hotplug_hrtick_disable(int cpu)
1151 {
1152         struct rq *rq = cpu_rq(cpu);
1153         unsigned long flags;
1154
1155         spin_lock_irqsave(&rq->lock, flags);
1156         rq->hrtick_flags = 0;
1157         __set_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1158         spin_unlock_irqrestore(&rq->lock, flags);
1159
1160         hrtick_clear(rq);
1161 }
1162
1163 static void hotplug_hrtick_enable(int cpu)
1164 {
1165         struct rq *rq = cpu_rq(cpu);
1166         unsigned long flags;
1167
1168         spin_lock_irqsave(&rq->lock, flags);
1169         __clear_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1170         spin_unlock_irqrestore(&rq->lock, flags);
1171 }
1172
1173 static int
1174 hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1175 {
1176         int cpu = (int)(long)hcpu;
1177
1178         switch (action) {
1179         case CPU_UP_CANCELED:
1180         case CPU_UP_CANCELED_FROZEN:
1181         case CPU_DOWN_PREPARE:
1182         case CPU_DOWN_PREPARE_FROZEN:
1183         case CPU_DEAD:
1184         case CPU_DEAD_FROZEN:
1185                 hotplug_hrtick_disable(cpu);
1186                 return NOTIFY_OK;
1187
1188         case CPU_UP_PREPARE:
1189         case CPU_UP_PREPARE_FROZEN:
1190         case CPU_DOWN_FAILED:
1191         case CPU_DOWN_FAILED_FROZEN:
1192         case CPU_ONLINE:
1193         case CPU_ONLINE_FROZEN:
1194                 hotplug_hrtick_enable(cpu);
1195                 return NOTIFY_OK;
1196         }
1197
1198         return NOTIFY_DONE;
1199 }
1200
1201 static void init_hrtick(void)
1202 {
1203         hotcpu_notifier(hotplug_hrtick, 0);
1204 }
1205 #endif /* CONFIG_SMP */
1206
1207 static void init_rq_hrtick(struct rq *rq)
1208 {
1209         rq->hrtick_flags = 0;
1210         hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1211         rq->hrtick_timer.function = hrtick;
1212         rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1213 }
1214
1215 void hrtick_resched(void)
1216 {
1217         struct rq *rq;
1218         unsigned long flags;
1219
1220         if (!test_thread_flag(TIF_HRTICK_RESCHED))
1221                 return;
1222
1223         local_irq_save(flags);
1224         rq = cpu_rq(smp_processor_id());
1225         hrtick_set(rq);
1226         local_irq_restore(flags);
1227 }
1228 #else
1229 static inline void hrtick_clear(struct rq *rq)
1230 {
1231 }
1232
1233 static inline void hrtick_set(struct rq *rq)
1234 {
1235 }
1236
1237 static inline void init_rq_hrtick(struct rq *rq)
1238 {
1239 }
1240
1241 void hrtick_resched(void)
1242 {
1243 }
1244
1245 static inline void init_hrtick(void)
1246 {
1247 }
1248 #endif
1249
1250 /*
1251  * resched_task - mark a task 'to be rescheduled now'.
1252  *
1253  * On UP this means the setting of the need_resched flag, on SMP it
1254  * might also involve a cross-CPU call to trigger the scheduler on
1255  * the target CPU.
1256  */
1257 #ifdef CONFIG_SMP
1258
1259 #ifndef tsk_is_polling
1260 #define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1261 #endif
1262
1263 static void __resched_task(struct task_struct *p, int tif_bit)
1264 {
1265         int cpu;
1266
1267         assert_spin_locked(&task_rq(p)->lock);
1268
1269         if (unlikely(test_tsk_thread_flag(p, tif_bit)))
1270                 return;
1271
1272         set_tsk_thread_flag(p, tif_bit);
1273
1274         cpu = task_cpu(p);
1275         if (cpu == smp_processor_id())
1276                 return;
1277
1278         /* NEED_RESCHED must be visible before we test polling */
1279         smp_mb();
1280         if (!tsk_is_polling(p))
1281                 smp_send_reschedule(cpu);
1282 }
1283
1284 static void resched_cpu(int cpu)
1285 {
1286         struct rq *rq = cpu_rq(cpu);
1287         unsigned long flags;
1288
1289         if (!spin_trylock_irqsave(&rq->lock, flags))
1290                 return;
1291         resched_task(cpu_curr(cpu));
1292         spin_unlock_irqrestore(&rq->lock, flags);
1293 }
1294
1295 #ifdef CONFIG_NO_HZ
1296 /*
1297  * When add_timer_on() enqueues a timer into the timer wheel of an
1298  * idle CPU then this timer might expire before the next timer event
1299  * which is scheduled to wake up that CPU. In case of a completely
1300  * idle system the next event might even be infinite time into the
1301  * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1302  * leaves the inner idle loop so the newly added timer is taken into
1303  * account when the CPU goes back to idle and evaluates the timer
1304  * wheel for the next timer event.
1305  */
1306 void wake_up_idle_cpu(int cpu)
1307 {
1308         struct rq *rq = cpu_rq(cpu);
1309
1310         if (cpu == smp_processor_id())
1311                 return;
1312
1313         /*
1314          * This is safe, as this function is called with the timer
1315          * wheel base lock of (cpu) held. When the CPU is on the way
1316          * to idle and has not yet set rq->curr to idle then it will
1317          * be serialized on the timer wheel base lock and take the new
1318          * timer into account automatically.
1319          */
1320         if (rq->curr != rq->idle)
1321                 return;
1322
1323         /*
1324          * We can set TIF_RESCHED on the idle task of the other CPU
1325          * lockless. The worst case is that the other CPU runs the
1326          * idle task through an additional NOOP schedule()
1327          */
1328         set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1329
1330         /* NEED_RESCHED must be visible before we test polling */
1331         smp_mb();
1332         if (!tsk_is_polling(rq->idle))
1333                 smp_send_reschedule(cpu);
1334 }
1335 #endif
1336
1337 #else
1338 static void __resched_task(struct task_struct *p, int tif_bit)
1339 {
1340         assert_spin_locked(&task_rq(p)->lock);
1341         set_tsk_thread_flag(p, tif_bit);
1342 }
1343 #endif
1344
1345 #if BITS_PER_LONG == 32
1346 # define WMULT_CONST    (~0UL)
1347 #else
1348 # define WMULT_CONST    (1UL << 32)
1349 #endif
1350
1351 #define WMULT_SHIFT     32
1352
1353 /*
1354  * Shift right and round:
1355  */
1356 #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
1357
1358 static unsigned long
1359 calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1360                 struct load_weight *lw)
1361 {
1362         u64 tmp;
1363
1364         if (!lw->inv_weight) {
1365                 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1366                         lw->inv_weight = 1;
1367                 else
1368                         lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1369                                 / (lw->weight+1);
1370         }
1371
1372         tmp = (u64)delta_exec * weight;
1373         /*
1374          * Check whether we'd overflow the 64-bit multiplication:
1375          */
1376         if (unlikely(tmp > WMULT_CONST))
1377                 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
1378                         WMULT_SHIFT/2);
1379         else
1380                 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
1381
1382         return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
1383 }
1384
1385 static inline unsigned long
1386 calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1387 {
1388         return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1389 }
1390
1391 static inline void update_load_add(struct load_weight *lw, unsigned long inc)
1392 {
1393         lw->weight += inc;
1394         lw->inv_weight = 0;
1395 }
1396
1397 static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
1398 {
1399         lw->weight -= dec;
1400         lw->inv_weight = 0;
1401 }
1402
1403 /*
1404  * To aid in avoiding the subversion of "niceness" due to uneven distribution
1405  * of tasks with abnormal "nice" values across CPUs the contribution that
1406  * each task makes to its run queue's load is weighted according to its
1407  * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
1408  * scaled version of the new time slice allocation that they receive on time
1409  * slice expiry etc.
1410  */
1411
1412 #define WEIGHT_IDLEPRIO         2
1413 #define WMULT_IDLEPRIO          (1 << 31)
1414
1415 /*
1416  * Nice levels are multiplicative, with a gentle 10% change for every
1417  * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1418  * nice 1, it will get ~10% less CPU time than another CPU-bound task
1419  * that remained on nice 0.
1420  *
1421  * The "10% effect" is relative and cumulative: from _any_ nice level,
1422  * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
1423  * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1424  * If a task goes up by ~10% and another task goes down by ~10% then
1425  * the relative distance between them is ~25%.)
1426  */
1427 static const int prio_to_weight[40] = {
1428  /* -20 */     88761,     71755,     56483,     46273,     36291,
1429  /* -15 */     29154,     23254,     18705,     14949,     11916,
1430  /* -10 */      9548,      7620,      6100,      4904,      3906,
1431  /*  -5 */      3121,      2501,      1991,      1586,      1277,
1432  /*   0 */      1024,       820,       655,       526,       423,
1433  /*   5 */       335,       272,       215,       172,       137,
1434  /*  10 */       110,        87,        70,        56,        45,
1435  /*  15 */        36,        29,        23,        18,        15,
1436 };
1437
1438 /*
1439  * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1440  *
1441  * In cases where the weight does not change often, we can use the
1442  * precalculated inverse to speed up arithmetics by turning divisions
1443  * into multiplications:
1444  */
1445 static const u32 prio_to_wmult[40] = {
1446  /* -20 */     48388,     59856,     76040,     92818,    118348,
1447  /* -15 */    147320,    184698,    229616,    287308,    360437,
1448  /* -10 */    449829,    563644,    704093,    875809,   1099582,
1449  /*  -5 */   1376151,   1717300,   2157191,   2708050,   3363326,
1450  /*   0 */   4194304,   5237765,   6557202,   8165337,  10153587,
1451  /*   5 */  12820798,  15790321,  19976592,  24970740,  31350126,
1452  /*  10 */  39045157,  49367440,  61356676,  76695844,  95443717,
1453  /*  15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
1454 };
1455
1456 static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1457
1458 /*
1459  * runqueue iterator, to support SMP load-balancing between different
1460  * scheduling classes, without having to expose their internal data
1461  * structures to the load-balancing proper:
1462  */
1463 struct rq_iterator {
1464         void *arg;
1465         struct task_struct *(*start)(void *);
1466         struct task_struct *(*next)(void *);
1467 };
1468
1469 #ifdef CONFIG_SMP
1470 static unsigned long
1471 balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1472               unsigned long max_load_move, struct sched_domain *sd,
1473               enum cpu_idle_type idle, int *all_pinned,
1474               int *this_best_prio, struct rq_iterator *iterator);
1475
1476 static int
1477 iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1478                    struct sched_domain *sd, enum cpu_idle_type idle,
1479                    struct rq_iterator *iterator);
1480 #endif
1481
1482 #ifdef CONFIG_CGROUP_CPUACCT
1483 static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1484 #else
1485 static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1486 #endif
1487
1488 static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1489 {
1490         update_load_add(&rq->load, load);
1491 }
1492
1493 static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1494 {
1495         update_load_sub(&rq->load, load);
1496 }
1497
1498 #ifdef CONFIG_SMP
1499 static unsigned long source_load(int cpu, int type);
1500 static unsigned long target_load(int cpu, int type);
1501 static unsigned long cpu_avg_load_per_task(int cpu);
1502 static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1503 #else /* CONFIG_SMP */
1504
1505 #ifdef CONFIG_FAIR_GROUP_SCHED
1506 static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1507 {
1508 }
1509 #endif
1510
1511 #endif /* CONFIG_SMP */
1512
1513 #include "sched_stats.h"
1514 #include "sched_idletask.c"
1515 #include "sched_fair.c"
1516 #include "sched_rt.c"
1517 #ifdef CONFIG_SCHED_DEBUG
1518 # include "sched_debug.c"
1519 #endif
1520
1521 #define sched_class_highest (&rt_sched_class)
1522
1523 static inline void inc_load(struct rq *rq, const struct task_struct *p)
1524 {
1525         update_load_add(&rq->load, p->se.load.weight);
1526 }
1527
1528 static inline void dec_load(struct rq *rq, const struct task_struct *p)
1529 {
1530         update_load_sub(&rq->load, p->se.load.weight);
1531 }
1532
1533 static void inc_nr_running(struct task_struct *p, struct rq *rq)
1534 {
1535         rq->nr_running++;
1536         inc_load(rq, p);
1537 }
1538
1539 static void dec_nr_running(struct task_struct *p, struct rq *rq)
1540 {
1541         rq->nr_running--;
1542         dec_load(rq, p);
1543 }
1544
1545 static void set_load_weight(struct task_struct *p)
1546 {
1547         if (task_has_rt_policy(p)) {
1548                 p->se.load.weight = prio_to_weight[0] * 2;
1549                 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1550                 return;
1551         }
1552
1553         /*
1554          * SCHED_IDLE tasks get minimal weight:
1555          */
1556         if (p->policy == SCHED_IDLE) {
1557                 p->se.load.weight = WEIGHT_IDLEPRIO;
1558                 p->se.load.inv_weight = WMULT_IDLEPRIO;
1559                 return;
1560         }
1561
1562         p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1563         p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
1564 }
1565
1566 static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
1567 {
1568         sched_info_queued(p);
1569         p->sched_class->enqueue_task(rq, p, wakeup);
1570         p->se.on_rq = 1;
1571 }
1572
1573 static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
1574 {
1575         p->sched_class->dequeue_task(rq, p, sleep);
1576         p->se.on_rq = 0;
1577 }
1578
1579 /*
1580  * __normal_prio - return the priority that is based on the static prio
1581  */
1582 static inline int __normal_prio(struct task_struct *p)
1583 {
1584         return p->static_prio;
1585 }
1586
1587 /*
1588  * Calculate the expected normal priority: i.e. priority
1589  * without taking RT-inheritance into account. Might be
1590  * boosted by interactivity modifiers. Changes upon fork,
1591  * setprio syscalls, and whenever the interactivity
1592  * estimator recalculates.
1593  */
1594 static inline int normal_prio(struct task_struct *p)
1595 {
1596         int prio;
1597
1598         if (task_has_rt_policy(p))
1599                 prio = MAX_RT_PRIO-1 - p->rt_priority;
1600         else
1601                 prio = __normal_prio(p);
1602         return prio;
1603 }
1604
1605 /*
1606  * Calculate the current priority, i.e. the priority
1607  * taken into account by the scheduler. This value might
1608  * be boosted by RT tasks, or might be boosted by
1609  * interactivity modifiers. Will be RT if the task got
1610  * RT-boosted. If not then it returns p->normal_prio.
1611  */
1612 static int effective_prio(struct task_struct *p)
1613 {
1614         p->normal_prio = normal_prio(p);
1615         /*
1616          * If we are RT tasks or we were boosted to RT priority,
1617          * keep the priority unchanged. Otherwise, update priority
1618          * to the normal priority:
1619          */
1620         if (!rt_prio(p->prio))
1621                 return p->normal_prio;
1622         return p->prio;
1623 }
1624
1625 /*
1626  * activate_task - move a task to the runqueue.
1627  */
1628 static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
1629 {
1630         if (task_contributes_to_load(p))
1631                 rq->nr_uninterruptible--;
1632
1633         enqueue_task(rq, p, wakeup);
1634         inc_nr_running(p, rq);
1635 }
1636
1637 /*
1638  * deactivate_task - remove a task from the runqueue.
1639  */
1640 static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
1641 {
1642         if (task_contributes_to_load(p))
1643                 rq->nr_uninterruptible++;
1644
1645         dequeue_task(rq, p, sleep);
1646         dec_nr_running(p, rq);
1647 }
1648
1649 /**
1650  * task_curr - is this task currently executing on a CPU?
1651  * @p: the task in question.
1652  */
1653 inline int task_curr(const struct task_struct *p)
1654 {
1655         return cpu_curr(task_cpu(p)) == p;
1656 }
1657
1658 /* Used instead of source_load when we know the type == 0 */
1659 unsigned long weighted_cpuload(const int cpu)
1660 {
1661         return cpu_rq(cpu)->load.weight;
1662 }
1663
1664 static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1665 {
1666         set_task_rq(p, cpu);
1667 #ifdef CONFIG_SMP
1668         /*
1669          * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1670          * successfuly executed on another CPU. We must ensure that updates of
1671          * per-task data have been completed by this moment.
1672          */
1673         smp_wmb();
1674         task_thread_info(p)->cpu = cpu;
1675 #endif
1676 }
1677
1678 static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1679                                        const struct sched_class *prev_class,
1680                                        int oldprio, int running)
1681 {
1682         if (prev_class != p->sched_class) {
1683                 if (prev_class->switched_from)
1684                         prev_class->switched_from(rq, p, running);
1685                 p->sched_class->switched_to(rq, p, running);
1686         } else
1687                 p->sched_class->prio_changed(rq, p, oldprio, running);
1688 }
1689
1690 #ifdef CONFIG_SMP
1691
1692 /*
1693  * Is this task likely cache-hot:
1694  */
1695 static int
1696 task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1697 {
1698         s64 delta;
1699
1700         /*
1701          * Buddy candidates are cache hot:
1702          */
1703         if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
1704                 return 1;
1705
1706         if (p->sched_class != &fair_sched_class)
1707                 return 0;
1708
1709         if (sysctl_sched_migration_cost == -1)
1710                 return 1;
1711         if (sysctl_sched_migration_cost == 0)
1712                 return 0;
1713
1714         delta = now - p->se.exec_start;
1715
1716         return delta < (s64)sysctl_sched_migration_cost;
1717 }
1718
1719
1720 void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
1721 {
1722         int old_cpu = task_cpu(p);
1723         struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
1724         struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1725                       *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
1726         u64 clock_offset;
1727
1728         clock_offset = old_rq->clock - new_rq->clock;
1729
1730 #ifdef CONFIG_SCHEDSTATS
1731         if (p->se.wait_start)
1732                 p->se.wait_start -= clock_offset;
1733         if (p->se.sleep_start)
1734                 p->se.sleep_start -= clock_offset;
1735         if (p->se.block_start)
1736                 p->se.block_start -= clock_offset;
1737         if (old_cpu != new_cpu) {
1738                 schedstat_inc(p, se.nr_migrations);
1739                 if (task_hot(p, old_rq->clock, NULL))
1740                         schedstat_inc(p, se.nr_forced2_migrations);
1741         }
1742 #endif
1743         p->se.vruntime -= old_cfsrq->min_vruntime -
1744                                          new_cfsrq->min_vruntime;
1745
1746         __set_task_cpu(p, new_cpu);
1747 }
1748
1749 struct migration_req {
1750         struct list_head list;
1751
1752         struct task_struct *task;
1753         int dest_cpu;
1754
1755         struct completion done;
1756 };
1757
1758 /*
1759  * The task's runqueue lock must be held.
1760  * Returns true if you have to wait for migration thread.
1761  */
1762 static int
1763 migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
1764 {
1765         struct rq *rq = task_rq(p);
1766
1767         /*
1768          * If the task is not on a runqueue (and not running), then
1769          * it is sufficient to simply update the task's cpu field.
1770          */
1771         if (!p->se.on_rq && !task_running(rq, p)) {
1772                 set_task_cpu(p, dest_cpu);
1773                 return 0;
1774         }
1775
1776         init_completion(&req->done);
1777         req->task = p;
1778         req->dest_cpu = dest_cpu;
1779         list_add(&req->list, &rq->migration_queue);
1780
1781         return 1;
1782 }
1783
1784 /*
1785  * wait_task_inactive - wait for a thread to unschedule.
1786  *
1787  * The caller must ensure that the task *will* unschedule sometime soon,
1788  * else this function might spin for a *long* time. This function can't
1789  * be called with interrupts off, or it may introduce deadlock with
1790  * smp_call_function() if an IPI is sent by the same process we are
1791  * waiting to become inactive.
1792  */
1793 void wait_task_inactive(struct task_struct *p)
1794 {
1795         unsigned long flags;
1796         int running, on_rq;
1797         struct rq *rq;
1798
1799         for (;;) {
1800                 /*
1801                  * We do the initial early heuristics without holding
1802                  * any task-queue locks at all. We'll only try to get
1803                  * the runqueue lock when things look like they will
1804                  * work out!
1805                  */
1806                 rq = task_rq(p);
1807
1808                 /*
1809                  * If the task is actively running on another CPU
1810                  * still, just relax and busy-wait without holding
1811                  * any locks.
1812                  *
1813                  * NOTE! Since we don't hold any locks, it's not
1814                  * even sure that "rq" stays as the right runqueue!
1815                  * But we don't care, since "task_running()" will
1816                  * return false if the runqueue has changed and p
1817                  * is actually now running somewhere else!
1818                  */
1819                 while (task_running(rq, p))
1820                         cpu_relax();
1821
1822                 /*
1823                  * Ok, time to look more closely! We need the rq
1824                  * lock now, to be *sure*. If we're wrong, we'll
1825                  * just go back and repeat.
1826                  */
1827                 rq = task_rq_lock(p, &flags);
1828                 running = task_running(rq, p);
1829                 on_rq = p->se.on_rq;
1830                 task_rq_unlock(rq, &flags);
1831
1832                 /*
1833                  * Was it really running after all now that we
1834                  * checked with the proper locks actually held?
1835                  *
1836                  * Oops. Go back and try again..
1837                  */
1838                 if (unlikely(running)) {
1839                         cpu_relax();
1840                         continue;
1841                 }
1842
1843                 /*
1844                  * It's not enough that it's not actively running,
1845                  * it must be off the runqueue _entirely_, and not
1846                  * preempted!
1847                  *
1848                  * So if it wa still runnable (but just not actively
1849                  * running right now), it's preempted, and we should
1850                  * yield - it could be a while.
1851                  */
1852                 if (unlikely(on_rq)) {
1853                         schedule_timeout_uninterruptible(1);
1854                         continue;
1855                 }
1856
1857                 /*
1858                  * Ahh, all good. It wasn't running, and it wasn't
1859                  * runnable, which means that it will never become
1860                  * running in the future either. We're all done!
1861                  */
1862                 break;
1863         }
1864 }
1865
1866 /***
1867  * kick_process - kick a running thread to enter/exit the kernel
1868  * @p: the to-be-kicked thread
1869  *
1870  * Cause a process which is running on another CPU to enter
1871  * kernel-mode, without any delay. (to get signals handled.)
1872  *
1873  * NOTE: this function doesnt have to take the runqueue lock,
1874  * because all it wants to ensure is that the remote task enters
1875  * the kernel. If the IPI races and the task has been migrated
1876  * to another CPU then no harm is done and the purpose has been
1877  * achieved as well.
1878  */
1879 void kick_process(struct task_struct *p)
1880 {
1881         int cpu;
1882
1883         preempt_disable();
1884         cpu = task_cpu(p);
1885         if ((cpu != smp_processor_id()) && task_curr(p))
1886                 smp_send_reschedule(cpu);
1887         preempt_enable();
1888 }
1889
1890 /*
1891  * Return a low guess at the load of a migration-source cpu weighted
1892  * according to the scheduling class and "nice" value.
1893  *
1894  * We want to under-estimate the load of migration sources, to
1895  * balance conservatively.
1896  */
1897 static unsigned long source_load(int cpu, int type)
1898 {
1899         struct rq *rq = cpu_rq(cpu);
1900         unsigned long total = weighted_cpuload(cpu);
1901
1902         if (type == 0)
1903                 return total;
1904
1905         return min(rq->cpu_load[type-1], total);
1906 }
1907
1908 /*
1909  * Return a high guess at the load of a migration-target cpu weighted
1910  * according to the scheduling class and "nice" value.
1911  */
1912 static unsigned long target_load(int cpu, int type)
1913 {
1914         struct rq *rq = cpu_rq(cpu);
1915         unsigned long total = weighted_cpuload(cpu);
1916
1917         if (type == 0)
1918                 return total;
1919
1920         return max(rq->cpu_load[type-1], total);
1921 }
1922
1923 /*
1924  * Return the average load per task on the cpu's run queue
1925  */
1926 static unsigned long cpu_avg_load_per_task(int cpu)
1927 {
1928         struct rq *rq = cpu_rq(cpu);
1929         unsigned long total = weighted_cpuload(cpu);
1930         unsigned long n = rq->nr_running;
1931
1932         return n ? total / n : SCHED_LOAD_SCALE;
1933 }
1934
1935 /*
1936  * find_idlest_group finds and returns the least busy CPU group within the
1937  * domain.
1938  */
1939 static struct sched_group *
1940 find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1941 {
1942         struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1943         unsigned long min_load = ULONG_MAX, this_load = 0;
1944         int load_idx = sd->forkexec_idx;
1945         int imbalance = 100 + (sd->imbalance_pct-100)/2;
1946
1947         do {
1948                 unsigned long load, avg_load;
1949                 int local_group;
1950                 int i;
1951
1952                 /* Skip over this group if it has no CPUs allowed */
1953                 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
1954                         continue;
1955
1956                 local_group = cpu_isset(this_cpu, group->cpumask);
1957
1958                 /* Tally up the load of all CPUs in the group */
1959                 avg_load = 0;
1960
1961                 for_each_cpu_mask(i, group->cpumask) {
1962                         /* Bias balancing toward cpus of our domain */
1963                         if (local_group)
1964                                 load = source_load(i, load_idx);
1965                         else
1966                                 load = target_load(i, load_idx);
1967
1968                         avg_load += load;
1969                 }
1970
1971                 /* Adjust by relative CPU power of the group */
1972                 avg_load = sg_div_cpu_power(group,
1973                                 avg_load * SCHED_LOAD_SCALE);
1974
1975                 if (local_group) {
1976                         this_load = avg_load;
1977                         this = group;
1978                 } else if (avg_load < min_load) {
1979                         min_load = avg_load;
1980                         idlest = group;
1981                 }
1982         } while (group = group->next, group != sd->groups);
1983
1984         if (!idlest || 100*this_load < imbalance*min_load)
1985                 return NULL;
1986         return idlest;
1987 }
1988
1989 /*
1990  * find_idlest_cpu - find the idlest cpu among the cpus in group.
1991  */
1992 static int
1993 find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
1994                 cpumask_t *tmp)
1995 {
1996         unsigned long load, min_load = ULONG_MAX;
1997         int idlest = -1;
1998         int i;
1999
2000         /* Traverse only the allowed CPUs */
2001         cpus_and(*tmp, group->cpumask, p->cpus_allowed);
2002
2003         for_each_cpu_mask(i, *tmp) {
2004                 load = weighted_cpuload(i);
2005
2006                 if (load < min_load || (load == min_load && i == this_cpu)) {
2007                         min_load = load;
2008                         idlest = i;
2009                 }
2010         }
2011
2012         return idlest;
2013 }
2014
2015 /*
2016  * sched_balance_self: balance the current task (running on cpu) in domains
2017  * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2018  * SD_BALANCE_EXEC.
2019  *
2020  * Balance, ie. select the least loaded group.
2021  *
2022  * Returns the target CPU number, or the same CPU if no balancing is needed.
2023  *
2024  * preempt must be disabled.
2025  */
2026 static int sched_balance_self(int cpu, int flag)
2027 {
2028         struct task_struct *t = current;
2029         struct sched_domain *tmp, *sd = NULL;
2030
2031         for_each_domain(cpu, tmp) {
2032                 /*
2033                  * If power savings logic is enabled for a domain, stop there.
2034                  */
2035                 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2036                         break;
2037                 if (tmp->flags & flag)
2038                         sd = tmp;
2039         }
2040
2041         while (sd) {
2042                 cpumask_t span, tmpmask;
2043                 struct sched_group *group;
2044                 int new_cpu, weight;
2045
2046                 if (!(sd->flags & flag)) {
2047                         sd = sd->child;
2048                         continue;
2049                 }
2050
2051                 span = sd->span;
2052                 group = find_idlest_group(sd, t, cpu);
2053                 if (!group) {
2054                         sd = sd->child;
2055                         continue;
2056                 }
2057
2058                 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
2059                 if (new_cpu == -1 || new_cpu == cpu) {
2060                         /* Now try balancing at a lower domain level of cpu */
2061                         sd = sd->child;
2062                         continue;
2063                 }
2064
2065                 /* Now try balancing at a lower domain level of new_cpu */
2066                 cpu = new_cpu;
2067                 sd = NULL;
2068                 weight = cpus_weight(span);
2069                 for_each_domain(cpu, tmp) {
2070                         if (weight <= cpus_weight(tmp->span))
2071                                 break;
2072                         if (tmp->flags & flag)
2073                                 sd = tmp;
2074                 }
2075                 /* while loop will break here if sd == NULL */
2076         }
2077
2078         return cpu;
2079 }
2080
2081 #endif /* CONFIG_SMP */
2082
2083 /***
2084  * try_to_wake_up - wake up a thread
2085  * @p: the to-be-woken-up thread
2086  * @state: the mask of task states that can be woken
2087  * @sync: do a synchronous wakeup?
2088  *
2089  * Put it on the run-queue if it's not already there. The "current"
2090  * thread is always on the run-queue (except when the actual
2091  * re-schedule is in progress), and as such you're allowed to do
2092  * the simpler "current->state = TASK_RUNNING" to mark yourself
2093  * runnable without the overhead of this.
2094  *
2095  * returns failure only if the task is already active.
2096  */
2097 static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
2098 {
2099         int cpu, orig_cpu, this_cpu, success = 0;
2100         unsigned long flags;
2101         long old_state;
2102         struct rq *rq;
2103
2104         if (!sched_feat(SYNC_WAKEUPS))
2105                 sync = 0;
2106
2107         smp_wmb();
2108         rq = task_rq_lock(p, &flags);
2109         old_state = p->state;
2110         if (!(old_state & state))
2111                 goto out;
2112
2113         if (p->se.on_rq)
2114                 goto out_running;
2115
2116         cpu = task_cpu(p);
2117         orig_cpu = cpu;
2118         this_cpu = smp_processor_id();
2119
2120 #ifdef CONFIG_SMP
2121         if (unlikely(task_running(rq, p)))
2122                 goto out_activate;
2123
2124         cpu = p->sched_class->select_task_rq(p, sync);
2125         if (cpu != orig_cpu) {
2126                 set_task_cpu(p, cpu);
2127                 task_rq_unlock(rq, &flags);
2128                 /* might preempt at this point */
2129                 rq = task_rq_lock(p, &flags);
2130                 old_state = p->state;
2131                 if (!(old_state & state))
2132                         goto out;
2133                 if (p->se.on_rq)
2134                         goto out_running;
2135
2136                 this_cpu = smp_processor_id();
2137                 cpu = task_cpu(p);
2138         }
2139
2140 #ifdef CONFIG_SCHEDSTATS
2141         schedstat_inc(rq, ttwu_count);
2142         if (cpu == this_cpu)
2143                 schedstat_inc(rq, ttwu_local);
2144         else {
2145                 struct sched_domain *sd;
2146                 for_each_domain(this_cpu, sd) {
2147                         if (cpu_isset(cpu, sd->span)) {
2148                                 schedstat_inc(sd, ttwu_wake_remote);
2149                                 break;
2150                         }
2151                 }
2152         }
2153 #endif
2154
2155 out_activate:
2156 #endif /* CONFIG_SMP */
2157         schedstat_inc(p, se.nr_wakeups);
2158         if (sync)
2159                 schedstat_inc(p, se.nr_wakeups_sync);
2160         if (orig_cpu != cpu)
2161                 schedstat_inc(p, se.nr_wakeups_migrate);
2162         if (cpu == this_cpu)
2163                 schedstat_inc(p, se.nr_wakeups_local);
2164         else
2165                 schedstat_inc(p, se.nr_wakeups_remote);
2166         update_rq_clock(rq);
2167         activate_task(rq, p, 1);
2168         success = 1;
2169
2170 out_running:
2171         trace_mark(kernel_sched_wakeup,
2172                 "pid %d state %ld ## rq %p task %p rq->curr %p",
2173                 p->pid, p->state, rq, p, rq->curr);
2174         check_preempt_curr(rq, p);
2175
2176         p->state = TASK_RUNNING;
2177 #ifdef CONFIG_SMP
2178         if (p->sched_class->task_wake_up)
2179                 p->sched_class->task_wake_up(rq, p);
2180 #endif
2181 out:
2182         task_rq_unlock(rq, &flags);
2183
2184         return success;
2185 }
2186
2187 int wake_up_process(struct task_struct *p)
2188 {
2189         return try_to_wake_up(p, TASK_ALL, 0);
2190 }
2191 EXPORT_SYMBOL(wake_up_process);
2192
2193 int wake_up_state(struct task_struct *p, unsigned int state)
2194 {
2195         return try_to_wake_up(p, state, 0);
2196 }
2197
2198 /*
2199  * Perform scheduler related setup for a newly forked process p.
2200  * p is forked by current.
2201  *
2202  * __sched_fork() is basic setup used by init_idle() too:
2203  */
2204 static void __sched_fork(struct task_struct *p)
2205 {
2206         p->se.exec_start                = 0;
2207         p->se.sum_exec_runtime          = 0;
2208         p->se.prev_sum_exec_runtime     = 0;
2209         p->se.last_wakeup               = 0;
2210         p->se.avg_overlap               = 0;
2211
2212 #ifdef CONFIG_SCHEDSTATS
2213         p->se.wait_start                = 0;
2214         p->se.sum_sleep_runtime         = 0;
2215         p->se.sleep_start               = 0;
2216         p->se.block_start               = 0;
2217         p->se.sleep_max                 = 0;
2218         p->se.block_max                 = 0;
2219         p->se.exec_max                  = 0;
2220         p->se.slice_max                 = 0;
2221         p->se.wait_max                  = 0;
2222 #endif
2223
2224         INIT_LIST_HEAD(&p->rt.run_list);
2225         p->se.on_rq = 0;
2226         INIT_LIST_HEAD(&p->se.group_node);
2227
2228 #ifdef CONFIG_PREEMPT_NOTIFIERS
2229         INIT_HLIST_HEAD(&p->preempt_notifiers);
2230 #endif
2231
2232         /*
2233          * We mark the process as running here, but have not actually
2234          * inserted it onto the runqueue yet. This guarantees that
2235          * nobody will actually run it, and a signal or other external
2236          * event cannot wake it up and insert it on the runqueue either.
2237          */
2238         p->state = TASK_RUNNING;
2239 }
2240
2241 /*
2242  * fork()/clone()-time setup:
2243  */
2244 void sched_fork(struct task_struct *p, int clone_flags)
2245 {
2246         int cpu = get_cpu();
2247
2248         __sched_fork(p);
2249
2250 #ifdef CONFIG_SMP
2251         cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2252 #endif
2253         set_task_cpu(p, cpu);
2254
2255         /*
2256          * Make sure we do not leak PI boosting priority to the child:
2257          */
2258         p->prio = current->normal_prio;
2259         if (!rt_prio(p->prio))
2260                 p->sched_class = &fair_sched_class;
2261
2262 #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
2263         if (likely(sched_info_on()))
2264                 memset(&p->sched_info, 0, sizeof(p->sched_info));
2265 #endif
2266 #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
2267         p->oncpu = 0;
2268 #endif
2269 #ifdef CONFIG_PREEMPT
2270         /* Want to start with kernel preemption disabled. */
2271         task_thread_info(p)->preempt_count = 1;
2272 #endif
2273         put_cpu();
2274 }
2275
2276 /*
2277  * wake_up_new_task - wake up a newly created task for the first time.
2278  *
2279  * This function will do some initial scheduler statistics housekeeping
2280  * that must be done for every newly created context, then puts the task
2281  * on the runqueue and wakes it.
2282  */
2283 void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
2284 {
2285         unsigned long flags;
2286         struct rq *rq;
2287
2288         rq = task_rq_lock(p, &flags);
2289         BUG_ON(p->state != TASK_RUNNING);
2290         update_rq_clock(rq);
2291
2292         p->prio = effective_prio(p);
2293
2294         if (!p->sched_class->task_new || !current->se.on_rq) {
2295                 activate_task(rq, p, 0);
2296         } else {
2297                 /*
2298                  * Let the scheduling class do new task startup
2299                  * management (if any):
2300                  */
2301                 p->sched_class->task_new(rq, p);
2302                 inc_nr_running(p, rq);
2303         }
2304         trace_mark(kernel_sched_wakeup_new,
2305                 "pid %d state %ld ## rq %p task %p rq->curr %p",
2306                 p->pid, p->state, rq, p, rq->curr);
2307         check_preempt_curr(rq, p);
2308 #ifdef CONFIG_SMP
2309         if (p->sched_class->task_wake_up)
2310                 p->sched_class->task_wake_up(rq, p);
2311 #endif
2312         task_rq_unlock(rq, &flags);
2313 }
2314
2315 #ifdef CONFIG_PREEMPT_NOTIFIERS
2316
2317 /**
2318  * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2319  * @notifier: notifier struct to register
2320  */
2321 void preempt_notifier_register(struct preempt_notifier *notifier)
2322 {
2323         hlist_add_head(&notifier->link, &current->preempt_notifiers);
2324 }
2325 EXPORT_SYMBOL_GPL(preempt_notifier_register);
2326
2327 /**
2328  * preempt_notifier_unregister - no longer interested in preemption notifications
2329  * @notifier: notifier struct to unregister
2330  *
2331  * This is safe to call from within a preemption notifier.
2332  */
2333 void preempt_notifier_unregister(struct preempt_notifier *notifier)
2334 {
2335         hlist_del(&notifier->link);
2336 }
2337 EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2338
2339 static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2340 {
2341         struct preempt_notifier *notifier;
2342         struct hlist_node *node;
2343
2344         hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2345                 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2346 }
2347
2348 static void
2349 fire_sched_out_preempt_notifiers(struct task_struct *curr,
2350                                  struct task_struct *next)
2351 {
2352         struct preempt_notifier *notifier;
2353         struct hlist_node *node;
2354
2355         hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2356                 notifier->ops->sched_out(notifier, next);
2357 }
2358
2359 #else
2360
2361 static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2362 {
2363 }
2364
2365 static void
2366 fire_sched_out_preempt_notifiers(struct task_struct *curr,
2367                                  struct task_struct *next)
2368 {
2369 }
2370
2371 #endif
2372
2373 /**
2374  * prepare_task_switch - prepare to switch tasks
2375  * @rq: the runqueue preparing to switch
2376  * @prev: the current task that is being switched out
2377  * @next: the task we are going to switch to.
2378  *
2379  * This is called with the rq lock held and interrupts off. It must
2380  * be paired with a subsequent finish_task_switch after the context
2381  * switch.
2382  *
2383  * prepare_task_switch sets up locking and calls architecture specific
2384  * hooks.
2385  */
2386 static inline void
2387 prepare_task_switch(struct rq *rq, struct task_struct *prev,
2388                     struct task_struct *next)
2389 {
2390         fire_sched_out_preempt_notifiers(prev, next);
2391         prepare_lock_switch(rq, next);
2392         prepare_arch_switch(next);
2393 }
2394
2395 /**
2396  * finish_task_switch - clean up after a task-switch
2397  * @rq: runqueue associated with task-switch
2398  * @prev: the thread we just switched away from.
2399  *
2400  * finish_task_switch must be called after the context switch, paired
2401  * with a prepare_task_switch call before the context switch.
2402  * finish_task_switch will reconcile locking set up by prepare_task_switch,
2403  * and do any other architecture-specific cleanup actions.
2404  *
2405  * Note that we may have delayed dropping an mm in context_switch(). If
2406  * so, we finish that here outside of the runqueue lock. (Doing it
2407  * with the lock held can cause deadlocks; see schedule() for
2408  * details.)
2409  */
2410 static void finish_task_switch(struct rq *rq, struct task_struct *prev)
2411         __releases(rq->lock)
2412 {
2413         struct mm_struct *mm = rq->prev_mm;
2414         long prev_state;
2415
2416         rq->prev_mm = NULL;
2417
2418         /*
2419          * A task struct has one reference for the use as "current".
2420          * If a task dies, then it sets TASK_DEAD in tsk->state and calls
2421          * schedule one last time. The schedule call will never return, and
2422          * the scheduled task must drop that reference.
2423          * The test for TASK_DEAD must occur while the runqueue locks are
2424          * still held, otherwise prev could be scheduled on another cpu, die
2425          * there before we look at prev->state, and then the reference would
2426          * be dropped twice.
2427          *              Manfred Spraul <manfred@colorfullife.com>
2428          */
2429         prev_state = prev->state;
2430         finish_arch_switch(prev);
2431         finish_lock_switch(rq, prev);
2432 #ifdef CONFIG_SMP
2433         if (current->sched_class->post_schedule)
2434                 current->sched_class->post_schedule(rq);
2435 #endif
2436
2437         fire_sched_in_preempt_notifiers(current);
2438         if (mm)
2439                 mmdrop(mm);
2440         if (unlikely(prev_state == TASK_DEAD)) {
2441                 /*
2442                  * Remove function-return probe instances associated with this
2443                  * task and put them back on the free list.
2444                  */
2445                 kprobe_flush_task(prev);
2446                 put_task_struct(prev);
2447         }
2448 }
2449
2450 /**
2451  * schedule_tail - first thing a freshly forked thread must call.
2452  * @prev: the thread we just switched away from.
2453  */
2454 asmlinkage void schedule_tail(struct task_struct *prev)
2455         __releases(rq->lock)
2456 {
2457         struct rq *rq = this_rq();
2458
2459         finish_task_switch(rq, prev);
2460 #ifdef __ARCH_WANT_UNLOCKED_CTXSW
2461         /* In this case, finish_task_switch does not reenable preemption */
2462         preempt_enable();
2463 #endif
2464         if (current->set_child_tid)
2465                 put_user(task_pid_vnr(current), current->set_child_tid);
2466 }
2467
2468 /*
2469  * context_switch - switch to the new MM and the new
2470  * thread's register state.
2471  */
2472 static inline void
2473 context_switch(struct rq *rq, struct task_struct *prev,
2474                struct task_struct *next)
2475 {
2476         struct mm_struct *mm, *oldmm;
2477
2478         prepare_task_switch(rq, prev, next);
2479         trace_mark(kernel_sched_schedule,
2480                 "prev_pid %d next_pid %d prev_state %ld "
2481                 "## rq %p prev %p next %p",
2482                 prev->pid, next->pid, prev->state,
2483                 rq, prev, next);
2484         mm = next->mm;
2485         oldmm = prev->active_mm;
2486         /*
2487          * For paravirt, this is coupled with an exit in switch_to to
2488          * combine the page table reload and the switch backend into
2489          * one hypercall.
2490          */
2491         arch_enter_lazy_cpu_mode();
2492
2493         if (unlikely(!mm)) {
2494                 next->active_mm = oldmm;
2495                 atomic_inc(&oldmm->mm_count);
2496                 enter_lazy_tlb(oldmm, next);
2497         } else
2498                 switch_mm(oldmm, mm, next);
2499
2500         if (unlikely(!prev->mm)) {
2501                 prev->active_mm = NULL;
2502                 rq->prev_mm = oldmm;
2503         }
2504         /*
2505          * Since the runqueue lock will be released by the next
2506          * task (which is an invalid locking op but in the case
2507          * of the scheduler it's an obvious special-case), so we
2508          * do an early lockdep release here:
2509          */
2510 #ifndef __ARCH_WANT_UNLOCKED_CTXSW
2511         spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
2512 #endif
2513
2514         /* Here we just switch the register state and the stack. */
2515         switch_to(prev, next, prev);
2516
2517         barrier();
2518         /*
2519          * this_rq must be evaluated again because prev may have moved
2520          * CPUs since it called schedule(), thus the 'rq' on its stack
2521          * frame will be invalid.
2522          */
2523         finish_task_switch(this_rq(), prev);
2524 }
2525
2526 /*
2527  * nr_running, nr_uninterruptible and nr_context_switches:
2528  *
2529  * externally visible scheduler statistics: current number of runnable
2530  * threads, current number of uninterruptible-sleeping threads, total
2531  * number of context switches performed since bootup.
2532  */
2533 unsigned long nr_running(void)
2534 {
2535         unsigned long i, sum = 0;
2536
2537         for_each_online_cpu(i)
2538                 sum += cpu_rq(i)->nr_running;
2539
2540         return sum;
2541 }
2542
2543 unsigned long nr_uninterruptible(void)
2544 {
2545         unsigned long i, sum = 0;
2546
2547         for_each_possible_cpu(i)
2548                 sum += cpu_rq(i)->nr_uninterruptible;
2549
2550         /*
2551          * Since we read the counters lockless, it might be slightly
2552          * inaccurate. Do not allow it to go below zero though:
2553          */
2554         if (unlikely((long)sum < 0))
2555                 sum = 0;
2556
2557         return sum;
2558 }
2559
2560 unsigned long long nr_context_switches(void)
2561 {
2562         int i;
2563         unsigned long long sum = 0;
2564
2565         for_each_possible_cpu(i)
2566                 sum += cpu_rq(i)->nr_switches;
2567
2568         return sum;
2569 }
2570
2571 unsigned long nr_iowait(void)
2572 {
2573         unsigned long i, sum = 0;
2574
2575         for_each_possible_cpu(i)
2576                 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2577
2578         return sum;
2579 }
2580
2581 unsigned long nr_active(void)
2582 {
2583         unsigned long i, running = 0, uninterruptible = 0;
2584
2585         for_each_online_cpu(i) {
2586                 running += cpu_rq(i)->nr_running;
2587                 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2588         }
2589
2590         if (unlikely((long)uninterruptible < 0))
2591                 uninterruptible = 0;
2592
2593         return running + uninterruptible;
2594 }
2595
2596 /*
2597  * Update rq->cpu_load[] statistics. This function is usually called every
2598  * scheduler tick (TICK_NSEC).
2599  */
2600 static void update_cpu_load(struct rq *this_rq)
2601 {
2602         unsigned long this_load = this_rq->load.weight;
2603         int i, scale;
2604
2605         this_rq->nr_load_updates++;
2606
2607         /* Update our load: */
2608         for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2609                 unsigned long old_load, new_load;
2610
2611                 /* scale is effectively 1 << i now, and >> i divides by scale */
2612
2613                 old_load = this_rq->cpu_load[i];
2614                 new_load = this_load;
2615                 /*
2616                  * Round up the averaging division if load is increasing. This
2617                  * prevents us from getting stuck on 9 if the load is 10, for
2618                  * example.
2619                  */
2620                 if (new_load > old_load)
2621                         new_load += scale-1;
2622                 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2623         }
2624 }
2625
2626 #ifdef CONFIG_SMP
2627
2628 /*
2629  * double_rq_lock - safely lock two runqueues
2630  *
2631  * Note this does not disable interrupts like task_rq_lock,
2632  * you need to do so manually before calling.
2633  */
2634 static void double_rq_lock(struct rq *rq1, struct rq *rq2)
2635         __acquires(rq1->lock)
2636         __acquires(rq2->lock)
2637 {
2638         BUG_ON(!irqs_disabled());
2639         if (rq1 == rq2) {
2640                 spin_lock(&rq1->lock);
2641                 __acquire(rq2->lock);   /* Fake it out ;) */
2642         } else {
2643                 if (rq1 < rq2) {
2644                         spin_lock(&rq1->lock);
2645                         spin_lock(&rq2->lock);
2646                 } else {
2647                         spin_lock(&rq2->lock);
2648                         spin_lock(&rq1->lock);
2649                 }
2650         }
2651         update_rq_clock(rq1);
2652         update_rq_clock(rq2);
2653 }
2654
2655 /*
2656  * double_rq_unlock - safely unlock two runqueues
2657  *
2658  * Note this does not restore interrupts like task_rq_unlock,
2659  * you need to do so manually after calling.
2660  */
2661 static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
2662         __releases(rq1->lock)
2663         __releases(rq2->lock)
2664 {
2665         spin_unlock(&rq1->lock);
2666         if (rq1 != rq2)
2667                 spin_unlock(&rq2->lock);
2668         else
2669                 __release(rq2->lock);
2670 }
2671
2672 /*
2673  * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2674  */
2675 static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
2676         __releases(this_rq->lock)
2677         __acquires(busiest->lock)
2678         __acquires(this_rq->lock)
2679 {
2680         int ret = 0;
2681
2682         if (unlikely(!irqs_disabled())) {
2683                 /* printk() doesn't work good under rq->lock */
2684                 spin_unlock(&this_rq->lock);
2685                 BUG_ON(1);
2686         }
2687         if (unlikely(!spin_trylock(&busiest->lock))) {
2688                 if (busiest < this_rq) {
2689                         spin_unlock(&this_rq->lock);
2690                         spin_lock(&busiest->lock);
2691                         spin_lock(&this_rq->lock);
2692                         ret = 1;
2693                 } else
2694                         spin_lock(&busiest->lock);
2695         }
2696         return ret;
2697 }
2698
2699 /*
2700  * If dest_cpu is allowed for this process, migrate the task to it.
2701  * This is accomplished by forcing the cpu_allowed mask to only
2702  * allow dest_cpu, which will force the cpu onto dest_cpu. Then
2703  * the cpu_allowed mask is restored.
2704  */
2705 static void sched_migrate_task(struct task_struct *p, int dest_cpu)
2706 {
2707         struct migration_req req;
2708         unsigned long flags;
2709         struct rq *rq;
2710
2711         rq = task_rq_lock(p, &flags);
2712         if (!cpu_isset(dest_cpu, p->cpus_allowed)
2713             || unlikely(cpu_is_offline(dest_cpu)))
2714                 goto out;
2715
2716         /* force the process onto the specified CPU */
2717         if (migrate_task(p, dest_cpu, &req)) {
2718                 /* Need to wait for migration thread (might exit: take ref). */
2719                 struct task_struct *mt = rq->migration_thread;
2720
2721                 get_task_struct(mt);
2722                 task_rq_unlock(rq, &flags);
2723                 wake_up_process(mt);
2724                 put_task_struct(mt);
2725                 wait_for_completion(&req.done);
2726
2727                 return;
2728         }
2729 out:
2730         task_rq_unlock(rq, &flags);
2731 }
2732
2733 /*
2734  * sched_exec - execve() is a valuable balancing opportunity, because at
2735  * this point the task has the smallest effective memory and cache footprint.
2736  */
2737 void sched_exec(void)
2738 {
2739         int new_cpu, this_cpu = get_cpu();
2740         new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
2741         put_cpu();
2742         if (new_cpu != this_cpu)
2743                 sched_migrate_task(current, new_cpu);
2744 }
2745
2746 /*
2747  * pull_task - move a task from a remote runqueue to the local runqueue.
2748  * Both runqueues must be locked.
2749  */
2750 static void pull_task(struct rq *src_rq, struct task_struct *p,
2751                       struct rq *this_rq, int this_cpu)
2752 {
2753         deactivate_task(src_rq, p, 0);
2754         set_task_cpu(p, this_cpu);
2755         activate_task(this_rq, p, 0);
2756         /*
2757          * Note that idle threads have a prio of MAX_PRIO, for this test
2758          * to be always true for them.
2759          */
2760         check_preempt_curr(this_rq, p);
2761 }
2762
2763 /*
2764  * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2765  */
2766 static
2767 int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
2768                      struct sched_domain *sd, enum cpu_idle_type idle,
2769                      int *all_pinned)
2770 {
2771         /*
2772          * We do not migrate tasks that are:
2773          * 1) running (obviously), or
2774          * 2) cannot be migrated to this CPU due to cpus_allowed, or
2775          * 3) are cache-hot on their current CPU.
2776          */
2777         if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2778                 schedstat_inc(p, se.nr_failed_migrations_affine);
2779                 return 0;
2780         }
2781         *all_pinned = 0;
2782
2783         if (task_running(rq, p)) {
2784                 schedstat_inc(p, se.nr_failed_migrations_running);
2785                 return 0;
2786         }
2787
2788         /*
2789          * Aggressive migration if:
2790          * 1) task is cache cold, or
2791          * 2) too many balance attempts have failed.
2792          */
2793
2794         if (!task_hot(p, rq->clock, sd) ||
2795                         sd->nr_balance_failed > sd->cache_nice_tries) {
2796 #ifdef CONFIG_SCHEDSTATS
2797                 if (task_hot(p, rq->clock, sd)) {
2798                         schedstat_inc(sd, lb_hot_gained[idle]);
2799                         schedstat_inc(p, se.nr_forced_migrations);
2800                 }
2801 #endif
2802                 return 1;
2803         }
2804
2805         if (task_hot(p, rq->clock, sd)) {
2806                 schedstat_inc(p, se.nr_failed_migrations_hot);
2807                 return 0;
2808         }
2809         return 1;
2810 }
2811
2812 static unsigned long
2813 balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2814               unsigned long max_load_move, struct sched_domain *sd,
2815               enum cpu_idle_type idle, int *all_pinned,
2816               int *this_best_prio, struct rq_iterator *iterator)
2817 {
2818         int loops = 0, pulled = 0, pinned = 0, skip_for_load;
2819         struct task_struct *p;
2820         long rem_load_move = max_load_move;
2821
2822         if (max_load_move == 0)
2823                 goto out;
2824
2825         pinned = 1;
2826
2827         /*
2828          * Start the load-balancing iterator:
2829          */
2830         p = iterator->start(iterator->arg);
2831 next:
2832         if (!p || loops++ > sysctl_sched_nr_migrate)
2833                 goto out;
2834         /*
2835          * To help distribute high priority tasks across CPUs we don't
2836          * skip a task if it will be the highest priority task (i.e. smallest
2837          * prio value) on its new queue regardless of its load weight
2838          */
2839         skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2840                                                          SCHED_LOAD_SCALE_FUZZ;
2841         if ((skip_for_load && p->prio >= *this_best_prio) ||
2842             !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2843                 p = iterator->next(iterator->arg);
2844                 goto next;
2845         }
2846
2847         pull_task(busiest, p, this_rq, this_cpu);
2848         pulled++;
2849         rem_load_move -= p->se.load.weight;
2850
2851         /*
2852          * We only want to steal up to the prescribed amount of weighted load.
2853          */
2854         if (rem_load_move > 0) {
2855                 if (p->prio < *this_best_prio)
2856                         *this_best_prio = p->prio;
2857                 p = iterator->next(iterator->arg);
2858                 goto next;
2859         }
2860 out:
2861         /*
2862          * Right now, this is one of only two places pull_task() is called,
2863          * so we can safely collect pull_task() stats here rather than
2864          * inside pull_task().
2865          */
2866         schedstat_add(sd, lb_gained[idle], pulled);
2867
2868         if (all_pinned)
2869                 *all_pinned = pinned;
2870
2871         return max_load_move - rem_load_move;
2872 }
2873
2874 /*
2875  * move_tasks tries to move up to max_load_move weighted load from busiest to
2876  * this_rq, as part of a balancing operation within domain "sd".
2877  * Returns 1 if successful and 0 otherwise.
2878  *
2879  * Called with both runqueues locked.
2880  */
2881 static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2882                       unsigned long max_load_move,
2883                       struct sched_domain *sd, enum cpu_idle_type idle,
2884                       int *all_pinned)
2885 {
2886         const struct sched_class *class = sched_class_highest;
2887         unsigned long total_load_moved = 0;
2888         int this_best_prio = this_rq->curr->prio;
2889
2890         do {
2891                 total_load_moved +=
2892                         class->load_balance(this_rq, this_cpu, busiest,
2893                                 max_load_move - total_load_moved,
2894                                 sd, idle, all_pinned, &this_best_prio);
2895                 class = class->next;
2896         } while (class && max_load_move > total_load_moved);
2897
2898         return total_load_moved > 0;
2899 }
2900
2901 static int
2902 iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2903                    struct sched_domain *sd, enum cpu_idle_type idle,
2904                    struct rq_iterator *iterator)
2905 {
2906         struct task_struct *p = iterator->start(iterator->arg);
2907         int pinned = 0;
2908
2909         while (p) {
2910                 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2911                         pull_task(busiest, p, this_rq, this_cpu);
2912                         /*
2913                          * Right now, this is only the second place pull_task()
2914                          * is called, so we can safely collect pull_task()
2915                          * stats here rather than inside pull_task().
2916                          */
2917                         schedstat_inc(sd, lb_gained[idle]);
2918
2919                         return 1;
2920                 }
2921                 p = iterator->next(iterator->arg);
2922         }
2923
2924         return 0;
2925 }
2926
2927 /*
2928  * move_one_task tries to move exactly one task from busiest to this_rq, as
2929  * part of active balancing operations within "domain".
2930  * Returns 1 if successful and 0 otherwise.
2931  *
2932  * Called with both runqueues locked.
2933  */
2934 static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2935                          struct sched_domain *sd, enum cpu_idle_type idle)
2936 {
2937         const struct sched_class *class;
2938
2939         for (class = sched_class_highest; class; class = class->next)
2940                 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
2941                         return 1;
2942
2943         return 0;
2944 }
2945
2946 /*
2947  * find_busiest_group finds and returns the busiest CPU group within the
2948  * domain. It calculates and returns the amount of weighted load which
2949  * should be moved to restore balance via the imbalance parameter.
2950  */
2951 static struct sched_group *
2952 find_busiest_group(struct sched_domain *sd, int this_cpu,
2953                    unsigned long *imbalance, enum cpu_idle_type idle,
2954                    int *sd_idle, const cpumask_t *cpus, int *balance)
2955 {
2956         struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2957         unsigned long max_load, avg_load, total_load, this_load, total_pwr;
2958         unsigned long max_pull;
2959         unsigned long busiest_load_per_task, busiest_nr_running;
2960         unsigned long this_load_per_task, this_nr_running;
2961         int load_idx, group_imb = 0;
2962 #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2963         int power_savings_balance = 1;
2964         unsigned long leader_nr_running = 0, min_load_per_task = 0;
2965         unsigned long min_nr_running = ULONG_MAX;
2966         struct sched_group *group_min = NULL, *group_leader = NULL;
2967 #endif
2968
2969         max_load = this_load = total_load = total_pwr = 0;
2970         busiest_load_per_task = busiest_nr_running = 0;
2971         this_load_per_task = this_nr_running = 0;
2972         if (idle == CPU_NOT_IDLE)
2973                 load_idx = sd->busy_idx;
2974         else if (idle == CPU_NEWLY_IDLE)
2975                 load_idx = sd->newidle_idx;
2976         else
2977                 load_idx = sd->idle_idx;
2978
2979         do {
2980                 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
2981                 int local_group;
2982                 int i;
2983                 int __group_imb = 0;
2984                 unsigned int balance_cpu = -1, first_idle_cpu = 0;
2985                 unsigned long sum_nr_running, sum_weighted_load;
2986
2987                 local_group = cpu_isset(this_cpu, group->cpumask);
2988
2989                 if (local_group)
2990                         balance_cpu = first_cpu(group->cpumask);
2991
2992                 /* Tally up the load of all CPUs in the group */
2993                 sum_weighted_load = sum_nr_running = avg_load = 0;
2994                 max_cpu_load = 0;
2995                 min_cpu_load = ~0UL;
2996
2997                 for_each_cpu_mask(i, group->cpumask) {
2998                         struct rq *rq;
2999
3000                         if (!cpu_isset(i, *cpus))
3001                                 continue;
3002
3003                         rq = cpu_rq(i);
3004
3005                         if (*sd_idle && rq->nr_running)
3006                                 *sd_idle = 0;
3007
3008                         /* Bias balancing toward cpus of our domain */
3009                         if (local_group) {
3010                                 if (idle_cpu(i) && !first_idle_cpu) {
3011                                         first_idle_cpu = 1;
3012                                         balance_cpu = i;
3013                                 }
3014
3015                                 load = target_load(i, load_idx);
3016                         } else {
3017                                 load = source_load(i, load_idx);
3018                                 if (load > max_cpu_load)
3019                                         max_cpu_load = load;
3020                                 if (min_cpu_load > load)
3021                                         min_cpu_load = load;
3022                         }
3023
3024                         avg_load += load;
3025                         sum_nr_running += rq->nr_running;
3026                         sum_weighted_load += weighted_cpuload(i);
3027                 }
3028
3029                 /*
3030                  * First idle cpu or the first cpu(busiest) in this sched group
3031                  * is eligible for doing load balancing at this and above
3032                  * domains. In the newly idle case, we will allow all the cpu's
3033                  * to do the newly idle load balance.
3034                  */
3035                 if (idle != CPU_NEWLY_IDLE && local_group &&
3036                     balance_cpu != this_cpu && balance) {
3037                         *balance = 0;
3038                         goto ret;
3039                 }
3040
3041                 total_load += avg_load;
3042                 total_pwr += group->__cpu_power;
3043
3044                 /* Adjust by relative CPU power of the group */
3045                 avg_load = sg_div_cpu_power(group,
3046                                 avg_load * SCHED_LOAD_SCALE);
3047
3048                 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3049                         __group_imb = 1;
3050
3051                 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
3052
3053                 if (local_group) {
3054                         this_load = avg_load;
3055                         this = group;
3056                         this_nr_running = sum_nr_running;
3057                         this_load_per_task = sum_weighted_load;
3058                 } else if (avg_load > max_load &&
3059                            (sum_nr_running > group_capacity || __group_imb)) {
3060                         max_load = avg_load;
3061                         busiest = group;
3062                         busiest_nr_running = sum_nr_running;
3063                         busiest_load_per_task = sum_weighted_load;
3064                         group_imb = __group_imb;
3065                 }
3066
3067 #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3068                 /*
3069                  * Busy processors will not participate in power savings
3070                  * balance.
3071                  */
3072                 if (idle == CPU_NOT_IDLE ||
3073                                 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3074                         goto group_next;
3075
3076                 /*
3077                  * If the local group is idle or completely loaded
3078                  * no need to do power savings balance at this domain
3079                  */
3080                 if (local_group && (this_nr_running >= group_capacity ||
3081                                     !this_nr_running))
3082                         power_savings_balance = 0;
3083
3084                 /*
3085                  * If a group is already running at full capacity or idle,
3086                  * don't include that group in power savings calculations
3087                  */
3088                 if (!power_savings_balance || sum_nr_running >= group_capacity
3089                     || !sum_nr_running)
3090                         goto group_next;
3091
3092                 /*
3093                  * Calculate the group which has the least non-idle load.
3094                  * This is the group from where we need to pick up the load
3095                  * for saving power
3096                  */
3097                 if ((sum_nr_running < min_nr_running) ||
3098                     (sum_nr_running == min_nr_running &&
3099                      first_cpu(group->cpumask) <
3100                      first_cpu(group_min->cpumask))) {
3101                         group_min = group;
3102                         min_nr_running = sum_nr_running;
3103                         min_load_per_task = sum_weighted_load /
3104                                                 sum_nr_running;
3105                 }
3106
3107                 /*
3108                  * Calculate the group which is almost near its
3109                  * capacity but still has some space to pick up some load
3110                  * from other group and save more power
3111                  */
3112                 if (sum_nr_running <= group_capacity - 1) {
3113                         if (sum_nr_running > leader_nr_running ||
3114                             (sum_nr_running == leader_nr_running &&
3115                              first_cpu(group->cpumask) >
3116                               first_cpu(group_leader->cpumask))) {
3117                                 group_leader = group;
3118                                 leader_nr_running = sum_nr_running;
3119                         }
3120                 }
3121 group_next:
3122 #endif
3123                 group = group->next;
3124         } while (group != sd->groups);
3125
3126         if (!busiest || this_load >= max_load || busiest_nr_running == 0)
3127                 goto out_balanced;
3128
3129         avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3130
3131         if (this_load >= avg_load ||
3132                         100*max_load <= sd->imbalance_pct*this_load)
3133                 goto out_balanced;
3134
3135         busiest_load_per_task /= busiest_nr_running;
3136         if (group_imb)
3137                 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3138
3139         /*
3140          * We're trying to get all the cpus to the average_load, so we don't
3141          * want to push ourselves above the average load, nor do we wish to
3142          * reduce the max loaded cpu below the average load, as either of these
3143          * actions would just result in more rebalancing later, and ping-pong
3144          * tasks around. Thus we look for the minimum possible imbalance.
3145          * Negative imbalances (*we* are more loaded than anyone else) will
3146          * be counted as no imbalance for these purposes -- we can't fix that
3147          * by pulling tasks to us. Be careful of negative numbers as they'll
3148          * appear as very large values with unsigned longs.
3149          */
3150         if (max_load <= busiest_load_per_task)
3151                 goto out_balanced;
3152
3153         /*
3154          * In the presence of smp nice balancing, certain scenarios can have
3155          * max load less than avg load(as we skip the groups at or below
3156          * its cpu_power, while calculating max_load..)
3157          */
3158         if (max_load < avg_load) {
3159                 *imbalance = 0;
3160                 goto small_imbalance;
3161         }
3162
3163         /* Don't want to pull so many tasks that a group would go idle */
3164         max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
3165
3166         /* How much load to actually move to equalise the imbalance */
3167         *imbalance = min(max_pull * busiest->__cpu_power,
3168                                 (avg_load - this_load) * this->__cpu_power)
3169                         / SCHED_LOAD_SCALE;
3170
3171         /*
3172          * if *imbalance is less than the average load per runnable task
3173          * there is no gaurantee that any tasks will be moved so we'll have
3174          * a think about bumping its value to force at least one task to be
3175          * moved
3176          */
3177         if (*imbalance < busiest_load_per_task) {
3178                 unsigned long tmp, pwr_now, pwr_move;
3179                 unsigned int imbn;
3180
3181 small_imbalance:
3182                 pwr_move = pwr_now = 0;
3183                 imbn = 2;
3184                 if (this_nr_running) {
3185                         this_load_per_task /= this_nr_running;
3186                         if (busiest_load_per_task > this_load_per_task)
3187                                 imbn = 1;
3188                 } else
3189                         this_load_per_task = SCHED_LOAD_SCALE;
3190
3191                 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3192                                         busiest_load_per_task * imbn) {
3193                         *imbalance = busiest_load_per_task;
3194                         return busiest;
3195                 }
3196
3197                 /*
3198                  * OK, we don't have enough imbalance to justify moving tasks,
3199                  * however we may be able to increase total CPU power used by
3200                  * moving them.
3201                  */
3202
3203                 pwr_now += busiest->__cpu_power *
3204                                 min(busiest_load_per_task, max_load);
3205                 pwr_now += this->__cpu_power *
3206                                 min(this_load_per_task, this_load);
3207                 pwr_now /= SCHED_LOAD_SCALE;
3208
3209                 /* Amount of load we'd subtract */
3210                 tmp = sg_div_cpu_power(busiest,
3211                                 busiest_load_per_task * SCHED_LOAD_SCALE);
3212                 if (max_load > tmp)
3213                         pwr_move += busiest->__cpu_power *
3214                                 min(busiest_load_per_task, max_load - tmp);
3215
3216                 /* Amount of load we'd add */
3217                 if (max_load * busiest->__cpu_power <
3218                                 busiest_load_per_task * SCHED_LOAD_SCALE)
3219                         tmp = sg_div_cpu_power(this,
3220                                         max_load * busiest->__cpu_power);
3221                 else
3222                         tmp = sg_div_cpu_power(this,
3223                                 busiest_load_per_task * SCHED_LOAD_SCALE);
3224                 pwr_move += this->__cpu_power *
3225                                 min(this_load_per_task, this_load + tmp);
3226                 pwr_move /= SCHED_LOAD_SCALE;
3227
3228                 /* Move if we gain throughput */
3229                 if (pwr_move > pwr_now)
3230                         *imbalance = busiest_load_per_task;
3231         }
3232
3233         return busiest;
3234
3235 out_balanced:
3236 #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3237         if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
3238                 goto ret;
3239
3240         if (this == group_leader && group_leader != group_min) {
3241                 *imbalance = min_load_per_task;
3242                 return group_min;
3243         }
3244 #endif
3245 ret:
3246         *imbalance = 0;
3247         return NULL;
3248 }
3249
3250 /*
3251  * find_busiest_queue - find the busiest runqueue among the cpus in group.
3252  */
3253 static struct rq *
3254 find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
3255                    unsigned long imbalance, const cpumask_t *cpus)
3256 {
3257         struct rq *busiest = NULL, *rq;
3258         unsigned long max_load = 0;
3259         int i;
3260
3261         for_each_cpu_mask(i, group->cpumask) {
3262                 unsigned long wl;
3263
3264                 if (!cpu_isset(i, *cpus))
3265                         continue;
3266
3267                 rq = cpu_rq(i);
3268                 wl = weighted_cpuload(i);
3269
3270                 if (rq->nr_running == 1 && wl > imbalance)
3271                         continue;
3272
3273                 if (wl > max_load) {
3274                         max_load = wl;
3275                         busiest = rq;
3276                 }
3277         }
3278
3279         return busiest;
3280 }
3281
3282 /*
3283  * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3284  * so long as it is large enough.
3285  */
3286 #define MAX_PINNED_INTERVAL     512
3287
3288 /*
3289  * Check this_cpu to ensure it is balanced within domain. Attempt to move
3290  * tasks if there is an imbalance.
3291  */
3292 static int load_balance(int this_cpu, struct rq *this_rq,
3293                         struct sched_domain *sd, enum cpu_idle_type idle,
3294                         int *balance, cpumask_t *cpus)
3295 {
3296         int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
3297         struct sched_group *group;
3298         unsigned long imbalance;
3299         struct rq *busiest;
3300         unsigned long flags;
3301
3302         cpus_setall(*cpus);
3303
3304         /*
3305          * When power savings policy is enabled for the parent domain, idle
3306          * sibling can pick up load irrespective of busy siblings. In this case,
3307          * let the state of idle sibling percolate up as CPU_IDLE, instead of
3308          * portraying it as CPU_NOT_IDLE.
3309          */
3310         if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
3311             !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
3312                 sd_idle = 1;
3313
3314         schedstat_inc(sd, lb_count[idle]);
3315
3316 redo:
3317         group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
3318                                    cpus, balance);
3319
3320         if (*balance == 0)
3321                 goto out_balanced;
3322
3323         if (!group) {
3324                 schedstat_inc(sd, lb_nobusyg[idle]);
3325                 goto out_balanced;
3326         }
3327
3328         busiest = find_busiest_queue(group, idle, imbalance, cpus);
3329         if (!busiest) {
3330                 schedstat_inc(sd, lb_nobusyq[idle]);
3331                 goto out_balanced;
3332         }
3333
3334         BUG_ON(busiest == this_rq);
3335
3336         schedstat_add(sd, lb_imbalance[idle], imbalance);
3337
3338         ld_moved = 0;
3339         if (busiest->nr_running > 1) {
3340                 /*
3341                  * Attempt to move tasks. If find_busiest_group has found
3342                  * an imbalance but busiest->nr_running <= 1, the group is
3343                  * still unbalanced. ld_moved simply stays zero, so it is
3344                  * correctly treated as an imbalance.
3345                  */
3346                 local_irq_save(flags);
3347                 double_rq_lock(this_rq, busiest);
3348                 ld_moved = move_tasks(this_rq, this_cpu, busiest,
3349                                       imbalance, sd, idle, &all_pinned);
3350                 double_rq_unlock(this_rq, busiest);
3351                 local_irq_restore(flags);
3352
3353                 /*
3354                  * some other cpu did the load balance for us.
3355                  */
3356                 if (ld_moved && this_cpu != smp_processor_id())
3357                         resched_cpu(this_cpu);
3358
3359                 /* All tasks on this runqueue were pinned by CPU affinity */
3360                 if (unlikely(all_pinned)) {
3361                         cpu_clear(cpu_of(busiest), *cpus);
3362                         if (!cpus_empty(*cpus))
3363                                 goto redo;
3364                         goto out_balanced;
3365                 }
3366         }
3367
3368         if (!ld_moved) {
3369                 schedstat_inc(sd, lb_failed[idle]);
3370                 sd->nr_balance_failed++;
3371
3372                 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
3373
3374                         spin_lock_irqsave(&busiest->lock, flags);
3375
3376                         /* don't kick the migration_thread, if the curr
3377                          * task on busiest cpu can't be moved to this_cpu
3378                          */
3379                         if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
3380                                 spin_unlock_irqrestore(&busiest->lock, flags);
3381                                 all_pinned = 1;
3382                                 goto out_one_pinned;
3383                         }
3384
3385                         if (!busiest->active_balance) {
3386                                 busiest->active_balance = 1;
3387                                 busiest->push_cpu = this_cpu;
3388                                 active_balance = 1;
3389                         }
3390                         spin_unlock_irqrestore(&busiest->lock, flags);
3391                         if (active_balance)
3392                                 wake_up_process(busiest->migration_thread);
3393
3394                         /*
3395                          * We've kicked active balancing, reset the failure
3396                          * counter.
3397                          */
3398                         sd->nr_balance_failed = sd->cache_nice_tries+1;
3399                 }
3400         } else
3401                 sd->nr_balance_failed = 0;
3402
3403         if (likely(!active_balance)) {
3404                 /* We were unbalanced, so reset the balancing interval */
3405                 sd->balance_interval = sd->min_interval;
3406         } else {
3407                 /*
3408                  * If we've begun active balancing, start to back off. This
3409                  * case may not be covered by the all_pinned logic if there
3410                  * is only 1 task on the busy runqueue (because we don't call
3411                  * move_tasks).
3412                  */
3413                 if (sd->balance_interval < sd->max_interval)
3414                         sd->balance_interval *= 2;
3415         }
3416
3417         if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3418             !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
3419                 return -1;
3420         return ld_moved;
3421
3422 out_balanced:
3423         schedstat_inc(sd, lb_balanced[idle]);
3424
3425         sd->nr_balance_failed = 0;
3426
3427 out_one_pinned:
3428         /* tune up the balancing interval */
3429         if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3430                         (sd->balance_interval < sd->max_interval))
3431                 sd->balance_interval *= 2;
3432
3433         if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3434             !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
3435                 return -1;
3436         return 0;
3437 }
3438
3439 /*
3440  * Check this_cpu to ensure it is balanced within domain. Attempt to move
3441  * tasks if there is an imbalance.
3442  *
3443  * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
3444  * this_rq is locked.
3445  */
3446 static int
3447 load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3448                         cpumask_t *cpus)
3449 {
3450         struct sched_group *group;
3451         struct rq *busiest = NULL;
3452         unsigned long imbalance;
3453         int ld_moved = 0;
3454         int sd_idle = 0;
3455         int all_pinned = 0;
3456
3457         cpus_setall(*cpus);
3458
3459         /*
3460          * When power savings policy is enabled for the parent domain, idle
3461          * sibling can pick up load irrespective of busy siblings. In this case,
3462          * let the state of idle sibling percolate up as IDLE, instead of
3463          * portraying it as CPU_NOT_IDLE.
3464          */
3465         if (sd->flags & SD_SHARE_CPUPOWER &&
3466             !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
3467                 sd_idle = 1;
3468
3469         schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
3470 redo:
3471         group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
3472                                    &sd_idle, cpus, NULL);
3473         if (!group) {
3474                 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
3475                 goto out_balanced;
3476         }
3477
3478         busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
3479         if (!busiest) {
3480                 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
3481                 goto out_balanced;
3482         }
3483
3484         BUG_ON(busiest == this_rq);
3485
3486         schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
3487
3488         ld_moved = 0;
3489         if (busiest->nr_running > 1) {
3490                 /* Attempt to move tasks */
3491                 double_lock_balance(this_rq, busiest);
3492                 /* this_rq->clock is already updated */
3493                 update_rq_clock(busiest);
3494                 ld_moved = move_tasks(this_rq, this_cpu, busiest,
3495                                         imbalance, sd, CPU_NEWLY_IDLE,
3496                                         &all_pinned);
3497                 spin_unlock(&busiest->lock);
3498
3499                 if (unlikely(all_pinned)) {
3500                         cpu_clear(cpu_of(busiest), *cpus);
3501                         if (!cpus_empty(*cpus))
3502                                 goto redo;
3503                 }
3504         }
3505
3506         if (!ld_moved) {
3507                 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
3508                 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3509                     !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
3510                         return -1;
3511         } else
3512                 sd->nr_balance_failed = 0;
3513
3514         return ld_moved;
3515
3516 out_balanced:
3517         schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
3518         if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3519             !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
3520                 return -1;
3521         sd->nr_balance_failed = 0;
3522
3523         return 0;
3524 }
3525
3526 /*
3527  * idle_balance is called by schedule() if this_cpu is about to become
3528  * idle. Attempts to pull tasks from other CPUs.
3529  */
3530 static void idle_balance(int this_cpu, struct rq *this_rq)
3531 {
3532         struct sched_domain *sd;
3533         int pulled_task = -1;
3534         unsigned long next_balance = jiffies + HZ;
3535         cpumask_t tmpmask;
3536
3537         for_each_domain(this_cpu, sd) {
3538                 unsigned long interval;
3539
3540                 if (!(sd->flags & SD_LOAD_BALANCE))
3541                         continue;
3542
3543                 if (sd->flags & SD_BALANCE_NEWIDLE)
3544                         /* If we've pulled tasks over stop searching: */
3545                         pulled_task = load_balance_newidle(this_cpu, this_rq,
3546                                                            sd, &tmpmask);
3547
3548                 interval = msecs_to_jiffies(sd->balance_interval);
3549                 if (time_after(next_balance, sd->last_balance + interval))
3550                         next_balance = sd->last_balance + interval;
3551                 if (pulled_task)
3552                         break;
3553         }
3554         if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
3555                 /*
3556                  * We are going idle. next_balance may be set based on
3557                  * a busy processor. So reset next_balance.
3558                  */
3559                 this_rq->next_balance = next_balance;
3560         }
3561 }
3562
3563 /*
3564  * active_load_balance is run by migration threads. It pushes running tasks
3565  * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3566  * running on each physical CPU where possible, and avoids physical /
3567  * logical imbalances.
3568  *
3569  * Called with busiest_rq locked.
3570  */
3571 static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
3572 {
3573         int target_cpu = busiest_rq->push_cpu;
3574         struct sched_domain *sd;
3575         struct rq *target_rq;
3576
3577         /* Is there any task to move? */
3578         if (busiest_rq->nr_running <= 1)
3579                 return;
3580
3581         target_rq = cpu_rq(target_cpu);
3582
3583         /*
3584          * This condition is "impossible", if it occurs
3585          * we need to fix it. Originally reported by
3586          * Bjorn Helgaas on a 128-cpu setup.
3587          */
3588         BUG_ON(busiest_rq == target_rq);
3589
3590         /* move a task from busiest_rq to target_rq */
3591         double_lock_balance(busiest_rq, target_rq);
3592         update_rq_clock(busiest_rq);
3593         update_rq_clock(target_rq);
3594
3595         /* Search for an sd spanning us and the target CPU. */
3596         for_each_domain(target_cpu, sd) {
3597                 if ((sd->flags & SD_LOAD_BALANCE) &&
3598                     cpu_isset(busiest_cpu, sd->span))
3599                                 break;
3600         }
3601
3602         if (likely(sd)) {
3603                 schedstat_inc(sd, alb_count);
3604
3605                 if (move_one_task(target_rq, target_cpu, busiest_rq,
3606                                   sd, CPU_IDLE))
3607                         schedstat_inc(sd, alb_pushed);
3608                 else
3609                         schedstat_inc(sd, alb_failed);
3610         }
3611         spin_unlock(&target_rq->lock);
3612 }
3613
3614 #ifdef CONFIG_NO_HZ
3615 static struct {
3616         atomic_t load_balancer;
3617         cpumask_t cpu_mask;
3618 } nohz ____cacheline_aligned = {
3619         .load_balancer = ATOMIC_INIT(-1),
3620         .cpu_mask = CPU_MASK_NONE,
3621 };
3622
3623 /*
3624  * This routine will try to nominate the ilb (idle load balancing)
3625  * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3626  * load balancing on behalf of all those cpus. If all the cpus in the system
3627  * go into this tickless mode, then there will be no ilb owner (as there is
3628  * no need for one) and all the cpus will sleep till the next wakeup event
3629  * arrives...
3630  *
3631  * For the ilb owner, tick is not stopped. And this tick will be used
3632  * for idle load balancing. ilb owner will still be part of
3633  * nohz.cpu_mask..
3634  *
3635  * While stopping the tick, this cpu will become the ilb owner if there
3636  * is no other owner. And will be the owner till that cpu becomes busy
3637  * or if all cpus in the system stop their ticks at which point
3638  * there is no need for ilb owner.
3639  *
3640  * When the ilb owner becomes busy, it nominates another owner, during the
3641  * next busy scheduler_tick()
3642  */
3643 int select_nohz_load_balancer(int stop_tick)
3644 {
3645         int cpu = smp_processor_id();
3646
3647         if (stop_tick) {
3648                 cpu_set(cpu, nohz.cpu_mask);
3649                 cpu_rq(cpu)->in_nohz_recently = 1;
3650
3651                 /*
3652                  * If we are going offline and still the leader, give up!
3653                  */
3654                 if (cpu_is_offline(cpu) &&
3655                     atomic_read(&nohz.load_balancer) == cpu) {
3656                         if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3657                                 BUG();
3658                         return 0;
3659                 }
3660
3661                 /* time for ilb owner also to sleep */
3662                 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3663                         if (atomic_read(&nohz.load_balancer) == cpu)
3664                                 atomic_set(&nohz.load_balancer, -1);
3665                         return 0;
3666                 }
3667
3668                 if (atomic_read(&nohz.load_balancer) == -1) {
3669                         /* make me the ilb owner */
3670                         if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3671                                 return 1;
3672                 } else if (atomic_read(&nohz.load_balancer) == cpu)
3673                         return 1;
3674         } else {
3675                 if (!cpu_isset(cpu, nohz.cpu_mask))
3676                         return 0;
3677
3678                 cpu_clear(cpu, nohz.cpu_mask);
3679
3680                 if (atomic_read(&nohz.load_balancer) == cpu)
3681                         if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3682                                 BUG();
3683         }
3684         return 0;
3685 }
3686 #endif
3687
3688 static DEFINE_SPINLOCK(balancing);
3689
3690 /*
3691  * It checks each scheduling domain to see if it is due to be balanced,
3692  * and initiates a balancing operation if so.
3693  *
3694  * Balancing parameters are set up in arch_init_sched_domains.
3695  */
3696 static void rebalance_domains(int cpu, enum cpu_idle_type idle)
3697 {
3698         int balance = 1;
3699         struct rq *rq = cpu_rq(cpu);
3700         unsigned long interval;
3701         struct sched_domain *sd;
3702         /* Earliest time when we have to do rebalance again */
3703         unsigned long next_balance = jiffies + 60*HZ;
3704         int update_next_balance = 0;
3705         cpumask_t tmp;
3706
3707         for_each_domain(cpu, sd) {
3708                 if (!(sd->flags & SD_LOAD_BALANCE))
3709                         continue;
3710
3711                 interval = sd->balance_interval;
3712                 if (idle != CPU_IDLE)
3713                         interval *= sd->busy_factor;
3714
3715                 /* scale ms to jiffies */
3716                 interval = msecs_to_jiffies(interval);
3717                 if (unlikely(!interval))
3718                         interval = 1;
3719                 if (interval > HZ*NR_CPUS/10)
3720                         interval = HZ*NR_CPUS/10;
3721
3722
3723                 if (sd->flags & SD_SERIALIZE) {
3724                         if (!spin_trylock(&balancing))
3725                                 goto out;
3726                 }
3727
3728                 if (time_after_eq(jiffies, sd->last_balance + interval)) {
3729                         if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
3730                                 /*
3731                                  * We've pulled tasks over so either we're no
3732                                  * longer idle, or one of our SMT siblings is
3733                                  * not idle.
3734                                  */
3735                                 idle = CPU_NOT_IDLE;
3736                         }
3737                         sd->last_balance = jiffies;
3738                 }
3739                 if (sd->flags & SD_SERIALIZE)
3740                         spin_unlock(&balancing);
3741 out:
3742                 if (time_after(next_balance, sd->last_balance + interval)) {
3743                         next_balance = sd->last_balance + interval;
3744                         update_next_balance = 1;
3745                 }
3746
3747                 /*
3748                  * Stop the load balance at this level. There is another
3749                  * CPU in our sched group which is doing load balancing more
3750                  * actively.
3751                  */
3752                 if (!balance)
3753                         break;
3754         }
3755
3756         /*
3757          * next_balance will be updated only when there is a need.
3758          * When the cpu is attached to null domain for ex, it will not be
3759          * updated.
3760          */
3761         if (likely(update_next_balance))
3762                 rq->next_balance = next_balance;
3763 }
3764
3765 /*
3766  * run_rebalance_domains is triggered when needed from the scheduler tick.
3767  * In CONFIG_NO_HZ case, the idle load balance owner will do the
3768  * rebalancing for all the cpus for whom scheduler ticks are stopped.
3769  */
3770 static void run_rebalance_domains(struct softirq_action *h)
3771 {
3772         int this_cpu = smp_processor_id();
3773         struct rq *this_rq = cpu_rq(this_cpu);
3774         enum cpu_idle_type idle = this_rq->idle_at_tick ?
3775                                                 CPU_IDLE : CPU_NOT_IDLE;
3776
3777         rebalance_domains(this_cpu, idle);
3778
3779 #ifdef CONFIG_NO_HZ
3780         /*
3781          * If this cpu is the owner for idle load balancing, then do the
3782          * balancing on behalf of the other idle cpus whose ticks are
3783          * stopped.
3784          */
3785         if (this_rq->idle_at_tick &&
3786             atomic_read(&nohz.load_balancer) == this_cpu) {
3787                 cpumask_t cpus = nohz.cpu_mask;
3788                 struct rq *rq;
3789                 int balance_cpu;
3790
3791                 cpu_clear(this_cpu, cpus);
3792                 for_each_cpu_mask(balance_cpu, cpus) {
3793                         /*
3794                          * If this cpu gets work to do, stop the load balancing
3795                          * work being done for other cpus. Next load
3796                          * balancing owner will pick it up.
3797                          */
3798                         if (need_resched())
3799                                 break;
3800
3801                         rebalance_domains(balance_cpu, CPU_IDLE);
3802
3803                         rq = cpu_rq(balance_cpu);
3804                         if (time_after(this_rq->next_balance, rq->next_balance))
3805                                 this_rq->next_balance = rq->next_balance;
3806                 }
3807         }
3808 #endif
3809 }
3810
3811 /*
3812  * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3813  *
3814  * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3815  * idle load balancing owner or decide to stop the periodic load balancing,
3816  * if the whole system is idle.
3817  */
3818 static inline void trigger_load_balance(struct rq *rq, int cpu)
3819 {
3820 #ifdef CONFIG_NO_HZ
3821         /*
3822          * If we were in the nohz mode recently and busy at the current
3823          * scheduler tick, then check if we need to nominate new idle
3824          * load balancer.
3825          */
3826         if (rq->in_nohz_recently && !rq->idle_at_tick) {
3827                 rq->in_nohz_recently = 0;
3828
3829                 if (atomic_read(&nohz.load_balancer) == cpu) {
3830                         cpu_clear(cpu, nohz.cpu_mask);
3831                         atomic_set(&nohz.load_balancer, -1);
3832                 }
3833
3834                 if (atomic_read(&nohz.load_balancer) == -1) {
3835                         /*
3836                          * simple selection for now: Nominate the
3837                          * first cpu in the nohz list to be the next
3838                          * ilb owner.
3839                          *
3840                          * TBD: Traverse the sched domains and nominate
3841                          * the nearest cpu in the nohz.cpu_mask.
3842                          */
3843                         int ilb = first_cpu(nohz.cpu_mask);
3844
3845                         if (ilb < nr_cpu_ids)
3846                                 resched_cpu(ilb);
3847                 }
3848         }
3849
3850         /*
3851          * If this cpu is idle and doing idle load balancing for all the
3852          * cpus with ticks stopped, is it time for that to stop?
3853          */
3854         if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3855             cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3856                 resched_cpu(cpu);
3857                 return;
3858         }
3859
3860         /*
3861          * If this cpu is idle and the idle load balancing is done by
3862          * someone else, then no need raise the SCHED_SOFTIRQ
3863          */
3864         if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3865             cpu_isset(cpu, nohz.cpu_mask))
3866                 return;
3867 #endif
3868         if (time_after_eq(jiffies, rq->next_balance))
3869                 raise_softirq(SCHED_SOFTIRQ);
3870 }
3871
3872 #else   /* CONFIG_SMP */
3873
3874 /*
3875  * on UP we do not need to balance between CPUs:
3876  */
3877 static inline void idle_balance(int cpu, struct rq *rq)
3878 {
3879 }
3880
3881 #endif
3882
3883 DEFINE_PER_CPU(struct kernel_stat, kstat);
3884
3885 EXPORT_PER_CPU_SYMBOL(kstat);
3886
3887 /*
3888  * Return p->sum_exec_runtime plus any more ns on the sched_clock
3889  * that have not yet been banked in case the task is currently running.
3890  */
3891 unsigned long long task_sched_runtime(struct task_struct *p)
3892 {
3893         unsigned long flags;
3894         u64 ns, delta_exec;
3895         struct rq *rq;
3896
3897         rq = task_rq_lock(p, &flags);
3898         ns = p->se.sum_exec_runtime;
3899         if (task_current(rq, p)) {
3900                 update_rq_clock(rq);
3901                 delta_exec = rq->clock - p->se.exec_start;
3902                 if ((s64)delta_exec > 0)
3903                         ns += delta_exec;
3904         }
3905         task_rq_unlock(rq, &flags);
3906
3907         return ns;
3908 }
3909
3910 /*
3911  * Account user cpu time to a process.
3912  * @p: the process that the cpu time gets accounted to
3913  * @cputime: the cpu time spent in user space since the last update
3914  */
3915 void account_user_time(struct task_struct *p, cputime_t cputime)
3916 {
3917         struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3918         cputime64_t tmp;
3919
3920         p->utime = cputime_add(p->utime, cputime);
3921
3922         /* Add user time to cpustat. */
3923         tmp = cputime_to_cputime64(cputime);
3924         if (TASK_NICE(p) > 0)
3925                 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3926         else
3927                 cpustat->user = cputime64_add(cpustat->user, tmp);
3928 }
3929
3930 /*
3931  * Account guest cpu time to a process.
3932  * @p: the process that the cpu time gets accounted to
3933  * @cputime: the cpu time spent in virtual machine since the last update
3934  */
3935 static void account_guest_time(struct task_struct *p, cputime_t cputime)
3936 {
3937         cputime64_t tmp;
3938         struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3939
3940         tmp = cputime_to_cputime64(cputime);
3941
3942         p->utime = cputime_add(p->utime, cputime);
3943         p->gtime = cputime_add(p->gtime, cputime);
3944
3945         cpustat->user = cputime64_add(cpustat->user, tmp);
3946         cpustat->guest = cputime64_add(cpustat->guest, tmp);
3947 }
3948
3949 /*
3950  * Account scaled user cpu time to a process.
3951  * @p: the process that the cpu time gets accounted to
3952  * @cputime: the cpu time spent in user space since the last update
3953  */
3954 void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3955 {
3956         p->utimescaled = cputime_add(p->utimescaled, cputime);
3957 }
3958
3959 /*
3960  * Account system cpu time to a process.
3961  * @p: the process that the cpu time gets accounted to
3962  * @hardirq_offset: the offset to subtract from hardirq_count()
3963  * @cputime: the cpu time spent in kernel space since the last update
3964  */
3965 void account_system_time(struct task_struct *p, int hardirq_offset,
3966                          cputime_t cputime)
3967 {
3968         struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3969         struct rq *rq = this_rq();
3970         cputime64_t tmp;
3971
3972         if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
3973                 account_guest_time(p, cputime);
3974                 return;
3975         }
3976
3977         p->stime = cputime_add(p->stime, cputime);
3978
3979         /* Add system time to cpustat. */
3980         tmp = cputime_to_cputime64(cputime);
3981         if (hardirq_count() - hardirq_offset)
3982                 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3983         else if (softirq_count())
3984                 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
3985         else if (p != rq->idle)
3986                 cpustat->system = cputime64_add(cpustat->system, tmp);
3987         else if (atomic_read(&rq->nr_iowait) > 0)
3988                 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3989         else
3990                 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3991         /* Account for system time used */
3992         acct_update_integrals(p);
3993 }
3994
3995 /*
3996  * Account scaled system cpu time to a process.
3997  * @p: the process that the cpu time gets accounted to
3998  * @hardirq_offset: the offset to subtract from hardirq_count()
3999  * @cputime: the cpu time spent in kernel space since the last update
4000  */
4001 void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4002 {
4003         p->stimescaled = cputime_add(p->stimescaled, cputime);
4004 }
4005
4006 /*
4007  * Account for involuntary wait time.
4008  * @p: the process from which the cpu time has been stolen
4009  * @steal: the cpu time spent in involuntary wait
4010  */
4011 void account_steal_time(struct task_struct *p, cputime_t steal)
4012 {
4013         struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4014         cputime64_t tmp = cputime_to_cputime64(steal);
4015         struct rq *rq = this_rq();
4016
4017         if (p == rq->idle) {
4018                 p->stime = cputime_add(p->stime, steal);
4019                 if (atomic_read(&rq->nr_iowait) > 0)
4020                         cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4021                 else
4022                         cpustat->idle = cputime64_add(cpustat->idle, tmp);
4023         } else
4024                 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4025 }
4026
4027 /*
4028  * This function gets called by the timer code, with HZ frequency.
4029  * We call it with interrupts disabled.
4030  *
4031  * It also gets called by the fork code, when changing the parent's
4032  * timeslices.
4033  */
4034 void scheduler_tick(void)
4035 {
4036         int cpu = smp_processor_id();
4037         struct rq *rq = cpu_rq(cpu);
4038         struct task_struct *curr = rq->curr;
4039
4040         sched_clock_tick();
4041
4042         spin_lock(&rq->lock);
4043         update_rq_clock(rq);
4044         update_cpu_load(rq);
4045         curr->sched_class->task_tick(rq, curr, 0);
4046         spin_unlock(&rq->lock);
4047
4048 #ifdef CONFIG_SMP
4049         rq->idle_at_tick = idle_cpu(cpu);
4050         trigger_load_balance(rq, cpu);
4051 #endif
4052 }
4053
4054 #if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4055                                 defined(CONFIG_PREEMPT_TRACER))
4056
4057 static inline unsigned long get_parent_ip(unsigned long addr)
4058 {
4059         if (in_lock_functions(addr)) {
4060                 addr = CALLER_ADDR2;
4061                 if (in_lock_functions(addr))
4062                         addr = CALLER_ADDR3;
4063         }
4064         return addr;
4065 }
4066
4067 void __kprobes add_preempt_count(int val)
4068 {
4069 #ifdef CONFIG_DEBUG_PREEMPT
4070         /*
4071          * Underflow?
4072          */
4073         if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4074                 return;
4075 #endif
4076         preempt_count() += val;
4077 #ifdef CONFIG_DEBUG_PREEMPT
4078         /*
4079          * Spinlock count overflowing soon?
4080          */
4081         DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4082                                 PREEMPT_MASK - 10);
4083 #endif
4084         if (preempt_count() == val)
4085                 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
4086 }
4087 EXPORT_SYMBOL(add_preempt_count);
4088
4089 void __kprobes sub_preempt_count(int val)
4090 {
4091 #ifdef CONFIG_DEBUG_PREEMPT
4092         /*
4093          * Underflow?
4094          */
4095         if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4096                 return;
4097         /*
4098          * Is the spinlock portion underflowing?
4099          */
4100         if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4101                         !(preempt_count() & PREEMPT_MASK)))
4102                 return;
4103 #endif
4104
4105         if (preempt_count() == val)
4106                 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
4107         preempt_count() -= val;
4108 }
4109 EXPORT_SYMBOL(sub_preempt_count);
4110
4111 #endif
4112
4113 /*
4114  * Print scheduling while atomic bug:
4115  */
4116 static noinline void __schedule_bug(struct task_struct *prev)
4117 {
4118         struct pt_regs *regs = get_irq_regs();
4119
4120         printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4121                 prev->comm, prev->pid, preempt_count());
4122
4123         debug_show_held_locks(prev);
4124         if (irqs_disabled())
4125                 print_irqtrace_events(prev);
4126
4127         if (regs)
4128                 show_regs(regs);
4129         else
4130                 dump_stack();
4131 }
4132
4133 /*
4134  * Various schedule()-time debugging checks and statistics:
4135  */
4136 static inline void schedule_debug(struct task_struct *prev)
4137 {
4138         /*
4139          * Test if we are atomic. Since do_exit() needs to call into
4140          * schedule() atomically, we ignore that path for now.
4141          * Otherwise, whine if we are scheduling when we should not be.
4142          */
4143         if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
4144                 __schedule_bug(prev);
4145
4146         profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4147
4148         schedstat_inc(this_rq(), sched_count);
4149 #ifdef CONFIG_SCHEDSTATS
4150         if (unlikely(prev->lock_depth >= 0)) {
4151                 schedstat_inc(this_rq(), bkl_count);
4152                 schedstat_inc(prev, sched_info.bkl_count);
4153         }
4154 #endif
4155 }
4156
4157 /*
4158  * Pick up the highest-prio task:
4159  */
4160 static inline struct task_struct *
4161 pick_next_task(struct rq *rq, struct task_struct *prev)
4162 {
4163         const struct sched_class *class;
4164         struct task_struct *p;
4165
4166         /*
4167          * Optimization: we know that if all tasks are in
4168          * the fair class we can call that function directly:
4169          */
4170         if (likely(rq->nr_running == rq->cfs.nr_running)) {
4171                 p = fair_sched_class.pick_next_task(rq);
4172                 if (likely(p))
4173                         return p;
4174         }
4175
4176         class = sched_class_highest;
4177         for ( ; ; ) {
4178                 p = class->pick_next_task(rq);
4179                 if (p)
4180                         return p;
4181                 /*
4182                  * Will never be NULL as the idle class always
4183                  * returns a non-NULL p:
4184                  */
4185                 class = class->next;
4186         }
4187 }
4188
4189 /*
4190  * schedule() is the main scheduler function.
4191  */
4192 asmlinkage void __sched schedule(void)
4193 {
4194         struct task_struct *prev, *next;
4195         unsigned long *switch_count;
4196         struct rq *rq;
4197         int cpu;
4198
4199 need_resched:
4200         preempt_disable();
4201         cpu = smp_processor_id();
4202         rq = cpu_rq(cpu);
4203         rcu_qsctr_inc(cpu);
4204         prev = rq->curr;
4205         switch_count = &prev->nivcsw;
4206
4207         release_kernel_lock(prev);
4208 need_resched_nonpreemptible:
4209
4210         schedule_debug(prev);
4211
4212         hrtick_clear(rq);
4213
4214         /*
4215          * Do the rq-clock update outside the rq lock:
4216          */
4217         local_irq_disable();
4218         update_rq_clock(rq);
4219         spin_lock(&rq->lock);
4220         clear_tsk_need_resched(prev);
4221
4222         if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4223                 if (unlikely(signal_pending_state(prev->state, prev)))
4224                         prev->state = TASK_RUNNING;
4225                 else
4226                         deactivate_task(rq, prev, 1);
4227                 switch_count = &prev->nvcsw;
4228         }
4229
4230 #ifdef CONFIG_SMP
4231         if (prev->sched_class->pre_schedule)
4232                 prev->sched_class->pre_schedule(rq, prev);
4233 #endif
4234
4235         if (unlikely(!rq->nr_running))
4236                 idle_balance(cpu, rq);
4237
4238         prev->sched_class->put_prev_task(rq, prev);
4239         next = pick_next_task(rq, prev);
4240
4241         if (likely(prev != next)) {
4242                 sched_info_switch(prev, next);
4243
4244                 rq->nr_switches++;
4245                 rq->curr = next;
4246                 ++*switch_count;
4247
4248                 context_switch(rq, prev, next); /* unlocks the rq */
4249                 /*
4250                  * the context switch might have flipped the stack from under
4251                  * us, hence refresh the local variables.
4252                  */
4253                 cpu = smp_processor_id();
4254                 rq = cpu_rq(cpu);
4255         } else
4256                 spin_unlock_irq(&rq->lock);
4257
4258         hrtick_set(rq);
4259
4260         if (unlikely(reacquire_kernel_lock(current) < 0))
4261                 goto need_resched_nonpreemptible;
4262
4263         preempt_enable_no_resched();
4264         if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4265                 goto need_resched;
4266 }
4267 EXPORT_SYMBOL(schedule);
4268
4269 #ifdef CONFIG_PREEMPT
4270 /*
4271  * this is the entry point to schedule() from in-kernel preemption
4272  * off of preempt_enable. Kernel preemptions off return from interrupt
4273  * occur there and call schedule directly.
4274  */
4275 asmlinkage void __sched preempt_schedule(void)
4276 {
4277         struct thread_info *ti = current_thread_info();
4278
4279         /*
4280          * If there is a non-zero preempt_count or interrupts are disabled,
4281          * we do not want to preempt the current task. Just return..
4282          */
4283         if (likely(ti->preempt_count || irqs_disabled()))
4284                 return;
4285
4286         do {
4287                 add_preempt_count(PREEMPT_ACTIVE);
4288                 schedule();
4289                 sub_preempt_count(PREEMPT_ACTIVE);
4290
4291                 /*
4292                  * Check again in case we missed a preemption opportunity
4293                  * between schedule and now.
4294                  */
4295                 barrier();
4296         } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
4297 }
4298 EXPORT_SYMBOL(preempt_schedule);
4299
4300 /*
4301  * this is the entry point to schedule() from kernel preemption
4302  * off of irq context.
4303  * Note, that this is called and return with irqs disabled. This will
4304  * protect us against recursive calling from irq.
4305  */
4306 asmlinkage void __sched preempt_schedule_irq(void)
4307 {
4308         struct thread_info *ti = current_thread_info();
4309
4310         /* Catch callers which need to be fixed */
4311         BUG_ON(ti->preempt_count || !irqs_disabled());
4312
4313         do {
4314                 add_preempt_count(PREEMPT_ACTIVE);
4315                 local_irq_enable();
4316                 schedule();
4317                 local_irq_disable();
4318                 sub_preempt_count(PREEMPT_ACTIVE);
4319
4320                 /*
4321                  * Check again in case we missed a preemption opportunity
4322                  * between schedule and now.
4323                  */
4324                 barrier();
4325         } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
4326 }
4327
4328 #endif /* CONFIG_PREEMPT */
4329
4330 int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4331                           void *key)
4332 {
4333         return try_to_wake_up(curr->private, mode, sync);
4334 }
4335 EXPORT_SYMBOL(default_wake_function);
4336
4337 /*
4338  * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4339  * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
4340  * number) then we wake all the non-exclusive tasks and one exclusive task.
4341  *
4342  * There are circumstances in which we can try to wake a task which has already
4343  * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
4344  * zero in this (rare) case, and we handle it by continuing to scan the queue.
4345  */
4346 static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4347                              int nr_exclusive, int sync, void *key)
4348 {
4349         wait_queue_t *curr, *next;
4350
4351         list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
4352                 unsigned flags = curr->flags;
4353
4354                 if (curr->func(curr, mode, sync, key) &&
4355                                 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
4356                         break;
4357         }
4358 }
4359
4360 /**
4361  * __wake_up - wake up threads blocked on a waitqueue.
4362  * @q: the waitqueue
4363  * @mode: which threads
4364  * @nr_exclusive: how many wake-one or wake-many threads to wake up
4365  * @key: is directly passed to the wakeup function
4366  */
4367 void __wake_up(wait_queue_head_t *q, unsigned int mode,
4368                         int nr_exclusive, void *key)
4369 {
4370         unsigned long flags;
4371
4372         spin_lock_irqsave(&q->lock, flags);
4373         __wake_up_common(q, mode, nr_exclusive, 0, key);
4374         spin_unlock_irqrestore(&q->lock, flags);
4375 }
4376 EXPORT_SYMBOL(__wake_up);
4377
4378 /*
4379  * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4380  */
4381 void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
4382 {
4383         __wake_up_common(q, mode, 1, 0, NULL);
4384 }
4385
4386 /**
4387  * __wake_up_sync - wake up threads blocked on a waitqueue.
4388  * @q: the waitqueue
4389  * @mode: which threads
4390  * @nr_exclusive: how many wake-one or wake-many threads to wake up
4391  *
4392  * The sync wakeup differs that the waker knows that it will schedule
4393  * away soon, so while the target thread will be woken up, it will not
4394  * be migrated to another CPU - ie. the two threads are 'synchronized'
4395  * with each other. This can prevent needless bouncing between CPUs.
4396  *
4397  * On UP it can prevent extra preemption.
4398  */
4399 void
4400 __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
4401 {
4402         unsigned long flags;
4403         int sync = 1;
4404
4405         if (unlikely(!q))
4406                 return;
4407
4408         if (unlikely(!nr_exclusive))
4409                 sync = 0;
4410
4411         spin_lock_irqsave(&q->lock, flags);
4412         __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4413         spin_unlock_irqrestore(&q->lock, flags);
4414 }
4415 EXPORT_SYMBOL_GPL(__wake_up_sync);      /* For internal use only */
4416
4417 void complete(struct completion *x)
4418 {
4419         unsigned long flags;
4420
4421         spin_lock_irqsave(&x->wait.lock, flags);
4422         x->done++;
4423         __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
4424         spin_unlock_irqrestore(&x->wait.lock, flags);
4425 }
4426 EXPORT_SYMBOL(complete);
4427
4428 void complete_all(struct completion *x)
4429 {
4430         unsigned long flags;
4431
4432         spin_lock_irqsave(&x->wait.lock, flags);
4433         x->done += UINT_MAX/2;
4434         __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
4435         spin_unlock_irqrestore(&x->wait.lock, flags);
4436 }
4437 EXPORT_SYMBOL(complete_all);
4438
4439 static inline long __sched
4440 do_wait_for_common(struct completion *x, long timeout, int state)
4441 {
4442         if (!x->done) {
4443                 DECLARE_WAITQUEUE(wait, current);
4444
4445                 wait.flags |= WQ_FLAG_EXCLUSIVE;
4446                 __add_wait_queue_tail(&x->wait, &wait);
4447                 do {
4448                         if ((state == TASK_INTERRUPTIBLE &&
4449                              signal_pending(current)) ||
4450                             (state == TASK_KILLABLE &&
4451                              fatal_signal_pending(current))) {
4452                                 timeout = -ERESTARTSYS;
4453                                 break;
4454                         }
4455                         __set_current_state(state);
4456                         spin_unlock_irq(&x->wait.lock);
4457                         timeout = schedule_timeout(timeout);
4458                         spin_lock_irq(&x->wait.lock);
4459                 } while (!x->done && timeout);
4460                 __remove_wait_queue(&x->wait, &wait);
4461                 if (!x->done)
4462                         return timeout;
4463         }
4464         x->done--;
4465         return timeout ?: 1;
4466 }
4467
4468 static long __sched
4469 wait_for_common(struct completion *x, long timeout, int state)
4470 {
4471         might_sleep();
4472
4473         spin_lock_irq(&x->wait.lock);
4474         timeout = do_wait_for_common(x, timeout, state);
4475         spin_unlock_irq(&x->wait.lock);
4476         return timeout;
4477 }
4478
4479 void __sched wait_for_completion(struct completion *x)
4480 {
4481         wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
4482 }
4483 EXPORT_SYMBOL(wait_for_completion);
4484
4485 unsigned long __sched
4486 wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4487 {
4488         return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
4489 }
4490 EXPORT_SYMBOL(wait_for_completion_timeout);
4491
4492 int __sched wait_for_completion_interruptible(struct completion *x)
4493 {
4494         long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4495         if (t == -ERESTARTSYS)
4496                 return t;
4497         return 0;
4498 }
4499 EXPORT_SYMBOL(wait_for_completion_interruptible);
4500
4501 unsigned long __sched
4502 wait_for_completion_interruptible_timeout(struct completion *x,
4503                                           unsigned long timeout)
4504 {
4505         return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
4506 }
4507 EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4508
4509 int __sched wait_for_completion_killable(struct completion *x)
4510 {
4511         long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4512         if (t == -ERESTARTSYS)
4513                 return t;
4514         return 0;
4515 }
4516 EXPORT_SYMBOL(wait_for_completion_killable);
4517
4518 static long __sched
4519 sleep_on_common(wait_queue_head_t *q, int state, long timeout)
4520 {
4521         unsigned long flags;
4522         wait_queue_t wait;
4523
4524         init_waitqueue_entry(&wait, current);
4525
4526         __set_current_state(state);
4527
4528         spin_lock_irqsave(&q->lock, flags);
4529         __add_wait_queue(q, &wait);
4530         spin_unlock(&q->lock);
4531         timeout = schedule_timeout(timeout);
4532         spin_lock_irq(&q->lock);
4533         __remove_wait_queue(q, &wait);
4534         spin_unlock_irqrestore(&q->lock, flags);
4535
4536         return timeout;
4537 }
4538
4539 void __sched interruptible_sleep_on(wait_queue_head_t *q)
4540 {
4541         sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
4542 }
4543 EXPORT_SYMBOL(interruptible_sleep_on);
4544
4545 long __sched
4546 interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
4547 {
4548         return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
4549 }
4550 EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4551
4552 void __sched sleep_on(wait_queue_head_t *q)
4553 {
4554         sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
4555 }
4556 EXPORT_SYMBOL(sleep_on);
4557
4558 long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
4559 {
4560         return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
4561 }
4562 EXPORT_SYMBOL(sleep_on_timeout);
4563
4564 #ifdef CONFIG_RT_MUTEXES
4565
4566 /*
4567  * rt_mutex_setprio - set the current priority of a task
4568  * @p: task
4569  * @prio: prio value (kernel-internal form)
4570  *
4571  * This function changes the 'effective' priority of a task. It does
4572  * not touch ->normal_prio like __setscheduler().
4573  *
4574  * Used by the rt_mutex code to implement priority inheritance logic.
4575  */
4576 void rt_mutex_setprio(struct task_struct *p, int prio)
4577 {
4578         unsigned long flags;
4579         int oldprio, on_rq, running;
4580         struct rq *rq;
4581         const struct sched_class *prev_class = p->sched_class;
4582
4583         BUG_ON(prio < 0 || prio > MAX_PRIO);
4584
4585         rq = task_rq_lock(p, &flags);
4586         update_rq_clock(rq);
4587
4588         oldprio = p->prio;
4589         on_rq = p->se.on_rq;
4590         running = task_current(rq, p);
4591         if (on_rq)
4592                 dequeue_task(rq, p, 0);
4593         if (running)
4594                 p->sched_class->put_prev_task(rq, p);
4595
4596         if (rt_prio(prio))
4597                 p->sched_class = &rt_sched_class;
4598         else
4599                 p->sched_class = &fair_sched_class;
4600
4601         p->prio = prio;
4602
4603         if (running)
4604                 p->sched_class->set_curr_task(rq);
4605         if (on_rq) {
4606                 enqueue_task(rq, p, 0);
4607
4608                 check_class_changed(rq, p, prev_class, oldprio, running);
4609         }
4610         task_rq_unlock(rq, &flags);
4611 }
4612
4613 #endif
4614
4615 void set_user_nice(struct task_struct *p, long nice)
4616 {
4617         int old_prio, delta, on_rq;
4618         unsigned long flags;
4619         struct rq *rq;
4620
4621         if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4622                 return;
4623         /*
4624          * We have to be careful, if called from sys_setpriority(),
4625          * the task might be in the middle of scheduling on another CPU.
4626          */
4627         rq = task_rq_lock(p, &flags);
4628         update_rq_clock(rq);
4629         /*
4630          * The RT priorities are set via sched_setscheduler(), but we still
4631          * allow the 'normal' nice value to be set - but as expected
4632          * it wont have any effect on scheduling until the task is
4633          * SCHED_FIFO/SCHED_RR:
4634          */
4635         if (task_has_rt_policy(p)) {
4636                 p->static_prio = NICE_TO_PRIO(nice);
4637                 goto out_unlock;
4638         }
4639         on_rq = p->se.on_rq;
4640         if (on_rq) {
4641                 dequeue_task(rq, p, 0);
4642                 dec_load(rq, p);
4643         }
4644
4645         p->static_prio = NICE_TO_PRIO(nice);
4646         set_load_weight(p);
4647         old_prio = p->prio;
4648         p->prio = effective_prio(p);
4649         delta = p->prio - old_prio;
4650
4651         if (on_rq) {
4652                 enqueue_task(rq, p, 0);
4653                 inc_load(rq, p);
4654                 /*
4655                  * If the task increased its priority or is running and
4656                  * lowered its priority, then reschedule its CPU:
4657                  */
4658                 if (delta < 0 || (delta > 0 && task_running(rq, p)))
4659                         resched_task(rq->curr);
4660         }
4661 out_unlock:
4662         task_rq_unlock(rq, &flags);
4663 }
4664 EXPORT_SYMBOL(set_user_nice);
4665
4666 /*
4667  * can_nice - check if a task can reduce its nice value
4668  * @p: task
4669  * @nice: nice value
4670  */
4671 int can_nice(const struct task_struct *p, const int nice)
4672 {
4673         /* convert nice value [19,-20] to rlimit style value [1,40] */
4674         int nice_rlim = 20 - nice;
4675
4676         return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4677                 capable(CAP_SYS_NICE));
4678 }
4679
4680 #ifdef __ARCH_WANT_SYS_NICE
4681
4682 /*
4683  * sys_nice - change the priority of the current process.
4684  * @increment: priority increment
4685  *
4686  * sys_setpriority is a more generic, but much slower function that
4687  * does similar things.
4688  */
4689 asmlinkage long sys_nice(int increment)
4690 {
4691         long nice, retval;
4692
4693         /*
4694          * Setpriority might change our priority at the same moment.
4695          * We don't have to worry. Conceptually one call occurs first
4696          * and we have a single winner.
4697          */
4698         if (increment < -40)
4699                 increment = -40;
4700         if (increment > 40)
4701                 increment = 40;
4702
4703         nice = PRIO_TO_NICE(current->static_prio) + increment;
4704         if (nice < -20)
4705                 nice = -20;
4706         if (nice > 19)
4707                 nice = 19;
4708
4709         if (increment < 0 && !can_nice(current, nice))
4710                 return -EPERM;
4711
4712         retval = security_task_setnice(current, nice);
4713         if (retval)
4714                 return retval;
4715
4716         set_user_nice(current, nice);
4717         return 0;
4718 }
4719
4720 #endif
4721
4722 /**
4723  * task_prio - return the priority value of a given task.
4724  * @p: the task in question.
4725  *
4726  * This is the priority value as seen by users in /proc.
4727  * RT tasks are offset by -200. Normal tasks are centered
4728  * around 0, value goes from -16 to +15.
4729  */
4730 int task_prio(const struct task_struct *p)
4731 {
4732         return p->prio - MAX_RT_PRIO;
4733 }
4734
4735 /**
4736  * task_nice - return the nice value of a given task.
4737  * @p: the task in question.
4738  */
4739 int task_nice(const struct task_struct *p)
4740 {
4741         return TASK_NICE(p);
4742 }
4743 EXPORT_SYMBOL(task_nice);
4744
4745 /**
4746  * idle_cpu - is a given cpu idle currently?
4747  * @cpu: the processor in question.
4748  */
4749 int idle_cpu(int cpu)
4750 {
4751         return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4752 }
4753
4754 /**
4755  * idle_task - return the idle task for a given cpu.
4756  * @cpu: the processor in question.
4757  */
4758 struct task_struct *idle_task(int cpu)
4759 {
4760         return cpu_rq(cpu)->idle;
4761 }
4762
4763 /**
4764  * find_process_by_pid - find a process with a matching PID value.
4765  * @pid: the pid in question.
4766  */
4767 static struct task_struct *find_process_by_pid(pid_t pid)
4768 {
4769         return pid ? find_task_by_vpid(pid) : current;
4770 }
4771
4772 /* Actually do priority change: must hold rq lock. */
4773 static void
4774 __setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
4775 {
4776         BUG_ON(p->se.on_rq);
4777
4778         p->policy = policy;
4779         switch (p->policy) {
4780         case SCHED_NORMAL:
4781         case SCHED_BATCH:
4782         case SCHED_IDLE:
4783                 p->sched_class = &fair_sched_class;
4784                 break;
4785         case SCHED_FIFO:
4786         case SCHED_RR:
4787                 p->sched_class = &rt_sched_class;
4788                 break;
4789         }
4790
4791         p->rt_priority = prio;
4792         p->normal_prio = normal_prio(p);
4793         /* we are holding p->pi_lock already */
4794         p->prio = rt_mutex_getprio(p);
4795         set_load_weight(p);
4796 }
4797
4798 /**
4799  * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
4800  * @p: the task in question.
4801  * @policy: new policy.
4802  * @param: structure containing the new RT priority.
4803  *
4804  * NOTE that the task may be already dead.
4805  */
4806 int sched_setscheduler(struct task_struct *p, int policy,
4807                        struct sched_param *param)
4808 {
4809         int retval, oldprio, oldpolicy = -1, on_rq, running;
4810         unsigned long flags;
4811         const struct sched_class *prev_class = p->sched_class;
4812         struct rq *rq;
4813
4814         /* may grab non-irq protected spin_locks */
4815         BUG_ON(in_interrupt());
4816 recheck:
4817         /* double check policy once rq lock held */
4818         if (policy < 0)
4819                 policy = oldpolicy = p->policy;
4820         else if (policy != SCHED_FIFO && policy != SCHED_RR &&
4821                         policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4822                         policy != SCHED_IDLE)
4823                 return -EINVAL;
4824         /*
4825          * Valid priorities for SCHED_FIFO and SCHED_RR are
4826          * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4827          * SCHED_BATCH and SCHED_IDLE is 0.
4828          */
4829         if (param->sched_priority < 0 ||
4830             (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
4831             (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
4832                 return -EINVAL;
4833         if (rt_policy(policy) != (param->sched_priority != 0))
4834                 return -EINVAL;
4835
4836         /*
4837          * Allow unprivileged RT tasks to decrease priority:
4838          */
4839         if (!capable(CAP_SYS_NICE)) {
4840                 if (rt_policy(policy)) {
4841                         unsigned long rlim_rtprio;
4842
4843                         if (!lock_task_sighand(p, &flags))
4844                                 return -ESRCH;
4845                         rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4846                         unlock_task_sighand(p, &flags);
4847
4848                         /* can't set/change the rt policy */
4849                         if (policy != p->policy && !rlim_rtprio)
4850                                 return -EPERM;
4851
4852                         /* can't increase priority */
4853                         if (param->sched_priority > p->rt_priority &&
4854                             param->sched_priority > rlim_rtprio)
4855                                 return -EPERM;
4856                 }
4857                 /*
4858                  * Like positive nice levels, dont allow tasks to
4859                  * move out of SCHED_IDLE either:
4860                  */
4861                 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4862                         return -EPERM;
4863
4864                 /* can't change other user's priorities */
4865                 if ((current->euid != p->euid) &&
4866                     (current->euid != p->uid))
4867                         return -EPERM;
4868         }
4869
4870 #ifdef CONFIG_RT_GROUP_SCHED
4871         /*
4872          * Do not allow realtime tasks into groups that have no runtime
4873          * assigned.
4874          */
4875         if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
4876                 return -EPERM;
4877 #endif
4878
4879         retval = security_task_setscheduler(p, policy, param);
4880         if (retval)
4881                 return retval;
4882         /*
4883          * make sure no PI-waiters arrive (or leave) while we are
4884          * changing the priority of the task:
4885          */
4886         spin_lock_irqsave(&p->pi_lock, flags);
4887         /*
4888          * To be able to change p->policy safely, the apropriate
4889          * runqueue lock must be held.
4890          */
4891         rq = __task_rq_lock(p);
4892         /* recheck policy now with rq lock held */
4893         if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4894                 policy = oldpolicy = -1;
4895                 __task_rq_unlock(rq);
4896                 spin_unlock_irqrestore(&p->pi_lock, flags);
4897                 goto recheck;
4898         }
4899         update_rq_clock(rq);
4900         on_rq = p->se.on_rq;
4901         running = task_current(rq, p);
4902         if (on_rq)
4903                 deactivate_task(rq, p, 0);
4904         if (running)
4905                 p->sched_class->put_prev_task(rq, p);
4906
4907         oldprio = p->prio;
4908         __setscheduler(rq, p, policy, param->sched_priority);
4909
4910         if (running)
4911                 p->sched_class->set_curr_task(rq);
4912         if (on_rq) {
4913                 activate_task(rq, p, 0);
4914
4915                 check_class_changed(rq, p, prev_class, oldprio, running);
4916         }
4917         __task_rq_unlock(rq);
4918         spin_unlock_irqrestore(&p->pi_lock, flags);
4919
4920         rt_mutex_adjust_pi(p);
4921
4922         return 0;
4923 }
4924 EXPORT_SYMBOL_GPL(sched_setscheduler);
4925
4926 static int
4927 do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
4928 {
4929         struct sched_param lparam;
4930         struct task_struct *p;
4931         int retval;
4932
4933         if (!param || pid < 0)
4934                 return -EINVAL;
4935         if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4936                 return -EFAULT;
4937
4938         rcu_read_lock();
4939         retval = -ESRCH;
4940         p = find_process_by_pid(pid);
4941         if (p != NULL)
4942                 retval = sched_setscheduler(p, policy, &lparam);
4943         rcu_read_unlock();
4944
4945         return retval;
4946 }
4947
4948 /**
4949  * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4950  * @pid: the pid in question.
4951  * @policy: new policy.
4952  * @param: structure containing the new RT priority.
4953  */
4954 asmlinkage long
4955 sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
4956 {
4957         /* negative values for policy are not valid */
4958         if (policy < 0)
4959                 return -EINVAL;
4960
4961         return do_sched_setscheduler(pid, policy, param);
4962 }
4963
4964 /**
4965  * sys_sched_setparam - set/change the RT priority of a thread
4966  * @pid: the pid in question.
4967  * @param: structure containing the new RT priority.
4968  */
4969 asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4970 {
4971         return do_sched_setscheduler(pid, -1, param);
4972 }
4973
4974 /**
4975  * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4976  * @pid: the pid in question.
4977  */
4978 asmlinkage long sys_sched_getscheduler(pid_t pid)
4979 {
4980         struct task_struct *p;
4981         int retval;
4982
4983         if (pid < 0)
4984                 return -EINVAL;
4985
4986         retval = -ESRCH;
4987         read_lock(&tasklist_lock);
4988         p = find_process_by_pid(pid);
4989         if (p) {
4990                 retval = security_task_getscheduler(p);
4991                 if (!retval)
4992                         retval = p->policy;
4993         }
4994         read_unlock(&tasklist_lock);
4995         return retval;
4996 }
4997
4998 /**
4999  * sys_sched_getscheduler - get the RT priority of a thread
5000  * @pid: the pid in question.
5001  * @param: structure containing the RT priority.
5002  */
5003 asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5004 {
5005         struct sched_param lp;
5006         struct task_struct *p;
5007         int retval;
5008
5009         if (!param || pid < 0)
5010                 return -EINVAL;
5011
5012         read_lock(&tasklist_lock);
5013         p = find_process_by_pid(pid);
5014         retval = -ESRCH;
5015         if (!p)
5016                 goto out_unlock;
5017
5018         retval = security_task_getscheduler(p);
5019         if (retval)
5020                 goto out_unlock;
5021
5022         lp.sched_priority = p->rt_priority;
5023         read_unlock(&tasklist_lock);
5024
5025         /*
5026          * This one might sleep, we cannot do it with a spinlock held ...
5027          */
5028         retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5029
5030         return retval;
5031
5032 out_unlock:
5033         read_unlock(&tasklist_lock);
5034         return retval;
5035 }
5036
5037 long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
5038 {
5039         cpumask_t cpus_allowed;
5040         cpumask_t new_mask = *in_mask;
5041         struct task_struct *p;
5042         int retval;
5043
5044         get_online_cpus();
5045         read_lock(&tasklist_lock);
5046
5047         p = find_process_by_pid(pid);
5048         if (!p) {
5049                 read_unlock(&tasklist_lock);
5050                 put_online_cpus();
5051                 return -ESRCH;
5052         }
5053
5054         /*
5055          * It is not safe to call set_cpus_allowed with the
5056          * tasklist_lock held. We will bump the task_struct's
5057          * usage count and then drop tasklist_lock.
5058          */
5059         get_task_struct(p);
5060         read_unlock(&tasklist_lock);
5061
5062         retval = -EPERM;
5063         if ((current->euid != p->euid) && (current->euid != p->uid) &&
5064                         !capable(CAP_SYS_NICE))
5065                 goto out_unlock;
5066
5067         retval = security_task_setscheduler(p, 0, NULL);
5068         if (retval)
5069                 goto out_unlock;
5070
5071         cpuset_cpus_allowed(p, &cpus_allowed);
5072         cpus_and(new_mask, new_mask, cpus_allowed);
5073  again:
5074         retval = set_cpus_allowed_ptr(p, &new_mask);
5075
5076         if (!retval) {
5077                 cpuset_cpus_allowed(p, &cpus_allowed);
5078                 if (!cpus_subset(new_mask, cpus_allowed)) {
5079                         /*
5080                          * We must have raced with a concurrent cpuset
5081                          * update. Just reset the cpus_allowed to the
5082                          * cpuset's cpus_allowed
5083                          */
5084                         new_mask = cpus_allowed;
5085                         goto again;
5086                 }
5087         }
5088 out_unlock:
5089         put_task_struct(p);
5090         put_online_cpus();
5091         return retval;
5092 }
5093
5094 static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5095                              cpumask_t *new_mask)
5096 {
5097         if (len < sizeof(cpumask_t)) {
5098                 memset(new_mask, 0, sizeof(cpumask_t));
5099         } else if (len > sizeof(cpumask_t)) {
5100                 len = sizeof(cpumask_t);
5101         }
5102         return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5103 }
5104
5105 /**
5106  * sys_sched_setaffinity - set the cpu affinity of a process
5107  * @pid: pid of the process
5108  * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5109  * @user_mask_ptr: user-space pointer to the new cpu mask
5110  */
5111 asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5112                                       unsigned long __user *user_mask_ptr)
5113 {
5114         cpumask_t new_mask;
5115         int retval;
5116
5117         retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5118         if (retval)
5119                 return retval;
5120
5121         return sched_setaffinity(pid, &new_mask);
5122 }
5123
5124 /*
5125  * Represents all cpu's present in the system
5126  * In systems capable of hotplug, this map could dynamically grow
5127  * as new cpu's are detected in the system via any platform specific
5128  * method, such as ACPI for e.g.
5129  */
5130
5131 cpumask_t cpu_present_map __read_mostly;
5132 EXPORT_SYMBOL(cpu_present_map);
5133
5134 #ifndef CONFIG_SMP
5135 cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
5136 EXPORT_SYMBOL(cpu_online_map);
5137
5138 cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
5139 EXPORT_SYMBOL(cpu_possible_map);
5140 #endif
5141
5142 long sched_getaffinity(pid_t pid, cpumask_t *mask)
5143 {
5144         struct task_struct *p;
5145         int retval;
5146
5147         get_online_cpus();
5148         read_lock(&tasklist_lock);
5149
5150         retval = -ESRCH;
5151         p = find_process_by_pid(pid);
5152         if (!p)
5153                 goto out_unlock;
5154
5155         retval = security_task_getscheduler(p);
5156         if (retval)
5157                 goto out_unlock;
5158
5159         cpus_and(*mask, p->cpus_allowed, cpu_online_map);
5160
5161 out_unlock:
5162         read_unlock(&tasklist_lock);
5163         put_online_cpus();
5164
5165         return retval;
5166 }
5167
5168 /**
5169  * sys_sched_getaffinity - get the cpu affinity of a process
5170  * @pid: pid of the process
5171  * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5172  * @user_mask_ptr: user-space pointer to hold the current cpu mask
5173  */
5174 asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5175                                       unsigned long __user *user_mask_ptr)
5176 {
5177         int ret;
5178         cpumask_t mask;
5179
5180         if (len < sizeof(cpumask_t))
5181                 return -EINVAL;
5182
5183         ret = sched_getaffinity(pid, &mask);
5184         if (ret < 0)
5185                 return ret;
5186
5187         if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5188                 return -EFAULT;
5189
5190         return sizeof(cpumask_t);
5191 }
5192
5193 /**
5194  * sys_sched_yield - yield the current processor to other threads.
5195  *
5196  * This function yields the current CPU to other tasks. If there are no
5197  * other threads running on this CPU then this function will return.
5198  */
5199 asmlinkage long sys_sched_yield(void)
5200 {
5201         struct rq *rq = this_rq_lock();
5202
5203         schedstat_inc(rq, yld_count);
5204         current->sched_class->yield_task(rq);
5205
5206         /*
5207          * Since we are going to call schedule() anyway, there's
5208          * no need to preempt or enable interrupts:
5209          */
5210         __release(rq->lock);
5211         spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
5212         _raw_spin_unlock(&rq->lock);
5213         preempt_enable_no_resched();
5214
5215         schedule();
5216
5217         return 0;
5218 }
5219
5220 static void __cond_resched(void)
5221 {
5222 #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5223         __might_sleep(__FILE__, __LINE__);
5224 #endif
5225         /*
5226          * The BKS might be reacquired before we have dropped
5227          * PREEMPT_ACTIVE, which could trigger a second
5228          * cond_resched() call.
5229          */
5230         do {
5231                 add_preempt_count(PREEMPT_ACTIVE);
5232                 schedule();
5233                 sub_preempt_count(PREEMPT_ACTIVE);
5234         } while (need_resched());
5235 }
5236
5237 int __sched _cond_resched(void)
5238 {
5239         if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5240                                         system_state == SYSTEM_RUNNING) {
5241                 __cond_resched();
5242                 return 1;
5243         }
5244         return 0;
5245 }
5246 EXPORT_SYMBOL(_cond_resched);
5247
5248 /*
5249  * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5250  * call schedule, and on return reacquire the lock.
5251  *
5252  * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
5253  * operations here to prevent schedule() from being called twice (once via
5254  * spin_unlock(), once by hand).
5255  */
5256 int cond_resched_lock(spinlock_t *lock)
5257 {
5258         int resched = need_resched() && system_state == SYSTEM_RUNNING;
5259         int ret = 0;
5260
5261         if (spin_needbreak(lock) || resched) {
5262                 spin_unlock(lock);
5263                 if (resched && need_resched())
5264                         __cond_resched();
5265                 else
5266                         cpu_relax();
5267                 ret = 1;
5268                 spin_lock(lock);
5269         }
5270         return ret;
5271 }
5272 EXPORT_SYMBOL(cond_resched_lock);
5273
5274 int __sched cond_resched_softirq(void)
5275 {
5276         BUG_ON(!in_softirq());
5277
5278         if (need_resched() && system_state == SYSTEM_RUNNING) {
5279                 local_bh_enable();
5280                 __cond_resched();
5281                 local_bh_disable();
5282                 return 1;
5283         }
5284         return 0;
5285 }
5286 EXPORT_SYMBOL(cond_resched_softirq);
5287
5288 /**
5289  * yield - yield the current processor to other threads.
5290  *
5291  * This is a shortcut for kernel-space yielding - it marks the
5292  * thread runnable and calls sys_sched_yield().
5293  */
5294 void __sched yield(void)
5295 {
5296         set_current_state(TASK_RUNNING);
5297         sys_sched_yield();
5298 }
5299 EXPORT_SYMBOL(yield);
5300
5301 /*
5302  * This task is about to go to sleep on IO. Increment rq->nr_iowait so
5303  * that process accounting knows that this is a task in IO wait state.
5304  *
5305  * But don't do that if it is a deliberate, throttling IO wait (this task
5306  * has set its backing_dev_info: the queue against which it should throttle)
5307  */
5308 void __sched io_schedule(void)
5309 {
5310         struct rq *rq = &__raw_get_cpu_var(runqueues);
5311
5312         delayacct_blkio_start();
5313         atomic_inc(&rq->nr_iowait);
5314         schedule();
5315         atomic_dec(&rq->nr_iowait);
5316         delayacct_blkio_end();
5317 }
5318 EXPORT_SYMBOL(io_schedule);
5319
5320 long __sched io_schedule_timeout(long timeout)
5321 {
5322         struct rq *rq = &__raw_get_cpu_var(runqueues);
5323         long ret;
5324
5325         delayacct_blkio_start();
5326         atomic_inc(&rq->nr_iowait);
5327         ret = schedule_timeout(timeout);
5328         atomic_dec(&rq->nr_iowait);
5329         delayacct_blkio_end();
5330         return ret;
5331 }
5332
5333 /**
5334  * sys_sched_get_priority_max - return maximum RT priority.
5335  * @policy: scheduling class.
5336  *
5337  * this syscall returns the maximum rt_priority that can be used
5338  * by a given scheduling class.
5339  */
5340 asmlinkage long sys_sched_get_priority_max(int policy)
5341 {
5342         int ret = -EINVAL;
5343
5344         switch (policy) {
5345         case SCHED_FIFO:
5346         case SCHED_RR:
5347                 ret = MAX_USER_RT_PRIO-1;
5348                 break;
5349         case SCHED_NORMAL:
5350         case SCHED_BATCH:
5351         case SCHED_IDLE:
5352                 ret = 0;
5353                 break;
5354         }
5355         return ret;
5356 }
5357
5358 /**
5359  * sys_sched_get_priority_min - return minimum RT priority.
5360  * @policy: scheduling class.
5361  *
5362  * this syscall returns the minimum rt_priority that can be used
5363  * by a given scheduling class.
5364  */
5365 asmlinkage long sys_sched_get_priority_min(int policy)
5366 {
5367         int ret = -EINVAL;
5368
5369         switch (policy) {
5370         case SCHED_FIFO:
5371         case SCHED_RR:
5372                 ret = 1;
5373                 break;
5374         case SCHED_NORMAL:
5375         case SCHED_BATCH:
5376         case SCHED_IDLE:
5377                 ret = 0;
5378         }
5379         return ret;
5380 }
5381
5382 /**
5383  * sys_sched_rr_get_interval - return the default timeslice of a process.
5384  * @pid: pid of the process.
5385  * @interval: userspace pointer to the timeslice value.
5386  *
5387  * this syscall writes the default timeslice value of a given process
5388  * into the user-space timespec buffer. A value of '0' means infinity.
5389  */
5390 asmlinkage
5391 long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5392 {
5393         struct task_struct *p;
5394         unsigned int time_slice;
5395         int retval;
5396         struct timespec t;
5397
5398         if (pid < 0)
5399                 return -EINVAL;
5400
5401         retval = -ESRCH;
5402         read_lock(&tasklist_lock);
5403         p = find_process_by_pid(pid);
5404         if (!p)
5405                 goto out_unlock;
5406
5407         retval = security_task_getscheduler(p);
5408         if (retval)
5409                 goto out_unlock;
5410
5411         /*
5412          * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5413          * tasks that are on an otherwise idle runqueue:
5414          */
5415         time_slice = 0;
5416         if (p->policy == SCHED_RR) {
5417                 time_slice = DEF_TIMESLICE;
5418         } else if (p->policy != SCHED_FIFO) {
5419                 struct sched_entity *se = &p->se;
5420                 unsigned long flags;
5421                 struct rq *rq;
5422
5423                 rq = task_rq_lock(p, &flags);
5424                 if (rq->cfs.load.weight)
5425                         time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
5426                 task_rq_unlock(rq, &flags);
5427         }
5428         read_unlock(&tasklist_lock);
5429         jiffies_to_timespec(time_slice, &t);
5430         retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
5431         return retval;
5432
5433 out_unlock:
5434         read_unlock(&tasklist_lock);
5435         return retval;
5436 }
5437
5438 static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
5439
5440 void sched_show_task(struct task_struct *p)
5441 {
5442         unsigned long free = 0;
5443         unsigned state;
5444
5445         state = p->state ? __ffs(p->state) + 1 : 0;
5446         printk(KERN_INFO "%-13.13s %c", p->comm,
5447                 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
5448 #if BITS_PER_LONG == 32
5449         if (state == TASK_RUNNING)
5450                 printk(KERN_CONT " running  ");
5451         else
5452                 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
5453 #else
5454         if (state == TASK_RUNNING)
5455                 printk(KERN_CONT "  running task    ");
5456         else
5457                 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
5458 #endif
5459 #ifdef CONFIG_DEBUG_STACK_USAGE
5460         {
5461                 unsigned long *n = end_of_stack(p);
5462                 while (!*n)
5463                         n++;
5464                 free = (unsigned long)n - (unsigned long)end_of_stack(p);
5465         }
5466 #endif
5467         printk(KERN_CONT "%5lu %5d %6d\n", free,
5468                 task_pid_nr(p), task_pid_nr(p->real_parent));
5469
5470         show_stack(p, NULL);
5471 }
5472
5473 void show_state_filter(unsigned long state_filter)
5474 {
5475         struct task_struct *g, *p;
5476
5477 #if BITS_PER_LONG == 32
5478         printk(KERN_INFO
5479                 "  task                PC stack   pid father\n");
5480 #else
5481         printk(KERN_INFO
5482                 "  task                        PC stack   pid father\n");
5483 #endif
5484         read_lock(&tasklist_lock);
5485         do_each_thread(g, p) {
5486                 /*
5487                  * reset the NMI-timeout, listing all files on a slow
5488                  * console might take alot of time:
5489                  */
5490                 touch_nmi_watchdog();
5491                 if (!state_filter || (p->state & state_filter))
5492                         sched_show_task(p);
5493         } while_each_thread(g, p);
5494
5495         touch_all_softlockup_watchdogs();
5496
5497 #ifdef CONFIG_SCHED_DEBUG
5498         sysrq_sched_debug_show();
5499 #endif
5500         read_unlock(&tasklist_lock);
5501         /*
5502          * Only show locks if all tasks are dumped:
5503          */
5504         if (state_filter == -1)
5505                 debug_show_all_locks();
5506 }
5507
5508 void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5509 {
5510         idle->sched_class = &idle_sched_class;
5511 }
5512
5513 /**
5514  * init_idle - set up an idle thread for a given CPU
5515  * @idle: task in question
5516  * @cpu: cpu the idle task belongs to
5517  *
5518  * NOTE: this function does not set the idle thread's NEED_RESCHED
5519  * flag, to make booting more robust.
5520  */
5521 void __cpuinit init_idle(struct task_struct *idle, int cpu)
5522 {
5523         struct rq *rq = cpu_rq(cpu);
5524         unsigned long flags;
5525
5526         __sched_fork(idle);
5527         idle->se.exec_start = sched_clock();
5528
5529         idle->prio = idle->normal_prio = MAX_PRIO;
5530         idle->cpus_allowed = cpumask_of_cpu(cpu);
5531         __set_task_cpu(idle, cpu);
5532
5533         spin_lock_irqsave(&rq->lock, flags);
5534         rq->curr = rq->idle = idle;
5535 #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5536         idle->oncpu = 1;
5537 #endif
5538         spin_unlock_irqrestore(&rq->lock, flags);
5539
5540         /* Set the preempt count _outside_ the spinlocks! */
5541 #if defined(CONFIG_PREEMPT)
5542         task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5543 #else
5544         task_thread_info(idle)->preempt_count = 0;
5545 #endif
5546         /*
5547          * The idle tasks have their own, simple scheduling class:
5548          */
5549         idle->sched_class = &idle_sched_class;
5550 }
5551
5552 /*
5553  * In a system that switches off the HZ timer nohz_cpu_mask
5554  * indicates which cpus entered this state. This is used
5555  * in the rcu update to wait only for active cpus. For system
5556  * which do not switch off the HZ timer nohz_cpu_mask should
5557  * always be CPU_MASK_NONE.
5558  */
5559 cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5560
5561 /*
5562  * Increase the granularity value when there are more CPUs,
5563  * because with more CPUs the 'effective latency' as visible
5564  * to users decreases. But the relationship is not linear,
5565  * so pick a second-best guess by going with the log2 of the
5566  * number of CPUs.
5567  *
5568  * This idea comes from the SD scheduler of Con Kolivas:
5569  */
5570 static inline void sched_init_granularity(void)
5571 {
5572         unsigned int factor = 1 + ilog2(num_online_cpus());
5573         const unsigned long limit = 200000000;
5574
5575         sysctl_sched_min_granularity *= factor;
5576         if (sysctl_sched_min_granularity > limit)
5577                 sysctl_sched_min_granularity = limit;
5578
5579         sysctl_sched_latency *= factor;
5580         if (sysctl_sched_latency > limit)
5581                 sysctl_sched_latency = limit;
5582
5583         sysctl_sched_wakeup_granularity *= factor;
5584 }
5585
5586 #ifdef CONFIG_SMP
5587 /*
5588  * This is how migration works:
5589  *
5590  * 1) we queue a struct migration_req structure in the source CPU's
5591  *    runqueue and wake up that CPU's migration thread.
5592  * 2) we down() the locked semaphore => thread blocks.
5593  * 3) migration thread wakes up (implicitly it forces the migrated
5594  *    thread off the CPU)
5595  * 4) it gets the migration request and checks whether the migrated
5596  *    task is still in the wrong runqueue.
5597  * 5) if it's in the wrong runqueue then the migration thread removes
5598  *    it and puts it into the right queue.
5599  * 6) migration thread up()s the semaphore.
5600  * 7) we wake up and the migration is done.
5601  */
5602
5603 /*
5604  * Change a given task's CPU affinity. Migrate the thread to a
5605  * proper CPU and schedule it away if the CPU it's executing on
5606  * is removed from the allowed bitmask.
5607  *
5608  * NOTE: the caller must have a valid reference to the task, the
5609  * task must not exit() & deallocate itself prematurely. The
5610  * call is not atomic; no spinlocks may be held.
5611  */
5612 int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
5613 {
5614         struct migration_req req;
5615         unsigned long flags;
5616         struct rq *rq;
5617         int ret = 0;
5618
5619         rq = task_rq_lock(p, &flags);
5620         if (!cpus_intersects(*new_mask, cpu_online_map)) {
5621                 ret = -EINVAL;
5622                 goto out;
5623         }
5624
5625         if (p->sched_class->set_cpus_allowed)
5626                 p->sched_class->set_cpus_allowed(p, new_mask);
5627         else {
5628                 p->cpus_allowed = *new_mask;
5629                 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
5630         }
5631
5632         /* Can the task run on the task's current CPU? If so, we're done */
5633         if (cpu_isset(task_cpu(p), *new_mask))
5634                 goto out;
5635
5636         if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
5637                 /* Need help from migration thread: drop lock and wait. */
5638                 task_rq_unlock(rq, &flags);
5639                 wake_up_process(rq->migration_thread);
5640                 wait_for_completion(&req.done);
5641                 tlb_migrate_finish(p->mm);
5642                 return 0;
5643         }
5644 out:
5645         task_rq_unlock(rq, &flags);
5646
5647         return ret;
5648 }
5649 EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
5650
5651 /*
5652  * Move (not current) task off this cpu, onto dest cpu. We're doing
5653  * this because either it can't run here any more (set_cpus_allowed()
5654  * away from this CPU, or CPU going down), or because we're
5655  * attempting to rebalance this task on exec (sched_exec).
5656  *
5657  * So we race with normal scheduler movements, but that's OK, as long
5658  * as the task is no longer on this CPU.
5659  *
5660  * Returns non-zero if task was successfully migrated.
5661  */
5662 static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
5663 {
5664         struct rq *rq_dest, *rq_src;
5665         int ret = 0, on_rq;
5666
5667         if (unlikely(cpu_is_offline(dest_cpu)))
5668                 return ret;
5669
5670         rq_src = cpu_rq(src_cpu);
5671         rq_dest = cpu_rq(dest_cpu);
5672
5673         double_rq_lock(rq_src, rq_dest);
5674         /* Already moved. */
5675         if (task_cpu(p) != src_cpu)
5676                 goto out;
5677         /* Affinity changed (again). */
5678         if (!cpu_isset(dest_cpu, p->cpus_allowed))
5679                 goto out;
5680
5681         on_rq = p->se.on_rq;
5682         if (on_rq)
5683                 deactivate_task(rq_src, p, 0);
5684
5685         set_task_cpu(p, dest_cpu);
5686         if (on_rq) {
5687                 activate_task(rq_dest, p, 0);
5688                 check_preempt_curr(rq_dest, p);
5689         }
5690         ret = 1;
5691 out:
5692         double_rq_unlock(rq_src, rq_dest);
5693         return ret;
5694 }
5695
5696 /*
5697  * migration_thread - this is a highprio system thread that performs
5698  * thread migration by bumping thread off CPU then 'pushing' onto
5699  * another runqueue.
5700  */
5701 static int migration_thread(void *data)
5702 {
5703         int cpu = (long)data;
5704         struct rq *rq;
5705
5706         rq = cpu_rq(cpu);
5707         BUG_ON(rq->migration_thread != current);
5708
5709         set_current_state(TASK_INTERRUPTIBLE);
5710         while (!kthread_should_stop()) {
5711                 struct migration_req *req;
5712                 struct list_head *head;
5713
5714                 spin_lock_irq(&rq->lock);
5715
5716                 if (cpu_is_offline(cpu)) {
5717                         spin_unlock_irq(&rq->lock);
5718                         goto wait_to_die;
5719                 }
5720
5721                 if (rq->active_balance) {
5722                         active_load_balance(rq, cpu);
5723                         rq->active_balance = 0;
5724                 }
5725
5726                 head = &rq->migration_queue;
5727
5728                 if (list_empty(head)) {
5729                         spin_unlock_irq(&rq->lock);
5730                         schedule();
5731                         set_current_state(TASK_INTERRUPTIBLE);
5732                         continue;
5733                 }
5734                 req = list_entry(head->next, struct migration_req, list);
5735                 list_del_init(head->next);
5736
5737                 spin_unlock(&rq->lock);
5738                 __migrate_task(req->task, cpu, req->dest_cpu);
5739                 local_irq_enable();
5740
5741                 complete(&req->done);
5742         }
5743         __set_current_state(TASK_RUNNING);
5744         return 0;
5745
5746 wait_to_die:
5747         /* Wait for kthread_stop */
5748         set_current_state(TASK_INTERRUPTIBLE);
5749         while (!kthread_should_stop()) {
5750                 schedule();
5751                 set_current_state(TASK_INTERRUPTIBLE);
5752         }
5753         __set_current_state(TASK_RUNNING);
5754         return 0;
5755 }
5756
5757 #ifdef CONFIG_HOTPLUG_CPU
5758
5759 static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5760 {
5761         int ret;
5762
5763         local_irq_disable();
5764         ret = __migrate_task(p, src_cpu, dest_cpu);
5765         local_irq_enable();
5766         return ret;
5767 }
5768
5769 /*
5770  * Figure out where task on dead CPU should go, use force if necessary.
5771  * NOTE: interrupts should be disabled by the caller
5772  */
5773 static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
5774 {
5775         unsigned long flags;
5776         cpumask_t mask;
5777         struct rq *rq;
5778         int dest_cpu;
5779
5780         do {
5781                 /* On same node? */
5782                 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5783                 cpus_and(mask, mask, p->cpus_allowed);
5784                 dest_cpu = any_online_cpu(mask);
5785
5786                 /* On any allowed CPU? */
5787                 if (dest_cpu >= nr_cpu_ids)
5788                         dest_cpu = any_online_cpu(p->cpus_allowed);
5789
5790                 /* No more Mr. Nice Guy. */
5791                 if (dest_cpu >= nr_cpu_ids) {
5792                         cpumask_t cpus_allowed;
5793
5794                         cpuset_cpus_allowed_locked(p, &cpus_allowed);
5795                         /*
5796                          * Try to stay on the same cpuset, where the
5797                          * current cpuset may be a subset of all cpus.
5798                          * The cpuset_cpus_allowed_locked() variant of
5799                          * cpuset_cpus_allowed() will not block. It must be
5800                          * called within calls to cpuset_lock/cpuset_unlock.
5801                          */
5802                         rq = task_rq_lock(p, &flags);
5803                         p->cpus_allowed = cpus_allowed;
5804                         dest_cpu = any_online_cpu(p->cpus_allowed);
5805                         task_rq_unlock(rq, &flags);
5806
5807                         /*
5808                          * Don't tell them about moving exiting tasks or
5809                          * kernel threads (both mm NULL), since they never
5810                          * leave kernel.
5811                          */
5812                         if (p->mm && printk_ratelimit()) {
5813                                 printk(KERN_INFO "process %d (%s) no "
5814                                        "longer affine to cpu%d\n",
5815                                         task_pid_nr(p), p->comm, dead_cpu);
5816                         }
5817                 }
5818         } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
5819 }
5820
5821 /*
5822  * While a dead CPU has no uninterruptible tasks queued at this point,
5823  * it might still have a nonzero ->nr_uninterruptible counter, because
5824  * for performance reasons the counter is not stricly tracking tasks to
5825  * their home CPUs. So we just add the counter to another CPU's counter,
5826  * to keep the global sum constant after CPU-down:
5827  */
5828 static void migrate_nr_uninterruptible(struct rq *rq_src)
5829 {
5830         struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
5831         unsigned long flags;
5832
5833         local_irq_save(flags);
5834         double_rq_lock(rq_src, rq_dest);
5835         rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5836         rq_src->nr_uninterruptible = 0;
5837         double_rq_unlock(rq_src, rq_dest);
5838         local_irq_restore(flags);
5839 }
5840
5841 /* Run through task list and migrate tasks from the dead cpu. */
5842 static void migrate_live_tasks(int src_cpu)
5843 {
5844         struct task_struct *p, *t;
5845
5846         read_lock(&tasklist_lock);
5847
5848         do_each_thread(t, p) {
5849                 if (p == current)
5850                         continue;
5851
5852                 if (task_cpu(p) == src_cpu)
5853                         move_task_off_dead_cpu(src_cpu, p);
5854         } while_each_thread(t, p);
5855
5856         read_unlock(&tasklist_lock);
5857 }
5858
5859 /*
5860  * Schedules idle task to be the next runnable task on current CPU.
5861  * It does so by boosting its priority to highest possible.
5862  * Used by CPU offline code.
5863  */
5864 void sched_idle_next(void)
5865 {
5866         int this_cpu = smp_processor_id();
5867         struct rq *rq = cpu_rq(this_cpu);
5868         struct task_struct *p = rq->idle;
5869         unsigned long flags;
5870
5871         /* cpu has to be offline */
5872         BUG_ON(cpu_online(this_cpu));
5873
5874         /*
5875          * Strictly not necessary since rest of the CPUs are stopped by now
5876          * and interrupts disabled on the current cpu.
5877          */
5878         spin_lock_irqsave(&rq->lock, flags);
5879
5880         __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
5881
5882         update_rq_clock(rq);
5883         activate_task(rq, p, 0);
5884
5885         spin_unlock_irqrestore(&rq->lock, flags);
5886 }
5887
5888 /*
5889  * Ensures that the idle task is using init_mm right before its cpu goes
5890  * offline.
5891  */
5892 void idle_task_exit(void)
5893 {
5894         struct mm_struct *mm = current->active_mm;
5895
5896         BUG_ON(cpu_online(smp_processor_id()));
5897
5898         if (mm != &init_mm)
5899                 switch_mm(mm, &init_mm, current);
5900         mmdrop(mm);
5901 }
5902
5903 /* called under rq->lock with disabled interrupts */
5904 static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
5905 {
5906         struct rq *rq = cpu_rq(dead_cpu);
5907
5908         /* Must be exiting, otherwise would be on tasklist. */
5909         BUG_ON(!p->exit_state);
5910
5911         /* Cannot have done final schedule yet: would have vanished. */
5912         BUG_ON(p->state == TASK_DEAD);
5913
5914         get_task_struct(p);
5915
5916         /*
5917          * Drop lock around migration; if someone else moves it,
5918          * that's OK. No task can be added to this CPU, so iteration is
5919          * fine.
5920          */
5921         spin_unlock_irq(&rq->lock);
5922         move_task_off_dead_cpu(dead_cpu, p);
5923         spin_lock_irq(&rq->lock);
5924
5925         put_task_struct(p);
5926 }
5927
5928 /* release_task() removes task from tasklist, so we won't find dead tasks. */
5929 static void migrate_dead_tasks(unsigned int dead_cpu)
5930 {
5931         struct rq *rq = cpu_rq(dead_cpu);
5932         struct task_struct *next;
5933
5934         for ( ; ; ) {
5935                 if (!rq->nr_running)
5936                         break;
5937                 update_rq_clock(rq);
5938                 next = pick_next_task(rq, rq->curr);
5939                 if (!next)
5940                         break;
5941                 next->sched_class->put_prev_task(rq, next);
5942                 migrate_dead(dead_cpu, next);
5943
5944         }
5945 }
5946 #endif /* CONFIG_HOTPLUG_CPU */
5947
5948 #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5949
5950 static struct ctl_table sd_ctl_dir[] = {
5951         {
5952                 .procname       = "sched_domain",
5953                 .mode           = 0555,
5954         },
5955         {0, },
5956 };
5957
5958 static struct ctl_table sd_ctl_root[] = {
5959         {
5960                 .ctl_name       = CTL_KERN,
5961                 .procname       = "kernel",
5962                 .mode           = 0555,
5963                 .child          = sd_ctl_dir,
5964         },
5965         {0, },
5966 };
5967
5968 static struct ctl_table *sd_alloc_ctl_entry(int n)
5969 {
5970         struct ctl_table *entry =
5971                 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
5972
5973         return entry;
5974 }
5975
5976 static void sd_free_ctl_entry(struct ctl_table **tablep)
5977 {
5978         struct ctl_table *entry;
5979
5980         /*
5981          * In the intermediate directories, both the child directory and
5982          * procname are dynamically allocated and could fail but the mode
5983          * will always be set. In the lowest directory the names are
5984          * static strings and all have proc handlers.
5985          */
5986         for (entry = *tablep; entry->mode; entry++) {
5987                 if (entry->child)
5988                         sd_free_ctl_entry(&entry->child);
5989                 if (entry->proc_handler == NULL)
5990                         kfree(entry->procname);
5991         }
5992
5993         kfree(*tablep);
5994         *tablep = NULL;
5995 }
5996
5997 static void
5998 set_table_entry(struct ctl_table *entry,
5999                 const char *procname, void *data, int maxlen,
6000                 mode_t mode, proc_handler *proc_handler)
6001 {
6002         entry->procname = procname;
6003         entry->data = data;
6004         entry->maxlen = maxlen;
6005         entry->mode = mode;
6006         entry->proc_handler = proc_handler;
6007 }
6008
6009 static struct ctl_table *
6010 sd_alloc_ctl_domain_table(struct sched_domain *sd)
6011 {
6012         struct ctl_table *table = sd_alloc_ctl_entry(12);
6013
6014         if (table == NULL)
6015                 return NULL;
6016
6017         set_table_entry(&table[0], "min_interval", &sd->min_interval,
6018                 sizeof(long), 0644, proc_doulongvec_minmax);
6019         set_table_entry(&table[1], "max_interval", &sd->max_interval,
6020                 sizeof(long), 0644, proc_doulongvec_minmax);
6021         set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
6022                 sizeof(int), 0644, proc_dointvec_minmax);
6023         set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
6024                 sizeof(int), 0644, proc_dointvec_minmax);
6025         set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
6026                 sizeof(int), 0644, proc_dointvec_minmax);
6027         set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
6028                 sizeof(int), 0644, proc_dointvec_minmax);
6029         set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
6030                 sizeof(int), 0644, proc_dointvec_minmax);
6031         set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
6032                 sizeof(int), 0644, proc_dointvec_minmax);
6033         set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
6034                 sizeof(int), 0644, proc_dointvec_minmax);
6035         set_table_entry(&table[9], "cache_nice_tries",
6036                 &sd->cache_nice_tries,
6037                 sizeof(int), 0644, proc_dointvec_minmax);
6038         set_table_entry(&table[10], "flags", &sd->flags,
6039                 sizeof(int), 0644, proc_dointvec_minmax);
6040         /* &table[11] is terminator */
6041
6042         return table;
6043 }
6044
6045 static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
6046 {
6047         struct ctl_table *entry, *table;
6048         struct sched_domain *sd;
6049         int domain_num = 0, i;
6050         char buf[32];
6051
6052         for_each_domain(cpu, sd)
6053                 domain_num++;
6054         entry = table = sd_alloc_ctl_entry(domain_num + 1);
6055         if (table == NULL)
6056                 return NULL;
6057
6058         i = 0;
6059         for_each_domain(cpu, sd) {
6060                 snprintf(buf, 32, "domain%d", i);
6061                 entry->procname = kstrdup(buf, GFP_KERNEL);
6062                 entry->mode = 0555;
6063                 entry->child = sd_alloc_ctl_domain_table(sd);
6064                 entry++;
6065                 i++;
6066         }
6067         return table;
6068 }
6069
6070 static struct ctl_table_header *sd_sysctl_header;
6071 static void register_sched_domain_sysctl(void)
6072 {
6073         int i, cpu_num = num_online_cpus();
6074         struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6075         char buf[32];
6076
6077         WARN_ON(sd_ctl_dir[0].child);
6078         sd_ctl_dir[0].child = entry;
6079
6080         if (entry == NULL)
6081                 return;
6082
6083         for_each_online_cpu(i) {
6084                 snprintf(buf, 32, "cpu%d", i);
6085                 entry->procname = kstrdup(buf, GFP_KERNEL);
6086                 entry->mode = 0555;
6087                 entry->child = sd_alloc_ctl_cpu_table(i);
6088                 entry++;
6089         }
6090
6091         WARN_ON(sd_sysctl_header);
6092         sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6093 }
6094
6095 /* may be called multiple times per register */
6096 static void unregister_sched_domain_sysctl(void)
6097 {
6098         if (sd_sysctl_header)
6099                 unregister_sysctl_table(sd_sysctl_header);
6100         sd_sysctl_header = NULL;
6101         if (sd_ctl_dir[0].child)
6102                 sd_free_ctl_entry(&sd_ctl_dir[0].child);
6103 }
6104 #else
6105 static void register_sched_domain_sysctl(void)
6106 {
6107 }
6108 static void unregister_sched_domain_sysctl(void)
6109 {
6110 }
6111 #endif
6112
6113 /*
6114  * migration_call - callback that gets triggered when a CPU is added.
6115  * Here we can start up the necessary migration thread for the new CPU.
6116  */
6117 static int __cpuinit
6118 migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
6119 {
6120         struct task_struct *p;
6121         int cpu = (long)hcpu;
6122         unsigned long flags;
6123         struct rq *rq;
6124
6125         switch (action) {
6126
6127         case CPU_UP_PREPARE:
6128         case CPU_UP_PREPARE_FROZEN:
6129                 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
6130                 if (IS_ERR(p))
6131                         return NOTIFY_BAD;
6132                 kthread_bind(p, cpu);
6133                 /* Must be high prio: stop_machine expects to yield to it. */
6134                 rq = task_rq_lock(p, &flags);
6135                 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
6136                 task_rq_unlock(rq, &flags);
6137                 cpu_rq(cpu)->migration_thread = p;
6138                 break;
6139
6140         case CPU_ONLINE:
6141         case CPU_ONLINE_FROZEN:
6142                 /* Strictly unnecessary, as first user will wake it. */
6143                 wake_up_process(cpu_rq(cpu)->migration_thread);
6144
6145                 /* Update our root-domain */
6146                 rq = cpu_rq(cpu);
6147                 spin_lock_irqsave(&rq->lock, flags);
6148                 if (rq->rd) {
6149                         BUG_ON(!cpu_isset(cpu, rq->rd->span));
6150                         cpu_set(cpu, rq->rd->online);
6151                 }
6152                 spin_unlock_irqrestore(&rq->lock, flags);
6153                 break;
6154
6155 #ifdef CONFIG_HOTPLUG_CPU
6156         case CPU_UP_CANCELED:
6157         case CPU_UP_CANCELED_FROZEN:
6158                 if (!cpu_rq(cpu)->migration_thread)
6159                         break;
6160                 /* Unbind it from offline cpu so it can run. Fall thru. */
6161                 kthread_bind(cpu_rq(cpu)->migration_thread,
6162                              any_online_cpu(cpu_online_map));
6163                 kthread_stop(cpu_rq(cpu)->migration_thread);
6164                 cpu_rq(cpu)->migration_thread = NULL;
6165                 break;
6166
6167         case CPU_DEAD:
6168         case CPU_DEAD_FROZEN:
6169                 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
6170                 migrate_live_tasks(cpu);
6171                 rq = cpu_rq(cpu);
6172                 kthread_stop(rq->migration_thread);
6173                 rq->migration_thread = NULL;
6174                 /* Idle task back to normal (off runqueue, low prio) */
6175                 spin_lock_irq(&rq->lock);
6176                 update_rq_clock(rq);
6177                 deactivate_task(rq, rq->idle, 0);
6178                 rq->idle->static_prio = MAX_PRIO;
6179                 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6180                 rq->idle->sched_class = &idle_sched_class;
6181                 migrate_dead_tasks(cpu);
6182                 spin_unlock_irq(&rq->lock);
6183                 cpuset_unlock();
6184                 migrate_nr_uninterruptible(rq);
6185                 BUG_ON(rq->nr_running != 0);
6186
6187                 /*
6188                  * No need to migrate the tasks: it was best-effort if
6189                  * they didn't take sched_hotcpu_mutex. Just wake up
6190                  * the requestors.
6191                  */
6192                 spin_lock_irq(&rq->lock);
6193                 while (!list_empty(&rq->migration_queue)) {
6194                         struct migration_req *req;
6195
6196                         req = list_entry(rq->migration_queue.next,
6197                                          struct migration_req, list);
6198                         list_del_init(&req->list);
6199                         complete(&req->done);
6200                 }
6201                 spin_unlock_irq(&rq->lock);
6202                 break;
6203
6204         case CPU_DYING:
6205         case CPU_DYING_FROZEN:
6206                 /* Update our root-domain */
6207                 rq = cpu_rq(cpu);
6208                 spin_lock_irqsave(&rq->lock, flags);
6209                 if (rq->rd) {
6210                         BUG_ON(!cpu_isset(cpu, rq->rd->span));
6211                         cpu_clear(cpu, rq->rd->online);
6212                 }
6213                 spin_unlock_irqrestore(&rq->lock, flags);
6214                 break;
6215 #endif
6216         }
6217         return NOTIFY_OK;
6218 }
6219
6220 /* Register at highest priority so that task migration (migrate_all_tasks)
6221  * happens before everything else.
6222  */
6223 static struct notifier_block __cpuinitdata migration_notifier = {
6224         .notifier_call = migration_call,
6225         .priority = 10
6226 };
6227
6228 void __init migration_init(void)
6229 {
6230         void *cpu = (void *)(long)smp_processor_id();
6231         int err;
6232
6233         /* Start one for the boot CPU: */
6234         err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6235         BUG_ON(err == NOTIFY_BAD);
6236         migration_call(&migration_notifier, CPU_ONLINE, cpu);
6237         register_cpu_notifier(&migration_notifier);
6238 }
6239 #endif
6240
6241 #ifdef CONFIG_SMP
6242
6243 #ifdef CONFIG_SCHED_DEBUG
6244
6245 static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6246                                   cpumask_t *groupmask)
6247 {
6248         struct sched_group *group = sd->groups;
6249         char str[256];
6250
6251         cpulist_scnprintf(str, sizeof(str), sd->span);
6252         cpus_clear(*groupmask);
6253
6254         printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6255
6256         if (!(sd->flags & SD_LOAD_BALANCE)) {
6257                 printk("does not load-balance\n");
6258                 if (sd->parent)
6259                         printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6260                                         " has parent");
6261                 return -1;
6262         }
6263
6264         printk(KERN_CONT "span %s\n", str);
6265
6266         if (!cpu_isset(cpu, sd->span)) {
6267                 printk(KERN_ERR "ERROR: domain->span does not contain "
6268                                 "CPU%d\n", cpu);
6269         }
6270         if (!cpu_isset(cpu, group->cpumask)) {
6271                 printk(KERN_ERR "ERROR: domain->groups does not contain"
6272                                 " CPU%d\n", cpu);
6273         }
6274
6275         printk(KERN_DEBUG "%*s groups:", level + 1, "");
6276         do {
6277                 if (!group) {
6278                         printk("\n");
6279                         printk(KERN_ERR "ERROR: group is NULL\n");
6280                         break;
6281                 }
6282
6283                 if (!group->__cpu_power) {
6284                         printk(KERN_CONT "\n");
6285                         printk(KERN_ERR "ERROR: domain->cpu_power not "
6286                                         "set\n");
6287                         break;
6288                 }
6289
6290                 if (!cpus_weight(group->cpumask)) {
6291                         printk(KERN_CONT "\n");
6292                         printk(KERN_ERR "ERROR: empty group\n");
6293                         break;
6294                 }
6295
6296                 if (cpus_intersects(*groupmask, group->cpumask)) {
6297                         printk(KERN_CONT "\n");
6298                         printk(KERN_ERR "ERROR: repeated CPUs\n");
6299                         break;
6300                 }
6301
6302                 cpus_or(*groupmask, *groupmask, group->cpumask);
6303
6304                 cpulist_scnprintf(str, sizeof(str), group->cpumask);
6305                 printk(KERN_CONT " %s", str);
6306
6307                 group = group->next;
6308         } while (group != sd->groups);
6309         printk(KERN_CONT "\n");
6310
6311         if (!cpus_equal(sd->span, *groupmask))
6312                 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6313
6314         if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
6315                 printk(KERN_ERR "ERROR: parent span is not a superset "
6316                         "of domain->span\n");
6317         return 0;
6318 }
6319
6320 static void sched_domain_debug(struct sched_domain *sd, int cpu)
6321 {
6322         cpumask_t *groupmask;
6323         int level = 0;
6324
6325         if (!sd) {
6326                 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6327                 return;
6328         }
6329
6330         printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6331
6332         groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6333         if (!groupmask) {
6334                 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6335                 return;
6336         }
6337
6338         for (;;) {
6339                 if (sched_domain_debug_one(sd, cpu, level, groupmask))
6340                         break;
6341                 level++;
6342                 sd = sd->parent;
6343                 if (!sd)
6344                         break;
6345         }
6346         kfree(groupmask);
6347 }
6348 #else
6349 # define sched_domain_debug(sd, cpu) do { } while (0)
6350 #endif
6351
6352 static int sd_degenerate(struct sched_domain *sd)
6353 {
6354         if (cpus_weight(sd->span) == 1)
6355                 return 1;
6356
6357         /* Following flags need at least 2 groups */
6358         if (sd->flags & (SD_LOAD_BALANCE |
6359                          SD_BALANCE_NEWIDLE |
6360                          SD_BALANCE_FORK |
6361                          SD_BALANCE_EXEC |
6362                          SD_SHARE_CPUPOWER |
6363                          SD_SHARE_PKG_RESOURCES)) {
6364                 if (sd->groups != sd->groups->next)
6365                         return 0;
6366         }
6367
6368         /* Following flags don't use groups */
6369         if (sd->flags & (SD_WAKE_IDLE |
6370                          SD_WAKE_AFFINE |
6371                          SD_WAKE_BALANCE))
6372                 return 0;
6373
6374         return 1;
6375 }
6376
6377 static int
6378 sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
6379 {
6380         unsigned long cflags = sd->flags, pflags = parent->flags;
6381
6382         if (sd_degenerate(parent))
6383                 return 1;
6384
6385         if (!cpus_equal(sd->span, parent->span))
6386                 return 0;
6387
6388         /* Does parent contain flags not in child? */
6389         /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6390         if (cflags & SD_WAKE_AFFINE)
6391                 pflags &= ~SD_WAKE_BALANCE;
6392         /* Flags needing groups don't count if only 1 group in parent */
6393         if (parent->groups == parent->groups->next) {
6394                 pflags &= ~(SD_LOAD_BALANCE |
6395                                 SD_BALANCE_NEWIDLE |
6396                                 SD_BALANCE_FORK |
6397                                 SD_BALANCE_EXEC |
6398                                 SD_SHARE_CPUPOWER |
6399                                 SD_SHARE_PKG_RESOURCES);
6400         }
6401         if (~cflags & pflags)
6402                 return 0;
6403
6404         return 1;
6405 }
6406
6407 static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6408 {
6409         unsigned long flags;
6410         const struct sched_class *class;
6411
6412         spin_lock_irqsave(&rq->lock, flags);
6413
6414         if (rq->rd) {
6415                 struct root_domain *old_rd = rq->rd;
6416
6417                 for (class = sched_class_highest; class; class = class->next) {
6418                         if (class->leave_domain)
6419                                 class->leave_domain(rq);
6420                 }
6421
6422                 cpu_clear(rq->cpu, old_rd->span);
6423                 cpu_clear(rq->cpu, old_rd->online);
6424
6425                 if (atomic_dec_and_test(&old_rd->refcount))
6426                         kfree(old_rd);
6427         }
6428
6429         atomic_inc(&rd->refcount);
6430         rq->rd = rd;
6431
6432         cpu_set(rq->cpu, rd->span);
6433         if (cpu_isset(rq->cpu, cpu_online_map))
6434                 cpu_set(rq->cpu, rd->online);
6435
6436         for (class = sched_class_highest; class; class = class->next) {
6437                 if (class->join_domain)
6438                         class->join_domain(rq);
6439         }
6440
6441         spin_unlock_irqrestore(&rq->lock, flags);
6442 }
6443
6444 static void init_rootdomain(struct root_domain *rd)
6445 {
6446         memset(rd, 0, sizeof(*rd));
6447
6448         cpus_clear(rd->span);
6449         cpus_clear(rd->online);
6450 }
6451
6452 static void init_defrootdomain(void)
6453 {
6454         init_rootdomain(&def_root_domain);
6455         atomic_set(&def_root_domain.refcount, 1);
6456 }
6457
6458 static struct root_domain *alloc_rootdomain(void)
6459 {
6460         struct root_domain *rd;
6461
6462         rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6463         if (!rd)
6464                 return NULL;
6465
6466         init_rootdomain(rd);
6467
6468         return rd;
6469 }
6470
6471 /*
6472  * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
6473  * hold the hotplug lock.
6474  */
6475 static void
6476 cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
6477 {
6478         struct rq *rq = cpu_rq(cpu);
6479         struct sched_domain *tmp;
6480
6481         /* Remove the sched domains which do not contribute to scheduling. */
6482         for (tmp = sd; tmp; tmp = tmp->parent) {
6483                 struct sched_domain *parent = tmp->parent;
6484                 if (!parent)
6485                         break;
6486                 if (sd_parent_degenerate(tmp, parent)) {
6487                         tmp->parent = parent->parent;
6488                         if (parent->parent)
6489                                 parent->parent->child = tmp;
6490                 }
6491         }
6492
6493         if (sd && sd_degenerate(sd)) {
6494                 sd = sd->parent;
6495                 if (sd)
6496                         sd->child = NULL;
6497         }
6498
6499         sched_domain_debug(sd, cpu);
6500
6501         rq_attach_root(rq, rd);
6502         rcu_assign_pointer(rq->sd, sd);
6503 }
6504
6505 /* cpus with isolated domains */
6506 static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
6507
6508 /* Setup the mask of cpus configured for isolated domains */
6509 static int __init isolated_cpu_setup(char *str)
6510 {
6511         int ints[NR_CPUS], i;
6512
6513         str = get_options(str, ARRAY_SIZE(ints), ints);
6514         cpus_clear(cpu_isolated_map);
6515         for (i = 1; i <= ints[0]; i++)
6516                 if (ints[i] < NR_CPUS)
6517                         cpu_set(ints[i], cpu_isolated_map);
6518         return 1;
6519 }
6520
6521 __setup("isolcpus=", isolated_cpu_setup);
6522
6523 /*
6524  * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6525  * to a function which identifies what group(along with sched group) a CPU
6526  * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6527  * (due to the fact that we keep track of groups covered with a cpumask_t).
6528  *
6529  * init_sched_build_groups will build a circular linked list of the groups
6530  * covered by the given span, and will set each group's ->cpumask correctly,
6531  * and ->cpu_power to 0.
6532  */
6533 static void
6534 init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
6535                         int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6536                                         struct sched_group **sg,
6537                                         cpumask_t *tmpmask),
6538                         cpumask_t *covered, cpumask_t *tmpmask)
6539 {
6540         struct sched_group *first = NULL, *last = NULL;
6541         int i;
6542
6543         cpus_clear(*covered);
6544
6545         for_each_cpu_mask(i, *span) {
6546                 struct sched_group *sg;
6547                 int group = group_fn(i, cpu_map, &sg, tmpmask);
6548                 int j;
6549
6550                 if (cpu_isset(i, *covered))
6551                         continue;
6552
6553                 cpus_clear(sg->cpumask);
6554                 sg->__cpu_power = 0;
6555
6556                 for_each_cpu_mask(j, *span) {
6557                         if (group_fn(j, cpu_map, NULL, tmpmask) != group)
6558                                 continue;
6559
6560                         cpu_set(j, *covered);
6561                         cpu_set(j, sg->cpumask);
6562                 }
6563                 if (!first)
6564                         first = sg;
6565                 if (last)
6566                         last->next = sg;
6567                 last = sg;
6568         }
6569         last->next = first;
6570 }
6571
6572 #define SD_NODES_PER_DOMAIN 16
6573
6574 #ifdef CONFIG_NUMA
6575
6576 /**
6577  * find_next_best_node - find the next node to include in a sched_domain
6578  * @node: node whose sched_domain we're building
6579  * @used_nodes: nodes already in the sched_domain
6580  *
6581  * Find the next node to include in a given scheduling domain. Simply
6582  * finds the closest node not already in the @used_nodes map.
6583  *
6584  * Should use nodemask_t.
6585  */
6586 static int find_next_best_node(int node, nodemask_t *used_nodes)
6587 {
6588         int i, n, val, min_val, best_node = 0;
6589
6590         min_val = INT_MAX;
6591
6592         for (i = 0; i < MAX_NUMNODES; i++) {
6593                 /* Start at @node */
6594                 n = (node + i) % MAX_NUMNODES;
6595
6596                 if (!nr_cpus_node(n))
6597                         continue;
6598
6599                 /* Skip already used nodes */
6600                 if (node_isset(n, *used_nodes))
6601                         continue;
6602
6603                 /* Simple min distance search */
6604                 val = node_distance(node, n);
6605
6606                 if (val < min_val) {
6607                         min_val = val;
6608                         best_node = n;
6609                 }
6610         }
6611
6612         node_set(best_node, *used_nodes);
6613         return best_node;
6614 }
6615
6616 /**
6617  * sched_domain_node_span - get a cpumask for a node's sched_domain
6618  * @node: node whose cpumask we're constructing
6619  * @span: resulting cpumask
6620  *
6621  * Given a node, construct a good cpumask for its sched_domain to span. It
6622  * should be one that prevents unnecessary balancing, but also spreads tasks
6623  * out optimally.
6624  */
6625 static void sched_domain_node_span(int node, cpumask_t *span)
6626 {
6627         nodemask_t used_nodes;
6628         node_to_cpumask_ptr(nodemask, node);
6629         int i;
6630
6631         cpus_clear(*span);
6632         nodes_clear(used_nodes);
6633
6634         cpus_or(*span, *span, *nodemask);
6635         node_set(node, used_nodes);
6636
6637         for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6638                 int next_node = find_next_best_node(node, &used_nodes);
6639
6640                 node_to_cpumask_ptr_next(nodemask, next_node);
6641                 cpus_or(*span, *span, *nodemask);
6642         }
6643 }
6644 #endif
6645
6646 int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
6647
6648 /*
6649  * SMT sched-domains:
6650  */
6651 #ifdef CONFIG_SCHED_SMT
6652 static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
6653 static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
6654
6655 static int
6656 cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6657                  cpumask_t *unused)
6658 {
6659         if (sg)
6660                 *sg = &per_cpu(sched_group_cpus, cpu);
6661         return cpu;
6662 }
6663 #endif
6664
6665 /*
6666  * multi-core sched-domains:
6667  */
6668 #ifdef CONFIG_SCHED_MC
6669 static DEFINE_PER_CPU(struct sched_domain, core_domains);
6670 static DEFINE_PER_CPU(struct sched_group, sched_group_core);
6671 #endif
6672
6673 #if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
6674 static int
6675 cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6676                   cpumask_t *mask)
6677 {
6678         int group;
6679
6680         *mask = per_cpu(cpu_sibling_map, cpu);
6681         cpus_and(*mask, *mask, *cpu_map);
6682         group = first_cpu(*mask);
6683         if (sg)
6684                 *sg = &per_cpu(sched_group_core, group);
6685         return group;
6686 }
6687 #elif defined(CONFIG_SCHED_MC)
6688 static int
6689 cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6690                   cpumask_t *unused)
6691 {
6692         if (sg)
6693                 *sg = &per_cpu(sched_group_core, cpu);
6694         return cpu;
6695 }
6696 #endif
6697
6698 static DEFINE_PER_CPU(struct sched_domain, phys_domains);
6699 static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
6700
6701 static int
6702 cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6703                   cpumask_t *mask)
6704 {
6705         int group;
6706 #ifdef CONFIG_SCHED_MC
6707         *mask = cpu_coregroup_map(cpu);
6708         cpus_and(*mask, *mask, *cpu_map);
6709         group = first_cpu(*mask);
6710 #elif defined(CONFIG_SCHED_SMT)
6711         *mask = per_cpu(cpu_sibling_map, cpu);
6712         cpus_and(*mask, *mask, *cpu_map);
6713         group = first_cpu(*mask);
6714 #else
6715         group = cpu;
6716 #endif
6717         if (sg)
6718                 *sg = &per_cpu(sched_group_phys, group);
6719         return group;
6720 }
6721
6722 #ifdef CONFIG_NUMA
6723 /*
6724  * The init_sched_build_groups can't handle what we want to do with node
6725  * groups, so roll our own. Now each node has its own list of groups which
6726  * gets dynamically allocated.
6727  */
6728 static DEFINE_PER_CPU(struct sched_domain, node_domains);
6729 static struct sched_group ***sched_group_nodes_bycpu;
6730
6731 static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
6732 static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
6733
6734 static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6735                                  struct sched_group **sg, cpumask_t *nodemask)
6736 {
6737         int group;
6738
6739         *nodemask = node_to_cpumask(cpu_to_node(cpu));
6740         cpus_and(*nodemask, *nodemask, *cpu_map);
6741         group = first_cpu(*nodemask);
6742
6743         if (sg)
6744                 *sg = &per_cpu(sched_group_allnodes, group);
6745         return group;
6746 }
6747
6748 static void init_numa_sched_groups_power(struct sched_group *group_head)
6749 {
6750         struct sched_group *sg = group_head;
6751         int j;
6752
6753         if (!sg)
6754                 return;
6755         do {
6756                 for_each_cpu_mask(j, sg->cpumask) {
6757                         struct sched_domain *sd;
6758
6759                         sd = &per_cpu(phys_domains, j);
6760                         if (j != first_cpu(sd->groups->cpumask)) {
6761                                 /*
6762                                  * Only add "power" once for each
6763                                  * physical package.
6764                                  */
6765                                 continue;
6766                         }
6767
6768                         sg_inc_cpu_power(sg, sd->groups->__cpu_power);
6769                 }
6770                 sg = sg->next;
6771         } while (sg != group_head);
6772 }
6773 #endif
6774
6775 #ifdef CONFIG_NUMA
6776 /* Free memory allocated for various sched_group structures */
6777 static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
6778 {
6779         int cpu, i;
6780
6781         for_each_cpu_mask(cpu, *cpu_map) {
6782                 struct sched_group **sched_group_nodes
6783                         = sched_group_nodes_bycpu[cpu];
6784
6785                 if (!sched_group_nodes)
6786                         continue;
6787
6788                 for (i = 0; i < MAX_NUMNODES; i++) {
6789                         struct sched_group *oldsg, *sg = sched_group_nodes[i];
6790
6791                         *nodemask = node_to_cpumask(i);
6792                         cpus_and(*nodemask, *nodemask, *cpu_map);
6793                         if (cpus_empty(*nodemask))
6794                                 continue;
6795
6796                         if (sg == NULL)
6797                                 continue;
6798                         sg = sg->next;
6799 next_sg:
6800                         oldsg = sg;
6801                         sg = sg->next;
6802                         kfree(oldsg);
6803                         if (oldsg != sched_group_nodes[i])
6804                                 goto next_sg;
6805                 }
6806                 kfree(sched_group_nodes);
6807                 sched_group_nodes_bycpu[cpu] = NULL;
6808         }
6809 }
6810 #else
6811 static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
6812 {
6813 }
6814 #endif
6815
6816 /*
6817  * Initialize sched groups cpu_power.
6818  *
6819  * cpu_power indicates the capacity of sched group, which is used while
6820  * distributing the load between different sched groups in a sched domain.
6821  * Typically cpu_power for all the groups in a sched domain will be same unless
6822  * there are asymmetries in the topology. If there are asymmetries, group
6823  * having more cpu_power will pickup more load compared to the group having
6824  * less cpu_power.
6825  *
6826  * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6827  * the maximum number of tasks a group can handle in the presence of other idle
6828  * or lightly loaded groups in the same sched domain.
6829  */
6830 static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6831 {
6832         struct sched_domain *child;
6833         struct sched_group *group;
6834
6835         WARN_ON(!sd || !sd->groups);
6836
6837         if (cpu != first_cpu(sd->groups->cpumask))
6838                 return;
6839
6840         child = sd->child;
6841
6842         sd->groups->__cpu_power = 0;
6843
6844         /*
6845          * For perf policy, if the groups in child domain share resources
6846          * (for example cores sharing some portions of the cache hierarchy
6847          * or SMT), then set this domain groups cpu_power such that each group
6848          * can handle only one task, when there are other idle groups in the
6849          * same sched domain.
6850          */
6851         if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6852                        (child->flags &
6853                         (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
6854                 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
6855                 return;
6856         }
6857
6858         /*
6859          * add cpu_power of each child group to this groups cpu_power
6860          */
6861         group = child->groups;
6862         do {
6863                 sg_inc_cpu_power(sd->groups, group->__cpu_power);
6864                 group = group->next;
6865         } while (group != child->groups);
6866 }
6867
6868 /*
6869  * Initializers for schedule domains
6870  * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
6871  */
6872
6873 #define SD_INIT(sd, type)       sd_init_##type(sd)
6874 #define SD_INIT_FUNC(type)      \
6875 static noinline void sd_init_##type(struct sched_domain *sd)    \
6876 {                                                               \
6877         memset(sd, 0, sizeof(*sd));                             \
6878         *sd = SD_##type##_INIT;                                 \
6879         sd->level = SD_LV_##type;                               \
6880 }
6881
6882 SD_INIT_FUNC(CPU)
6883 #ifdef CONFIG_NUMA
6884  SD_INIT_FUNC(ALLNODES)
6885  SD_INIT_FUNC(NODE)
6886 #endif
6887 #ifdef CONFIG_SCHED_SMT
6888  SD_INIT_FUNC(SIBLING)
6889 #endif
6890 #ifdef CONFIG_SCHED_MC
6891  SD_INIT_FUNC(MC)
6892 #endif
6893
6894 /*
6895  * To minimize stack usage kmalloc room for cpumasks and share the
6896  * space as the usage in build_sched_domains() dictates.  Used only
6897  * if the amount of space is significant.
6898  */
6899 struct allmasks {
6900         cpumask_t tmpmask;                      /* make this one first */
6901         union {
6902                 cpumask_t nodemask;
6903                 cpumask_t this_sibling_map;
6904                 cpumask_t this_core_map;
6905         };
6906         cpumask_t send_covered;
6907
6908 #ifdef CONFIG_NUMA
6909         cpumask_t domainspan;
6910         cpumask_t covered;
6911         cpumask_t notcovered;
6912 #endif
6913 };
6914
6915 #if     NR_CPUS > 128
6916 #define SCHED_CPUMASK_ALLOC             1
6917 #define SCHED_CPUMASK_FREE(v)           kfree(v)
6918 #define SCHED_CPUMASK_DECLARE(v)        struct allmasks *v
6919 #else
6920 #define SCHED_CPUMASK_ALLOC             0
6921 #define SCHED_CPUMASK_FREE(v)
6922 #define SCHED_CPUMASK_DECLARE(v)        struct allmasks _v, *v = &_v
6923 #endif
6924
6925 #define SCHED_CPUMASK_VAR(v, a)         cpumask_t *v = (cpumask_t *) \
6926                         ((unsigned long)(a) + offsetof(struct allmasks, v))
6927
6928 static int default_relax_domain_level = -1;
6929
6930 static int __init setup_relax_domain_level(char *str)
6931 {
6932         unsigned long val;
6933
6934         val = simple_strtoul(str, NULL, 0);
6935         if (val < SD_LV_MAX)
6936                 default_relax_domain_level = val;
6937
6938         return 1;
6939 }
6940 __setup("relax_domain_level=", setup_relax_domain_level);
6941
6942 static void set_domain_attribute(struct sched_domain *sd,
6943                                  struct sched_domain_attr *attr)
6944 {
6945         int request;
6946
6947         if (!attr || attr->relax_domain_level < 0) {
6948                 if (default_relax_domain_level < 0)
6949                         return;
6950                 else
6951                         request = default_relax_domain_level;
6952         } else
6953                 request = attr->relax_domain_level;
6954         if (request < sd->level) {
6955                 /* turn off idle balance on this domain */
6956                 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
6957         } else {
6958                 /* turn on idle balance on this domain */
6959                 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
6960         }
6961 }
6962
6963 /*
6964  * Build sched domains for a given set of cpus and attach the sched domains
6965  * to the individual cpus
6966  */
6967 static int __build_sched_domains(const cpumask_t *cpu_map,
6968                                  struct sched_domain_attr *attr)
6969 {
6970         int i;
6971         struct root_domain *rd;
6972         SCHED_CPUMASK_DECLARE(allmasks);
6973         cpumask_t *tmpmask;
6974 #ifdef CONFIG_NUMA
6975         struct sched_group **sched_group_nodes = NULL;
6976         int sd_allnodes = 0;
6977
6978         /*
6979          * Allocate the per-node list of sched groups
6980          */
6981         sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
6982                                     GFP_KERNEL);
6983         if (!sched_group_nodes) {
6984                 printk(KERN_WARNING "Can not alloc sched group node list\n");
6985                 return -ENOMEM;
6986         }
6987 #endif
6988
6989         rd = alloc_rootdomain();
6990         if (!rd) {
6991                 printk(KERN_WARNING "Cannot alloc root domain\n");
6992 #ifdef CONFIG_NUMA
6993                 kfree(sched_group_nodes);
6994 #endif
6995                 return -ENOMEM;
6996         }
6997
6998 #if SCHED_CPUMASK_ALLOC
6999         /* get space for all scratch cpumask variables */
7000         allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7001         if (!allmasks) {
7002                 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7003                 kfree(rd);
7004 #ifdef CONFIG_NUMA
7005                 kfree(sched_group_nodes);
7006 #endif
7007                 return -ENOMEM;
7008         }
7009 #endif
7010         tmpmask = (cpumask_t *)allmasks;
7011
7012
7013 #ifdef CONFIG_NUMA
7014         sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7015 #endif
7016
7017         /*
7018          * Set up domains for cpus specified by the cpu_map.
7019          */
7020         for_each_cpu_mask(i, *cpu_map) {
7021                 struct sched_domain *sd = NULL, *p;
7022                 SCHED_CPUMASK_VAR(nodemask, allmasks);
7023
7024                 *nodemask = node_to_cpumask(cpu_to_node(i));
7025                 cpus_and(*nodemask, *nodemask, *cpu_map);
7026
7027 #ifdef CONFIG_NUMA
7028                 if (cpus_weight(*cpu_map) >
7029                                 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
7030                         sd = &per_cpu(allnodes_domains, i);
7031                         SD_INIT(sd, ALLNODES);
7032                         set_domain_attribute(sd, attr);
7033                         sd->span = *cpu_map;
7034                         cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
7035                         p = sd;
7036                         sd_allnodes = 1;
7037                 } else
7038                         p = NULL;
7039
7040                 sd = &per_cpu(node_domains, i);
7041                 SD_INIT(sd, NODE);
7042                 set_domain_attribute(sd, attr);
7043                 sched_domain_node_span(cpu_to_node(i), &sd->span);
7044                 sd->parent = p;
7045                 if (p)
7046                         p->child = sd;
7047                 cpus_and(sd->span, sd->span, *cpu_map);
7048 #endif
7049
7050                 p = sd;
7051                 sd = &per_cpu(phys_domains, i);
7052                 SD_INIT(sd, CPU);
7053                 set_domain_attribute(sd, attr);
7054                 sd->span = *nodemask;
7055                 sd->parent = p;
7056                 if (p)
7057                         p->child = sd;
7058                 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
7059
7060 #ifdef CONFIG_SCHED_MC
7061                 p = sd;
7062                 sd = &per_cpu(core_domains, i);
7063                 SD_INIT(sd, MC);
7064                 set_domain_attribute(sd, attr);
7065                 sd->span = cpu_coregroup_map(i);
7066                 cpus_and(sd->span, sd->span, *cpu_map);
7067                 sd->parent = p;
7068                 p->child = sd;
7069                 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
7070 #endif
7071
7072 #ifdef CONFIG_SCHED_SMT
7073                 p = sd;
7074                 sd = &per_cpu(cpu_domains, i);
7075                 SD_INIT(sd, SIBLING);
7076                 set_domain_attribute(sd, attr);
7077                 sd->span = per_cpu(cpu_sibling_map, i);
7078                 cpus_and(sd->span, sd->span, *cpu_map);
7079                 sd->parent = p;
7080                 p->child = sd;
7081                 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
7082 #endif
7083         }
7084
7085 #ifdef CONFIG_SCHED_SMT
7086         /* Set up CPU (sibling) groups */
7087         for_each_cpu_mask(i, *cpu_map) {
7088                 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7089                 SCHED_CPUMASK_VAR(send_covered, allmasks);
7090
7091                 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7092                 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7093                 if (i != first_cpu(*this_sibling_map))
7094                         continue;
7095
7096                 init_sched_build_groups(this_sibling_map, cpu_map,
7097                                         &cpu_to_cpu_group,
7098                                         send_covered, tmpmask);
7099         }
7100 #endif
7101
7102 #ifdef CONFIG_SCHED_MC
7103         /* Set up multi-core groups */
7104         for_each_cpu_mask(i, *cpu_map) {
7105                 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7106                 SCHED_CPUMASK_VAR(send_covered, allmasks);
7107
7108                 *this_core_map = cpu_coregroup_map(i);
7109                 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7110                 if (i != first_cpu(*this_core_map))
7111                         continue;
7112
7113                 init_sched_build_groups(this_core_map, cpu_map,
7114                                         &cpu_to_core_group,
7115                                         send_covered, tmpmask);
7116         }
7117 #endif
7118
7119         /* Set up physical groups */
7120         for (i = 0; i < MAX_NUMNODES; i++) {
7121                 SCHED_CPUMASK_VAR(nodemask, allmasks);
7122                 SCHED_CPUMASK_VAR(send_covered, allmasks);
7123
7124                 *nodemask = node_to_cpumask(i);
7125                 cpus_and(*nodemask, *nodemask, *cpu_map);
7126                 if (cpus_empty(*nodemask))
7127                         continue;
7128
7129                 init_sched_build_groups(nodemask, cpu_map,
7130                                         &cpu_to_phys_group,
7131                                         send_covered, tmpmask);
7132         }
7133
7134 #ifdef CONFIG_NUMA
7135         /* Set up node groups */
7136         if (sd_allnodes) {
7137                 SCHED_CPUMASK_VAR(send_covered, allmasks);
7138
7139                 init_sched_build_groups(cpu_map, cpu_map,
7140                                         &cpu_to_allnodes_group,
7141                                         send_covered, tmpmask);
7142         }
7143
7144         for (i = 0; i < MAX_NUMNODES; i++) {
7145                 /* Set up node groups */
7146                 struct sched_group *sg, *prev;
7147                 SCHED_CPUMASK_VAR(nodemask, allmasks);
7148                 SCHED_CPUMASK_VAR(domainspan, allmasks);
7149                 SCHED_CPUMASK_VAR(covered, allmasks);
7150                 int j;
7151
7152                 *nodemask = node_to_cpumask(i);
7153                 cpus_clear(*covered);
7154
7155                 cpus_and(*nodemask, *nodemask, *cpu_map);
7156                 if (cpus_empty(*nodemask)) {
7157                         sched_group_nodes[i] = NULL;
7158                         continue;
7159                 }
7160
7161                 sched_domain_node_span(i, domainspan);
7162                 cpus_and(*domainspan, *domainspan, *cpu_map);
7163
7164                 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
7165                 if (!sg) {
7166                         printk(KERN_WARNING "Can not alloc domain group for "
7167                                 "node %d\n", i);
7168                         goto error;
7169                 }
7170                 sched_group_nodes[i] = sg;
7171                 for_each_cpu_mask(j, *nodemask) {
7172                         struct sched_domain *sd;
7173
7174                         sd = &per_cpu(node_domains, j);
7175                         sd->groups = sg;
7176                 }
7177                 sg->__cpu_power = 0;
7178                 sg->cpumask = *nodemask;
7179                 sg->next = sg;
7180                 cpus_or(*covered, *covered, *nodemask);
7181                 prev = sg;
7182
7183                 for (j = 0; j < MAX_NUMNODES; j++) {
7184                         SCHED_CPUMASK_VAR(notcovered, allmasks);
7185                         int n = (i + j) % MAX_NUMNODES;
7186                         node_to_cpumask_ptr(pnodemask, n);
7187
7188                         cpus_complement(*notcovered, *covered);
7189                         cpus_and(*tmpmask, *notcovered, *cpu_map);
7190                         cpus_and(*tmpmask, *tmpmask, *domainspan);
7191                         if (cpus_empty(*tmpmask))
7192                                 break;
7193
7194                         cpus_and(*tmpmask, *tmpmask, *pnodemask);
7195                         if (cpus_empty(*tmpmask))
7196                                 continue;
7197
7198                         sg = kmalloc_node(sizeof(struct sched_group),
7199                                           GFP_KERNEL, i);
7200                         if (!sg) {
7201                                 printk(KERN_WARNING
7202                                 "Can not alloc domain group for node %d\n", j);
7203                                 goto error;
7204                         }
7205                         sg->__cpu_power = 0;
7206                         sg->cpumask = *tmpmask;
7207                         sg->next = prev->next;
7208                         cpus_or(*covered, *covered, *tmpmask);
7209                         prev->next = sg;
7210                         prev = sg;
7211                 }
7212         }
7213 #endif
7214
7215         /* Calculate CPU power for physical packages and nodes */
7216 #ifdef CONFIG_SCHED_SMT
7217         for_each_cpu_mask(i, *cpu_map) {
7218                 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7219
7220                 init_sched_groups_power(i, sd);
7221         }
7222 #endif
7223 #ifdef CONFIG_SCHED_MC
7224         for_each_cpu_mask(i, *cpu_map) {
7225                 struct sched_domain *sd = &per_cpu(core_domains, i);
7226
7227                 init_sched_groups_power(i, sd);
7228         }
7229 #endif
7230
7231         for_each_cpu_mask(i, *cpu_map) {
7232                 struct sched_domain *sd = &per_cpu(phys_domains, i);
7233
7234                 init_sched_groups_power(i, sd);
7235         }
7236
7237 #ifdef CONFIG_NUMA
7238         for (i = 0; i < MAX_NUMNODES; i++)
7239                 init_numa_sched_groups_power(sched_group_nodes[i]);
7240
7241         if (sd_allnodes) {
7242                 struct sched_group *sg;
7243
7244                 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7245                                                                 tmpmask);
7246                 init_numa_sched_groups_power(sg);
7247         }
7248 #endif
7249
7250         /* Attach the domains */
7251         for_each_cpu_mask(i, *cpu_map) {
7252                 struct sched_domain *sd;
7253 #ifdef CONFIG_SCHED_SMT
7254                 sd = &per_cpu(cpu_domains, i);
7255 #elif defined(CONFIG_SCHED_MC)
7256                 sd = &per_cpu(core_domains, i);
7257 #else
7258                 sd = &per_cpu(phys_domains, i);
7259 #endif
7260                 cpu_attach_domain(sd, rd, i);
7261         }
7262
7263         SCHED_CPUMASK_FREE((void *)allmasks);
7264         return 0;
7265
7266 #ifdef CONFIG_NUMA
7267 error:
7268         free_sched_groups(cpu_map, tmpmask);
7269         SCHED_CPUMASK_FREE((void *)allmasks);
7270         return -ENOMEM;
7271 #endif
7272 }
7273
7274 static int build_sched_domains(const cpumask_t *cpu_map)
7275 {
7276         return __build_sched_domains(cpu_map, NULL);
7277 }
7278
7279 static cpumask_t *doms_cur;     /* current sched domains */
7280 static int ndoms_cur;           /* number of sched domains in 'doms_cur' */
7281 static struct sched_domain_attr *dattr_cur;
7282                                 /* attribues of custom domains in 'doms_cur' */
7283
7284 /*
7285  * Special case: If a kmalloc of a doms_cur partition (array of
7286  * cpumask_t) fails, then fallback to a single sched domain,
7287  * as determined by the single cpumask_t fallback_doms.
7288  */
7289 static cpumask_t fallback_doms;
7290
7291 void __attribute__((weak)) arch_update_cpu_topology(void)
7292 {
7293 }
7294
7295 /*
7296  * Free current domain masks.
7297  * Called after all cpus are attached to NULL domain.
7298  */
7299 static void free_sched_domains(void)
7300 {
7301         ndoms_cur = 0;
7302         if (doms_cur != &fallback_doms)
7303                 kfree(doms_cur);
7304         doms_cur = &fallback_doms;
7305 }
7306
7307 /*
7308  * Set up scheduler domains and groups. Callers must hold the hotplug lock.
7309  * For now this just excludes isolated cpus, but could be used to
7310  * exclude other special cases in the future.
7311  */
7312 static int arch_init_sched_domains(const cpumask_t *cpu_map)
7313 {
7314         int err;
7315
7316         arch_update_cpu_topology();
7317         ndoms_cur = 1;
7318         doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7319         if (!doms_cur)
7320                 doms_cur = &fallback_doms;
7321         cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
7322         dattr_cur = NULL;
7323         err = build_sched_domains(doms_cur);
7324         register_sched_domain_sysctl();
7325
7326         return err;
7327 }
7328
7329 static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7330                                        cpumask_t *tmpmask)
7331 {
7332         free_sched_groups(cpu_map, tmpmask);
7333 }
7334
7335 /*
7336  * Detach sched domains from a group of cpus specified in cpu_map
7337  * These cpus will now be attached to the NULL domain
7338  */
7339 static void detach_destroy_domains(const cpumask_t *cpu_map)
7340 {
7341         cpumask_t tmpmask;
7342         int i;
7343
7344         unregister_sched_domain_sysctl();
7345
7346         for_each_cpu_mask(i, *cpu_map)
7347                 cpu_attach_domain(NULL, &def_root_domain, i);
7348         synchronize_sched();
7349         arch_destroy_sched_domains(cpu_map, &tmpmask);
7350 }
7351
7352 /* handle null as "default" */
7353 static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7354                         struct sched_domain_attr *new, int idx_new)
7355 {
7356         struct sched_domain_attr tmp;
7357
7358         /* fast path */
7359         if (!new && !cur)
7360                 return 1;
7361
7362         tmp = SD_ATTR_INIT;
7363         return !memcmp(cur ? (cur + idx_cur) : &tmp,
7364                         new ? (new + idx_new) : &tmp,
7365                         sizeof(struct sched_domain_attr));
7366 }
7367
7368 /*
7369  * Partition sched domains as specified by the 'ndoms_new'
7370  * cpumasks in the array doms_new[] of cpumasks. This compares
7371  * doms_new[] to the current sched domain partitioning, doms_cur[].
7372  * It destroys each deleted domain and builds each new domain.
7373  *
7374  * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
7375  * The masks don't intersect (don't overlap.) We should setup one
7376  * sched domain for each mask. CPUs not in any of the cpumasks will
7377  * not be load balanced. If the same cpumask appears both in the
7378  * current 'doms_cur' domains and in the new 'doms_new', we can leave
7379  * it as it is.
7380  *
7381  * The passed in 'doms_new' should be kmalloc'd. This routine takes
7382  * ownership of it and will kfree it when done with it. If the caller
7383  * failed the kmalloc call, then it can pass in doms_new == NULL,
7384  * and partition_sched_domains() will fallback to the single partition
7385  * 'fallback_doms'.
7386  *
7387  * Call with hotplug lock held
7388  */
7389 void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7390                              struct sched_domain_attr *dattr_new)
7391 {
7392         int i, j;
7393
7394         mutex_lock(&sched_domains_mutex);
7395
7396         /* always unregister in case we don't destroy any domains */
7397         unregister_sched_domain_sysctl();
7398
7399         if (doms_new == NULL) {
7400                 ndoms_new = 1;
7401                 doms_new = &fallback_doms;
7402                 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7403                 dattr_new = NULL;
7404         }
7405
7406         /* Destroy deleted domains */
7407         for (i = 0; i < ndoms_cur; i++) {
7408                 for (j = 0; j < ndoms_new; j++) {
7409                         if (cpus_equal(doms_cur[i], doms_new[j])
7410                             && dattrs_equal(dattr_cur, i, dattr_new, j))
7411                                 goto match1;
7412                 }
7413                 /* no match - a current sched domain not in new doms_new[] */
7414                 detach_destroy_domains(doms_cur + i);
7415 match1:
7416                 ;
7417         }
7418
7419         /* Build new domains */
7420         for (i = 0; i < ndoms_new; i++) {
7421                 for (j = 0; j < ndoms_cur; j++) {
7422                         if (cpus_equal(doms_new[i], doms_cur[j])
7423                             && dattrs_equal(dattr_new, i, dattr_cur, j))
7424                                 goto match2;
7425                 }
7426                 /* no match - add a new doms_new */
7427                 __build_sched_domains(doms_new + i,
7428                                         dattr_new ? dattr_new + i : NULL);
7429 match2:
7430                 ;
7431         }
7432
7433         /* Remember the new sched domains */
7434         if (doms_cur != &fallback_doms)
7435                 kfree(doms_cur);
7436         kfree(dattr_cur);       /* kfree(NULL) is safe */
7437         doms_cur = doms_new;
7438         dattr_cur = dattr_new;
7439         ndoms_cur = ndoms_new;
7440
7441         register_sched_domain_sysctl();
7442
7443         mutex_unlock(&sched_domains_mutex);
7444 }
7445
7446 #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
7447 int arch_reinit_sched_domains(void)
7448 {
7449         int err;
7450
7451         get_online_cpus();
7452         mutex_lock(&sched_domains_mutex);
7453         detach_destroy_domains(&cpu_online_map);
7454         free_sched_domains();
7455         err = arch_init_sched_domains(&cpu_online_map);
7456         mutex_unlock(&sched_domains_mutex);
7457         put_online_cpus();
7458
7459         return err;
7460 }
7461
7462 static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7463 {
7464         int ret;
7465
7466         if (buf[0] != '0' && buf[0] != '1')
7467                 return -EINVAL;
7468
7469         if (smt)
7470                 sched_smt_power_savings = (buf[0] == '1');
7471         else
7472                 sched_mc_power_savings = (buf[0] == '1');
7473
7474         ret = arch_reinit_sched_domains();
7475
7476         return ret ? ret : count;
7477 }
7478
7479 #ifdef CONFIG_SCHED_MC
7480 static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7481 {
7482         return sprintf(page, "%u\n", sched_mc_power_savings);
7483 }
7484 static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7485                                             const char *buf, size_t count)
7486 {
7487         return sched_power_savings_store(buf, count, 0);
7488 }
7489 static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7490                    sched_mc_power_savings_store);
7491 #endif
7492
7493 #ifdef CONFIG_SCHED_SMT
7494 static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7495 {
7496         return sprintf(page, "%u\n", sched_smt_power_savings);
7497 }
7498 static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7499                                              const char *buf, size_t count)
7500 {
7501         return sched_power_savings_store(buf, count, 1);
7502 }
7503 static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7504                    sched_smt_power_savings_store);
7505 #endif
7506
7507 int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7508 {
7509         int err = 0;
7510
7511 #ifdef CONFIG_SCHED_SMT
7512         if (smt_capable())
7513                 err = sysfs_create_file(&cls->kset.kobj,
7514                                         &attr_sched_smt_power_savings.attr);
7515 #endif
7516 #ifdef CONFIG_SCHED_MC
7517         if (!err && mc_capable())
7518                 err = sysfs_create_file(&cls->kset.kobj,
7519                                         &attr_sched_mc_power_savings.attr);
7520 #endif
7521         return err;
7522 }
7523 #endif
7524
7525 /*
7526  * Force a reinitialization of the sched domains hierarchy. The domains
7527  * and groups cannot be updated in place without racing with the balancing
7528  * code, so we temporarily attach all running cpus to the NULL domain
7529  * which will prevent rebalancing while the sched domains are recalculated.
7530  */
7531 static int update_sched_domains(struct notifier_block *nfb,
7532                                 unsigned long action, void *hcpu)
7533 {
7534         switch (action) {
7535         case CPU_UP_PREPARE:
7536         case CPU_UP_PREPARE_FROZEN:
7537         case CPU_DOWN_PREPARE:
7538         case CPU_DOWN_PREPARE_FROZEN:
7539                 detach_destroy_domains(&cpu_online_map);
7540                 free_sched_domains();
7541                 return NOTIFY_OK;
7542
7543         case CPU_UP_CANCELED:
7544         case CPU_UP_CANCELED_FROZEN:
7545         case CPU_DOWN_FAILED:
7546         case CPU_DOWN_FAILED_FROZEN:
7547         case CPU_ONLINE:
7548         case CPU_ONLINE_FROZEN:
7549         case CPU_DEAD:
7550         case CPU_DEAD_FROZEN:
7551                 /*
7552                  * Fall through and re-initialise the domains.
7553                  */
7554                 break;
7555         default:
7556                 return NOTIFY_DONE;
7557         }
7558
7559 #ifndef CONFIG_CPUSETS
7560         /*
7561          * Create default domain partitioning if cpusets are disabled.
7562          * Otherwise we let cpusets rebuild the domains based on the
7563          * current setup.
7564          */
7565
7566         /* The hotplug lock is already held by cpu_up/cpu_down */
7567         arch_init_sched_domains(&cpu_online_map);
7568 #endif
7569
7570         return NOTIFY_OK;
7571 }
7572
7573 void __init sched_init_smp(void)
7574 {
7575         cpumask_t non_isolated_cpus;
7576
7577 #if defined(CONFIG_NUMA)
7578         sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7579                                                                 GFP_KERNEL);
7580         BUG_ON(sched_group_nodes_bycpu == NULL);
7581 #endif
7582         get_online_cpus();
7583         mutex_lock(&sched_domains_mutex);
7584         arch_init_sched_domains(&cpu_online_map);
7585         cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
7586         if (cpus_empty(non_isolated_cpus))
7587                 cpu_set(smp_processor_id(), non_isolated_cpus);
7588         mutex_unlock(&sched_domains_mutex);
7589         put_online_cpus();
7590         /* XXX: Theoretical race here - CPU may be hotplugged now */
7591         hotcpu_notifier(update_sched_domains, 0);
7592         init_hrtick();
7593
7594         /* Move init over to a non-isolated CPU */
7595         if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
7596                 BUG();
7597         sched_init_granularity();
7598 }
7599 #else
7600 void __init sched_init_smp(void)
7601 {
7602         sched_init_granularity();
7603 }
7604 #endif /* CONFIG_SMP */
7605
7606 int in_sched_functions(unsigned long addr)
7607 {
7608         return in_lock_functions(addr) ||
7609                 (addr >= (unsigned long)__sched_text_start
7610                 && addr < (unsigned long)__sched_text_end);
7611 }
7612
7613 static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
7614 {
7615         cfs_rq->tasks_timeline = RB_ROOT;
7616         INIT_LIST_HEAD(&cfs_rq->tasks);
7617 #ifdef CONFIG_FAIR_GROUP_SCHED
7618         cfs_rq->rq = rq;
7619 #endif
7620         cfs_rq->min_vruntime = (u64)(-(1LL << 20));
7621 }
7622
7623 static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7624 {
7625         struct rt_prio_array *array;
7626         int i;
7627
7628         array = &rt_rq->active;
7629         for (i = 0; i < MAX_RT_PRIO; i++) {
7630                 INIT_LIST_HEAD(array->queue + i);
7631                 __clear_bit(i, array->bitmap);
7632         }
7633         /* delimiter for bitsearch: */
7634         __set_bit(MAX_RT_PRIO, array->bitmap);
7635
7636 #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
7637         rt_rq->highest_prio = MAX_RT_PRIO;
7638 #endif
7639 #ifdef CONFIG_SMP
7640         rt_rq->rt_nr_migratory = 0;
7641         rt_rq->overloaded = 0;
7642 #endif
7643
7644         rt_rq->rt_time = 0;
7645         rt_rq->rt_throttled = 0;
7646         rt_rq->rt_runtime = 0;
7647         spin_lock_init(&rt_rq->rt_runtime_lock);
7648
7649 #ifdef CONFIG_RT_GROUP_SCHED
7650         rt_rq->rt_nr_boosted = 0;
7651         rt_rq->rq = rq;
7652 #endif
7653 }
7654
7655 #ifdef CONFIG_FAIR_GROUP_SCHED
7656 static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7657                                 struct sched_entity *se, int cpu, int add,
7658                                 struct sched_entity *parent)
7659 {
7660         struct rq *rq = cpu_rq(cpu);
7661         tg->cfs_rq[cpu] = cfs_rq;
7662         init_cfs_rq(cfs_rq, rq);
7663         cfs_rq->tg = tg;
7664         if (add)
7665                 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7666
7667         tg->se[cpu] = se;
7668         /* se could be NULL for init_task_group */
7669         if (!se)
7670                 return;
7671
7672         if (!parent)
7673                 se->cfs_rq = &rq->cfs;
7674         else
7675                 se->cfs_rq = parent->my_q;
7676
7677         se->my_q = cfs_rq;
7678         se->load.weight = tg->shares;
7679         se->load.inv_weight = 0;
7680         se->parent = parent;
7681 }
7682 #endif
7683
7684 #ifdef CONFIG_RT_GROUP_SCHED
7685 static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
7686                 struct sched_rt_entity *rt_se, int cpu, int add,
7687                 struct sched_rt_entity *parent)
7688 {
7689         struct rq *rq = cpu_rq(cpu);
7690
7691         tg->rt_rq[cpu] = rt_rq;
7692         init_rt_rq(rt_rq, rq);
7693         rt_rq->tg = tg;
7694         rt_rq->rt_se = rt_se;
7695         rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
7696         if (add)
7697                 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7698
7699         tg->rt_se[cpu] = rt_se;
7700         if (!rt_se)
7701                 return;
7702
7703         if (!parent)
7704                 rt_se->rt_rq = &rq->rt;
7705         else
7706                 rt_se->rt_rq = parent->my_q;
7707
7708         rt_se->my_q = rt_rq;
7709         rt_se->parent = parent;
7710         INIT_LIST_HEAD(&rt_se->run_list);
7711 }
7712 #endif
7713
7714 void __init sched_init(void)
7715 {
7716         int i, j;
7717         unsigned long alloc_size = 0, ptr;
7718
7719 #ifdef CONFIG_FAIR_GROUP_SCHED
7720         alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7721 #endif
7722 #ifdef CONFIG_RT_GROUP_SCHED
7723         alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7724 #endif
7725 #ifdef CONFIG_USER_SCHED
7726         alloc_size *= 2;
7727 #endif
7728         /*
7729          * As sched_init() is called before page_alloc is setup,
7730          * we use alloc_bootmem().
7731          */
7732         if (alloc_size) {
7733                 ptr = (unsigned long)alloc_bootmem(alloc_size);
7734
7735 #ifdef CONFIG_FAIR_GROUP_SCHED
7736                 init_task_group.se = (struct sched_entity **)ptr;
7737                 ptr += nr_cpu_ids * sizeof(void **);
7738
7739                 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
7740                 ptr += nr_cpu_ids * sizeof(void **);
7741
7742 #ifdef CONFIG_USER_SCHED
7743                 root_task_group.se = (struct sched_entity **)ptr;
7744                 ptr += nr_cpu_ids * sizeof(void **);
7745
7746                 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
7747                 ptr += nr_cpu_ids * sizeof(void **);
7748 #endif
7749 #endif
7750 #ifdef CONFIG_RT_GROUP_SCHED
7751                 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
7752                 ptr += nr_cpu_ids * sizeof(void **);
7753
7754                 init_task_group.rt_rq = (struct rt_rq **)ptr;
7755                 ptr += nr_cpu_ids * sizeof(void **);
7756
7757 #ifdef CONFIG_USER_SCHED
7758                 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
7759                 ptr += nr_cpu_ids * sizeof(void **);
7760
7761                 root_task_group.rt_rq = (struct rt_rq **)ptr;
7762                 ptr += nr_cpu_ids * sizeof(void **);
7763 #endif
7764 #endif
7765         }
7766
7767 #ifdef CONFIG_SMP
7768         init_defrootdomain();
7769 #endif
7770
7771         init_rt_bandwidth(&def_rt_bandwidth,
7772                         global_rt_period(), global_rt_runtime());
7773
7774 #ifdef CONFIG_RT_GROUP_SCHED
7775         init_rt_bandwidth(&init_task_group.rt_bandwidth,
7776                         global_rt_period(), global_rt_runtime());
7777 #ifdef CONFIG_USER_SCHED
7778         init_rt_bandwidth(&root_task_group.rt_bandwidth,
7779                         global_rt_period(), RUNTIME_INF);
7780 #endif
7781 #endif
7782
7783 #ifdef CONFIG_GROUP_SCHED
7784         list_add(&init_task_group.list, &task_groups);
7785         INIT_LIST_HEAD(&init_task_group.children);
7786
7787 #ifdef CONFIG_USER_SCHED
7788         INIT_LIST_HEAD(&root_task_group.children);
7789         init_task_group.parent = &root_task_group;
7790         list_add(&init_task_group.siblings, &root_task_group.children);
7791 #endif
7792 #endif
7793
7794         for_each_possible_cpu(i) {
7795                 struct rq *rq;
7796
7797                 rq = cpu_rq(i);
7798                 spin_lock_init(&rq->lock);
7799                 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
7800                 rq->nr_running = 0;
7801                 init_cfs_rq(&rq->cfs, rq);
7802                 init_rt_rq(&rq->rt, rq);
7803 #ifdef CONFIG_FAIR_GROUP_SCHED
7804                 init_task_group.shares = init_task_group_load;
7805                 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7806 #ifdef CONFIG_CGROUP_SCHED
7807                 /*
7808                  * How much cpu bandwidth does init_task_group get?
7809                  *
7810                  * In case of task-groups formed thr' the cgroup filesystem, it
7811                  * gets 100% of the cpu resources in the system. This overall
7812                  * system cpu resource is divided among the tasks of
7813                  * init_task_group and its child task-groups in a fair manner,
7814                  * based on each entity's (task or task-group's) weight
7815                  * (se->load.weight).
7816                  *
7817                  * In other words, if init_task_group has 10 tasks of weight
7818                  * 1024) and two child groups A0 and A1 (of weight 1024 each),
7819                  * then A0's share of the cpu resource is:
7820                  *
7821                  *      A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
7822                  *
7823                  * We achieve this by letting init_task_group's tasks sit
7824                  * directly in rq->cfs (i.e init_task_group->se[] = NULL).
7825                  */
7826                 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
7827 #elif defined CONFIG_USER_SCHED
7828                 root_task_group.shares = NICE_0_LOAD;
7829                 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
7830                 /*
7831                  * In case of task-groups formed thr' the user id of tasks,
7832                  * init_task_group represents tasks belonging to root user.
7833                  * Hence it forms a sibling of all subsequent groups formed.
7834                  * In this case, init_task_group gets only a fraction of overall
7835                  * system cpu resource, based on the weight assigned to root
7836                  * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
7837                  * by letting tasks of init_task_group sit in a separate cfs_rq
7838                  * (init_cfs_rq) and having one entity represent this group of
7839                  * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
7840                  */
7841                 init_tg_cfs_entry(&init_task_group,
7842                                 &per_cpu(init_cfs_rq, i),
7843                                 &per_cpu(init_sched_entity, i), i, 1,
7844                                 root_task_group.se[i]);
7845
7846 #endif
7847 #endif /* CONFIG_FAIR_GROUP_SCHED */
7848
7849                 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
7850 #ifdef CONFIG_RT_GROUP_SCHED
7851                 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7852 #ifdef CONFIG_CGROUP_SCHED
7853                 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
7854 #elif defined CONFIG_USER_SCHED
7855                 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
7856                 init_tg_rt_entry(&init_task_group,
7857                                 &per_cpu(init_rt_rq, i),
7858                                 &per_cpu(init_sched_rt_entity, i), i, 1,
7859                                 root_task_group.rt_se[i]);
7860 #endif
7861 #endif
7862
7863                 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7864                         rq->cpu_load[j] = 0;
7865 #ifdef CONFIG_SMP
7866                 rq->sd = NULL;
7867                 rq->rd = NULL;
7868                 rq->active_balance = 0;
7869                 rq->next_balance = jiffies;
7870                 rq->push_cpu = 0;
7871                 rq->cpu = i;
7872                 rq->migration_thread = NULL;
7873                 INIT_LIST_HEAD(&rq->migration_queue);
7874                 rq_attach_root(rq, &def_root_domain);
7875 #endif
7876                 init_rq_hrtick(rq);
7877                 atomic_set(&rq->nr_iowait, 0);
7878         }
7879
7880         set_load_weight(&init_task);
7881
7882 #ifdef CONFIG_PREEMPT_NOTIFIERS
7883         INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7884 #endif
7885
7886 #ifdef CONFIG_SMP
7887         open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7888 #endif
7889
7890 #ifdef CONFIG_RT_MUTEXES
7891         plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7892 #endif
7893
7894         /*
7895          * The boot idle thread does lazy MMU switching as well:
7896          */
7897         atomic_inc(&init_mm.mm_count);
7898         enter_lazy_tlb(&init_mm, current);
7899
7900         /*
7901          * Make us the idle thread. Technically, schedule() should not be
7902          * called from this thread, however somewhere below it might be,
7903          * but because we are the idle thread, we just pick up running again
7904          * when this runqueue becomes "idle".
7905          */
7906         init_idle(current, smp_processor_id());
7907         /*
7908          * During early bootup we pretend to be a normal task:
7909          */
7910         current->sched_class = &fair_sched_class;
7911
7912         scheduler_running = 1;
7913 }
7914
7915 #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7916 void __might_sleep(char *file, int line)
7917 {
7918 #ifdef in_atomic
7919         static unsigned long prev_jiffy;        /* ratelimiting */
7920
7921         if ((in_atomic() || irqs_disabled()) &&
7922             system_state == SYSTEM_RUNNING && !oops_in_progress) {
7923                 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7924                         return;
7925                 prev_jiffy = jiffies;
7926                 printk(KERN_ERR "BUG: sleeping function called from invalid"
7927                                 " context at %s:%d\n", file, line);
7928                 printk("in_atomic():%d, irqs_disabled():%d\n",
7929                         in_atomic(), irqs_disabled());
7930                 debug_show_held_locks(current);
7931                 if (irqs_disabled())
7932                         print_irqtrace_events(current);
7933                 dump_stack();
7934         }
7935 #endif
7936 }
7937 EXPORT_SYMBOL(__might_sleep);
7938 #endif
7939
7940 #ifdef CONFIG_MAGIC_SYSRQ
7941 static void normalize_task(struct rq *rq, struct task_struct *p)
7942 {
7943         int on_rq;
7944
7945         update_rq_clock(rq);
7946         on_rq = p->se.on_rq;
7947         if (on_rq)
7948                 deactivate_task(rq, p, 0);
7949         __setscheduler(rq, p, SCHED_NORMAL, 0);
7950         if (on_rq) {
7951                 activate_task(rq, p, 0);
7952                 resched_task(rq->curr);
7953         }
7954 }
7955
7956 void normalize_rt_tasks(void)
7957 {
7958         struct task_struct *g, *p;
7959         unsigned long flags;
7960         struct rq *rq;
7961
7962         read_lock_irqsave(&tasklist_lock, flags);
7963         do_each_thread(g, p) {
7964                 /*
7965                  * Only normalize user tasks:
7966                  */
7967                 if (!p->mm)
7968                         continue;
7969
7970                 p->se.exec_start                = 0;
7971 #ifdef CONFIG_SCHEDSTATS
7972                 p->se.wait_start                = 0;
7973                 p->se.sleep_start               = 0;
7974                 p->se.block_start               = 0;
7975 #endif
7976
7977                 if (!rt_task(p)) {
7978                         /*
7979                          * Renice negative nice level userspace
7980                          * tasks back to 0:
7981                          */
7982                         if (TASK_NICE(p) < 0 && p->mm)
7983                                 set_user_nice(p, 0);
7984                         continue;
7985                 }
7986
7987                 spin_lock(&p->pi_lock);
7988                 rq = __task_rq_lock(p);
7989
7990                 normalize_task(rq, p);
7991
7992                 __task_rq_unlock(rq);
7993                 spin_unlock(&p->pi_lock);
7994         } while_each_thread(g, p);
7995
7996         read_unlock_irqrestore(&tasklist_lock, flags);
7997 }
7998
7999 #endif /* CONFIG_MAGIC_SYSRQ */
8000
8001 #ifdef CONFIG_IA64
8002 /*
8003  * These functions are only useful for the IA64 MCA handling.
8004  *
8005  * They can only be called when the whole system has been
8006  * stopped - every CPU needs to be quiescent, and no scheduling
8007  * activity can take place. Using them for anything else would
8008  * be a serious bug, and as a result, they aren't even visible
8009  * under any other configuration.
8010  */
8011
8012 /**
8013  * curr_task - return the current task for a given cpu.
8014  * @cpu: the processor in question.
8015  *
8016  * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8017  */
8018 struct task_struct *curr_task(int cpu)
8019 {
8020         return cpu_curr(cpu);
8021 }
8022
8023 /**
8024  * set_curr_task - set the current task for a given cpu.
8025  * @cpu: the processor in question.
8026  * @p: the task pointer to set.
8027  *
8028  * Description: This function must only be used when non-maskable interrupts
8029  * are serviced on a separate stack. It allows the architecture to switch the
8030  * notion of the current task on a cpu in a non-blocking manner. This function
8031  * must be called with all CPU's synchronized, and interrupts disabled, the
8032  * and caller must save the original value of the current task (see
8033  * curr_task() above) and restore that value before reenabling interrupts and
8034  * re-starting the system.
8035  *
8036  * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8037  */
8038 void set_curr_task(int cpu, struct task_struct *p)
8039 {
8040         cpu_curr(cpu) = p;
8041 }
8042
8043 #endif
8044
8045 #ifdef CONFIG_FAIR_GROUP_SCHED
8046 static void free_fair_sched_group(struct task_group *tg)
8047 {
8048         int i;
8049
8050         for_each_possible_cpu(i) {
8051                 if (tg->cfs_rq)
8052                         kfree(tg->cfs_rq[i]);
8053                 if (tg->se)
8054                         kfree(tg->se[i]);
8055         }
8056
8057         kfree(tg->cfs_rq);
8058         kfree(tg->se);
8059 }
8060
8061 static
8062 int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
8063 {
8064         struct cfs_rq *cfs_rq;
8065         struct sched_entity *se, *parent_se;
8066         struct rq *rq;
8067         int i;
8068
8069         tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
8070         if (!tg->cfs_rq)
8071                 goto err;
8072         tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
8073         if (!tg->se)
8074                 goto err;
8075
8076         tg->shares = NICE_0_LOAD;
8077
8078         for_each_possible_cpu(i) {
8079                 rq = cpu_rq(i);
8080
8081                 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8082                                 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8083                 if (!cfs_rq)
8084                         goto err;
8085
8086                 se = kmalloc_node(sizeof(struct sched_entity),
8087                                 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8088                 if (!se)
8089                         goto err;
8090
8091                 parent_se = parent ? parent->se[i] : NULL;
8092                 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
8093         }
8094
8095         return 1;
8096
8097  err:
8098         return 0;
8099 }
8100
8101 static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8102 {
8103         list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8104                         &cpu_rq(cpu)->leaf_cfs_rq_list);
8105 }
8106
8107 static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8108 {
8109         list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8110 }
8111 #else
8112 static inline void free_fair_sched_group(struct task_group *tg)
8113 {
8114 }
8115
8116 static inline
8117 int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
8118 {
8119         return 1;
8120 }
8121
8122 static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8123 {
8124 }
8125
8126 static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8127 {
8128 }
8129 #endif
8130
8131 #ifdef CONFIG_RT_GROUP_SCHED
8132 static void free_rt_sched_group(struct task_group *tg)
8133 {
8134         int i;
8135
8136         destroy_rt_bandwidth(&tg->rt_bandwidth);
8137
8138         for_each_possible_cpu(i) {
8139                 if (tg->rt_rq)
8140                         kfree(tg->rt_rq[i]);
8141                 if (tg->rt_se)
8142                         kfree(tg->rt_se[i]);
8143         }
8144
8145         kfree(tg->rt_rq);
8146         kfree(tg->rt_se);
8147 }
8148
8149 static
8150 int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
8151 {
8152         struct rt_rq *rt_rq;
8153         struct sched_rt_entity *rt_se, *parent_se;
8154         struct rq *rq;
8155         int i;
8156
8157         tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
8158         if (!tg->rt_rq)
8159                 goto err;
8160         tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
8161         if (!tg->rt_se)
8162                 goto err;
8163
8164         init_rt_bandwidth(&tg->rt_bandwidth,
8165                         ktime_to_ns(def_rt_bandwidth.rt_period), 0);
8166
8167         for_each_possible_cpu(i) {
8168                 rq = cpu_rq(i);
8169
8170                 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8171                                 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8172                 if (!rt_rq)
8173                         goto err;
8174
8175                 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8176                                 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8177                 if (!rt_se)
8178                         goto err;
8179
8180                 parent_se = parent ? parent->rt_se[i] : NULL;
8181                 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
8182         }
8183
8184         return 1;
8185
8186  err:
8187         return 0;
8188 }
8189
8190 static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8191 {
8192         list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8193                         &cpu_rq(cpu)->leaf_rt_rq_list);
8194 }
8195
8196 static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8197 {
8198         list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8199 }
8200 #else
8201 static inline void free_rt_sched_group(struct task_group *tg)
8202 {
8203 }
8204
8205 static inline
8206 int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
8207 {
8208         return 1;
8209 }
8210
8211 static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8212 {
8213 }
8214
8215 static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8216 {
8217 }
8218 #endif
8219
8220 #ifdef CONFIG_GROUP_SCHED
8221 static void free_sched_group(struct task_group *tg)
8222 {
8223         free_fair_sched_group(tg);
8224         free_rt_sched_group(tg);
8225         kfree(tg);
8226 }
8227
8228 /* allocate runqueue etc for a new task group */
8229 struct task_group *sched_create_group(struct task_group *parent)
8230 {
8231         struct task_group *tg;
8232         unsigned long flags;
8233         int i;
8234
8235         tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8236         if (!tg)
8237                 return ERR_PTR(-ENOMEM);
8238
8239         if (!alloc_fair_sched_group(tg, parent))
8240                 goto err;
8241
8242         if (!alloc_rt_sched_group(tg, parent))
8243                 goto err;
8244
8245         spin_lock_irqsave(&task_group_lock, flags);
8246         for_each_possible_cpu(i) {
8247                 register_fair_sched_group(tg, i);
8248                 register_rt_sched_group(tg, i);
8249         }
8250         list_add_rcu(&tg->list, &task_groups);
8251
8252         WARN_ON(!parent); /* root should already exist */
8253
8254         tg->parent = parent;
8255         list_add_rcu(&tg->siblings, &parent->children);
8256         INIT_LIST_HEAD(&tg->children);
8257         spin_unlock_irqrestore(&task_group_lock, flags);
8258
8259         return tg;
8260
8261 err:
8262         free_sched_group(tg);
8263         return ERR_PTR(-ENOMEM);
8264 }
8265
8266 /* rcu callback to free various structures associated with a task group */
8267 static void free_sched_group_rcu(struct rcu_head *rhp)
8268 {
8269         /* now it should be safe to free those cfs_rqs */
8270         free_sched_group(container_of(rhp, struct task_group, rcu));
8271 }
8272
8273 /* Destroy runqueue etc associated with a task group */
8274 void sched_destroy_group(struct task_group *tg)
8275 {
8276         unsigned long flags;
8277         int i;
8278
8279         spin_lock_irqsave(&task_group_lock, flags);
8280         for_each_possible_cpu(i) {
8281                 unregister_fair_sched_group(tg, i);
8282                 unregister_rt_sched_group(tg, i);
8283         }
8284         list_del_rcu(&tg->list);
8285         list_del_rcu(&tg->siblings);
8286         spin_unlock_irqrestore(&task_group_lock, flags);
8287
8288         /* wait for possible concurrent references to cfs_rqs complete */
8289         call_rcu(&tg->rcu, free_sched_group_rcu);
8290 }
8291
8292 /* change task's runqueue when it moves between groups.
8293  *      The caller of this function should have put the task in its new group
8294  *      by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8295  *      reflect its new group.
8296  */
8297 void sched_move_task(struct task_struct *tsk)
8298 {
8299         int on_rq, running;
8300         unsigned long flags;
8301         struct rq *rq;
8302
8303         rq = task_rq_lock(tsk, &flags);
8304
8305         update_rq_clock(rq);
8306
8307         running = task_current(rq, tsk);
8308         on_rq = tsk->se.on_rq;
8309
8310         if (on_rq)
8311                 dequeue_task(rq, tsk, 0);
8312         if (unlikely(running))
8313                 tsk->sched_class->put_prev_task(rq, tsk);
8314
8315         set_task_rq(tsk, task_cpu(tsk));
8316
8317 #ifdef CONFIG_FAIR_GROUP_SCHED
8318         if (tsk->sched_class->moved_group)
8319                 tsk->sched_class->moved_group(tsk);
8320 #endif
8321
8322         if (unlikely(running))
8323                 tsk->sched_class->set_curr_task(rq);
8324         if (on_rq)
8325                 enqueue_task(rq, tsk, 0);
8326
8327         task_rq_unlock(rq, &flags);
8328 }
8329 #endif
8330
8331 #ifdef CONFIG_FAIR_GROUP_SCHED
8332 static void set_se_shares(struct sched_entity *se, unsigned long shares)
8333 {
8334         struct cfs_rq *cfs_rq = se->cfs_rq;
8335         struct rq *rq = cfs_rq->rq;
8336         int on_rq;
8337
8338         spin_lock_irq(&rq->lock);
8339
8340         on_rq = se->on_rq;
8341         if (on_rq)
8342                 dequeue_entity(cfs_rq, se, 0);
8343
8344         se->load.weight = shares;
8345         se->load.inv_weight = 0;
8346
8347         if (on_rq)
8348                 enqueue_entity(cfs_rq, se, 0);
8349
8350         spin_unlock_irq(&rq->lock);
8351 }
8352
8353 static DEFINE_MUTEX(shares_mutex);
8354
8355 int sched_group_set_shares(struct task_group *tg, unsigned long shares)
8356 {
8357         int i;
8358         unsigned long flags;
8359
8360         /*
8361          * We can't change the weight of the root cgroup.
8362          */
8363         if (!tg->se[0])
8364                 return -EINVAL;
8365
8366         if (shares < MIN_SHARES)
8367                 shares = MIN_SHARES;
8368         else if (shares > MAX_SHARES)
8369                 shares = MAX_SHARES;
8370
8371         mutex_lock(&shares_mutex);
8372         if (tg->shares == shares)
8373                 goto done;
8374
8375         spin_lock_irqsave(&task_group_lock, flags);
8376         for_each_possible_cpu(i)
8377                 unregister_fair_sched_group(tg, i);
8378         list_del_rcu(&tg->siblings);
8379         spin_unlock_irqrestore(&task_group_lock, flags);
8380
8381         /* wait for any ongoing reference to this group to finish */
8382         synchronize_sched();
8383
8384         /*
8385          * Now we are free to modify the group's share on each cpu
8386          * w/o tripping rebalance_share or load_balance_fair.
8387          */
8388         tg->shares = shares;
8389         for_each_possible_cpu(i)
8390                 set_se_shares(tg->se[i], shares);
8391
8392         /*
8393          * Enable load balance activity on this group, by inserting it back on
8394          * each cpu's rq->leaf_cfs_rq_list.
8395          */
8396         spin_lock_irqsave(&task_group_lock, flags);
8397         for_each_possible_cpu(i)
8398                 register_fair_sched_group(tg, i);
8399         list_add_rcu(&tg->siblings, &tg->parent->children);
8400         spin_unlock_irqrestore(&task_group_lock, flags);
8401 done:
8402         mutex_unlock(&shares_mutex);
8403         return 0;
8404 }
8405
8406 unsigned long sched_group_shares(struct task_group *tg)
8407 {
8408         return tg->shares;
8409 }
8410 #endif
8411
8412 #ifdef CONFIG_RT_GROUP_SCHED
8413 /*
8414  * Ensure that the real time constraints are schedulable.
8415  */
8416 static DEFINE_MUTEX(rt_constraints_mutex);
8417
8418 static unsigned long to_ratio(u64 period, u64 runtime)
8419 {
8420         if (runtime == RUNTIME_INF)
8421                 return 1ULL << 16;
8422
8423         return div64_u64(runtime << 16, period);
8424 }
8425
8426 #ifdef CONFIG_CGROUP_SCHED
8427 static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8428 {
8429         struct task_group *tgi, *parent = tg ? tg->parent : NULL;
8430         unsigned long total = 0;
8431
8432         if (!parent) {
8433                 if (global_rt_period() < period)
8434                         return 0;
8435
8436                 return to_ratio(period, runtime) <
8437                         to_ratio(global_rt_period(), global_rt_runtime());
8438         }
8439
8440         if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8441                 return 0;
8442
8443         rcu_read_lock();
8444         list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8445                 if (tgi == tg)
8446                         continue;
8447
8448                 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8449                                 tgi->rt_bandwidth.rt_runtime);
8450         }
8451         rcu_read_unlock();
8452
8453         return total + to_ratio(period, runtime) <
8454                 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8455                                 parent->rt_bandwidth.rt_runtime);
8456 }
8457 #elif defined CONFIG_USER_SCHED
8458 static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8459 {
8460         struct task_group *tgi;
8461         unsigned long total = 0;
8462         unsigned long global_ratio =
8463                 to_ratio(global_rt_period(), global_rt_runtime());
8464
8465         rcu_read_lock();
8466         list_for_each_entry_rcu(tgi, &task_groups, list) {
8467                 if (tgi == tg)
8468                         continue;
8469
8470                 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8471                                 tgi->rt_bandwidth.rt_runtime);
8472         }
8473         rcu_read_unlock();
8474
8475         return total + to_ratio(period, runtime) < global_ratio;
8476 }
8477 #endif
8478
8479 /* Must be called with tasklist_lock held */
8480 static inline int tg_has_rt_tasks(struct task_group *tg)
8481 {
8482         struct task_struct *g, *p;
8483         do_each_thread(g, p) {
8484                 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8485                         return 1;
8486         } while_each_thread(g, p);
8487         return 0;
8488 }
8489
8490 static int tg_set_bandwidth(struct task_group *tg,
8491                 u64 rt_period, u64 rt_runtime)
8492 {
8493         int i, err = 0;
8494
8495         mutex_lock(&rt_constraints_mutex);
8496         read_lock(&tasklist_lock);
8497         if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
8498                 err = -EBUSY;
8499                 goto unlock;
8500         }
8501         if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8502                 err = -EINVAL;
8503                 goto unlock;
8504         }
8505
8506         spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
8507         tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8508         tg->rt_bandwidth.rt_runtime = rt_runtime;
8509
8510         for_each_possible_cpu(i) {
8511                 struct rt_rq *rt_rq = tg->rt_rq[i];
8512
8513                 spin_lock(&rt_rq->rt_runtime_lock);
8514                 rt_rq->rt_runtime = rt_runtime;
8515                 spin_unlock(&rt_rq->rt_runtime_lock);
8516         }
8517         spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
8518  unlock:
8519         read_unlock(&tasklist_lock);
8520         mutex_unlock(&rt_constraints_mutex);
8521
8522         return err;
8523 }
8524
8525 int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8526 {
8527         u64 rt_runtime, rt_period;
8528
8529         rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8530         rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8531         if (rt_runtime_us < 0)
8532                 rt_runtime = RUNTIME_INF;
8533
8534         return tg_set_bandwidth(tg, rt_period, rt_runtime);
8535 }
8536
8537 long sched_group_rt_runtime(struct task_group *tg)
8538 {
8539         u64 rt_runtime_us;
8540
8541         if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
8542                 return -1;
8543
8544         rt_runtime_us = tg->rt_bandwidth.rt_runtime;
8545         do_div(rt_runtime_us, NSEC_PER_USEC);
8546         return rt_runtime_us;
8547 }
8548
8549 int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8550 {
8551         u64 rt_runtime, rt_period;
8552
8553         rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8554         rt_runtime = tg->rt_bandwidth.rt_runtime;
8555
8556         if (rt_period == 0)
8557                 return -EINVAL;
8558
8559         return tg_set_bandwidth(tg, rt_period, rt_runtime);
8560 }
8561
8562 long sched_group_rt_period(struct task_group *tg)
8563 {
8564         u64 rt_period_us;
8565
8566         rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8567         do_div(rt_period_us, NSEC_PER_USEC);
8568         return rt_period_us;
8569 }
8570
8571 static int sched_rt_global_constraints(void)
8572 {
8573         int ret = 0;
8574
8575         mutex_lock(&rt_constraints_mutex);
8576         if (!__rt_schedulable(NULL, 1, 0))
8577                 ret = -EINVAL;
8578         mutex_unlock(&rt_constraints_mutex);
8579
8580         return ret;
8581 }
8582 #else
8583 static int sched_rt_global_constraints(void)
8584 {
8585         unsigned long flags;
8586         int i;
8587
8588         spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8589         for_each_possible_cpu(i) {
8590                 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8591
8592                 spin_lock(&rt_rq->rt_runtime_lock);
8593                 rt_rq->rt_runtime = global_rt_runtime();
8594                 spin_unlock(&rt_rq->rt_runtime_lock);
8595         }
8596         spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8597
8598         return 0;
8599 }
8600 #endif
8601
8602 int sched_rt_handler(struct ctl_table *table, int write,
8603                 struct file *filp, void __user *buffer, size_t *lenp,
8604                 loff_t *ppos)
8605 {
8606         int ret;
8607         int old_period, old_runtime;
8608         static DEFINE_MUTEX(mutex);
8609
8610         mutex_lock(&mutex);
8611         old_period = sysctl_sched_rt_period;
8612         old_runtime = sysctl_sched_rt_runtime;
8613
8614         ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8615
8616         if (!ret && write) {
8617                 ret = sched_rt_global_constraints();
8618                 if (ret) {
8619                         sysctl_sched_rt_period = old_period;
8620                         sysctl_sched_rt_runtime = old_runtime;
8621                 } else {
8622                         def_rt_bandwidth.rt_runtime = global_rt_runtime();
8623                         def_rt_bandwidth.rt_period =
8624                                 ns_to_ktime(global_rt_period());
8625                 }
8626         }
8627         mutex_unlock(&mutex);
8628
8629         return ret;
8630 }
8631
8632 #ifdef CONFIG_CGROUP_SCHED
8633
8634 /* return corresponding task_group object of a cgroup */
8635 static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
8636 {
8637         return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8638                             struct task_group, css);
8639 }
8640
8641 static struct cgroup_subsys_state *
8642 cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
8643 {
8644         struct task_group *tg, *parent;
8645
8646         if (!cgrp->parent) {
8647                 /* This is early initialization for the top cgroup */
8648                 init_task_group.css.cgroup = cgrp;
8649                 return &init_task_group.css;
8650         }
8651
8652         parent = cgroup_tg(cgrp->parent);
8653         tg = sched_create_group(parent);
8654         if (IS_ERR(tg))
8655                 return ERR_PTR(-ENOMEM);
8656
8657         /* Bind the cgroup to task_group object we just created */
8658         tg->css.cgroup = cgrp;
8659
8660         return &tg->css;
8661 }
8662
8663 static void
8664 cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
8665 {
8666         struct task_group *tg = cgroup_tg(cgrp);
8667
8668         sched_destroy_group(tg);
8669 }
8670
8671 static int
8672 cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8673                       struct task_struct *tsk)
8674 {
8675 #ifdef CONFIG_RT_GROUP_SCHED
8676         /* Don't accept realtime tasks when there is no way for them to run */
8677         if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
8678                 return -EINVAL;
8679 #else
8680         /* We don't support RT-tasks being in separate groups */
8681         if (tsk->sched_class != &fair_sched_class)
8682                 return -EINVAL;
8683 #endif
8684
8685         return 0;
8686 }
8687
8688 static void
8689 cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8690                         struct cgroup *old_cont, struct task_struct *tsk)
8691 {
8692         sched_move_task(tsk);
8693 }
8694
8695 #ifdef CONFIG_FAIR_GROUP_SCHED
8696 static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
8697                                 u64 shareval)
8698 {
8699         return sched_group_set_shares(cgroup_tg(cgrp), shareval);
8700 }
8701
8702 static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
8703 {
8704         struct task_group *tg = cgroup_tg(cgrp);
8705
8706         return (u64) tg->shares;
8707 }
8708 #endif
8709
8710 #ifdef CONFIG_RT_GROUP_SCHED
8711 static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
8712                                 s64 val)
8713 {
8714         return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
8715 }
8716
8717 static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
8718 {
8719         return sched_group_rt_runtime(cgroup_tg(cgrp));
8720 }
8721
8722 static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8723                 u64 rt_period_us)
8724 {
8725         return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
8726 }
8727
8728 static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
8729 {
8730         return sched_group_rt_period(cgroup_tg(cgrp));
8731 }
8732 #endif
8733
8734 static struct cftype cpu_files[] = {
8735 #ifdef CONFIG_FAIR_GROUP_SCHED
8736         {
8737                 .name = "shares",
8738                 .read_u64 = cpu_shares_read_u64,
8739                 .write_u64 = cpu_shares_write_u64,
8740         },
8741 #endif
8742 #ifdef CONFIG_RT_GROUP_SCHED
8743         {
8744                 .name = "rt_runtime_us",
8745                 .read_s64 = cpu_rt_runtime_read,
8746                 .write_s64 = cpu_rt_runtime_write,
8747         },
8748         {
8749                 .name = "rt_period_us",
8750                 .read_u64 = cpu_rt_period_read_uint,
8751                 .write_u64 = cpu_rt_period_write_uint,
8752         },
8753 #endif
8754 };
8755
8756 static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8757 {
8758         return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
8759 }
8760
8761 struct cgroup_subsys cpu_cgroup_subsys = {
8762         .name           = "cpu",
8763         .create         = cpu_cgroup_create,
8764         .destroy        = cpu_cgroup_destroy,
8765         .can_attach     = cpu_cgroup_can_attach,
8766         .attach         = cpu_cgroup_attach,
8767         .populate       = cpu_cgroup_populate,
8768         .subsys_id      = cpu_cgroup_subsys_id,
8769         .early_init     = 1,
8770 };
8771
8772 #endif  /* CONFIG_CGROUP_SCHED */
8773
8774 #ifdef CONFIG_CGROUP_CPUACCT
8775
8776 /*
8777  * CPU accounting code for task groups.
8778  *
8779  * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
8780  * (balbir@in.ibm.com).
8781  */
8782
8783 /* track cpu usage of a group of tasks */
8784 struct cpuacct {
8785         struct cgroup_subsys_state css;
8786         /* cpuusage holds pointer to a u64-type object on every cpu */
8787         u64 *cpuusage;
8788 };
8789
8790 struct cgroup_subsys cpuacct_subsys;
8791
8792 /* return cpu accounting group corresponding to this container */
8793 static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
8794 {
8795         return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
8796                             struct cpuacct, css);
8797 }
8798
8799 /* return cpu accounting group to which this task belongs */
8800 static inline struct cpuacct *task_ca(struct task_struct *tsk)
8801 {
8802         return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8803                             struct cpuacct, css);
8804 }
8805
8806 /* create a new cpu accounting group */
8807 static struct cgroup_subsys_state *cpuacct_create(
8808         struct cgroup_subsys *ss, struct cgroup *cgrp)
8809 {
8810         struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8811
8812         if (!ca)
8813                 return ERR_PTR(-ENOMEM);
8814
8815         ca->cpuusage = alloc_percpu(u64);
8816         if (!ca->cpuusage) {
8817                 kfree(ca);
8818                 return ERR_PTR(-ENOMEM);
8819         }
8820
8821         return &ca->css;
8822 }
8823
8824 /* destroy an existing cpu accounting group */
8825 static void
8826 cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
8827 {
8828         struct cpuacct *ca = cgroup_ca(cgrp);
8829
8830         free_percpu(ca->cpuusage);
8831         kfree(ca);
8832 }
8833
8834 /* return total cpu usage (in nanoseconds) of a group */
8835 static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
8836 {
8837         struct cpuacct *ca = cgroup_ca(cgrp);
8838         u64 totalcpuusage = 0;
8839         int i;
8840
8841         for_each_possible_cpu(i) {
8842                 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8843
8844                 /*
8845                  * Take rq->lock to make 64-bit addition safe on 32-bit
8846                  * platforms.
8847                  */
8848                 spin_lock_irq(&cpu_rq(i)->lock);
8849                 totalcpuusage += *cpuusage;
8850                 spin_unlock_irq(&cpu_rq(i)->lock);
8851         }
8852
8853         return totalcpuusage;
8854 }
8855
8856 static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
8857                                                                 u64 reset)
8858 {
8859         struct cpuacct *ca = cgroup_ca(cgrp);
8860         int err = 0;
8861         int i;
8862
8863         if (reset) {
8864                 err = -EINVAL;
8865                 goto out;
8866         }
8867
8868         for_each_possible_cpu(i) {
8869                 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8870
8871                 spin_lock_irq(&cpu_rq(i)->lock);
8872                 *cpuusage = 0;
8873                 spin_unlock_irq(&cpu_rq(i)->lock);
8874         }
8875 out:
8876         return err;
8877 }
8878
8879 static struct cftype files[] = {
8880         {
8881                 .name = "usage",
8882                 .read_u64 = cpuusage_read,
8883                 .write_u64 = cpuusage_write,
8884         },
8885 };
8886
8887 static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
8888 {
8889         return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
8890 }
8891
8892 /*
8893  * charge this task's execution time to its accounting group.
8894  *
8895  * called with rq->lock held.
8896  */
8897 static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8898 {
8899         struct cpuacct *ca;
8900
8901         if (!cpuacct_subsys.active)
8902                 return;
8903
8904         ca = task_ca(tsk);
8905         if (ca) {
8906                 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8907
8908                 *cpuusage += cputime;
8909         }
8910 }
8911
8912 struct cgroup_subsys cpuacct_subsys = {
8913         .name = "cpuacct",
8914         .create = cpuacct_create,
8915         .destroy = cpuacct_destroy,
8916         .populate = cpuacct_populate,
8917         .subsys_id = cpuacct_subsys_id,
8918 };
8919 #endif  /* CONFIG_CGROUP_CPUACCT */