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