blob: f06950c8a6ce17b95624bccc63ecfb399d2eb40c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Ingo Molnarc31f2e82007-07-09 18:52:01 +020019 * 2007-04-15 Work begun on replacing all interactivity tuning with a
20 * fair scheduling design by Con Kolivas.
21 * 2007-05-05 Load balancing (smp-nice) and other improvements
22 * by Peter Williams
23 * 2007-05-06 Interactivity improvements to CFS by Mike Galbraith
24 * 2007-07-01 Group scheduling enhancements by Srivatsa Vaddagiri
Ingo Molnarb9131762008-01-25 21:08:19 +010025 * 2007-11-29 RT balancing improvements by Steven Rostedt, Gregory Haskins,
26 * Thomas Gleixner, Mike Kravetz
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
29#include <linux/mm.h>
30#include <linux/module.h>
31#include <linux/nmi.h>
32#include <linux/init.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/highmem.h>
35#include <linux/smp_lock.h>
36#include <asm/mmu_context.h>
37#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080038#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/completion.h>
40#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070041#include <linux/debug_locks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/security.h>
43#include <linux/notifier.h>
44#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080045#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080046#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/blkdev.h>
48#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070049#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/smp.h>
51#include <linux/threads.h>
52#include <linux/timer.h>
53#include <linux/rcupdate.h>
54#include <linux/cpu.h>
55#include <linux/cpuset.h>
56#include <linux/percpu.h>
57#include <linux/kthread.h>
58#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020059#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/syscalls.h>
61#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070062#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080063#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070064#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070065#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020066#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020067#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010068#include <linux/hrtimer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Dumazet5517d862007-05-08 00:32:57 -070070#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020071#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080074 * 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{
Eric Dumazetd6322fa2007-11-09 22:39:38 +010080 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080081}
82
83/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * 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/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100102 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100104#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200106#define NICE_0_LOAD SCHED_LOAD_SCALE
107#define NICE_0_SHIFT SCHED_LOAD_SHIFT
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * These are the 'tuning knobs' of the scheduler:
111 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200112 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * Timeslices get refilled after they expire.
114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700116
Eric Dumazet5517d862007-05-08 00:32:57 -0700117#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
Ingo Molnare05606d2007-07-09 18:51:59 +0200138static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200151 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200153struct 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};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100158#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200159
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700160#include <linux/cgroup.h>
161
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200162struct cfs_rq;
163
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100164static LIST_HEAD(task_groups);
165
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200166/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200167struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100168#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700169 struct cgroup_subsys_state css;
170#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100171
172#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200173 /* 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;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100177
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%
Ingo Molnar03319ec2008-01-25 21:08:28 +0100190 * Bw(C) = 3000/(1000+2000+3000) * 100 = 50%
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100191 *
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
Ingo Molnar03319ec2008-01-25 21:08:28 +0100200 * 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:
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100203 *
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 */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200212 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100213#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
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100221
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100222 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100223 struct list_head list;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200224};
225
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100226#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200227/* 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
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100232static struct sched_entity *init_sched_entity_p[NR_CPUS];
233static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
234#endif
235
236#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100237static 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;
239
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100240static struct sched_rt_entity *init_sched_rt_entity_p[NR_CPUS];
241static struct rt_rq *init_rt_rq_p[NR_CPUS];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100242#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100243
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100244/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100245 * a task group's cpu shares.
246 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100247static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100248
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100249/* doms_cur_mutex serializes access to doms_cur[] array */
250static DEFINE_MUTEX(doms_cur_mutex);
251
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100252#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100253#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
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100261#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100262# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200263#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100264# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200265#endif
266
Ingo Molnar0eab9142008-01-25 21:08:19 +0100267#define MIN_GROUP_SHARES 2
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100268
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100269static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100270#endif
271
272/* Default task group.
273 * Every task in system belong to this group at bootup.
274 */
275struct task_group init_task_group = {
276#ifdef CONFIG_FAIR_GROUP_SCHED
277 .se = init_sched_entity_p,
278 .cfs_rq = init_cfs_rq_p,
279#endif
280
281#ifdef CONFIG_RT_GROUP_SCHED
282 .rt_se = init_sched_rt_entity_p,
283 .rt_rq = init_rt_rq_p,
284#endif
285};
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200286
287/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200288static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200289{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200290 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200291
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100292#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200293 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100294#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700295 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
296 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200297#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100298 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200299#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200300 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200301}
302
303/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100304static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200305{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100306#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100307 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
308 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100309#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100310
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100311#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100312 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
313 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100314#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200315}
316
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100317static 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
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200327#else
328
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100329static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100330static inline void lock_doms_cur(void) { }
331static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200332
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100333#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200334
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200335/* CFS-related fields in a runqueue */
336struct cfs_rq {
337 struct load_weight load;
338 unsigned long nr_running;
339
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200340 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200341 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200342
343 struct rb_root tasks_timeline;
344 struct rb_node *rb_leftmost;
345 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200346 /* '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;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200350
351 unsigned long nr_spread_over;
352
Ingo Molnar62160e32007-10-15 17:00:03 +0200353#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200354 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
355
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100356 /*
357 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200358 * 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 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100364 struct list_head leaf_cfs_rq_list;
365 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200366#endif
367};
368
369/* Real-Time classes' related field in a runqueue: */
370struct rt_rq {
371 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100372 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100373#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100374 int highest_prio; /* highest queued rt task prio */
375#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100376#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100377 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100378 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100379#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100380 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100381 u64 rt_time;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100382
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100383#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100384 unsigned long rt_nr_boosted;
385
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100386 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
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200391};
392
Gregory Haskins57d885f2008-01-25 21:08:18 +0100393#ifdef CONFIG_SMP
394
395/*
396 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100397 * variables. Each exclusive cpuset essentially defines an island domain by
398 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100399 * exclusive cpuset is created, we also create and attach a new root-domain
400 * object.
401 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100402 */
403struct root_domain {
404 atomic_t refcount;
405 cpumask_t span;
406 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100407
Ingo Molnar0eab9142008-01-25 21:08:19 +0100408 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100409 * The "RT overload" flag: it gets set if a CPU has more than
410 * one runnable RT task.
411 */
412 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100413 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100414};
415
Gregory Haskinsdc938522008-01-25 21:08:26 +0100416/*
417 * By default the system creates a single root-domain with all cpus as
418 * members (mimicking the global state we have today).
419 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100420static struct root_domain def_root_domain;
421
422#endif
423
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200424/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 * 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 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700431struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200432 /* runqueue lock: */
433 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
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;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200440 #define CPU_LOAD_IDX_MAX 5
441 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700442 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700443#ifdef CONFIG_NO_HZ
444 unsigned char in_nohz_recently;
445#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200446 /* capture load from *all* tasks on this cpu: */
447 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200448 unsigned long nr_load_updates;
449 u64 nr_switches;
450
451 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100452 struct rt_rq rt;
453 u64 rt_period_expire;
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100454 int rt_throttled;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100455
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200456#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200457 /* list of leaf cfs_rq on this cpu: */
458 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100459#endif
460#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100461 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
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
Ingo Molnar36c8b582006-07-03 00:25:41 -0700472 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800473 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200475
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200476 u64 clock, prev_clock_raw;
477 s64 clock_max_delta;
478
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100479 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200480 u64 idle_clock;
481 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200482 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 atomic_t nr_iowait;
485
486#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100487 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 struct sched_domain *sd;
489
490 /* For active balancing */
491 int active_balance;
492 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200493 /* cpu of this runqueue: */
494 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Ingo Molnar36c8b582006-07-03 00:25:41 -0700496 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct list_head migration_queue;
498#endif
499
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100500#ifdef CONFIG_SCHED_HRTICK
501 unsigned long hrtick_flags;
502 ktime_t hrtick_expire;
503 struct hrtimer hrtick_timer;
504#endif
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506#ifdef CONFIG_SCHEDSTATS
507 /* latency stats */
508 struct sched_info rq_sched_info;
509
510 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200511 unsigned int yld_exp_empty;
512 unsigned int yld_act_empty;
513 unsigned int yld_both_empty;
514 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200517 unsigned int sched_switch;
518 unsigned int sched_count;
519 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200522 unsigned int ttwu_count;
523 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200524
525 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200526 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700528 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529};
530
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700531static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Ingo Molnardd41f592007-07-09 18:51:59 +0200533static 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
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700538static 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
Nick Piggin674311d2005-06-25 14:57:27 -0700547/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200548 * Update the per-runqueue clock, as finegrained as the platform can give
549 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200550 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200551static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200552{
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
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200558#ifdef CONFIG_SCHED_DEBUG
559 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
560#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200561 /*
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 */
Ingo Molnar529c7722007-08-10 23:05:11 +0200571 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++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200576 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;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200586}
587
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200588static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200589{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200590 if (likely(smp_processor_id() == cpu_of(rq)))
591 __update_rq_clock(rq);
592}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200593
Ingo Molnar20d315d2007-07-09 18:51:58 +0200594/*
Nick Piggin674311d2005-06-25 14:57:27 -0700595 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700596 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700597 *
598 * The domain tree of any CPU may only be accessed from within
599 * preempt-disabled sections.
600 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700601#define for_each_domain(cpu, __sd) \
602 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
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
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100609unsigned 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
Ingo Molnare436d802007-07-19 21:28:35 +0200626/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200627 * 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 {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200639 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100640 SCHED_FEAT_WAKEUP_PREEMPT = 2,
641 SCHED_FEAT_START_DEBIT = 4,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100642 SCHED_FEAT_TREE_AVG = 8,
643 SCHED_FEAT_APPROX_AVG = 16,
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100644 SCHED_FEAT_HRTICK = 32,
645 SCHED_FEAT_DOUBLE_TICK = 64,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200646};
647
648const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200649 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100650 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200651 SCHED_FEAT_START_DEBIT * 1 |
652 SCHED_FEAT_TREE_AVG * 0 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100653 SCHED_FEAT_APPROX_AVG * 0 |
654 SCHED_FEAT_HRTICK * 1 |
655 SCHED_FEAT_DOUBLE_TICK * 0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200656
657#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
658
659/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100660 * 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
665/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100666 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100667 * default: 1s
668 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100669unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100670
Ingo Molnar6892b752008-02-13 14:02:36 +0100671static __read_mostly int scheduler_running;
672
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100673/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100674 * part of the period that we allow rt tasks to run in us.
675 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100676 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100677int sysctl_sched_rt_runtime = 950000;
678
679/*
680 * single value that denotes runtime == period, ie unlimited time.
681 */
682#define RUNTIME_INF ((u64)~0ULL)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100683
684/*
Ingo Molnare436d802007-07-19 21:28:35 +0200685 * 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{
Ingo Molnare436d802007-07-19 21:28:35 +0200690 unsigned long long now;
691 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200692 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200693
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100694 /*
695 * Only call sched_clock() if the scheduler has already been
696 * initialized (some code might call cpu_clock() very early):
697 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100698 if (unlikely(!scheduler_running))
699 return 0;
700
701 local_irq_save(flags);
702 rq = cpu_rq(cpu);
703 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200704 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200705 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200706
707 return now;
708}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200709EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700712# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700714#ifndef finish_arch_switch
715# define finish_arch_switch(prev) do { } while (0)
716#endif
717
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100718static inline int task_current(struct rq *rq, struct task_struct *p)
719{
720 return rq->curr == p;
721}
722
Nick Piggin4866cde2005-06-25 14:57:23 -0700723#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700724static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700725{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100726 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700727}
728
Ingo Molnar70b97a72006-07-03 00:25:42 -0700729static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700730{
731}
732
Ingo Molnar70b97a72006-07-03 00:25:42 -0700733static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700734{
Ingo Molnarda04c032005-09-13 11:17:59 +0200735#ifdef CONFIG_DEBUG_SPINLOCK
736 /* this is a valid case when another task releases the spinlock */
737 rq->lock.owner = current;
738#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700739 /*
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
Nick Piggin4866cde2005-06-25 14:57:23 -0700746 spin_unlock_irq(&rq->lock);
747}
748
749#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700750static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700751{
752#ifdef CONFIG_SMP
753 return p->oncpu;
754#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100755 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700756#endif
757}
758
Ingo Molnar70b97a72006-07-03 00:25:42 -0700759static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700760{
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
Ingo Molnar70b97a72006-07-03 00:25:42 -0700776static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700777{
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();
789#endif
790}
791#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700794 * __task_rq_lock - lock the runqueue a given task resides on.
795 * Must be called interrupts disabled.
796 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700797static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700798 __acquires(rq->lock)
799{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200800 for (;;) {
801 struct rq *rq = task_rq(p);
802 spin_lock(&rq->lock);
803 if (likely(rq == task_rq(p)))
804 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700805 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700806 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700807}
808
809/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100811 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * explicitly disabling preemption.
813 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700814static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 __acquires(rq->lock)
816{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700817 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Andi Kleen3a5c3592007-10-15 17:00:14 +0200819 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Alexey Dobriyana9957442007-10-15 17:00:13 +0200829static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700830 __releases(rq->lock)
831{
832 spin_unlock(&rq->lock);
833}
834
Ingo Molnar70b97a72006-07-03 00:25:42 -0700835static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 __releases(rq->lock)
837{
838 spin_unlock_irqrestore(&rq->lock, *flags);
839}
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800842 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200844static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 __acquires(rq->lock)
846{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700847 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 local_irq_disable();
850 rq = this_rq();
851 spin_lock(&rq->lock);
852
853 return rq;
854}
855
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200856/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200857 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200858 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200859void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200860{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200861 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200862
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200863 spin_lock(&rq->lock);
864 __update_rq_clock(rq);
865 spin_unlock(&rq->lock);
866 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200867}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200868EXPORT_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();
877
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);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100889 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200890}
891EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200892
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100893static 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
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001060/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001061 * 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
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001073static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001074{
1075 int cpu;
1076
1077 assert_spin_locked(&task_rq(p)->lock);
1078
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001079 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001080 return;
1081
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001082 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001083
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
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001105static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001106{
1107 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001108 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001109}
1110#endif
1111
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001112#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
Ingo Molnar194081e2007-08-09 11:16:51 +02001120/*
1121 * Shift right and round:
1122 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001123#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001124
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001125static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001126calc_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))
Ingo Molnar194081e2007-08-09 11:16:51 +02001132 lw->inv_weight = (WMULT_CONST - lw->weight/2) / lw->weight + 1;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001133
1134 tmp = (u64)delta_exec * weight;
1135 /*
1136 * Check whether we'd overflow the 64-bit multiplication:
1137 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001138 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001139 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001140 WMULT_SHIFT/2);
1141 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001142 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001143
Ingo Molnarecf691d2007-08-02 17:41:40 +02001144 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001145}
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
Ingo Molnar10919852007-10-15 17:00:04 +02001153static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001154{
1155 lw->weight += inc;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001156}
1157
Ingo Molnar10919852007-10-15 17:00:04 +02001158static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001159{
1160 lw->weight -= dec;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001161}
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001164 * 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
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001167 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001168 * scaled version of the new time slice allocation that they receive on time
1169 * slice expiry etc.
1170 */
1171
Ingo Molnardd41f592007-07-09 18:51:59 +02001172#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
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001183 * 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%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001186 */
1187static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001188 /* -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,
Ingo Molnardd41f592007-07-09 18:51:59 +02001196};
1197
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001198/*
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 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001205static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001206 /* -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,
Ingo Molnardd41f592007-07-09 18:51:59 +02001214};
Peter Williams2dd73a42006-06-27 02:54:34 -07001215
Ingo Molnardd41f592007-07-09 18:51:59 +02001216static 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
Peter Williamse1d14842007-10-24 18:23:51 +02001229#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);
Peter Williamse1d14842007-10-24 18:23:51 +02001240#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001241
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001242#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
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +01001248static 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
Gregory Haskinse7693a32008-01-25 21:08:09 +01001258#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
Ingo Molnardd41f592007-07-09 18:51:59 +02001265#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001266#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001267#include "sched_fair.c"
1268#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001269#ifdef CONFIG_SCHED_DEBUG
1270# include "sched_debug.c"
1271#endif
1272
1273#define sched_class_highest (&rt_sched_class)
1274
Gerald Stralko5aff0532008-01-31 22:45:23 +01001275static void inc_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001276{
1277 rq->nr_running++;
Ingo Molnar9c217242007-08-02 17:41:40 +02001278}
1279
Gerald Stralko5aff0532008-01-31 22:45:23 +01001280static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001281{
1282 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001283}
1284
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001285static void set_load_weight(struct task_struct *p)
1286{
1287 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001288 p->se.load.weight = prio_to_weight[0] * 2;
1289 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1290 return;
1291 }
1292
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 }
1301
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];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001304}
1305
Ingo Molnar8159f872007-08-09 11:16:49 +02001306static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001307{
1308 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001309 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001310 p->se.on_rq = 1;
1311}
1312
Ingo Molnar69be72c2007-08-09 11:16:49 +02001313static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001314{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001315 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001316 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001317}
1318
1319/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001320 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001321 */
Ingo Molnar14531182007-07-09 18:51:59 +02001322static inline int __normal_prio(struct task_struct *p)
1323{
Ingo Molnardd41f592007-07-09 18:51:59 +02001324 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001325}
1326
1327/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001328 * 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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001334static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001335{
1336 int prio;
1337
Ingo Molnare05606d2007-07-09 18:51:59 +02001338 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001339 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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001352static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001353{
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
1365/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001366 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001368static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001370 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001371 rq->nr_uninterruptible--;
1372
Ingo Molnar8159f872007-08-09 11:16:49 +02001373 enqueue_task(rq, p, wakeup);
Gerald Stralko5aff0532008-01-31 22:45:23 +01001374 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
1377/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 * deactivate_task - remove a task from the runqueue.
1379 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001380static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001382 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001383 rq->nr_uninterruptible++;
1384
Ingo Molnar69be72c2007-08-09 11:16:49 +02001385 dequeue_task(rq, p, sleep);
Gerald Stralko5aff0532008-01-31 22:45:23 +01001386 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389/**
1390 * task_curr - is this task currently executing on a CPU?
1391 * @p: the task in question.
1392 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001393inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 return cpu_curr(task_cpu(p)) == p;
1396}
1397
Peter Williams2dd73a42006-06-27 02:54:34 -07001398/* Used instead of source_load when we know the type == 0 */
1399unsigned long weighted_cpuload(const int cpu)
1400{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001401 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001402}
1403
1404static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1405{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001406 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001407#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001408 /*
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();
Ingo Molnardd41f592007-07-09 18:51:59 +02001414 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001415#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001416}
1417
Steven Rostedtcb469842008-01-25 21:08:22 +01001418static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001431
Ingo Molnarcc367732007-10-15 17:00:18 +02001432/*
1433 * Is this task likely cache-hot:
1434 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001435static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001436task_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
Ingo Molnar6bc16652007-10-15 17:00:18 +02001443 if (sysctl_sched_migration_cost == -1)
1444 return 1;
1445 if (sysctl_sched_migration_cost == 0)
1446 return 0;
1447
Ingo Molnarcc367732007-10-15 17:00:18 +02001448 delta = now - p->se.exec_start;
1449
1450 return delta < (s64)sysctl_sched_migration_cost;
1451}
1452
1453
Ingo Molnardd41f592007-07-09 18:51:59 +02001454void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001455{
Ingo Molnardd41f592007-07-09 18:51:59 +02001456 int old_cpu = task_cpu(p);
1457 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001458 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1459 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001460 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001461
1462 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001463
1464#ifdef CONFIG_SCHEDSTATS
1465 if (p->se.wait_start)
1466 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001467 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;
Ingo Molnarcc367732007-10-15 17:00:18 +02001471 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 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001476#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001477 p->se.vruntime -= old_cfsrq->min_vruntime -
1478 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001479
1480 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001481}
1482
Ingo Molnar70b97a72006-07-03 00:25:42 -07001483struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Ingo Molnar36c8b582006-07-03 00:25:41 -07001486 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 int dest_cpu;
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001490};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492/*
1493 * The task's runqueue lock must be held.
1494 * Returns true if you have to wait for migration thread.
1495 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001496static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001497migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001499 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
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 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001505 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 set_task_cpu(p, dest_cpu);
1507 return 0;
1508 }
1509
1510 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 req->task = p;
1512 req->dest_cpu = dest_cpu;
1513 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001527void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001530 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001531 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Andi Kleen3a5c3592007-10-15 17:00:14 +02001533 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);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001541
Andi Kleen3a5c3592007-10-15 17:00:14 +02001542 /*
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();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001555
Andi Kleen3a5c3592007-10-15 17:00:14 +02001556 /*
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);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001565
Andi Kleen3a5c3592007-10-15 17:00:14 +02001566 /*
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 }
1576
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 }
1590
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001613void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
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/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001625 * Return a low guess at the load of a migration-source cpu weighted
1626 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 *
1628 * We want to under-estimate the load of migration sources, to
1629 * balance conservatively.
1630 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001631static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001632{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001633 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001634 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001635
Peter Williams2dd73a42006-06-27 02:54:34 -07001636 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001637 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001638
Ingo Molnardd41f592007-07-09 18:51:59 +02001639 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
1641
1642/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001643 * Return a high guess at the load of a migration-target cpu weighted
1644 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001646static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001647{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001648 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001649 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001650
Peter Williams2dd73a42006-06-27 02:54:34 -07001651 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001652 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001653
Ingo Molnardd41f592007-07-09 18:51:59 +02001654 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001655}
1656
1657/*
1658 * Return the average load per task on the cpu's run queue
1659 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001660static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001661{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001662 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001663 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001664 unsigned long n = rq->nr_running;
1665
Ingo Molnardd41f592007-07-09 18:51:59 +02001666 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
Nick Piggin147cbb42005-06-25 14:57:19 -07001669/*
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
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001686 /* Skip over this group if it has no CPUs allowed */
1687 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001688 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001689
Nick Piggin147cbb42005-06-25 14:57:19 -07001690 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001691
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 */
Eric Dumazet5517d862007-05-08 00:32:57 -07001706 avg_load = sg_div_cpu_power(group,
1707 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001708
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 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001716 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001717
1718 if (!idlest || 100*this_load < imbalance*min_load)
1719 return NULL;
1720 return idlest;
1721}
1722
1723/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001724 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001725 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001726static int
1727find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001728{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001729 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001730 unsigned long load, min_load = ULONG_MAX;
1731 int idlest = -1;
1732 int i;
1733
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001734 /* Traverse only the allowed CPUs */
1735 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1736
1737 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001738 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001739
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
Nick Piggin476d1392005-06-25 14:57:29 -07001749/*
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;
Nick Piggin147cbb42005-06-25 14:57:19 -07001764
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001765 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001766 /*
1767 * If power savings logic is enabled for a domain, stop there.
1768 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001769 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1770 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001771 if (tmp->flags & flag)
1772 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001773 }
Nick Piggin476d1392005-06-25 14:57:29 -07001774
1775 while (sd) {
1776 cpumask_t span;
1777 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001778 int new_cpu, weight;
1779
1780 if (!(sd->flags & flag)) {
1781 sd = sd->child;
1782 continue;
1783 }
Nick Piggin476d1392005-06-25 14:57:29 -07001784
1785 span = sd->span;
1786 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001787 if (!group) {
1788 sd = sd->child;
1789 continue;
1790 }
Nick Piggin476d1392005-06-25 14:57:29 -07001791
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001792 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001793 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 }
Nick Piggin476d1392005-06-25 14:57:29 -07001798
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001799 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001800 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001801 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817/***
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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001831static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
Ingo Molnarcc367732007-10-15 17:00:18 +02001833 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 unsigned long flags;
1835 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001836 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Linus Torvalds04e2f172008-02-23 18:05:03 -08001838 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 rq = task_rq_lock(p, &flags);
1840 old_state = p->state;
1841 if (!(old_state & state))
1842 goto out;
1843
Ingo Molnardd41f592007-07-09 18:51:59 +02001844 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 goto out_running;
1846
1847 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001848 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 this_cpu = smp_processor_id();
1850
1851#ifdef CONFIG_SMP
1852 if (unlikely(task_running(rq, p)))
1853 goto out_activate;
1854
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01001855 cpu = p->sched_class->select_task_rq(p, sync);
1856 if (cpu != orig_cpu) {
1857 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 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;
Ingo Molnardd41f592007-07-09 18:51:59 +02001864 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 goto out_running;
1866
1867 this_cpu = smp_processor_id();
1868 cpu = task_cpu(p);
1869 }
1870
Gregory Haskinse7693a32008-01-25 21:08:09 +01001871#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 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001884#endif
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886out_activate:
1887#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02001888 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);
Ingo Molnar2daa3572007-08-09 11:16:51 +02001897 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001898 activate_task(rq, p, 1);
Ingo Molnar9c63d9c2007-10-15 17:00:20 +02001899 check_preempt_curr(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 success = 1;
1901
1902out_running:
1903 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001904#ifdef CONFIG_SMP
1905 if (p->sched_class->task_wake_up)
1906 p->sched_class->task_wake_up(rq, p);
1907#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908out:
1909 task_rq_unlock(rq, &flags);
1910
1911 return success;
1912}
1913
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001914int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001916 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918EXPORT_SYMBOL(wake_up_process);
1919
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001920int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
1922 return try_to_wake_up(p, state, 0);
1923}
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925/*
1926 * Perform scheduler related setup for a newly forked process p.
1927 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001928 *
1929 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001931static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Ingo Molnardd41f592007-07-09 18:51:59 +02001933 p->se.exec_start = 0;
1934 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001935 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001936
1937#ifdef CONFIG_SCHEDSTATS
1938 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001939 p->se.sum_sleep_runtime = 0;
1940 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001941 p->se.block_start = 0;
1942 p->se.sleep_max = 0;
1943 p->se.block_max = 0;
1944 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001945 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001946 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001947#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001948
Peter Zijlstrafa717062008-01-25 21:08:27 +01001949 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02001950 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001951
Avi Kivitye107be32007-07-26 13:40:43 +02001952#ifdef CONFIG_PREEMPT_NOTIFIERS
1953 INIT_HLIST_HEAD(&p->preempt_notifiers);
1954#endif
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /*
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;
Ingo Molnardd41f592007-07-09 18:51:59 +02001963}
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
Ingo Molnar02e4bac22007-10-15 17:00:11 +02001977 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001978
1979 /*
1980 * Make sure we do not leak PI boosting priority to the child:
1981 */
1982 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001983 if (!rt_prio(p->prio))
1984 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001985
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001986#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001987 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001988 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001990#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001991 p->oncpu = 0;
1992#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001994 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08001995 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001997 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
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 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002007void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002010 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002014 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 p->prio = effective_prio(p);
2017
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002018 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002019 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002022 * Let the scheduling class do new task startup
2023 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002025 p->sched_class->task_new(rq, p);
Gerald Stralko5aff0532008-01-31 22:45:23 +01002026 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002028 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002029#ifdef CONFIG_SMP
2030 if (p->sched_class->task_wake_up)
2031 p->sched_class->task_wake_up(rq, p);
2032#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002033 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Avi Kivitye107be32007-07-26 13:40:43 +02002036#ifdef CONFIG_PREEMPT_NOTIFIERS
2037
2038/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002039 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2040 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002041 */
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
Randy Dunlap421cee22007-07-31 00:37:50 -07002050 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002051 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002095 * prepare_task_switch - prepare to switch tasks
2096 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002097 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002098 * @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 */
Avi Kivitye107be32007-07-26 13:40:43 +02002107static inline void
2108prepare_task_switch(struct rq *rq, struct task_struct *prev,
2109 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002110{
Avi Kivitye107be32007-07-26 13:40:43 +02002111 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002112 prepare_lock_switch(rq, next);
2113 prepare_arch_switch(next);
2114}
2115
2116/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002118 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 * @prev: the thread we just switched away from.
2120 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002121 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 *
2126 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002127 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 * with the lock held can cause deadlocks; see schedule() for
2129 * details.)
2130 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002131static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 __releases(rq->lock)
2133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002135 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 rq->prev_mm = NULL;
2138
2139 /*
2140 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002141 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002142 * schedule one last time. The schedule call will never return, and
2143 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002144 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 * 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 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002150 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002151 finish_arch_switch(prev);
2152 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002153#ifdef CONFIG_SMP
2154 if (current->sched_class->post_schedule)
2155 current->sched_class->post_schedule(rq);
2156#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002157
Avi Kivitye107be32007-07-26 13:40:43 +02002158 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (mm)
2160 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002161 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002162 /*
2163 * Remove function-return probe instances associated with this
2164 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002165 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002166 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
2171/**
2172 * schedule_tail - first thing a freshly forked thread must call.
2173 * @prev: the thread we just switched away from.
2174 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002175asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 __releases(rq->lock)
2177{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002178 struct rq *rq = this_rq();
2179
Nick Piggin4866cde2005-06-25 14:57:23 -07002180 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002186 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
2189/*
2190 * context_switch - switch to the new MM and the new
2191 * thread's register state.
2192 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002193static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002194context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002195 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Ingo Molnardd41f592007-07-09 18:51:59 +02002197 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Avi Kivitye107be32007-07-26 13:40:43 +02002199 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002200 mm = next->mm;
2201 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002202 /*
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
Ingo Molnardd41f592007-07-09 18:51:59 +02002209 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 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
Ingo Molnardd41f592007-07-09 18:51:59 +02002216 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 rq->prev_mm = oldmm;
2219 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002220 /*
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
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002227 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002228#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 /* Here we just switch the register state and the stack. */
2231 switch_to(prev, next, prev);
2232
Ingo Molnardd41f592007-07-09 18:51:59 +02002233 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
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
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002263 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 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{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002278 int i;
2279 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002281 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 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
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002291 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2293
2294 return sum;
2295}
2296
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002297unsigned 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002313 * Update rq->cpu_load[] statistics. This function is usually called every
2314 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002315 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002316static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002317{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002318 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002319 int i, scale;
2320
2321 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002322
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;
Ingo Molnara25707f2007-10-15 17:00:03 +02002331 /*
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;
Ingo Molnardd41f592007-07-09 18:51:59 +02002338 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2339 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002340}
2341
Ingo Molnardd41f592007-07-09 18:51:59 +02002342#ifdef CONFIG_SMP
2343
Ingo Molnar48f24c42006-07-03 00:25:40 -07002344/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 * 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 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002350static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 __acquires(rq1->lock)
2352 __acquires(rq2->lock)
2353{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002354 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (rq1 == rq2) {
2356 spin_lock(&rq1->lock);
2357 __acquire(rq2->lock); /* Fake it out ;) */
2358 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002359 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 spin_lock(&rq1->lock);
2361 spin_lock(&rq2->lock);
2362 } else {
2363 spin_lock(&rq2->lock);
2364 spin_lock(&rq1->lock);
2365 }
2366 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002367 update_rq_clock(rq1);
2368 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369}
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 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002377static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 __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 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002391static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 __releases(this_rq->lock)
2393 __acquires(busiest->lock)
2394 __acquires(this_rq->lock)
2395{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002396 int ret = 0;
2397
Kirill Korotaev054b9102006-12-10 02:20:11 -08002398 if (unlikely(!irqs_disabled())) {
2399 /* printk() doesn't work good under rq->lock */
2400 spin_unlock(&this_rq->lock);
2401 BUG_ON(1);
2402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002404 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 spin_unlock(&this_rq->lock);
2406 spin_lock(&busiest->lock);
2407 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002408 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 } else
2410 spin_lock(&busiest->lock);
2411 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002412 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413}
2414
2415/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 * 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
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002418 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 * the cpu_allowed mask is restored.
2420 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002421static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002423 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002425 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
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;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 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);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return;
2444 }
2445out:
2446 task_rq_unlock(rq, &flags);
2447}
2448
2449/*
Nick Piggin476d1392005-06-25 14:57:29 -07002450 * sched_exec - execve() is a valuable balancing opportunity, because at
2451 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 */
2453void sched_exec(void)
2454{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002456 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002458 if (new_cpu != this_cpu)
2459 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460}
2461
2462/*
2463 * pull_task - move a task from a remote runqueue to the local runqueue.
2464 * Both runqueues must be locked.
2465 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002466static void pull_task(struct rq *src_rq, struct task_struct *p,
2467 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002469 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002471 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 /*
2473 * Note that idle threads have a prio of MAX_PRIO, for this test
2474 * to be always true for them.
2475 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002476 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477}
2478
2479/*
2480 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2481 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002482static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002483int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002484 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002485 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
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 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002493 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2494 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002496 }
Nick Piggin81026792005-06-25 14:57:07 -07002497 *all_pinned = 0;
2498
Ingo Molnarcc367732007-10-15 17:00:18 +02002499 if (task_running(rq, p)) {
2500 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002501 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Ingo Molnarda84d962007-10-15 17:00:18 +02002504 /*
2505 * Aggressive migration if:
2506 * 1) task is cache cold, or
2507 * 2) too many balance attempts have failed.
2508 */
2509
Ingo Molnar6bc16652007-10-15 17:00:18 +02002510 if (!task_hot(p, rq->clock, sd) ||
2511 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002512#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002513 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002514 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002515 schedstat_inc(p, se.nr_forced_migrations);
2516 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002517#endif
2518 return 1;
2519 }
2520
Ingo Molnarcc367732007-10-15 17:00:18 +02002521 if (task_hot(p, rq->clock, sd)) {
2522 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002523 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return 1;
2526}
2527
Peter Williamse1d14842007-10-24 18:23:51 +02002528static 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)
Ingo Molnardd41f592007-07-09 18:51:59 +02002533{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002534 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002535 struct task_struct *p;
2536 long rem_load_move = max_load_move;
2537
Peter Williamse1d14842007-10-24 18:23:51 +02002538 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002539 goto out;
2540
2541 pinned = 1;
2542
2543 /*
2544 * Start the load-balancing iterator:
2545 */
2546 p = iterator->start(iterator->arg);
2547next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002548 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002549 goto out;
2550 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002551 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002552 * 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 */
2555 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2556 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002557 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002558 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002559 p = iterator->next(iterator->arg);
2560 goto next;
2561 }
2562
2563 pull_task(busiest, p, this_rq, this_cpu);
2564 pulled++;
2565 rem_load_move -= p->se.load.weight;
2566
2567 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002568 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002569 */
Peter Williamse1d14842007-10-24 18:23:51 +02002570 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002571 if (p->prio < *this_best_prio)
2572 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002573 p = iterator->next(iterator->arg);
2574 goto next;
2575 }
2576out:
2577 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002578 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002579 * so we can safely collect pull_task() stats here rather than
2580 * inside pull_task().
2581 */
2582 schedstat_add(sd, lb_gained[idle], pulled);
2583
2584 if (all_pinned)
2585 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002586
2587 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002588}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590/*
Peter Williams43010652007-08-09 11:16:46 +02002591 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 *
2595 * Called with both runqueues locked.
2596 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002597static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002598 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002599 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002600 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002602 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002603 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002604 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Ingo Molnardd41f592007-07-09 18:51:59 +02002606 do {
Peter Williams43010652007-08-09 11:16:46 +02002607 total_load_moved +=
2608 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002609 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002610 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002611 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002612 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Peter Williams43010652007-08-09 11:16:46 +02002614 return total_load_moved > 0;
2615}
2616
Peter Williamse1d14842007-10-24 18:23:51 +02002617static 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
Peter Williams43010652007-08-09 11:16:46 +02002643/*
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{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002653 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002654
2655 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002656 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002657 return 1;
2658
2659 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660}
2661
2662/*
2663 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002664 * domain. It calculates and returns the amount of weighted load which
2665 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 */
2667static struct sched_group *
2668find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002669 unsigned long *imbalance, enum cpu_idle_type idle,
2670 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671{
2672 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2673 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002674 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002675 unsigned long busiest_load_per_task, busiest_nr_running;
2676 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002677 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002678#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002686 busiest_load_per_task = busiest_nr_running = 0;
2687 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002688 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002689 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002690 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002691 load_idx = sd->newidle_idx;
2692 else
2693 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002696 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 int local_group;
2698 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002699 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002700 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002701 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703 local_group = cpu_isset(this_cpu, group->cpumask);
2704
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002705 if (local_group)
2706 balance_cpu = first_cpu(group->cpumask);
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002709 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002710 max_cpu_load = 0;
2711 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002714 struct rq *rq;
2715
2716 if (!cpu_isset(i, *cpus))
2717 continue;
2718
2719 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002720
Suresh Siddha9439aab2007-07-19 21:28:35 +02002721 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002722 *sd_idle = 0;
2723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002725 if (local_group) {
2726 if (idle_cpu(i) && !first_idle_cpu) {
2727 first_idle_cpu = 1;
2728 balance_cpu = i;
2729 }
2730
Nick Piggina2000572006-02-10 01:51:02 -08002731 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002732 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002733 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002734 if (load > max_cpu_load)
2735 max_cpu_load = load;
2736 if (min_cpu_load > load)
2737 min_cpu_load = load;
2738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002741 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002742 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 }
2744
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002745 /*
2746 * First idle cpu or the first cpu(busiest) in this sched group
2747 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002748 * domains. In the newly idle case, we will allow all the cpu's
2749 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002750 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002751 if (idle != CPU_NEWLY_IDLE && local_group &&
2752 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002753 *balance = 0;
2754 goto ret;
2755 }
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002758 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002761 avg_load = sg_div_cpu_power(group,
2762 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Ken Chen908a7c12007-10-17 16:55:11 +02002764 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2765 __group_imb = 1;
2766
Eric Dumazet5517d862007-05-08 00:32:57 -07002767 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 if (local_group) {
2770 this_load = avg_load;
2771 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002772 this_nr_running = sum_nr_running;
2773 this_load_per_task = sum_weighted_load;
2774 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002775 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 max_load = avg_load;
2777 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002778 busiest_nr_running = sum_nr_running;
2779 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002780 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002782
2783#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2784 /*
2785 * Busy processors will not participate in power savings
2786 * balance.
2787 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002788 if (idle == CPU_NOT_IDLE ||
2789 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2790 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002791
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
Ingo Molnardd41f592007-07-09 18:51:59 +02002800 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002801 * If a group is already running at full capacity or idle,
2802 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002803 */
2804 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002805 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002806 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002807
Ingo Molnardd41f592007-07-09 18:51:59 +02002808 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002809 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002810 * 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 &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002815 first_cpu(group->cpumask) <
2816 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002817 group_min = group;
2818 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002819 min_load_per_task = sum_weighted_load /
2820 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002821 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002822
Ingo Molnardd41f592007-07-09 18:51:59 +02002823 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002824 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002825 * 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 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002836 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002837group_next:
2838#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 group = group->next;
2840 } while (group != sd->groups);
2841
Peter Williams2dd73a42006-06-27 02:54:34 -07002842 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 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
Peter Williams2dd73a42006-06-27 02:54:34 -07002851 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002852 if (group_imb)
2853 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 /*
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
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002863 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 * appear as very large values with unsigned longs.
2865 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002866 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 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002878
2879 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002880 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002883 *imbalance = min(max_pull * busiest->__cpu_power,
2884 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 / SCHED_LOAD_SCALE;
2886
Peter Williams2dd73a42006-06-27 02:54:34 -07002887 /*
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 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002893 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002894 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002895 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Peter Williams2dd73a42006-06-27 02:54:34 -07002897small_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;
2906
Ingo Molnardd41f592007-07-09 18:51:59 +02002907 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2908 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002909 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 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
Eric Dumazet5517d862007-05-08 00:32:57 -07002919 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 pwr_now /= SCHED_LOAD_SCALE;
2924
2925 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002926 tmp = sg_div_cpu_power(busiest,
2927 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002929 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002930 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
2932 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002933 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002934 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002935 tmp = sg_div_cpu_power(this,
2936 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002938 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 pwr_move /= SCHED_LOAD_SCALE;
2943
2944 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002945 if (pwr_move > pwr_now)
2946 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
2948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 return busiest;
2950
2951out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002952#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002953 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002954 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002956 if (this == group_leader && group_leader != group_min) {
2957 *imbalance = min_load_per_task;
2958 return group_min;
2959 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002960#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002961ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 *imbalance = 0;
2963 return NULL;
2964}
2965
2966/*
2967 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2968 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002969static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002970find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002971 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002973 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002974 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 int i;
2976
2977 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002978 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002979
2980 if (!cpu_isset(i, *cpus))
2981 continue;
2982
Ingo Molnar48f24c42006-07-03 00:25:40 -07002983 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002984 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Ingo Molnardd41f592007-07-09 18:51:59 +02002986 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002987 continue;
2988
Ingo Molnardd41f592007-07-09 18:51:59 +02002989 if (wl > max_load) {
2990 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002991 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 }
2993 }
2994
2995 return busiest;
2996}
2997
2998/*
Nick Piggin77391d72005-06-25 14:57:30 -07002999 * 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
3004/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3006 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003008static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003009 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003010 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011{
Peter Williams43010652007-08-09 11:16:46 +02003012 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003015 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003016 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003017 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003018
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003019 /*
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,
Ingo Molnardd41f592007-07-09 18:51:59 +02003022 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003023 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003024 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003025 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003026 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003027 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Ingo Molnar2d723762007-10-15 17:00:12 +02003029 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003031redo:
3032 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003033 &cpus, balance);
3034
Chen, Kenneth W06066712006-12-10 02:20:35 -08003035 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003036 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003037
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 if (!group) {
3039 schedstat_inc(sd, lb_nobusyg[idle]);
3040 goto out_balanced;
3041 }
3042
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003043 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 if (!busiest) {
3045 schedstat_inc(sd, lb_nobusyq[idle]);
3046 goto out_balanced;
3047 }
3048
Nick Piggindb935db2005-06-25 14:57:11 -07003049 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 schedstat_add(sd, lb_imbalance[idle], imbalance);
3052
Peter Williams43010652007-08-09 11:16:46 +02003053 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 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
Peter Williams43010652007-08-09 11:16:46 +02003058 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 * correctly treated as an imbalance.
3060 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003061 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003062 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003063 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003064 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003065 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003066 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003067
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003068 /*
3069 * some other cpu did the load balance for us.
3070 */
Peter Williams43010652007-08-09 11:16:46 +02003071 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003072 resched_cpu(this_cpu);
3073
Nick Piggin81026792005-06-25 14:57:07 -07003074 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003075 if (unlikely(all_pinned)) {
3076 cpu_clear(cpu_of(busiest), cpus);
3077 if (!cpus_empty(cpus))
3078 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003079 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 }
Nick Piggin81026792005-06-25 14:57:07 -07003082
Peter Williams43010652007-08-09 11:16:46 +02003083 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 schedstat_inc(sd, lb_failed[idle]);
3085 sd->nr_balance_failed++;
3086
3087 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003089 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003090
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)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003095 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003096 all_pinned = 1;
3097 goto out_one_pinned;
3098 }
3099
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 if (!busiest->active_balance) {
3101 busiest->active_balance = 1;
3102 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003103 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003105 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003106 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 wake_up_process(busiest->migration_thread);
3108
3109 /*
3110 * We've kicked active balancing, reset the failure
3111 * counter.
3112 */
Nick Piggin39507452005-06-25 14:57:09 -07003113 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 }
Nick Piggin81026792005-06-25 14:57:07 -07003115 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 sd->nr_balance_failed = 0;
3117
Nick Piggin81026792005-06-25 14:57:07 -07003118 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 /* We were unbalanced, so reset the balancing interval */
3120 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003121 } 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 }
3131
Peter Williams43010652007-08-09 11:16:46 +02003132 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003133 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003134 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003135 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 schedstat_inc(sd, lb_balanced[idle]);
3139
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003140 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003141
3142out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003144 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3145 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 sd->balance_interval *= 2;
3147
Ingo Molnar48f24c42006-07-03 00:25:40 -07003148 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003149 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003150 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 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 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003158 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 * this_rq is locked.
3160 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003161static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003162load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163{
3164 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003165 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003167 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003168 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003169 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003170 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003171
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003172 /*
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
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003176 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003177 */
3178 if (sd->flags & SD_SHARE_CPUPOWER &&
3179 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003180 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
Ingo Molnar2d723762007-10-15 17:00:12 +02003182 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003183redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003184 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003185 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003187 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003188 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 }
3190
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003191 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003192 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003193 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003194 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003195 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 }
3197
Nick Piggindb935db2005-06-25 14:57:11 -07003198 BUG_ON(busiest == this_rq);
3199
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003200 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003201
Peter Williams43010652007-08-09 11:16:46 +02003202 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003203 if (busiest->nr_running > 1) {
3204 /* Attempt to move tasks */
3205 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003206 /* this_rq->clock is already updated */
3207 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003208 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003209 imbalance, sd, CPU_NEWLY_IDLE,
3210 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003211 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003212
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003213 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003214 cpu_clear(cpu_of(busiest), cpus);
3215 if (!cpus_empty(cpus))
3216 goto redo;
3217 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003218 }
3219
Peter Williams43010652007-08-09 11:16:46 +02003220 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003221 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003222 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3223 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003224 return -1;
3225 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003226 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Peter Williams43010652007-08-09 11:16:46 +02003228 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003229
3230out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003231 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003232 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003233 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003234 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003235 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003236
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238}
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 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003244static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245{
3246 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003247 int pulled_task = -1;
3248 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
3250 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003251 unsigned long interval;
3252
3253 if (!(sd->flags & SD_LOAD_BALANCE))
3254 continue;
3255
3256 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003257 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003258 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003259 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003267 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003268 /*
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;
Ingo Molnardd41f592007-07-09 18:51:59 +02003273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274}
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 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003284static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
Nick Piggin39507452005-06-25 14:57:09 -07003286 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003287 struct sched_domain *sd;
3288 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003289
Ingo Molnar48f24c42006-07-03 00:25:40 -07003290 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003291 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003292 return;
3293
3294 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
3296 /*
Nick Piggin39507452005-06-25 14:57:09 -07003297 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003298 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003299 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 */
Nick Piggin39507452005-06-25 14:57:09 -07003301 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Nick Piggin39507452005-06-25 14:57:09 -07003303 /* move a task from busiest_rq to target_rq */
3304 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003305 update_rq_clock(busiest_rq);
3306 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Nick Piggin39507452005-06-25 14:57:09 -07003308 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003309 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003310 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003311 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003312 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Ingo Molnar48f24c42006-07-03 00:25:40 -07003315 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003316 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Peter Williams43010652007-08-09 11:16:46 +02003318 if (move_one_task(target_rq, target_cpu, busiest_rq,
3319 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003320 schedstat_inc(sd, alb_pushed);
3321 else
3322 schedstat_inc(sd, alb_failed);
3323 }
Nick Piggin39507452005-06-25 14:57:09 -07003324 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325}
3326
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003327#ifdef CONFIG_NO_HZ
3328static struct {
3329 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003330 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003331} nohz ____cacheline_aligned = {
3332 .load_balancer = ATOMIC_INIT(-1),
3333 .cpu_mask = CPU_MASK_NONE,
3334};
3335
Christoph Lameter7835b982006-12-10 02:20:22 -08003336/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003337 * 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...
Christoph Lameter7835b982006-12-10 02:20:22 -08003343 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003344 * 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..
3347 *
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/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003404 * 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 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003409static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003410{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003411 int balance = 1;
3412 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003413 unsigned long interval;
3414 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003415 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003416 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003417 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003419 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 if (!(sd->flags & SD_LOAD_BALANCE))
3421 continue;
3422
3423 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003424 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 interval *= sd->busy_factor;
3426
3427 /* scale ms to jiffies */
3428 interval = msecs_to_jiffies(interval);
3429 if (unlikely(!interval))
3430 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003431 if (interval > HZ*NR_CPUS/10)
3432 interval = HZ*NR_CPUS/10;
3433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Christoph Lameter08c183f2006-12-10 02:20:29 -08003435 if (sd->flags & SD_SERIALIZE) {
3436 if (!spin_trylock(&balancing))
3437 goto out;
3438 }
3439
Christoph Lameterc9819f42006-12-10 02:20:25 -08003440 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003441 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003442 /*
3443 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003444 * longer idle, or one of our SMT siblings is
3445 * not idle.
3446 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003447 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003449 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003451 if (sd->flags & SD_SERIALIZE)
3452 spin_unlock(&balancing);
3453out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003454 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003455 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003456 update_next_balance = 1;
3457 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003458
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003467
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;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003475}
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{
Ingo Molnardd41f592007-07-09 18:51:59 +02003484 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;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003488
Ingo Molnardd41f592007-07-09 18:51:59 +02003489 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003490
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 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003497 if (this_rq->idle_at_tick &&
3498 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003499 cpumask_t cpus = nohz.cpu_mask;
3500 struct rq *rq;
3501 int balance_cpu;
3502
Ingo Molnardd41f592007-07-09 18:51:59 +02003503 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003504 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
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003513 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003514
3515 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003516 if (time_after(this_rq->next_balance, rq->next_balance))
3517 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003518 }
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 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003530static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003531{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003532#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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582}
Ingo Molnardd41f592007-07-09 18:51:59 +02003583
3584#else /* CONFIG_SMP */
3585
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586/*
3587 * on UP we do not need to balance between CPUs:
3588 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003589static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590{
3591}
Ingo Molnardd41f592007-07-09 18:51:59 +02003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593#endif
3594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595DEFINE_PER_CPU(struct kernel_stat, kstat);
3596
3597EXPORT_PER_CPU_SYMBOL(kstat);
3598
3599/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003600 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003603unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003606 u64 ns, delta_exec;
3607 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003608
Ingo Molnar41b86e92007-07-09 18:51:58 +02003609 rq = task_rq_lock(p, &flags);
3610 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003611 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003612 update_rq_clock(rq);
3613 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003614 if ((s64)delta_exec > 0)
3615 ns += delta_exec;
3616 }
3617 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 return ns;
3620}
3621
3622/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 * Account user cpu time to a process.
3624 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 * @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
3642/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003643 * 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 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003647static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003648{
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
3661/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003662 * 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
3671/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 * 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;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003681 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 cputime64_t tmp;
3683
Christian Borntraeger97783852007-11-15 20:57:39 +01003684 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3685 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 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);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003695 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003697 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703}
3704
3705/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003706 * 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
3716/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 * 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);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003725 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
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);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003733 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3735}
3736
Christoph Lameter7835b982006-12-10 02:20:22 -08003737/*
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{
Christoph Lameter7835b982006-12-10 02:20:22 -08003746 int cpu = smp_processor_id();
3747 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003748 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003749 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003750
Ingo Molnardd41f592007-07-09 18:51:59 +02003751 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003752 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003753 /*
3754 * Let rq->clock advance by at least TICK_NSEC:
3755 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003756 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003757 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003758 rq->clock_underflows++;
3759 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003760 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003761 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003762 curr->sched_class->task_tick(rq, curr, 0);
3763 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003764 spin_unlock(&rq->lock);
3765
Christoph Lametere418e1c2006-12-10 02:20:23 -08003766#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003767 rq->idle_at_tick = idle_cpu(cpu);
3768 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003769#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770}
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3773
Srinivasa Ds43627582008-02-23 15:24:04 -08003774void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775{
3776 /*
3777 * Underflow?
3778 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003779 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3780 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 preempt_count() += val;
3782 /*
3783 * Spinlock count overflowing soon?
3784 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003785 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3786 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787}
3788EXPORT_SYMBOL(add_preempt_count);
3789
Srinivasa Ds43627582008-02-23 15:24:04 -08003790void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791{
3792 /*
3793 * Underflow?
3794 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003795 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3796 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 /*
3798 * Is the spinlock portion underflowing?
3799 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003800 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3801 !(preempt_count() & PREEMPT_MASK)))
3802 return;
3803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 preempt_count() -= val;
3805}
3806EXPORT_SYMBOL(sub_preempt_count);
3807
3808#endif
3809
3810/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003811 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003813static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814{
Satyam Sharma838225b2007-10-24 18:23:50 +02003815 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
Ingo Molnardd41f592007-07-09 18:51:59 +02003820 debug_show_held_locks(prev);
3821 if (irqs_disabled())
3822 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003823
3824 if (regs)
3825 show_regs(regs);
3826 else
3827 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003828}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Ingo Molnardd41f592007-07-09 18:51:59 +02003830/*
3831 * Various schedule()-time debugging checks and statistics:
3832 */
3833static inline void schedule_debug(struct task_struct *prev)
3834{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003836 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 * schedule() atomically, we ignore that path for now.
3838 * Otherwise, whine if we are scheduling when we should not be.
3839 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003840 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3841 __schedule_bug(prev);
3842
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3844
Ingo Molnar2d723762007-10-15 17:00:12 +02003845 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003846#ifdef CONFIG_SCHEDSTATS
3847 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003848 schedstat_inc(this_rq(), bkl_count);
3849 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003850 }
3851#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003852}
3853
3854/*
3855 * Pick up the highest-prio task:
3856 */
3857static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003858pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003859{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003860 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003861 struct task_struct *p;
3862
3863 /*
3864 * Optimization: we know that if all tasks are in
3865 * the fair class we can call that function directly:
3866 */
3867 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003868 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003869 if (likely(p))
3870 return p;
3871 }
3872
3873 class = sched_class_highest;
3874 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003875 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003876 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}
3885
3886/*
3887 * schedule() is the main scheduler function.
3888 */
3889asmlinkage void __sched schedule(void)
3890{
3891 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08003892 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02003893 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003894 int cpu;
3895
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896need_resched:
3897 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003898 cpu = smp_processor_id();
3899 rq = cpu_rq(cpu);
3900 rcu_qsctr_inc(cpu);
3901 prev = rq->curr;
3902 switch_count = &prev->nivcsw;
3903
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 release_kernel_lock(prev);
3905need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Ingo Molnardd41f592007-07-09 18:51:59 +02003907 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003909 hrtick_clear(rq);
3910
Ingo Molnar1e819952007-10-15 17:00:13 +02003911 /*
3912 * Do the rq-clock update outside the rq lock:
3913 */
3914 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003915 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003916 spin_lock(&rq->lock);
3917 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
Ingo Molnardd41f592007-07-09 18:51:59 +02003919 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3920 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3921 unlikely(signal_pending(prev)))) {
3922 prev->state = TASK_RUNNING;
3923 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003924 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003925 }
3926 switch_count = &prev->nvcsw;
3927 }
3928
Steven Rostedt9a897c52008-01-25 21:08:22 +01003929#ifdef CONFIG_SMP
3930 if (prev->sched_class->pre_schedule)
3931 prev->sched_class->pre_schedule(rq, prev);
3932#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01003933
Ingo Molnardd41f592007-07-09 18:51:59 +02003934 if (unlikely(!rq->nr_running))
3935 idle_balance(cpu, rq);
3936
Ingo Molnar31ee5292007-08-09 11:16:49 +02003937 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003938 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
3940 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 rq->nr_switches++;
3944 rq->curr = next;
3945 ++*switch_count;
3946
Ingo Molnardd41f592007-07-09 18:51:59 +02003947 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003948 /*
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 } else
3955 spin_unlock_irq(&rq->lock);
3956
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003957 hrtick_set(rq);
3958
3959 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003961
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 preempt_enable_no_resched();
3963 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3964 goto need_resched;
3965}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966EXPORT_SYMBOL(schedule);
3967
3968#ifdef CONFIG_PREEMPT
3969/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003970 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003971 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 * occur there and call schedule directly.
3973 */
3974asmlinkage void __sched preempt_schedule(void)
3975{
3976 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 struct task_struct *task = current;
3978 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01003979
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 /*
3981 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003982 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003984 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 return;
3986
Andi Kleen3a5c3592007-10-15 17:00:14 +02003987 do {
3988 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
Andi Kleen3a5c3592007-10-15 17:00:14 +02003990 /*
3991 * We keep the big kernel semaphore locked, but we
3992 * clear ->lock_depth so that schedule() doesnt
3993 * auto-release the semaphore:
3994 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02003995 saved_lock_depth = task->lock_depth;
3996 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003997 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02003998 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02003999 sub_preempt_count(PREEMPT_ACTIVE);
4000
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)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008EXPORT_SYMBOL(preempt_schedule);
4009
4010/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004011 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 * 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();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 struct task_struct *task = current;
4020 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004021
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004022 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 BUG_ON(ti->preempt_count || !irqs_disabled());
4024
Andi Kleen3a5c3592007-10-15 17:00:14 +02004025 do {
4026 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Andi Kleen3a5c3592007-10-15 17:00:14 +02004028 /*
4029 * We keep the big kernel semaphore locked, but we
4030 * clear ->lock_depth so that schedule() doesnt
4031 * auto-release the semaphore:
4032 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004033 saved_lock_depth = task->lock_depth;
4034 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004035 local_irq_enable();
4036 schedule();
4037 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004038 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004039 sub_preempt_count(PREEMPT_ACTIVE);
4040
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)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047}
4048
4049#endif /* CONFIG_PREEMPT */
4050
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004051int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4052 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004054 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056EXPORT_SYMBOL(default_wake_function);
4057
4058/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004059 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 * 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
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004064 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 * 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{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004070 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004072 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004073 unsigned flags = curr->flags;
4074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004076 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 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
Martin Waitz67be2dd2005-05-01 08:59:26 -07004086 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004088void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004089 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090{
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}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097EXPORT_SYMBOL(__wake_up);
4098
4099/*
4100 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4101 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004102void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103{
4104 __wake_up_common(q, mode, 1, 0, NULL);
4105}
4106
4107/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004108 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 * @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 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004120void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004121__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122{
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
Ingo Molnarb15136e2007-10-24 18:23:48 +02004138void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139{
4140 unsigned long flags;
4141
4142 spin_lock_irqsave(&x->wait.lock, flags);
4143 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004144 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 spin_unlock_irqrestore(&x->wait.lock, flags);
4146}
4147EXPORT_SYMBOL(complete);
4148
Ingo Molnarb15136e2007-10-24 18:23:48 +02004149void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150{
4151 unsigned long flags;
4152
4153 spin_lock_irqsave(&x->wait.lock, flags);
4154 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004155 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 spin_unlock_irqrestore(&x->wait.lock, flags);
4157}
4158EXPORT_SYMBOL(complete_all);
4159
Andi Kleen8cbbe862007-10-15 17:00:14 +02004160static inline long __sched
4161do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 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 {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004169 if ((state == TASK_INTERRUPTIBLE &&
4170 signal_pending(current)) ||
4171 (state == TASK_KILLABLE &&
4172 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004173 __remove_wait_queue(&x->wait, &wait);
4174 return -ERESTARTSYS;
4175 }
4176 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004178 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004180 if (!timeout) {
4181 __remove_wait_queue(&x->wait, &wait);
4182 return timeout;
4183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 } while (!x->done);
4185 __remove_wait_queue(&x->wait, &wait);
4186 }
4187 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004188 return timeout;
4189}
4190
4191static long __sched
4192wait_for_common(struct completion *x, long timeout, int state)
4193{
4194 might_sleep();
4195
4196 spin_lock_irq(&x->wait.lock);
4197 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004199 return timeout;
4200}
4201
Ingo Molnarb15136e2007-10-24 18:23:48 +02004202void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004203{
4204 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205}
4206EXPORT_SYMBOL(wait_for_completion);
4207
Ingo Molnarb15136e2007-10-24 18:23:48 +02004208unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4210{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004211 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212}
4213EXPORT_SYMBOL(wait_for_completion_timeout);
4214
Andi Kleen8cbbe862007-10-15 17:00:14 +02004215int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216{
Andi Kleen51e97992007-10-18 21:32:55 +02004217 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4218 if (t == -ERESTARTSYS)
4219 return t;
4220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221}
4222EXPORT_SYMBOL(wait_for_completion_interruptible);
4223
Ingo Molnarb15136e2007-10-24 18:23:48 +02004224unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225wait_for_completion_interruptible_timeout(struct completion *x,
4226 unsigned long timeout)
4227{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004228 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229}
4230EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4231
Matthew Wilcox009e5772007-12-06 12:29:54 -05004232int __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
Andi Kleen8cbbe862007-10-15 17:00:14 +02004241static long __sched
4242sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004243{
4244 unsigned long flags;
4245 wait_queue_t wait;
4246
4247 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
Andi Kleen8cbbe862007-10-15 17:00:14 +02004249 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Andi Kleen8cbbe862007-10-15 17:00:14 +02004251 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266EXPORT_SYMBOL(interruptible_sleep_on);
4267
Ingo Molnar0fec1712007-07-09 18:52:01 +02004268long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004269interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004271 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4274
Ingo Molnar0fec1712007-07-09 18:52:01 +02004275void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004277 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279EXPORT_SYMBOL(sleep_on);
4280
Ingo Molnar0fec1712007-07-09 18:52:01 +02004281long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004283 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285EXPORT_SYMBOL(sleep_on_timeout);
4286
Ingo Molnarb29739f2006-06-27 02:54:51 -07004287#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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004299void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004300{
4301 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004302 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004303 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004304 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004305
4306 BUG_ON(prio < 0 || prio > MAX_PRIO);
4307
4308 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004309 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004310
Andrew Mortond5f9f942007-05-08 20:27:06 -07004311 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004312 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004313 running = task_current(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004314 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004315 dequeue_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004316 if (running)
4317 p->sched_class->put_prev_task(rq, p);
4318 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004319
4320 if (rt_prio(prio))
4321 p->sched_class = &rt_sched_class;
4322 else
4323 p->sched_class = &fair_sched_class;
4324
Ingo Molnarb29739f2006-06-27 02:54:51 -07004325 p->prio = prio;
4326
Ingo Molnardd41f592007-07-09 18:51:59 +02004327 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004328 if (running)
4329 p->sched_class->set_curr_task(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01004330
Ingo Molnar8159f872007-08-09 11:16:49 +02004331 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004332
4333 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004334 }
4335 task_rq_unlock(rq, &flags);
4336}
4337
4338#endif
4339
Ingo Molnar36c8b582006-07-03 00:25:41 -07004340void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341{
Ingo Molnardd41f592007-07-09 18:51:59 +02004342 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004344 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
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);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004353 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 /*
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
Ingo Molnardd41f592007-07-09 18:51:59 +02004358 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004360 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 p->static_prio = NICE_TO_PRIO(nice);
4362 goto out_unlock;
4363 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004364 on_rq = p->se.on_rq;
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +01004365 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004366 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004369 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004370 old_prio = p->prio;
4371 p->prio = effective_prio(p);
4372 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Ingo Molnardd41f592007-07-09 18:51:59 +02004374 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004375 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004377 * If the task increased its priority or is running and
4378 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004380 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 resched_task(rq->curr);
4382 }
4383out_unlock:
4384 task_rq_unlock(rq, &flags);
4385}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386EXPORT_SYMBOL(set_user_nice);
4387
Matt Mackalle43379f2005-05-01 08:59:00 -07004388/*
4389 * can_nice - check if a task can reduce its nice value
4390 * @p: task
4391 * @nice: nice value
4392 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004393int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004394{
Matt Mackall024f4742005-08-18 11:24:19 -07004395 /* convert nice value [19,-20] to rlimit style value [1,40] */
4396 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004397
Matt Mackalle43379f2005-05-01 08:59:00 -07004398 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4399 capable(CAP_SYS_NICE));
4400}
4401
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402#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{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004413 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
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 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004420 if (increment < -40)
4421 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 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
Matt Mackalle43379f2005-05-01 08:59:00 -07004431 if (increment < 0 && !can_nice(current, nice))
4432 return -EPERM;
4433
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004452int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453{
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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004461int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462{
4463 return TASK_NICE(p);
4464}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476/**
4477 * idle_task - return the idle task for a given cpu.
4478 * @cpu: the processor in question.
4479 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004480struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481{
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 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004489static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004491 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492}
4493
4494/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004495static void
4496__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497{
Ingo Molnardd41f592007-07-09 18:51:59 +02004498 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004499
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004501 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004514 p->normal_prio = normal_prio(p);
4515 /* we are holding p->pi_lock already */
4516 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004517 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518}
4519
4520/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004521 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 * @p: the task in question.
4523 * @policy: new policy.
4524 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004525 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004526 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004528int sched_setscheduler(struct task_struct *p, int policy,
4529 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004531 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004533 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004534 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
Steven Rostedt66e53932006-06-27 02:54:44 -07004536 /* may grab non-irq protected spin_locks */
4537 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538recheck:
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 &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004543 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4544 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004545 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 /*
4547 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004548 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4549 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 */
4551 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004552 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004553 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004555 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 return -EINVAL;
4557
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004558 /*
4559 * Allow unprivileged RT tasks to decrease priority:
4560 */
4561 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004562 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004563 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004564
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004565 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);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004569
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004570 /* 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 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004579 /*
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;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004585
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004586 /* can't change other user's priorities */
4587 if ((current->euid != p->euid) &&
4588 (current->euid != p->uid))
4589 return -EPERM;
4590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004592#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 retval = security_task_setscheduler(p, policy, param);
4602 if (retval)
4603 return retval;
4604 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004605 * 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);
4609 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 * To be able to change p->policy safely, the apropriate
4611 * runqueue lock must be held.
4612 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004613 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 /* recheck policy now with rq lock held */
4615 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4616 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004617 __task_rq_unlock(rq);
4618 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 goto recheck;
4620 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004621 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004622 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004623 running = task_current(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004624 if (on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004625 deactivate_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004626 if (running)
4627 p->sched_class->put_prev_task(rq, p);
4628 }
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004629
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004631 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004632
Ingo Molnardd41f592007-07-09 18:51:59 +02004633 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004634 if (running)
4635 p->sched_class->set_curr_task(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01004636
Ingo Molnardd41f592007-07-09 18:51:59 +02004637 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004638
4639 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004641 __task_rq_unlock(rq);
4642 spin_unlock_irqrestore(&p->pi_lock, flags);
4643
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004644 rt_mutex_adjust_pi(p);
4645
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 return 0;
4647}
4648EXPORT_SYMBOL_GPL(sched_setscheduler);
4649
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004650static int
4651do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 struct sched_param lparam;
4654 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004655 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656
4657 if (!param || pid < 0)
4658 return -EINVAL;
4659 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4660 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004661
4662 rcu_read_lock();
4663 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004665 if (p != NULL)
4666 retval = sched_setscheduler(p, policy, &lparam);
4667 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004668
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 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 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004678asmlinkage long
4679sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680{
Jason Baronc21761f2006-01-18 17:43:03 -08004681 /* negative values for policy are not valid */
4682 if (policy < 0)
4683 return -EINVAL;
4684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 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{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004704 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004705 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
4707 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004708 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 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;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004730 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004731 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
4733 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004734 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 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{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004764 struct task_struct *p;
4765 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004767 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 read_lock(&tasklist_lock);
4769
4770 p = find_process_by_pid(pid);
4771 if (!p) {
4772 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004773 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 return -ESRCH;
4775 }
4776
4777 /*
4778 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004779 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 * 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
David Quigleye7834f82006-06-23 02:03:59 -07004790 retval = security_task_setscheduler(p, 0, NULL);
4791 if (retval)
4792 goto out_unlock;
4793
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 cpus_allowed = cpuset_cpus_allowed(p);
4795 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004796 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 retval = set_cpus_allowed(p, new_mask);
4798
Paul Menage8707d8b2007-10-18 23:40:22 -07004799 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811out_unlock:
4812 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004813 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 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
Andi Kleen4cef0c62006-01-11 22:44:57 +01004854cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855EXPORT_SYMBOL(cpu_present_map);
4856
4857#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004858cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004859EXPORT_SYMBOL(cpu_online_map);
4860
Andi Kleen4cef0c62006-01-11 22:44:57 +01004861cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004862EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863#endif
4864
4865long sched_getaffinity(pid_t pid, cpumask_t *mask)
4866{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004867 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004870 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 read_lock(&tasklist_lock);
4872
4873 retval = -ESRCH;
4874 p = find_process_by_pid(pid);
4875 if (!p)
4876 goto out_unlock;
4877
David Quigleye7834f82006-06-23 02:03:59 -07004878 retval = security_task_getscheduler(p);
4879 if (retval)
4880 goto out_unlock;
4881
Jack Steiner2f7016d2006-02-01 03:05:18 -08004882 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
4884out_unlock:
4885 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004886 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
Ulrich Drepper9531b622007-08-09 11:16:46 +02004888 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889}
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 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004919 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 */
4922asmlinkage long sys_sched_yield(void)
4923{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004924 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Ingo Molnar2d723762007-10-15 17:00:12 +02004926 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004927 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928
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);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004934 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 _raw_spin_unlock(&rq->lock);
4936 preempt_enable_no_resched();
4937
4938 schedule();
4939
4940 return 0;
4941}
4942
Andrew Mortone7b38402006-06-30 01:56:00 -07004943static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004945#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4946 __might_sleep(__FILE__, __LINE__);
4947#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004948 /*
4949 * The BKS might be reacquired before we have dropped
4950 * PREEMPT_ACTIVE, which could trigger a second
4951 * cond_resched() call.
4952 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 do {
4954 add_preempt_count(PREEMPT_ACTIVE);
4955 schedule();
4956 sub_preempt_count(PREEMPT_ACTIVE);
4957 } while (need_resched());
4958}
4959
Herbert Xu02b67cc32008-01-25 21:08:28 +01004960#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
4961int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962{
Ingo Molnar94142322006-12-29 16:48:13 -08004963 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4964 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 __cond_resched();
4966 return 1;
4967 }
4968 return 0;
4969}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004970EXPORT_SYMBOL(_cond_resched);
4971#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972
4973/*
4974 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4975 * call schedule, and on return reacquire the lock.
4976 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004977 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 * operations here to prevent schedule() from being called twice (once via
4979 * spin_unlock(), once by hand).
4980 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004981int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982{
Nick Piggin95c354f2008-01-30 13:31:20 +01004983 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07004984 int ret = 0;
4985
Nick Piggin95c354f2008-01-30 13:31:20 +01004986 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01004988 if (resched && need_resched())
4989 __cond_resched();
4990 else
4991 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004992 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004995 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997EXPORT_SYMBOL(cond_resched_lock);
4998
4999int __sched cond_resched_softirq(void)
5000{
5001 BUG_ON(!in_softirq());
5002
Ingo Molnar94142322006-12-29 16:48:13 -08005003 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005004 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 __cond_resched();
5006 local_bh_disable();
5007 return 1;
5008 }
5009 return 0;
5010}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011EXPORT_SYMBOL(cond_resched_softirq);
5012
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013/**
5014 * yield - yield the current processor to other threads.
5015 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005016 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 * thread runnable and calls sys_sched_yield().
5018 */
5019void __sched yield(void)
5020{
5021 set_current_state(TASK_RUNNING);
5022 sys_sched_yield();
5023}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024EXPORT_SYMBOL(yield);
5025
5026/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005027 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 * 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{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005035 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005037 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 atomic_inc(&rq->nr_iowait);
5039 schedule();
5040 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005041 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043EXPORT_SYMBOL(io_schedule);
5044
5045long __sched io_schedule_timeout(long timeout)
5046{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005047 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 long ret;
5049
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005050 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 atomic_inc(&rq->nr_iowait);
5052 ret = schedule_timeout(timeout);
5053 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005054 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 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:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005075 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005076 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 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:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005100 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005101 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 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{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005118 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005119 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005120 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
5123 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005124 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125
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
Ingo Molnar77034932007-12-04 17:04:39 +01005136 /*
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) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005142 time_slice = DEF_TIMESLICE;
Ingo Molnar77034932007-12-04 17:04:39 +01005143 } else {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005144 struct sched_entity *se = &p->se;
5145 unsigned long flags;
5146 struct rq *rq;
5147
5148 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005149 if (rq->cfs.load.weight)
5150 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005151 task_rq_unlock(rq, &flags);
5152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005154 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005157
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158out_unlock:
5159 read_unlock(&tasklist_lock);
5160 return retval;
5161}
5162
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005163static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005164
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005165void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005168 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005171 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005172 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005173#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005175 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005177 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178#else
5179 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005180 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005182 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183#endif
5184#ifdef CONFIG_DEBUG_STACK_USAGE
5185 {
Al Viro10ebffd2005-11-13 16:06:56 -08005186 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 while (!*n)
5188 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005189 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 }
5191#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005192 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005193 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005195 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196}
5197
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005198void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005200 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Ingo Molnar4bd77322007-07-11 21:21:47 +02005202#if BITS_PER_LONG == 32
5203 printk(KERN_INFO
5204 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005206 printk(KERN_INFO
5207 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208#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();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005216 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005217 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 } while_each_thread(g, p);
5219
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005220 touch_all_softlockup_watchdogs();
5221
Ingo Molnardd41f592007-07-09 18:51:59 +02005222#ifdef CONFIG_SCHED_DEBUG
5223 sysrq_sched_debug_show();
5224#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005226 /*
5227 * Only show locks if all tasks are dumped:
5228 */
5229 if (state_filter == -1)
5230 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231}
5232
Ingo Molnar1df21052007-07-09 18:51:58 +02005233void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5234{
Ingo Molnardd41f592007-07-09 18:51:59 +02005235 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005236}
5237
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005238/**
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 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005246void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005248 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 unsigned long flags;
5250
Ingo Molnardd41f592007-07-09 18:51:59 +02005251 __sched_fork(idle);
5252 idle->se.exec_start = sched_clock();
5253
Ingo Molnarb29739f2006-06-27 02:54:51 -07005254 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005256 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257
5258 spin_lock_irqsave(&rq->lock, flags);
5259 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005260#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5261 idle->oncpu = 1;
5262#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 spin_unlock_irqrestore(&rq->lock, flags);
5264
5265 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f542005-11-13 16:06:55 -08005266 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005267
Ingo Molnardd41f592007-07-09 18:51:59 +02005268 /*
5269 * The idle tasks have their own, simple scheduling class:
5270 */
5271 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272}
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
Ingo Molnar19978ca2007-11-09 22:39:38 +01005283/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309#ifdef CONFIG_SMP
5310/*
5311 * This is how migration works:
5312 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005313 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 * 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
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005332 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 * call is not atomic; no spinlocks may be held.
5334 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005335int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005337 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005339 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005340 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341
5342 rq = task_rq_lock(p, &flags);
5343 if (!cpus_intersects(new_mask, cpu_online_map)) {
5344 ret = -EINVAL;
5345 goto out;
5346 }
5347
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005348 if (p->sched_class->set_cpus_allowed)
5349 p->sched_class->set_cpus_allowed(p, &new_mask);
5350 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005351 p->cpus_allowed = new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01005352 p->rt.nr_cpus_allowed = cpus_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005353 }
5354
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355 /* 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);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005369
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 return ret;
5371}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372EXPORT_SYMBOL_GPL(set_cpus_allowed);
5373
5374/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005375 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 * 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.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005382 *
5383 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005385static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005387 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005388 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
5390 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005391 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
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
Ingo Molnardd41f592007-07-09 18:51:59 +02005404 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005405 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005406 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005407
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005409 if (on_rq) {
5410 activate_task(rq_dest, p, 0);
5411 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005413 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414out:
5415 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005416 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417}
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 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005424static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005427 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428
5429 rq = cpu_rq(cpu);
5430 BUG_ON(rq->migration_thread != current);
5431
5432 set_current_state(TASK_INTERRUPTIBLE);
5433 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005434 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437 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 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005457 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458 list_del_init(head->next);
5459
Nick Piggin674311d2005-06-25 14:57:27 -07005460 spin_unlock(&rq->lock);
5461 __migrate_task(req->task, cpu, req->dest_cpu);
5462 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463
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
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005481
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
Kirill Korotaev054b9102006-12-10 02:20:11 -08005492/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005493 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005494 * NOTE: interrupts should be disabled by the caller
5495 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005496static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005498 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005500 struct rq *rq;
5501 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502
Andi Kleen3a5c3592007-10-15 17:00:14 +02005503 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
Andi Kleen3a5c3592007-10-15 17:00:14 +02005509 /* On any allowed CPU? */
5510 if (dest_cpu == NR_CPUS)
5511 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512
Andi Kleen3a5c3592007-10-15 17:00:14 +02005513 /* No more Mr. Nice Guy. */
5514 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005515 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
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005520 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005521 * called within calls to cpuset_lock/cpuset_unlock.
5522 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005523 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005524 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005525 dest_cpu = any_online_cpu(p->cpus_allowed);
5526 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
Andi Kleen3a5c3592007-10-15 17:00:14 +02005528 /*
5529 * Don't tell them about moving exiting tasks or
5530 * kernel threads (both mm NULL), since they never
5531 * leave kernel.
5532 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005533 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005534 printk(KERN_INFO "process %d (%s) no "
5535 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005536 task_pid_nr(p), p->comm, dead_cpu);
5537 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005538 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005539 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540}
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 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005549static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005551 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 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{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005565 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005567 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
Ingo Molnar48f24c42006-07-03 00:25:40 -07005569 do_each_thread(t, p) {
5570 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 continue;
5572
Ingo Molnar48f24c42006-07-03 00:25:40 -07005573 if (task_cpu(p) == src_cpu)
5574 move_task_off_dead_cpu(src_cpu, p);
5575 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005577 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578}
5579
Ingo Molnardd41f592007-07-09 18:51:59 +02005580/*
5581 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005582 * It does so by boosting its priority to highest possible.
5583 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 */
5585void sched_idle_next(void)
5586{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005587 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005588 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589 struct task_struct *p = rq->idle;
5590 unsigned long flags;
5591
5592 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005593 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
Ingo Molnar48f24c42006-07-03 00:25:40 -07005595 /*
5596 * Strictly not necessary since rest of the CPUs are stopped by now
5597 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598 */
5599 spin_lock_irqsave(&rq->lock, flags);
5600
Ingo Molnardd41f592007-07-09 18:51:59 +02005601 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005602
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005603 update_rq_clock(rq);
5604 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606 spin_unlock_irqrestore(&rq->lock, flags);
5607}
5608
Ingo Molnar48f24c42006-07-03 00:25:40 -07005609/*
5610 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611 * 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
Kirill Korotaev054b9102006-12-10 02:20:11 -08005624/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005625static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005627 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628
5629 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005630 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631
5632 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005633 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634
Ingo Molnar48f24c42006-07-03 00:25:40 -07005635 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636
5637 /*
5638 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005639 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640 * fine.
5641 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005642 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005643 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005644 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645
Ingo Molnar48f24c42006-07-03 00:25:40 -07005646 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647}
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{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005652 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005653 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654
Ingo Molnardd41f592007-07-09 18:51:59 +02005655 for ( ; ; ) {
5656 if (!rq->nr_running)
5657 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005658 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005659 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005660 if (!next)
5661 break;
5662 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005663
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 }
5665}
5666#endif /* CONFIG_HOTPLUG_CPU */
5667
Nick Piggine692ab52007-07-26 13:40:43 +02005668#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5669
5670static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005671 {
5672 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005673 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005674 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005675 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005676};
5677
5678static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005679 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005680 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005681 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005682 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005683 .child = sd_ctl_dir,
5684 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005685 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005686};
5687
5688static struct ctl_table *sd_alloc_ctl_entry(int n)
5689{
5690 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005691 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005692
Nick Piggine692ab52007-07-26 13:40:43 +02005693 return entry;
5694}
5695
Milton Miller6382bc92007-10-15 17:00:19 +02005696static void sd_free_ctl_entry(struct ctl_table **tablep)
5697{
Milton Millercd7900762007-10-17 16:55:11 +02005698 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005699
Milton Millercd7900762007-10-17 16:55:11 +02005700 /*
5701 * In the intermediate directories, both the child directory and
5702 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005703 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005704 * static strings and all have proc handlers.
5705 */
5706 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005707 if (entry->child)
5708 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005709 if (entry->proc_handler == NULL)
5710 kfree(entry->procname);
5711 }
Milton Miller6382bc92007-10-15 17:00:19 +02005712
5713 kfree(*tablep);
5714 *tablep = NULL;
5715}
5716
Nick Piggine692ab52007-07-26 13:40:43 +02005717static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005718set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005719 const char *procname, void *data, int maxlen,
5720 mode_t mode, proc_handler *proc_handler)
5721{
Nick Piggine692ab52007-07-26 13:40:43 +02005722 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{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005732 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005733
Milton Millerad1cdc12007-10-15 17:00:19 +02005734 if (table == NULL)
5735 return NULL;
5736
Alexey Dobriyane0361852007-08-09 11:16:46 +02005737 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005738 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005739 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005740 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005741 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005742 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005743 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005744 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005745 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005746 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005747 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005748 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005749 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005750 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005751 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005752 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005753 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005754 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005755 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005756 &sd->cache_nice_tries,
5757 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005758 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005759 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005760 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005761
5762 return table;
5763}
5764
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005765static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005766{
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);
Milton Millerad1cdc12007-10-15 17:00:19 +02005775 if (table == NULL)
5776 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005777
5778 i = 0;
5779 for_each_domain(cpu, sd) {
5780 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005781 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005782 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005783 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;
Milton Miller6382bc92007-10-15 17:00:19 +02005791static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005792{
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
Milton Miller73785472007-10-24 18:23:48 +02005797 WARN_ON(sd_ctl_dir[0].child);
5798 sd_ctl_dir[0].child = entry;
5799
Milton Millerad1cdc12007-10-15 17:00:19 +02005800 if (entry == NULL)
5801 return;
5802
Milton Miller97b6ea72007-10-15 17:00:19 +02005803 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005804 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005805 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005806 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005807 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005808 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005809 }
Milton Miller73785472007-10-24 18:23:48 +02005810
5811 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005812 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5813}
Milton Miller6382bc92007-10-15 17:00:19 +02005814
Milton Miller73785472007-10-24 18:23:48 +02005815/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005816static void unregister_sched_domain_sysctl(void)
5817{
Milton Miller73785472007-10-24 18:23:48 +02005818 if (sd_sysctl_header)
5819 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005820 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005821 if (sd_ctl_dir[0].child)
5822 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005823}
Nick Piggine692ab52007-07-26 13:40:43 +02005824#else
Milton Miller6382bc92007-10-15 17:00:19 +02005825static void register_sched_domain_sysctl(void)
5826{
5827}
5828static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005829{
5830}
5831#endif
5832
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833/*
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 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005837static int __cpuinit
5838migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005841 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005843 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844
5845 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005846
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005848 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005849 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 if (IS_ERR(p))
5851 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852 kthread_bind(p, cpu);
5853 /* Must be high prio: stop_machine expects to yield to it. */
5854 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005855 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 task_rq_unlock(rq, &flags);
5857 cpu_rq(cpu)->migration_thread = p;
5858 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005859
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005861 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005862 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005864
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005874
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875#ifdef CONFIG_HOTPLUG_CPU
5876 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005877 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005878 if (!cpu_rq(cpu)->migration_thread)
5879 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005880 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005881 kthread_bind(cpu_rq(cpu)->migration_thread,
5882 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883 kthread_stop(cpu_rq(cpu)->migration_thread);
5884 cpu_rq(cpu)->migration_thread = NULL;
5885 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005886
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005888 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005889 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890 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) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005895 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005896 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005897 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005899 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5900 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005902 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005903 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 migrate_nr_uninterruptible(rq);
5905 BUG_ON(rq->nr_running != 0);
5906
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005907 /*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912 spin_lock_irq(&rq->lock);
5913 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005914 struct migration_req *req;
5915
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005917 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 list_del_init(&req->list);
5919 complete(&req->done);
5920 }
5921 spin_unlock_irq(&rq->lock);
5922 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005923
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934#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 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005942static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943 .notifier_call = migration_call,
5944 .priority = 10
5945};
5946
Adrian Bunke6fe6642007-11-09 22:39:39 +01005947void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948{
5949 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005950 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005951
5952 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005953 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5954 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5956 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957}
5958#endif
5959
5960#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005961
5962/* Number of possible processor ids */
5963int nr_cpu_ids __read_mostly = NR_CPUS;
5964EXPORT_SYMBOL(nr_cpu_ids);
5965
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005966#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005967
5968static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
5969{
5970 struct sched_group *group = sd->groups;
5971 cpumask_t groupmask;
5972 char str[NR_CPUS];
5973
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;
5985 }
5986
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 }
5997
5998 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5999 do {
6000 if (!group) {
6001 printk("\n");
6002 printk(KERN_ERR "ERROR: group is NULL\n");
6003 break;
6004 }
6005
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 }
6012
6013 if (!cpus_weight(group->cpumask)) {
6014 printk(KERN_CONT "\n");
6015 printk(KERN_ERR "ERROR: empty group\n");
6016 break;
6017 }
6018
6019 if (cpus_intersects(groupmask, group->cpumask)) {
6020 printk(KERN_CONT "\n");
6021 printk(KERN_ERR "ERROR: repeated CPUs\n");
6022 break;
6023 }
6024
6025 cpus_or(groupmask, groupmask, group->cpumask);
6026
6027 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
6028 printk(KERN_CONT " %s", str);
6029
6030 group = group->next;
6031 } while (group != sd->groups);
6032 printk(KERN_CONT "\n");
6033
6034 if (!cpus_equal(sd->span, groupmask))
6035 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6036
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}
6042
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043static void sched_domain_debug(struct sched_domain *sd, int cpu)
6044{
6045 int level = 0;
6046
Nick Piggin41c7ce92005-06-25 14:57:24 -07006047 if (!sd) {
6048 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6049 return;
6050 }
6051
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6053
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006054 for (;;) {
6055 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057 level++;
6058 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006059 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006060 break;
6061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062}
6063#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006064# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065#endif
6066
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006067static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006068{
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 |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006076 SD_BALANCE_EXEC |
6077 SD_SHARE_CPUPOWER |
6078 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006079 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
Ingo Molnar48f24c42006-07-03 00:25:40 -07006092static int
6093sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006094{
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 |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006112 SD_BALANCE_EXEC |
6113 SD_SHARE_CPUPOWER |
6114 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006115 }
6116 if (~cflags & pflags)
6117 return 0;
6118
6119 return 1;
6120}
6121
Gregory Haskins57d885f2008-01-25 21:08:18 +01006122static 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
Ingo Molnar0eab9142008-01-25 21:08:19 +01006132 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006133 if (class->leave_domain)
6134 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006135 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006136
Gregory Haskinsdc938522008-01-25 21:08:26 +01006137 cpu_clear(rq->cpu, old_rd->span);
6138 cpu_clear(rq->cpu, old_rd->online);
6139
Gregory Haskins57d885f2008-01-25 21:08:18 +01006140 if (atomic_dec_and_test(&old_rd->refcount))
6141 kfree(old_rd);
6142 }
6143
6144 atomic_inc(&rd->refcount);
6145 rq->rd = rd;
6146
Gregory Haskinsdc938522008-01-25 21:08:26 +01006147 cpu_set(rq->cpu, rd->span);
6148 if (cpu_isset(rq->cpu, cpu_online_map))
6149 cpu_set(rq->cpu, rd->online);
6150
Ingo Molnar0eab9142008-01-25 21:08:19 +01006151 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006152 if (class->join_domain)
6153 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006154 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006155
6156 spin_unlock_irqrestore(&rq->lock, flags);
6157}
6158
Gregory Haskinsdc938522008-01-25 21:08:26 +01006159static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006160{
6161 memset(rd, 0, sizeof(*rd));
6162
Gregory Haskinsdc938522008-01-25 21:08:26 +01006163 cpus_clear(rd->span);
6164 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006165}
6166
6167static void init_defrootdomain(void)
6168{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006169 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006170 atomic_set(&def_root_domain.refcount, 1);
6171}
6172
Gregory Haskinsdc938522008-01-25 21:08:26 +01006173static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006174{
6175 struct root_domain *rd;
6176
6177 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6178 if (!rd)
6179 return NULL;
6180
Gregory Haskinsdc938522008-01-25 21:08:26 +01006181 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006182
6183 return rd;
6184}
6185
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006187 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188 * hold the hotplug lock.
6189 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006190static void
6191cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006193 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006194 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;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006201 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006202 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006203 if (parent->parent)
6204 parent->parent->child = tmp;
6205 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006206 }
6207
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006208 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006209 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006210 if (sd)
6211 sd->child = NULL;
6212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213
6214 sched_domain_debug(sd, cpu);
6215
Gregory Haskins57d885f2008-01-25 21:08:18 +01006216 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006217 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218}
6219
6220/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006221static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
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
Ingo Molnar8927f492007-10-15 17:00:13 +02006236__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
6238/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006239 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 *
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 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006248static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006249init_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))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252{
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) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006258 struct sched_group *sg;
6259 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260 int j;
6261
6262 if (cpu_isset(i, covered))
6263 continue;
6264
6265 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006266 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267
6268 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006269 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270 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
John Hawkes9c1cfda2005-09-06 15:18:14 -07006284#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285
John Hawkes9c1cfda2005-09-06 15:18:14 -07006286#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006287
John Hawkes9c1cfda2005-09-06 15:18:14 -07006288/**
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 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006293 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006294 * 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 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006333 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006334 * 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{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006339 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006340 cpumask_t span, nodemask;
6341 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006342
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);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006352
John Hawkes9c1cfda2005-09-06 15:18:14 -07006353 nodemask = node_to_cpumask(next_node);
6354 cpus_or(span, span, nodemask);
6355 }
6356
6357 return span;
6358}
6359#endif
6360
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006361int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006362
John Hawkes9c1cfda2005-09-06 15:18:14 -07006363/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006364 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006365 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366#ifdef CONFIG_SCHED_SMT
6367static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006368static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006369
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006370static int
6371cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006373 if (sg)
6374 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375 return cpu;
6376}
6377#endif
6378
Ingo Molnar48f24c42006-07-03 00:25:40 -07006379/*
6380 * multi-core sched-domains:
6381 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006382#ifdef CONFIG_SCHED_MC
6383static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006384static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006385#endif
6386
6387#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006388static int
6389cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006390{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006391 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006392 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006393 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006394 group = first_cpu(mask);
6395 if (sg)
6396 *sg = &per_cpu(sched_group_core, group);
6397 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006398}
6399#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006400static int
6401cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006402{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006403 if (sg)
6404 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006405 return cpu;
6406}
6407#endif
6408
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006410static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006411
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006412static int
6413cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006415 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006416#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006417 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006418 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006419 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006420#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006421 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006422 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006423 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006425 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006427 if (sg)
6428 *sg = &per_cpu(sched_group_phys, group);
6429 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430}
6431
6432#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006433/*
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.
6437 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006439static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006440
6441static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006442static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006443
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006444static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6445 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006447 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006457
Siddha, Suresh B08069032006-03-27 01:15:23 -08006458static 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;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006465 do {
6466 for_each_cpu_mask(j, sg->cpumask) {
6467 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006468
Andi Kleen3a5c3592007-10-15 17:00:14 +02006469 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 }
6477
6478 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006479 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006480 sg = sg->next;
6481 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006482}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483#endif
6484
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006485#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006486/* Free memory allocated for various sched_group structures */
6487static void free_sched_groups(const cpumask_t *cpu_map)
6488{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006489 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006490
6491 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006492 struct sched_group **sched_group_nodes
6493 = sched_group_nodes_bycpu[cpu];
6494
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006495 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 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006519}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006520#else
6521static void free_sched_groups(const cpumask_t *cpu_map)
6522{
6523}
6524#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006525
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006527 * 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
Eric Dumazet5517d862007-05-08 00:32:57 -07006552 sd->groups->__cpu_power = 0;
6553
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006554 /*
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)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006564 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006565 return;
6566 }
6567
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006568 /*
6569 * add cpu_power of each child group to this groups cpu_power
6570 */
6571 group = child->groups;
6572 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006573 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006574 group = group->next;
6575 } while (group != child->groups);
6576}
6577
6578/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006579 * Build sched domains for a given set of cpus and attach the sched domains
6580 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006582static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583{
6584 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006585 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006586#ifdef CONFIG_NUMA
6587 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006588 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006589
6590 /*
6591 * Allocate the per-node list of sched groups
6592 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006593 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006594 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006595 if (!sched_group_nodes) {
6596 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006597 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006598 }
6599 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6600#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601
Gregory Haskinsdc938522008-01-25 21:08:26 +01006602 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006603 if (!rd) {
6604 printk(KERN_WARNING "Cannot alloc root domain\n");
6605 return -ENOMEM;
6606 }
6607
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006609 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006611 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 struct sched_domain *sd = NULL, *p;
6613 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6614
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006615 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616
6617#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006618 if (cpus_weight(*cpu_map) >
6619 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006620 sd = &per_cpu(allnodes_domains, i);
6621 *sd = SD_ALLNODES_INIT;
6622 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006623 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006624 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006625 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006626 } else
6627 p = NULL;
6628
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006631 sd->span = sched_domain_node_span(cpu_to_node(i));
6632 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006633 if (p)
6634 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006635 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636#endif
6637
6638 p = sd;
6639 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640 *sd = SD_CPU_INIT;
6641 sd->span = nodemask;
6642 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006643 if (p)
6644 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006645 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006647#ifdef CONFIG_SCHED_MC
6648 p = sd;
6649 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006650 *sd = SD_MC_INIT;
6651 sd->span = cpu_coregroup_map(i);
6652 cpus_and(sd->span, sd->span, *cpu_map);
6653 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006654 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006655 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006656#endif
6657
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658#ifdef CONFIG_SCHED_SMT
6659 p = sd;
6660 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006662 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006663 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006665 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006666 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667#endif
6668 }
6669
6670#ifdef CONFIG_SCHED_SMT
6671 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006672 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006673 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006674 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675 if (i != first_cpu(this_sibling_map))
6676 continue;
6677
Ingo Molnardd41f592007-07-09 18:51:59 +02006678 init_sched_build_groups(this_sibling_map, cpu_map,
6679 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680 }
6681#endif
6682
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006683#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;
Ingo Molnardd41f592007-07-09 18:51:59 +02006690 init_sched_build_groups(this_core_map, cpu_map,
6691 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006692 }
6693#endif
6694
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695 /* Set up physical groups */
6696 for (i = 0; i < MAX_NUMNODES; i++) {
6697 cpumask_t nodemask = node_to_cpumask(i);
6698
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006699 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700 if (cpus_empty(nodemask))
6701 continue;
6702
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006703 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704 }
6705
6706#ifdef CONFIG_NUMA
6707 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006708 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006709 init_sched_build_groups(*cpu_map, cpu_map,
6710 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006711
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);
John Hawkesd1b55132005-09-06 15:18:14 -07006721 if (cpus_empty(nodemask)) {
6722 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006723 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006724 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006725
6726 domainspan = sched_domain_node_span(i);
6727 cpus_and(domainspan, domainspan, *cpu_map);
6728
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006729 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006730 if (!sg) {
6731 printk(KERN_WARNING "Can not alloc domain group for "
6732 "node %d\n", i);
6733 goto error;
6734 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006735 sched_group_nodes[i] = sg;
6736 for_each_cpu_mask(j, nodemask) {
6737 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006738
John Hawkes9c1cfda2005-09-06 15:18:14 -07006739 sd = &per_cpu(node_domains, j);
6740 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006741 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006742 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006743 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006744 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006745 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
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006763 sg = kmalloc_node(sizeof(struct sched_group),
6764 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006765 if (!sg) {
6766 printk(KERN_WARNING
6767 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006768 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006769 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006770 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006771 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006772 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006773 cpus_or(covered, covered, tmp);
6774 prev->next = sg;
6775 prev = sg;
6776 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778#endif
6779
6780 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006781#ifdef CONFIG_SCHED_SMT
6782 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006783 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6784
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006785 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006786 }
6787#endif
6788#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006789 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006790 struct sched_domain *sd = &per_cpu(core_domains, i);
6791
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006792 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006793 }
6794#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006796 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006797 struct sched_domain *sd = &per_cpu(phys_domains, i);
6798
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006799 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800 }
6801
John Hawkes9c1cfda2005-09-06 15:18:14 -07006802#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006803 for (i = 0; i < MAX_NUMNODES; i++)
6804 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006805
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006806 if (sd_allnodes) {
6807 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006808
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006809 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006810 init_numa_sched_groups_power(sg);
6811 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006812#endif
6813
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006815 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 struct sched_domain *sd;
6817#ifdef CONFIG_SCHED_SMT
6818 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006819#elif defined(CONFIG_SCHED_MC)
6820 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821#else
6822 sd = &per_cpu(phys_domains, i);
6823#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006824 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006826
6827 return 0;
6828
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006829#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006830error:
6831 free_sched_groups(cpu_map);
6832 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006833#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834}
Paul Jackson029190c2007-10-18 23:40:20 -07006835
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
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006846/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006847 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006848 * For now this just excludes isolated cpus, but could be used to
6849 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006850 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006851static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006852{
Milton Miller73785472007-10-24 18:23:48 +02006853 int err;
6854
Paul Jackson029190c2007-10-18 23:40:20 -07006855 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);
Milton Miller73785472007-10-24 18:23:48 +02006860 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006861 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006862
6863 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006864}
6865
6866static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006868 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006869}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006871/*
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 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006875static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006876{
6877 int i;
6878
Milton Miller6382bc92007-10-15 17:00:19 +02006879 unregister_sched_domain_sysctl();
6880
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006881 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006882 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006883 synchronize_sched();
6884 arch_destroy_sched_domains(cpu_map);
6885}
6886
Paul Jackson029190c2007-10-18 23:40:20 -07006887/*
6888 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006889 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006890 * 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'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006894 * 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
Paul Jackson029190c2007-10-18 23:40:20 -07006897 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6898 * it as it is.
6899 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006900 * 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
Paul Jackson029190c2007-10-18 23:40:20 -07006902 * 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
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006912 lock_doms_cur();
6913
Milton Miller73785472007-10-24 18:23:48 +02006914 /* always unregister in case we don't destroy any domains */
6915 unregister_sched_domain_sysctl();
6916
Paul Jackson029190c2007-10-18 23:40:20 -07006917 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;
Milton Miller73785472007-10-24 18:23:48 +02006952
6953 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006954
6955 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07006956}
6957
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006958#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006959static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006960{
6961 int err;
6962
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006963 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006964 detach_destroy_domains(&cpu_online_map);
6965 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006966 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006967
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
Adrian Bunk6707de002007-08-12 18:08:19 +02006988#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}
6993static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6994 const char *buf, size_t count)
6995{
6996 return sched_power_savings_store(buf, count, 0);
6997}
6998static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6999 sched_mc_power_savings_store);
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}
7007static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7008 const char *buf, size_t count)
7009{
7010 return sched_power_savings_store(buf, count, 1);
7011}
7012static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7013 sched_smt_power_savings_store);
7014#endif
7015
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007016int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7017{
7018 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007019
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007020#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}
7032#endif
7033
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007035 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007037 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038 * 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{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043 switch (action) {
7044 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007045 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007047 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007048 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049 return NOTIFY_OK;
7050
7051 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007052 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007054 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007055 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007056 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007058 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007059 /*
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 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007068 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069
7070 return NOTIFY_OK;
7071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072
7073void __init sched_init_smp(void)
7074{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007075 cpumask_t non_isolated_cpus;
7076
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007077 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007078 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007079 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007080 if (cpus_empty(non_isolated_cpus))
7081 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007082 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083 /* XXX: Theoretical race here - CPU may be hotplugged now */
7084 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007085
7086 /* Move init over to a non-isolated CPU */
7087 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7088 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007089 sched_init_granularity();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007090
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105}
7106#else
7107void __init sched_init_smp(void)
7108{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007109 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110}
7111#endif /* CONFIG_SMP */
7112
7113int in_sched_functions(unsigned long addr)
7114{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007115 return in_lock_functions(addr) ||
7116 (addr >= (unsigned long)__sched_text_start
7117 && addr < (unsigned long)__sched_text_end);
7118}
7119
Alexey Dobriyana9957442007-10-15 17:00:13 +02007120static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007121{
7122 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007123#ifdef CONFIG_FAIR_GROUP_SCHED
7124 cfs_rq->rq = rq;
7125#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007126 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007127}
7128
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007129static 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
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007142#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007143 rt_rq->highest_prio = MAX_RT_PRIO;
7144#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007145#ifdef CONFIG_SMP
7146 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007147 rt_rq->overloaded = 0;
7148#endif
7149
7150 rt_rq->rt_time = 0;
7151 rt_rq->rt_throttled = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007152
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007153#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007154 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007155 rt_rq->rq = rq;
7156#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007157}
7158
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007159#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}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007177#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007178
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007179#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007180static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199void __init sched_init(void)
7200{
Christoph Lameter476f3532007-05-06 14:48:58 -07007201 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007202 int i, j;
7203
Gregory Haskins57d885f2008-01-25 21:08:18 +01007204#ifdef CONFIG_SMP
7205 init_defrootdomain();
7206#endif
7207
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007208#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007209 list_add(&init_task_group.list, &task_groups);
7210#endif
7211
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007212 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007213 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214
7215 rq = cpu_rq(i);
7216 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007217 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007218 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007219 rq->clock = 1;
7220 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007221 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007222#ifdef CONFIG_FAIR_GROUP_SCHED
7223 init_task_group.shares = init_task_group_load;
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
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007229#endif
7230#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007231 init_task_group.rt_runtime =
7232 sysctl_sched_rt_runtime * NSEC_PER_USEC;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007233 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);
7237#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007238 rq->rt_period_expire = 0;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007239 rq->rt_throttled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007240
Ingo Molnardd41f592007-07-09 18:51:59 +02007241 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7242 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007244 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007245 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007247 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007248 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007249 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250 rq->migration_thread = NULL;
7251 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007252 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007254 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007255 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007256 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257 }
7258
Peter Williams2dd73a42006-06-27 02:54:34 -07007259 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007260
Avi Kivitye107be32007-07-26 13:40:43 +02007261#ifdef CONFIG_PREEMPT_NOTIFIERS
7262 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7263#endif
7264
Christoph Lameterc9819f42006-12-10 02:20:25 -08007265#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007266 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007267 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7268#endif
7269
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007270#ifdef CONFIG_RT_MUTEXES
7271 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7272#endif
7273
Linus Torvalds1da177e2005-04-16 15:20:36 -07007274 /*
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());
Ingo Molnardd41f592007-07-09 18:51:59 +02007287 /*
7288 * During early bootup we pretend to be a normal task:
7289 */
7290 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007291
7292 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007293}
7294
7295#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7296void __might_sleep(char *file, int line)
7297{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007298#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007299 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;
Ingo Molnar91368d72006-03-23 03:00:54 -08007306 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307 " context at %s:%d\n", file, line);
7308 printk("in_atomic():%d, irqs_disabled():%d\n",
7309 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007310 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007311 if (irqs_disabled())
7312 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313 dump_stack();
7314 }
7315#endif
7316}
7317EXPORT_SYMBOL(__might_sleep);
7318#endif
7319
7320#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007321static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335void normalize_rt_tasks(void)
7336{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007337 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007339 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007341 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007342 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007343 /*
7344 * Only normalize user tasks:
7345 */
7346 if (!p->mm)
7347 continue;
7348
Ingo Molnardd41f592007-07-09 18:51:59 +02007349 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007350#ifdef CONFIG_SCHEDSTATS
7351 p->se.wait_start = 0;
7352 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007353 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007354#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007355 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007367 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007368 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369
Ingo Molnar178be792007-10-15 17:00:18 +02007370 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007371
Ingo Molnarb29739f2006-06-27 02:54:51 -07007372 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007373 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007374 } while_each_thread(g, p);
7375
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007376 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377}
7378
7379#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007380
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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007398struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007399{
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
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007409 * 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
Linus Torvalds1df5c102005-09-12 07:59:21 -07007411 * 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 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007418void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007419{
7420 cpu_curr(cpu) = p;
7421}
7422
7423#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007424
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007425#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007426
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007427#if defined CONFIG_FAIR_GROUP_SCHED && defined CONFIG_SMP
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007428/*
7429 * distribute shares of all task groups among their schedulable entities,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007430 * to reflect load distribution across cpus.
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007431 */
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
Ingo Molnar0eab9142008-01-25 21:08:19 +01007449 /* Nothing to do if this group has no load */
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007450 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 *
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007497 * These settings allows for the appropriate trade-off between accuracy of
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007498 * 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 */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01007530 get_online_cpus();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007531 /* 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();
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01007564 put_online_cpus();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007565
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
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007578#ifdef CONFIG_FAIR_GROUP_SCHED
7579static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007580{
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]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007588 }
7589
7590 kfree(tg->cfs_rq);
7591 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007592}
7593
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007594static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007595{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007596 struct cfs_rq *cfs_rq;
7597 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007598 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007599 int i;
7600
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007601 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007602 if (!tg->cfs_rq)
7603 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007604 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007605 if (!tg->se)
7606 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007607
7608 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007609
7610 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007611 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007612
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007613 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7614 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007615 if (!cfs_rq)
7616 goto err;
7617
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007618 se = kmalloc_node(sizeof(struct sched_entity),
7619 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007620 if (!se)
7621 goto err;
7622
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007623 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007624 }
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}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007659#endif
7660
7661#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007662static 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
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007696 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7697 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7698 if (!rt_rq)
7699 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007700
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007701 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;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007705
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007706 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007707 }
7708
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007709 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
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007768 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007769 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007770 register_fair_sched_group(tg, i);
7771 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007772 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007773 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007774 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007775
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007776 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007777
7778err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007779 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007780 return ERR_PTR(-ENOMEM);
7781}
7782
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007783/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007784static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007785{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007786 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007787 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007788}
7789
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007790/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007791void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007792{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007793 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007794 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007795
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007796 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007797 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007798 unregister_fair_sched_group(tg, i);
7799 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007800 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007801 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007802 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007803
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007804 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007805 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007806}
7807
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007808/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007809 * 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.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007812 */
7813void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007814{
7815 int on_rq, running;
7816 unsigned long flags;
7817 struct rq *rq;
7818
7819 rq = task_rq_lock(tsk, &flags);
7820
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007821 update_rq_clock(rq);
7822
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007823 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007824 on_rq = tsk->se.on_rq;
7825
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007826 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007827 dequeue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007828 if (unlikely(running))
7829 tsk->sched_class->put_prev_task(rq, tsk);
7830 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007831
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007832 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007833
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007834 if (on_rq) {
7835 if (unlikely(running))
7836 tsk->sched_class->set_curr_task(rq);
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007837 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007838 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007839
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007840 task_rq_unlock(rq, &flags);
7841}
7842
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007843#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007844/* rq->lock to be locked by caller */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007845static 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
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007851 if (!shares)
7852 shares = MIN_GROUP_SHARES;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007853
7854 on_rq = se->on_rq;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007855 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007856 dequeue_entity(cfs_rq, se, 0);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007857 dec_cpu_load(rq, se->load.weight);
7858 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007859
7860 se->load.weight = shares;
7861 se->load.inv_weight = div64_64((1ULL<<32), shares);
7862
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007863 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007864 enqueue_entity(cfs_rq, se, 0);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007865 inc_cpu_load(rq, se->load.weight);
7866 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007867}
7868
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007869static DEFINE_MUTEX(shares_mutex);
7870
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007871int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007872{
7873 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007874 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007875
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007876 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007877 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007878 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007879
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007880 if (shares < MIN_GROUP_SHARES)
7881 shares = MIN_GROUP_SHARES;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007882
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007883 /*
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 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007888 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007889 for_each_possible_cpu(i)
7890 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007891 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007892
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 */
7900 tg->shares = shares;
7901 for_each_possible_cpu(i) {
7902 spin_lock_irq(&cpu_rq(i)->lock);
7903 set_se_shares(tg->se[i], shares);
7904 spin_unlock_irq(&cpu_rq(i)->lock);
7905 }
7906
7907 /*
7908 * Enable load balance activity on this group, by inserting it back on
7909 * each cpu's rq->leaf_cfs_rq_list.
7910 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007911 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007912 for_each_possible_cpu(i)
7913 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007914 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007915done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007916 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007917 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007918}
7919
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007920unsigned long sched_group_shares(struct task_group *tg)
7921{
7922 return tg->shares;
7923}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007924#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007925
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007926#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007927/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007928 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007929 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007930static 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)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007943{
7944 struct task_group *tgi;
7945 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007946 unsigned long global_ratio =
7947 to_ratio(sysctl_sched_rt_period,
7948 sysctl_sched_rt_runtime < 0 ?
7949 RUNTIME_INF : sysctl_sched_rt_runtime);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007950
7951 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007952 list_for_each_entry_rcu(tgi, &task_groups, list) {
7953 if (tgi == tg)
7954 continue;
7955
7956 total += to_ratio(period, tgi->rt_runtime);
7957 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007958 rcu_read_unlock();
7959
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007960 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007961}
7962
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007963int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007964{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007965 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;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007985}
7986
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01007987long 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}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007998#endif
7999#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008000
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008001#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008002
8003/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008004static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008005{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008006 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8007 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008008}
8009
8010static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008011cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008012{
8013 struct task_group *tg;
8014
Paul Menage2b01dfe2007-10-24 18:23:50 +02008015 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008016 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008017 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008018 return &init_task_group.css;
8019 }
8020
8021 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008022 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008023 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 */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008030 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008031
8032 return &tg->css;
8033}
8034
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008035static void
8036cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008037{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008038 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008039
8040 sched_destroy_group(tg);
8041}
8042
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008043static int
8044cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8045 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008046{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008047#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
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008052 /* We don't support RT-tasks being in separate groups */
8053 if (tsk->sched_class != &fair_sched_class)
8054 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008055#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008056
8057 return 0;
8058}
8059
8060static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008061cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008062 struct cgroup *old_cont, struct task_struct *tsk)
8063{
8064 sched_move_task(tsk);
8065}
8066
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008067#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02008068static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8069 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008070{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008071 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008072}
8073
Paul Menage2b01dfe2007-10-24 18:23:50 +02008074static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008075{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008076 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008077
8078 return (u64) tg->shares;
8079}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008080#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008081
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008082#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008083static 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)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008087{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008088 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;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008114}
8115
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008116static 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)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008120{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008121 char tmp[64];
8122 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
8123 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008124
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008125 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008126}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008127#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008128
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008129static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008130#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008131 {
8132 .name = "shares",
8133 .read_uint = cpu_shares_read_uint,
8134 .write_uint = cpu_shares_write_uint,
8135 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008136#endif
8137#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008138 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008139 .name = "rt_runtime_us",
8140 .read = cpu_rt_runtime_read,
8141 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008142 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008143#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008144};
8145
8146static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8147{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008148 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008149}
8150
8151struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01008152 .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,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008159 .early_init = 1,
8160};
8161
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008162#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008163
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 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008215static void
8216cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008217{
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 */