blob: e9a7beee9b790f2cddede096edd84ef663953047 [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
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200158#ifdef CONFIG_FAIR_GROUP_SCHED
159
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700160#include <linux/cgroup.h>
161
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200162struct cfs_rq;
163
164/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200165struct task_group {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700166#ifdef CONFIG_FAIR_CGROUP_SCHED
167 struct cgroup_subsys_state css;
168#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200169 /* schedulable entities of this group on each cpu */
170 struct sched_entity **se;
171 /* runqueue "owned" by this group on each cpu */
172 struct cfs_rq **cfs_rq;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100173
174 /*
175 * shares assigned to a task group governs how much of cpu bandwidth
176 * is allocated to the group. The more shares a group has, the more is
177 * the cpu bandwidth allocated to it.
178 *
179 * For ex, lets say that there are three task groups, A, B and C which
180 * have been assigned shares 1000, 2000 and 3000 respectively. Then,
181 * cpu bandwidth allocated by the scheduler to task groups A, B and C
182 * should be:
183 *
184 * Bw(A) = 1000/(1000+2000+3000) * 100 = 16.66%
185 * Bw(B) = 2000/(1000+2000+3000) * 100 = 33.33%
Ingo Molnar03319ec2008-01-25 21:08:28 +0100186 * Bw(C) = 3000/(1000+2000+3000) * 100 = 50%
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100187 *
188 * The weight assigned to a task group's schedulable entities on every
189 * cpu (task_group.se[a_cpu]->load.weight) is derived from the task
190 * group's shares. For ex: lets say that task group A has been
191 * assigned shares of 1000 and there are two CPUs in a system. Then,
192 *
193 * tg_A->se[0]->load.weight = tg_A->se[1]->load.weight = 1000;
194 *
195 * Note: It's not necessary that each of a task's group schedulable
Ingo Molnar03319ec2008-01-25 21:08:28 +0100196 * entity have the same weight on all CPUs. If the group
197 * has 2 of its tasks on CPU0 and 1 task on CPU1, then a
198 * better distribution of weight could be:
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100199 *
200 * tg_A->se[0]->load.weight = 2/3 * 2000 = 1333
201 * tg_A->se[1]->load.weight = 1/2 * 2000 = 667
202 *
203 * rebalance_shares() is responsible for distributing the shares of a
204 * task groups like this among the group's schedulable entities across
205 * cpus.
206 *
207 */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200208 unsigned long shares;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100209
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100210 struct rcu_head rcu;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200211};
212
213/* Default task group's sched entity on each cpu */
214static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
215/* Default task group's cfs_rq on each cpu */
216static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
217
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200218static struct sched_entity *init_sched_entity_p[NR_CPUS];
219static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200220
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100221/* task_group_mutex serializes add/remove of task groups and also changes to
222 * a task group's cpu shares.
223 */
224static DEFINE_MUTEX(task_group_mutex);
225
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100226/* doms_cur_mutex serializes access to doms_cur[] array */
227static DEFINE_MUTEX(doms_cur_mutex);
228
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100229#ifdef CONFIG_SMP
230/* kernel thread that runs rebalance_shares() periodically */
231static struct task_struct *lb_monitor_task;
232static int load_balance_monitor(void *unused);
233#endif
234
235static void set_se_shares(struct sched_entity *se, unsigned long shares);
236
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200237/* Default task group.
Ingo Molnar3a252012007-10-15 17:00:12 +0200238 * Every task in system belong to this group at bootup.
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200239 */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200240struct task_group init_task_group = {
Ingo Molnar0eab9142008-01-25 21:08:19 +0100241 .se = init_sched_entity_p,
Ingo Molnar3a252012007-10-15 17:00:12 +0200242 .cfs_rq = init_cfs_rq_p,
243};
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200244
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200245#ifdef CONFIG_FAIR_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100246# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200247#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100248# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200249#endif
250
Ingo Molnar0eab9142008-01-25 21:08:19 +0100251#define MIN_GROUP_SHARES 2
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100252
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100253static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200254
255/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200256static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200257{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200258 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200259
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200260#ifdef CONFIG_FAIR_USER_SCHED
261 tg = p->user->tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700262#elif defined(CONFIG_FAIR_CGROUP_SCHED)
263 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
264 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200265#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100266 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200267#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200268 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200269}
270
271/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100272static inline void set_task_cfs_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200273{
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100274 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
275 p->se.parent = task_group(p)->se[cpu];
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200276}
277
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100278static inline void lock_task_group_list(void)
279{
280 mutex_lock(&task_group_mutex);
281}
282
283static inline void unlock_task_group_list(void)
284{
285 mutex_unlock(&task_group_mutex);
286}
287
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100288static inline void lock_doms_cur(void)
289{
290 mutex_lock(&doms_cur_mutex);
291}
292
293static inline void unlock_doms_cur(void)
294{
295 mutex_unlock(&doms_cur_mutex);
296}
297
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200298#else
299
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100300static inline void set_task_cfs_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100301static inline void lock_task_group_list(void) { }
302static inline void unlock_task_group_list(void) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100303static inline void lock_doms_cur(void) { }
304static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200305
306#endif /* CONFIG_FAIR_GROUP_SCHED */
307
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200308/* CFS-related fields in a runqueue */
309struct cfs_rq {
310 struct load_weight load;
311 unsigned long nr_running;
312
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200313 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200314 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200315
316 struct rb_root tasks_timeline;
317 struct rb_node *rb_leftmost;
318 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200319 /* 'curr' points to currently running entity on this cfs_rq.
320 * It is set to NULL otherwise (i.e when none are currently running).
321 */
322 struct sched_entity *curr;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200323
324 unsigned long nr_spread_over;
325
Ingo Molnar62160e32007-10-15 17:00:03 +0200326#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200327 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
328
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100329 /*
330 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200331 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
332 * (like users, containers etc.)
333 *
334 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
335 * list is used during load balance.
336 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100337 struct list_head leaf_cfs_rq_list;
338 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200339#endif
340};
341
342/* Real-Time classes' related field in a runqueue: */
343struct rt_rq {
344 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100345 unsigned long rt_nr_running;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100346#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100347 unsigned long rt_nr_migratory;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100348 int highest_prio; /* highest queued rt task prio */
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100349 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100350#endif
351 u64 rt_time;
352 u64 rt_throttled;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200353};
354
Gregory Haskins57d885f2008-01-25 21:08:18 +0100355#ifdef CONFIG_SMP
356
357/*
358 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100359 * variables. Each exclusive cpuset essentially defines an island domain by
360 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100361 * exclusive cpuset is created, we also create and attach a new root-domain
362 * object.
363 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100364 */
365struct root_domain {
366 atomic_t refcount;
367 cpumask_t span;
368 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100369
Ingo Molnar0eab9142008-01-25 21:08:19 +0100370 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100371 * The "RT overload" flag: it gets set if a CPU has more than
372 * one runnable RT task.
373 */
374 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100375 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100376};
377
Gregory Haskinsdc938522008-01-25 21:08:26 +0100378/*
379 * By default the system creates a single root-domain with all cpus as
380 * members (mimicking the global state we have today).
381 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100382static struct root_domain def_root_domain;
383
384#endif
385
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200386/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * This is the main, per-CPU runqueue data structure.
388 *
389 * Locking rule: those places that want to lock multiple runqueues
390 * (such as the load balancing or the thread migration code), lock
391 * acquire operations must be ordered by ascending &runqueue.
392 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700393struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200394 /* runqueue lock: */
395 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /*
398 * nr_running and cpu_load should be in the same cacheline because
399 * remote CPUs use both these fields when doing load calculation.
400 */
401 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200402 #define CPU_LOAD_IDX_MAX 5
403 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700404 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700405#ifdef CONFIG_NO_HZ
406 unsigned char in_nohz_recently;
407#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200408 /* capture load from *all* tasks on this cpu: */
409 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200410 unsigned long nr_load_updates;
411 u64 nr_switches;
412
413 struct cfs_rq cfs;
414#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200415 /* list of leaf cfs_rq on this cpu: */
416 struct list_head leaf_cfs_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#endif
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100418 struct rt_rq rt;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100419 u64 rt_period_expire;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /*
422 * This is part of a global counter where only the total sum
423 * over all CPUs matters. A task can increase this counter on
424 * one CPU and if it got migrated afterwards it may decrease
425 * it on another CPU. Always updated under the runqueue lock:
426 */
427 unsigned long nr_uninterruptible;
428
Ingo Molnar36c8b582006-07-03 00:25:41 -0700429 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800430 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200432
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200433 u64 clock, prev_clock_raw;
434 s64 clock_max_delta;
435
436 unsigned int clock_warps, clock_overflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200437 u64 idle_clock;
438 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200439 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 atomic_t nr_iowait;
442
443#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100444 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct sched_domain *sd;
446
447 /* For active balancing */
448 int active_balance;
449 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200450 /* cpu of this runqueue: */
451 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Ingo Molnar36c8b582006-07-03 00:25:41 -0700453 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct list_head migration_queue;
455#endif
456
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100457#ifdef CONFIG_SCHED_HRTICK
458 unsigned long hrtick_flags;
459 ktime_t hrtick_expire;
460 struct hrtimer hrtick_timer;
461#endif
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#ifdef CONFIG_SCHEDSTATS
464 /* latency stats */
465 struct sched_info rq_sched_info;
466
467 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200468 unsigned int yld_exp_empty;
469 unsigned int yld_act_empty;
470 unsigned int yld_both_empty;
471 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200474 unsigned int sched_switch;
475 unsigned int sched_count;
476 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200479 unsigned int ttwu_count;
480 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200481
482 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200483 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700485 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486};
487
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700488static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Ingo Molnardd41f592007-07-09 18:51:59 +0200490static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
491{
492 rq->curr->sched_class->check_preempt_curr(rq, p);
493}
494
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700495static inline int cpu_of(struct rq *rq)
496{
497#ifdef CONFIG_SMP
498 return rq->cpu;
499#else
500 return 0;
501#endif
502}
503
Nick Piggin674311d2005-06-25 14:57:27 -0700504/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200505 * Update the per-runqueue clock, as finegrained as the platform can give
506 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200507 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200508static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200509{
510 u64 prev_raw = rq->prev_clock_raw;
511 u64 now = sched_clock();
512 s64 delta = now - prev_raw;
513 u64 clock = rq->clock;
514
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200515#ifdef CONFIG_SCHED_DEBUG
516 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
517#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200518 /*
519 * Protect against sched_clock() occasionally going backwards:
520 */
521 if (unlikely(delta < 0)) {
522 clock++;
523 rq->clock_warps++;
524 } else {
525 /*
526 * Catch too large forward jumps too:
527 */
Ingo Molnar529c7722007-08-10 23:05:11 +0200528 if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) {
529 if (clock < rq->tick_timestamp + TICK_NSEC)
530 clock = rq->tick_timestamp + TICK_NSEC;
531 else
532 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200533 rq->clock_overflows++;
534 } else {
535 if (unlikely(delta > rq->clock_max_delta))
536 rq->clock_max_delta = delta;
537 clock += delta;
538 }
539 }
540
541 rq->prev_clock_raw = now;
542 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200543}
544
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200545static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200546{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200547 if (likely(smp_processor_id() == cpu_of(rq)))
548 __update_rq_clock(rq);
549}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200550
Ingo Molnar20d315d2007-07-09 18:51:58 +0200551/*
Nick Piggin674311d2005-06-25 14:57:27 -0700552 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700553 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700554 *
555 * The domain tree of any CPU may only be accessed from within
556 * preempt-disabled sections.
557 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700558#define for_each_domain(cpu, __sd) \
559 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
562#define this_rq() (&__get_cpu_var(runqueues))
563#define task_rq(p) cpu_rq(task_cpu(p))
564#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
565
Ingo Molnare436d802007-07-19 21:28:35 +0200566/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200567 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
568 */
569#ifdef CONFIG_SCHED_DEBUG
570# define const_debug __read_mostly
571#else
572# define const_debug static const
573#endif
574
575/*
576 * Debugging: various feature bits
577 */
578enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200579 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100580 SCHED_FEAT_WAKEUP_PREEMPT = 2,
581 SCHED_FEAT_START_DEBIT = 4,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100582 SCHED_FEAT_TREE_AVG = 8,
583 SCHED_FEAT_APPROX_AVG = 16,
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100584 SCHED_FEAT_HRTICK = 32,
585 SCHED_FEAT_DOUBLE_TICK = 64,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200586};
587
588const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200589 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100590 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200591 SCHED_FEAT_START_DEBIT * 1 |
592 SCHED_FEAT_TREE_AVG * 0 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100593 SCHED_FEAT_APPROX_AVG * 0 |
594 SCHED_FEAT_HRTICK * 1 |
595 SCHED_FEAT_DOUBLE_TICK * 0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200596
597#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
598
599/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100600 * Number of tasks to iterate in a single balance run.
601 * Limited because this is done with IRQs disabled.
602 */
603const_debug unsigned int sysctl_sched_nr_migrate = 32;
604
605/*
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100606 * period over which we measure -rt task cpu usage in ms.
607 * default: 1s
608 */
609const_debug unsigned int sysctl_sched_rt_period = 1000;
610
611#define SCHED_RT_FRAC_SHIFT 16
612#define SCHED_RT_FRAC (1UL << SCHED_RT_FRAC_SHIFT)
613
614/*
615 * ratio of time -rt tasks may consume.
616 * default: 100%
617 */
618const_debug unsigned int sysctl_sched_rt_ratio = SCHED_RT_FRAC;
619
620/*
Ingo Molnare436d802007-07-19 21:28:35 +0200621 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
622 * clock constructed from sched_clock():
623 */
624unsigned long long cpu_clock(int cpu)
625{
Ingo Molnare436d802007-07-19 21:28:35 +0200626 unsigned long long now;
627 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200628 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200629
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200630 local_irq_save(flags);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200631 rq = cpu_rq(cpu);
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100632 /*
633 * Only call sched_clock() if the scheduler has already been
634 * initialized (some code might call cpu_clock() very early):
635 */
636 if (rq->idle)
637 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200638 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200639 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200640
641 return now;
642}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200643EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700646# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700648#ifndef finish_arch_switch
649# define finish_arch_switch(prev) do { } while (0)
650#endif
651
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100652static inline int task_current(struct rq *rq, struct task_struct *p)
653{
654 return rq->curr == p;
655}
656
Nick Piggin4866cde2005-06-25 14:57:23 -0700657#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700658static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700659{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100660 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700661}
662
Ingo Molnar70b97a72006-07-03 00:25:42 -0700663static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700664{
665}
666
Ingo Molnar70b97a72006-07-03 00:25:42 -0700667static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700668{
Ingo Molnarda04c032005-09-13 11:17:59 +0200669#ifdef CONFIG_DEBUG_SPINLOCK
670 /* this is a valid case when another task releases the spinlock */
671 rq->lock.owner = current;
672#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700673 /*
674 * If we are tracking spinlock dependencies then we have to
675 * fix up the runqueue lock - which gets 'carried over' from
676 * prev into current:
677 */
678 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
679
Nick Piggin4866cde2005-06-25 14:57:23 -0700680 spin_unlock_irq(&rq->lock);
681}
682
683#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700684static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700685{
686#ifdef CONFIG_SMP
687 return p->oncpu;
688#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100689 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700690#endif
691}
692
Ingo Molnar70b97a72006-07-03 00:25:42 -0700693static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700694{
695#ifdef CONFIG_SMP
696 /*
697 * We can optimise this out completely for !SMP, because the
698 * SMP rebalancing from interrupt is the only thing that cares
699 * here.
700 */
701 next->oncpu = 1;
702#endif
703#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
704 spin_unlock_irq(&rq->lock);
705#else
706 spin_unlock(&rq->lock);
707#endif
708}
709
Ingo Molnar70b97a72006-07-03 00:25:42 -0700710static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700711{
712#ifdef CONFIG_SMP
713 /*
714 * After ->oncpu is cleared, the task can be moved to a different CPU.
715 * We must ensure this doesn't happen until the switch is completely
716 * finished.
717 */
718 smp_wmb();
719 prev->oncpu = 0;
720#endif
721#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
722 local_irq_enable();
723#endif
724}
725#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700728 * __task_rq_lock - lock the runqueue a given task resides on.
729 * Must be called interrupts disabled.
730 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700731static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700732 __acquires(rq->lock)
733{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200734 for (;;) {
735 struct rq *rq = task_rq(p);
736 spin_lock(&rq->lock);
737 if (likely(rq == task_rq(p)))
738 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700739 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700740 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700741}
742
743/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100745 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 * explicitly disabling preemption.
747 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700748static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 __acquires(rq->lock)
750{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700751 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Andi Kleen3a5c3592007-10-15 17:00:14 +0200753 for (;;) {
754 local_irq_save(*flags);
755 rq = task_rq(p);
756 spin_lock(&rq->lock);
757 if (likely(rq == task_rq(p)))
758 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Alexey Dobriyana9957442007-10-15 17:00:13 +0200763static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700764 __releases(rq->lock)
765{
766 spin_unlock(&rq->lock);
767}
768
Ingo Molnar70b97a72006-07-03 00:25:42 -0700769static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 __releases(rq->lock)
771{
772 spin_unlock_irqrestore(&rq->lock, *flags);
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800776 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200778static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 __acquires(rq->lock)
780{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700781 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 local_irq_disable();
784 rq = this_rq();
785 spin_lock(&rq->lock);
786
787 return rq;
788}
789
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200790/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200791 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200792 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200793void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200794{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200795 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200796
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200797 spin_lock(&rq->lock);
798 __update_rq_clock(rq);
799 spin_unlock(&rq->lock);
800 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200801}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200802EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
803
804/*
805 * We just idled delta nanoseconds (called with irqs disabled):
806 */
807void sched_clock_idle_wakeup_event(u64 delta_ns)
808{
809 struct rq *rq = cpu_rq(smp_processor_id());
810 u64 now = sched_clock();
811
Ingo Molnar2bacec82007-12-18 15:21:13 +0100812 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200813 rq->idle_clock += delta_ns;
814 /*
815 * Override the previous timestamp and ignore all
816 * sched_clock() deltas that occured while we idled,
817 * and use the PM-provided delta_ns to advance the
818 * rq clock:
819 */
820 spin_lock(&rq->lock);
821 rq->prev_clock_raw = now;
822 rq->clock += delta_ns;
823 spin_unlock(&rq->lock);
824}
825EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200826
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100827static void __resched_task(struct task_struct *p, int tif_bit);
828
829static inline void resched_task(struct task_struct *p)
830{
831 __resched_task(p, TIF_NEED_RESCHED);
832}
833
834#ifdef CONFIG_SCHED_HRTICK
835/*
836 * Use HR-timers to deliver accurate preemption points.
837 *
838 * Its all a bit involved since we cannot program an hrt while holding the
839 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
840 * reschedule event.
841 *
842 * When we get rescheduled we reprogram the hrtick_timer outside of the
843 * rq->lock.
844 */
845static inline void resched_hrt(struct task_struct *p)
846{
847 __resched_task(p, TIF_HRTICK_RESCHED);
848}
849
850static inline void resched_rq(struct rq *rq)
851{
852 unsigned long flags;
853
854 spin_lock_irqsave(&rq->lock, flags);
855 resched_task(rq->curr);
856 spin_unlock_irqrestore(&rq->lock, flags);
857}
858
859enum {
860 HRTICK_SET, /* re-programm hrtick_timer */
861 HRTICK_RESET, /* not a new slice */
862};
863
864/*
865 * Use hrtick when:
866 * - enabled by features
867 * - hrtimer is actually high res
868 */
869static inline int hrtick_enabled(struct rq *rq)
870{
871 if (!sched_feat(HRTICK))
872 return 0;
873 return hrtimer_is_hres_active(&rq->hrtick_timer);
874}
875
876/*
877 * Called to set the hrtick timer state.
878 *
879 * called with rq->lock held and irqs disabled
880 */
881static void hrtick_start(struct rq *rq, u64 delay, int reset)
882{
883 assert_spin_locked(&rq->lock);
884
885 /*
886 * preempt at: now + delay
887 */
888 rq->hrtick_expire =
889 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
890 /*
891 * indicate we need to program the timer
892 */
893 __set_bit(HRTICK_SET, &rq->hrtick_flags);
894 if (reset)
895 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
896
897 /*
898 * New slices are called from the schedule path and don't need a
899 * forced reschedule.
900 */
901 if (reset)
902 resched_hrt(rq->curr);
903}
904
905static void hrtick_clear(struct rq *rq)
906{
907 if (hrtimer_active(&rq->hrtick_timer))
908 hrtimer_cancel(&rq->hrtick_timer);
909}
910
911/*
912 * Update the timer from the possible pending state.
913 */
914static void hrtick_set(struct rq *rq)
915{
916 ktime_t time;
917 int set, reset;
918 unsigned long flags;
919
920 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
921
922 spin_lock_irqsave(&rq->lock, flags);
923 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
924 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
925 time = rq->hrtick_expire;
926 clear_thread_flag(TIF_HRTICK_RESCHED);
927 spin_unlock_irqrestore(&rq->lock, flags);
928
929 if (set) {
930 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
931 if (reset && !hrtimer_active(&rq->hrtick_timer))
932 resched_rq(rq);
933 } else
934 hrtick_clear(rq);
935}
936
937/*
938 * High-resolution timer tick.
939 * Runs from hardirq context with interrupts disabled.
940 */
941static enum hrtimer_restart hrtick(struct hrtimer *timer)
942{
943 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
944
945 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
946
947 spin_lock(&rq->lock);
948 __update_rq_clock(rq);
949 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
950 spin_unlock(&rq->lock);
951
952 return HRTIMER_NORESTART;
953}
954
955static inline void init_rq_hrtick(struct rq *rq)
956{
957 rq->hrtick_flags = 0;
958 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
959 rq->hrtick_timer.function = hrtick;
960 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
961}
962
963void hrtick_resched(void)
964{
965 struct rq *rq;
966 unsigned long flags;
967
968 if (!test_thread_flag(TIF_HRTICK_RESCHED))
969 return;
970
971 local_irq_save(flags);
972 rq = cpu_rq(smp_processor_id());
973 hrtick_set(rq);
974 local_irq_restore(flags);
975}
976#else
977static inline void hrtick_clear(struct rq *rq)
978{
979}
980
981static inline void hrtick_set(struct rq *rq)
982{
983}
984
985static inline void init_rq_hrtick(struct rq *rq)
986{
987}
988
989void hrtick_resched(void)
990{
991}
992#endif
993
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200994/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200995 * resched_task - mark a task 'to be rescheduled now'.
996 *
997 * On UP this means the setting of the need_resched flag, on SMP it
998 * might also involve a cross-CPU call to trigger the scheduler on
999 * the target CPU.
1000 */
1001#ifdef CONFIG_SMP
1002
1003#ifndef tsk_is_polling
1004#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1005#endif
1006
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001007static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001008{
1009 int cpu;
1010
1011 assert_spin_locked(&task_rq(p)->lock);
1012
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001013 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001014 return;
1015
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001016 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001017
1018 cpu = task_cpu(p);
1019 if (cpu == smp_processor_id())
1020 return;
1021
1022 /* NEED_RESCHED must be visible before we test polling */
1023 smp_mb();
1024 if (!tsk_is_polling(p))
1025 smp_send_reschedule(cpu);
1026}
1027
1028static void resched_cpu(int cpu)
1029{
1030 struct rq *rq = cpu_rq(cpu);
1031 unsigned long flags;
1032
1033 if (!spin_trylock_irqsave(&rq->lock, flags))
1034 return;
1035 resched_task(cpu_curr(cpu));
1036 spin_unlock_irqrestore(&rq->lock, flags);
1037}
1038#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001039static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001040{
1041 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001042 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001043}
1044#endif
1045
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001046#if BITS_PER_LONG == 32
1047# define WMULT_CONST (~0UL)
1048#else
1049# define WMULT_CONST (1UL << 32)
1050#endif
1051
1052#define WMULT_SHIFT 32
1053
Ingo Molnar194081e2007-08-09 11:16:51 +02001054/*
1055 * Shift right and round:
1056 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001057#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001058
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001059static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001060calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1061 struct load_weight *lw)
1062{
1063 u64 tmp;
1064
1065 if (unlikely(!lw->inv_weight))
Ingo Molnar194081e2007-08-09 11:16:51 +02001066 lw->inv_weight = (WMULT_CONST - lw->weight/2) / lw->weight + 1;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001067
1068 tmp = (u64)delta_exec * weight;
1069 /*
1070 * Check whether we'd overflow the 64-bit multiplication:
1071 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001072 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001073 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001074 WMULT_SHIFT/2);
1075 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001076 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001077
Ingo Molnarecf691d2007-08-02 17:41:40 +02001078 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001079}
1080
1081static inline unsigned long
1082calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1083{
1084 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1085}
1086
Ingo Molnar10919852007-10-15 17:00:04 +02001087static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001088{
1089 lw->weight += inc;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001090}
1091
Ingo Molnar10919852007-10-15 17:00:04 +02001092static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001093{
1094 lw->weight -= dec;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001095}
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001098 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1099 * of tasks with abnormal "nice" values across CPUs the contribution that
1100 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001101 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001102 * scaled version of the new time slice allocation that they receive on time
1103 * slice expiry etc.
1104 */
1105
Ingo Molnardd41f592007-07-09 18:51:59 +02001106#define WEIGHT_IDLEPRIO 2
1107#define WMULT_IDLEPRIO (1 << 31)
1108
1109/*
1110 * Nice levels are multiplicative, with a gentle 10% change for every
1111 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1112 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1113 * that remained on nice 0.
1114 *
1115 * The "10% effect" is relative and cumulative: from _any_ nice level,
1116 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001117 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1118 * If a task goes up by ~10% and another task goes down by ~10% then
1119 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001120 */
1121static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001122 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1123 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1124 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1125 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1126 /* 0 */ 1024, 820, 655, 526, 423,
1127 /* 5 */ 335, 272, 215, 172, 137,
1128 /* 10 */ 110, 87, 70, 56, 45,
1129 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001130};
1131
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001132/*
1133 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1134 *
1135 * In cases where the weight does not change often, we can use the
1136 * precalculated inverse to speed up arithmetics by turning divisions
1137 * into multiplications:
1138 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001139static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001140 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1141 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1142 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1143 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1144 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1145 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1146 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1147 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001148};
Peter Williams2dd73a42006-06-27 02:54:34 -07001149
Ingo Molnardd41f592007-07-09 18:51:59 +02001150static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1151
1152/*
1153 * runqueue iterator, to support SMP load-balancing between different
1154 * scheduling classes, without having to expose their internal data
1155 * structures to the load-balancing proper:
1156 */
1157struct rq_iterator {
1158 void *arg;
1159 struct task_struct *(*start)(void *);
1160 struct task_struct *(*next)(void *);
1161};
1162
Peter Williamse1d14842007-10-24 18:23:51 +02001163#ifdef CONFIG_SMP
1164static unsigned long
1165balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1166 unsigned long max_load_move, struct sched_domain *sd,
1167 enum cpu_idle_type idle, int *all_pinned,
1168 int *this_best_prio, struct rq_iterator *iterator);
1169
1170static int
1171iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1172 struct sched_domain *sd, enum cpu_idle_type idle,
1173 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001174#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001175
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001176#ifdef CONFIG_CGROUP_CPUACCT
1177static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1178#else
1179static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1180#endif
1181
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +01001182static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1183{
1184 update_load_add(&rq->load, load);
1185}
1186
1187static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1188{
1189 update_load_sub(&rq->load, load);
1190}
1191
Gregory Haskinse7693a32008-01-25 21:08:09 +01001192#ifdef CONFIG_SMP
1193static unsigned long source_load(int cpu, int type);
1194static unsigned long target_load(int cpu, int type);
1195static unsigned long cpu_avg_load_per_task(int cpu);
1196static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1197#endif /* CONFIG_SMP */
1198
Ingo Molnardd41f592007-07-09 18:51:59 +02001199#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001200#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001201#include "sched_fair.c"
1202#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001203#ifdef CONFIG_SCHED_DEBUG
1204# include "sched_debug.c"
1205#endif
1206
1207#define sched_class_highest (&rt_sched_class)
1208
Ingo Molnare5fa2232007-08-09 11:16:49 +02001209static void inc_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001210{
1211 rq->nr_running++;
Ingo Molnar9c217242007-08-02 17:41:40 +02001212}
1213
Ingo Molnardb531812007-08-09 11:16:49 +02001214static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001215{
1216 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001217}
1218
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001219static void set_load_weight(struct task_struct *p)
1220{
1221 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001222 p->se.load.weight = prio_to_weight[0] * 2;
1223 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1224 return;
1225 }
1226
1227 /*
1228 * SCHED_IDLE tasks get minimal weight:
1229 */
1230 if (p->policy == SCHED_IDLE) {
1231 p->se.load.weight = WEIGHT_IDLEPRIO;
1232 p->se.load.inv_weight = WMULT_IDLEPRIO;
1233 return;
1234 }
1235
1236 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1237 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001238}
1239
Ingo Molnar8159f872007-08-09 11:16:49 +02001240static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001241{
1242 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001243 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001244 p->se.on_rq = 1;
1245}
1246
Ingo Molnar69be72c2007-08-09 11:16:49 +02001247static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001248{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001249 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001250 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001251}
1252
1253/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001254 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001255 */
Ingo Molnar14531182007-07-09 18:51:59 +02001256static inline int __normal_prio(struct task_struct *p)
1257{
Ingo Molnardd41f592007-07-09 18:51:59 +02001258 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001259}
1260
1261/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001262 * Calculate the expected normal priority: i.e. priority
1263 * without taking RT-inheritance into account. Might be
1264 * boosted by interactivity modifiers. Changes upon fork,
1265 * setprio syscalls, and whenever the interactivity
1266 * estimator recalculates.
1267 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001268static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001269{
1270 int prio;
1271
Ingo Molnare05606d2007-07-09 18:51:59 +02001272 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001273 prio = MAX_RT_PRIO-1 - p->rt_priority;
1274 else
1275 prio = __normal_prio(p);
1276 return prio;
1277}
1278
1279/*
1280 * Calculate the current priority, i.e. the priority
1281 * taken into account by the scheduler. This value might
1282 * be boosted by RT tasks, or might be boosted by
1283 * interactivity modifiers. Will be RT if the task got
1284 * RT-boosted. If not then it returns p->normal_prio.
1285 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001286static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001287{
1288 p->normal_prio = normal_prio(p);
1289 /*
1290 * If we are RT tasks or we were boosted to RT priority,
1291 * keep the priority unchanged. Otherwise, update priority
1292 * to the normal priority:
1293 */
1294 if (!rt_prio(p->prio))
1295 return p->normal_prio;
1296 return p->prio;
1297}
1298
1299/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001300 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001302static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Ingo Molnardd41f592007-07-09 18:51:59 +02001304 if (p->state == TASK_UNINTERRUPTIBLE)
1305 rq->nr_uninterruptible--;
1306
Ingo Molnar8159f872007-08-09 11:16:49 +02001307 enqueue_task(rq, p, wakeup);
Ingo Molnare5fa2232007-08-09 11:16:49 +02001308 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
1311/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 * deactivate_task - remove a task from the runqueue.
1313 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001314static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Ingo Molnardd41f592007-07-09 18:51:59 +02001316 if (p->state == TASK_UNINTERRUPTIBLE)
1317 rq->nr_uninterruptible++;
1318
Ingo Molnar69be72c2007-08-09 11:16:49 +02001319 dequeue_task(rq, p, sleep);
Ingo Molnardb531812007-08-09 11:16:49 +02001320 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323/**
1324 * task_curr - is this task currently executing on a CPU?
1325 * @p: the task in question.
1326 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001327inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
1329 return cpu_curr(task_cpu(p)) == p;
1330}
1331
Peter Williams2dd73a42006-06-27 02:54:34 -07001332/* Used instead of source_load when we know the type == 0 */
1333unsigned long weighted_cpuload(const int cpu)
1334{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001335 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001336}
1337
1338static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1339{
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001340 set_task_cfs_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001341#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001342 /*
1343 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1344 * successfuly executed on another CPU. We must ensure that updates of
1345 * per-task data have been completed by this moment.
1346 */
1347 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001348 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001349#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001350}
1351
Steven Rostedtcb469842008-01-25 21:08:22 +01001352static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1353 const struct sched_class *prev_class,
1354 int oldprio, int running)
1355{
1356 if (prev_class != p->sched_class) {
1357 if (prev_class->switched_from)
1358 prev_class->switched_from(rq, p, running);
1359 p->sched_class->switched_to(rq, p, running);
1360 } else
1361 p->sched_class->prio_changed(rq, p, oldprio, running);
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001365
Ingo Molnarcc367732007-10-15 17:00:18 +02001366/*
1367 * Is this task likely cache-hot:
1368 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001369static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001370task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1371{
1372 s64 delta;
1373
1374 if (p->sched_class != &fair_sched_class)
1375 return 0;
1376
Ingo Molnar6bc16652007-10-15 17:00:18 +02001377 if (sysctl_sched_migration_cost == -1)
1378 return 1;
1379 if (sysctl_sched_migration_cost == 0)
1380 return 0;
1381
Ingo Molnarcc367732007-10-15 17:00:18 +02001382 delta = now - p->se.exec_start;
1383
1384 return delta < (s64)sysctl_sched_migration_cost;
1385}
1386
1387
Ingo Molnardd41f592007-07-09 18:51:59 +02001388void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001389{
Ingo Molnardd41f592007-07-09 18:51:59 +02001390 int old_cpu = task_cpu(p);
1391 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001392 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1393 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001394 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001395
1396 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001397
1398#ifdef CONFIG_SCHEDSTATS
1399 if (p->se.wait_start)
1400 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001401 if (p->se.sleep_start)
1402 p->se.sleep_start -= clock_offset;
1403 if (p->se.block_start)
1404 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001405 if (old_cpu != new_cpu) {
1406 schedstat_inc(p, se.nr_migrations);
1407 if (task_hot(p, old_rq->clock, NULL))
1408 schedstat_inc(p, se.nr_forced2_migrations);
1409 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001410#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001411 p->se.vruntime -= old_cfsrq->min_vruntime -
1412 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001413
1414 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001415}
1416
Ingo Molnar70b97a72006-07-03 00:25:42 -07001417struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Ingo Molnar36c8b582006-07-03 00:25:41 -07001420 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 int dest_cpu;
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001424};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426/*
1427 * The task's runqueue lock must be held.
1428 * Returns true if you have to wait for migration thread.
1429 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001430static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001431migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001433 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 /*
1436 * If the task is not on a runqueue (and not running), then
1437 * it is sufficient to simply update the task's cpu field.
1438 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001439 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 set_task_cpu(p, dest_cpu);
1441 return 0;
1442 }
1443
1444 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 req->task = p;
1446 req->dest_cpu = dest_cpu;
1447 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return 1;
1450}
1451
1452/*
1453 * wait_task_inactive - wait for a thread to unschedule.
1454 *
1455 * The caller must ensure that the task *will* unschedule sometime soon,
1456 * else this function might spin for a *long* time. This function can't
1457 * be called with interrupts off, or it may introduce deadlock with
1458 * smp_call_function() if an IPI is sent by the same process we are
1459 * waiting to become inactive.
1460 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001461void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001464 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001465 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Andi Kleen3a5c3592007-10-15 17:00:14 +02001467 for (;;) {
1468 /*
1469 * We do the initial early heuristics without holding
1470 * any task-queue locks at all. We'll only try to get
1471 * the runqueue lock when things look like they will
1472 * work out!
1473 */
1474 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001475
Andi Kleen3a5c3592007-10-15 17:00:14 +02001476 /*
1477 * If the task is actively running on another CPU
1478 * still, just relax and busy-wait without holding
1479 * any locks.
1480 *
1481 * NOTE! Since we don't hold any locks, it's not
1482 * even sure that "rq" stays as the right runqueue!
1483 * But we don't care, since "task_running()" will
1484 * return false if the runqueue has changed and p
1485 * is actually now running somewhere else!
1486 */
1487 while (task_running(rq, p))
1488 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001489
Andi Kleen3a5c3592007-10-15 17:00:14 +02001490 /*
1491 * Ok, time to look more closely! We need the rq
1492 * lock now, to be *sure*. If we're wrong, we'll
1493 * just go back and repeat.
1494 */
1495 rq = task_rq_lock(p, &flags);
1496 running = task_running(rq, p);
1497 on_rq = p->se.on_rq;
1498 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001499
Andi Kleen3a5c3592007-10-15 17:00:14 +02001500 /*
1501 * Was it really running after all now that we
1502 * checked with the proper locks actually held?
1503 *
1504 * Oops. Go back and try again..
1505 */
1506 if (unlikely(running)) {
1507 cpu_relax();
1508 continue;
1509 }
1510
1511 /*
1512 * It's not enough that it's not actively running,
1513 * it must be off the runqueue _entirely_, and not
1514 * preempted!
1515 *
1516 * So if it wa still runnable (but just not actively
1517 * running right now), it's preempted, and we should
1518 * yield - it could be a while.
1519 */
1520 if (unlikely(on_rq)) {
1521 schedule_timeout_uninterruptible(1);
1522 continue;
1523 }
1524
1525 /*
1526 * Ahh, all good. It wasn't running, and it wasn't
1527 * runnable, which means that it will never become
1528 * running in the future either. We're all done!
1529 */
1530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
1534/***
1535 * kick_process - kick a running thread to enter/exit the kernel
1536 * @p: the to-be-kicked thread
1537 *
1538 * Cause a process which is running on another CPU to enter
1539 * kernel-mode, without any delay. (to get signals handled.)
1540 *
1541 * NOTE: this function doesnt have to take the runqueue lock,
1542 * because all it wants to ensure is that the remote task enters
1543 * the kernel. If the IPI races and the task has been migrated
1544 * to another CPU then no harm is done and the purpose has been
1545 * achieved as well.
1546 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001547void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 int cpu;
1550
1551 preempt_disable();
1552 cpu = task_cpu(p);
1553 if ((cpu != smp_processor_id()) && task_curr(p))
1554 smp_send_reschedule(cpu);
1555 preempt_enable();
1556}
1557
1558/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001559 * Return a low guess at the load of a migration-source cpu weighted
1560 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 *
1562 * We want to under-estimate the load of migration sources, to
1563 * balance conservatively.
1564 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001565static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001566{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001567 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001568 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001569
Peter Williams2dd73a42006-06-27 02:54:34 -07001570 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001571 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001572
Ingo Molnardd41f592007-07-09 18:51:59 +02001573 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
1576/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001577 * Return a high guess at the load of a migration-target cpu weighted
1578 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001580static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001581{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001582 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001583 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001584
Peter Williams2dd73a42006-06-27 02:54:34 -07001585 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001586 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001587
Ingo Molnardd41f592007-07-09 18:51:59 +02001588 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001589}
1590
1591/*
1592 * Return the average load per task on the cpu's run queue
1593 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001594static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001595{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001596 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001597 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001598 unsigned long n = rq->nr_running;
1599
Ingo Molnardd41f592007-07-09 18:51:59 +02001600 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
Nick Piggin147cbb42005-06-25 14:57:19 -07001603/*
1604 * find_idlest_group finds and returns the least busy CPU group within the
1605 * domain.
1606 */
1607static struct sched_group *
1608find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1609{
1610 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1611 unsigned long min_load = ULONG_MAX, this_load = 0;
1612 int load_idx = sd->forkexec_idx;
1613 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1614
1615 do {
1616 unsigned long load, avg_load;
1617 int local_group;
1618 int i;
1619
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001620 /* Skip over this group if it has no CPUs allowed */
1621 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001622 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001623
Nick Piggin147cbb42005-06-25 14:57:19 -07001624 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001625
1626 /* Tally up the load of all CPUs in the group */
1627 avg_load = 0;
1628
1629 for_each_cpu_mask(i, group->cpumask) {
1630 /* Bias balancing toward cpus of our domain */
1631 if (local_group)
1632 load = source_load(i, load_idx);
1633 else
1634 load = target_load(i, load_idx);
1635
1636 avg_load += load;
1637 }
1638
1639 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001640 avg_load = sg_div_cpu_power(group,
1641 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001642
1643 if (local_group) {
1644 this_load = avg_load;
1645 this = group;
1646 } else if (avg_load < min_load) {
1647 min_load = avg_load;
1648 idlest = group;
1649 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001650 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001651
1652 if (!idlest || 100*this_load < imbalance*min_load)
1653 return NULL;
1654 return idlest;
1655}
1656
1657/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001658 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001659 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001660static int
1661find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001662{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001663 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001664 unsigned long load, min_load = ULONG_MAX;
1665 int idlest = -1;
1666 int i;
1667
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001668 /* Traverse only the allowed CPUs */
1669 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1670
1671 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001672 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001673
1674 if (load < min_load || (load == min_load && i == this_cpu)) {
1675 min_load = load;
1676 idlest = i;
1677 }
1678 }
1679
1680 return idlest;
1681}
1682
Nick Piggin476d1392005-06-25 14:57:29 -07001683/*
1684 * sched_balance_self: balance the current task (running on cpu) in domains
1685 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1686 * SD_BALANCE_EXEC.
1687 *
1688 * Balance, ie. select the least loaded group.
1689 *
1690 * Returns the target CPU number, or the same CPU if no balancing is needed.
1691 *
1692 * preempt must be disabled.
1693 */
1694static int sched_balance_self(int cpu, int flag)
1695{
1696 struct task_struct *t = current;
1697 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001698
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001699 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001700 /*
1701 * If power savings logic is enabled for a domain, stop there.
1702 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001703 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1704 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001705 if (tmp->flags & flag)
1706 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001707 }
Nick Piggin476d1392005-06-25 14:57:29 -07001708
1709 while (sd) {
1710 cpumask_t span;
1711 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001712 int new_cpu, weight;
1713
1714 if (!(sd->flags & flag)) {
1715 sd = sd->child;
1716 continue;
1717 }
Nick Piggin476d1392005-06-25 14:57:29 -07001718
1719 span = sd->span;
1720 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001721 if (!group) {
1722 sd = sd->child;
1723 continue;
1724 }
Nick Piggin476d1392005-06-25 14:57:29 -07001725
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001726 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001727 if (new_cpu == -1 || new_cpu == cpu) {
1728 /* Now try balancing at a lower domain level of cpu */
1729 sd = sd->child;
1730 continue;
1731 }
Nick Piggin476d1392005-06-25 14:57:29 -07001732
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001733 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001734 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001735 sd = NULL;
1736 weight = cpus_weight(span);
1737 for_each_domain(cpu, tmp) {
1738 if (weight <= cpus_weight(tmp->span))
1739 break;
1740 if (tmp->flags & flag)
1741 sd = tmp;
1742 }
1743 /* while loop will break here if sd == NULL */
1744 }
1745
1746 return cpu;
1747}
1748
1749#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/***
1752 * try_to_wake_up - wake up a thread
1753 * @p: the to-be-woken-up thread
1754 * @state: the mask of task states that can be woken
1755 * @sync: do a synchronous wakeup?
1756 *
1757 * Put it on the run-queue if it's not already there. The "current"
1758 * thread is always on the run-queue (except when the actual
1759 * re-schedule is in progress), and as such you're allowed to do
1760 * the simpler "current->state = TASK_RUNNING" to mark yourself
1761 * runnable without the overhead of this.
1762 *
1763 * returns failure only if the task is already active.
1764 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001765static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Ingo Molnarcc367732007-10-15 17:00:18 +02001767 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 unsigned long flags;
1769 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001770 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 rq = task_rq_lock(p, &flags);
1773 old_state = p->state;
1774 if (!(old_state & state))
1775 goto out;
1776
Ingo Molnardd41f592007-07-09 18:51:59 +02001777 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 goto out_running;
1779
1780 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001781 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 this_cpu = smp_processor_id();
1783
1784#ifdef CONFIG_SMP
1785 if (unlikely(task_running(rq, p)))
1786 goto out_activate;
1787
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01001788 cpu = p->sched_class->select_task_rq(p, sync);
1789 if (cpu != orig_cpu) {
1790 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 task_rq_unlock(rq, &flags);
1792 /* might preempt at this point */
1793 rq = task_rq_lock(p, &flags);
1794 old_state = p->state;
1795 if (!(old_state & state))
1796 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001797 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 goto out_running;
1799
1800 this_cpu = smp_processor_id();
1801 cpu = task_cpu(p);
1802 }
1803
Gregory Haskinse7693a32008-01-25 21:08:09 +01001804#ifdef CONFIG_SCHEDSTATS
1805 schedstat_inc(rq, ttwu_count);
1806 if (cpu == this_cpu)
1807 schedstat_inc(rq, ttwu_local);
1808 else {
1809 struct sched_domain *sd;
1810 for_each_domain(this_cpu, sd) {
1811 if (cpu_isset(cpu, sd->span)) {
1812 schedstat_inc(sd, ttwu_wake_remote);
1813 break;
1814 }
1815 }
1816 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001817#endif
1818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819out_activate:
1820#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02001821 schedstat_inc(p, se.nr_wakeups);
1822 if (sync)
1823 schedstat_inc(p, se.nr_wakeups_sync);
1824 if (orig_cpu != cpu)
1825 schedstat_inc(p, se.nr_wakeups_migrate);
1826 if (cpu == this_cpu)
1827 schedstat_inc(p, se.nr_wakeups_local);
1828 else
1829 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02001830 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001831 activate_task(rq, p, 1);
Ingo Molnar9c63d9c2007-10-15 17:00:20 +02001832 check_preempt_curr(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 success = 1;
1834
1835out_running:
1836 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001837#ifdef CONFIG_SMP
1838 if (p->sched_class->task_wake_up)
1839 p->sched_class->task_wake_up(rq, p);
1840#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841out:
1842 task_rq_unlock(rq, &flags);
1843
1844 return success;
1845}
1846
Ingo Molnar36c8b582006-07-03 00:25:41 -07001847int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1850 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1851}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852EXPORT_SYMBOL(wake_up_process);
1853
Ingo Molnar36c8b582006-07-03 00:25:41 -07001854int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
1856 return try_to_wake_up(p, state, 0);
1857}
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859/*
1860 * Perform scheduler related setup for a newly forked process p.
1861 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001862 *
1863 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001865static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
Ingo Molnardd41f592007-07-09 18:51:59 +02001867 p->se.exec_start = 0;
1868 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001869 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001870
1871#ifdef CONFIG_SCHEDSTATS
1872 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001873 p->se.sum_sleep_runtime = 0;
1874 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001875 p->se.block_start = 0;
1876 p->se.sleep_max = 0;
1877 p->se.block_max = 0;
1878 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001879 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001880 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001881#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001882
Peter Zijlstrafa717062008-01-25 21:08:27 +01001883 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02001884 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001885
Avi Kivitye107be32007-07-26 13:40:43 +02001886#ifdef CONFIG_PREEMPT_NOTIFIERS
1887 INIT_HLIST_HEAD(&p->preempt_notifiers);
1888#endif
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 /*
1891 * We mark the process as running here, but have not actually
1892 * inserted it onto the runqueue yet. This guarantees that
1893 * nobody will actually run it, and a signal or other external
1894 * event cannot wake it up and insert it on the runqueue either.
1895 */
1896 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001897}
1898
1899/*
1900 * fork()/clone()-time setup:
1901 */
1902void sched_fork(struct task_struct *p, int clone_flags)
1903{
1904 int cpu = get_cpu();
1905
1906 __sched_fork(p);
1907
1908#ifdef CONFIG_SMP
1909 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1910#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02001911 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001912
1913 /*
1914 * Make sure we do not leak PI boosting priority to the child:
1915 */
1916 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001917 if (!rt_prio(p->prio))
1918 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001919
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001920#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001921 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001922 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001924#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001925 p->oncpu = 0;
1926#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001928 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001929 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001931 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
1933
1934/*
1935 * wake_up_new_task - wake up a newly created task for the first time.
1936 *
1937 * This function will do some initial scheduler statistics housekeeping
1938 * that must be done for every newly created context, then puts the task
1939 * on the runqueue and wakes it.
1940 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001941void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
1943 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001944 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02001948 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 p->prio = effective_prio(p);
1951
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02001952 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001953 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001956 * Let the scheduling class do new task startup
1957 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001959 p->sched_class->task_new(rq, p);
Ingo Molnare5fa2232007-08-09 11:16:49 +02001960 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001962 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001963#ifdef CONFIG_SMP
1964 if (p->sched_class->task_wake_up)
1965 p->sched_class->task_wake_up(rq, p);
1966#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001967 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968}
1969
Avi Kivitye107be32007-07-26 13:40:43 +02001970#ifdef CONFIG_PREEMPT_NOTIFIERS
1971
1972/**
Randy Dunlap421cee22007-07-31 00:37:50 -07001973 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
1974 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02001975 */
1976void preempt_notifier_register(struct preempt_notifier *notifier)
1977{
1978 hlist_add_head(&notifier->link, &current->preempt_notifiers);
1979}
1980EXPORT_SYMBOL_GPL(preempt_notifier_register);
1981
1982/**
1983 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07001984 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02001985 *
1986 * This is safe to call from within a preemption notifier.
1987 */
1988void preempt_notifier_unregister(struct preempt_notifier *notifier)
1989{
1990 hlist_del(&notifier->link);
1991}
1992EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
1993
1994static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
1995{
1996 struct preempt_notifier *notifier;
1997 struct hlist_node *node;
1998
1999 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2000 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2001}
2002
2003static void
2004fire_sched_out_preempt_notifiers(struct task_struct *curr,
2005 struct task_struct *next)
2006{
2007 struct preempt_notifier *notifier;
2008 struct hlist_node *node;
2009
2010 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2011 notifier->ops->sched_out(notifier, next);
2012}
2013
2014#else
2015
2016static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2017{
2018}
2019
2020static void
2021fire_sched_out_preempt_notifiers(struct task_struct *curr,
2022 struct task_struct *next)
2023{
2024}
2025
2026#endif
2027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002029 * prepare_task_switch - prepare to switch tasks
2030 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002031 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002032 * @next: the task we are going to switch to.
2033 *
2034 * This is called with the rq lock held and interrupts off. It must
2035 * be paired with a subsequent finish_task_switch after the context
2036 * switch.
2037 *
2038 * prepare_task_switch sets up locking and calls architecture specific
2039 * hooks.
2040 */
Avi Kivitye107be32007-07-26 13:40:43 +02002041static inline void
2042prepare_task_switch(struct rq *rq, struct task_struct *prev,
2043 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002044{
Avi Kivitye107be32007-07-26 13:40:43 +02002045 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002046 prepare_lock_switch(rq, next);
2047 prepare_arch_switch(next);
2048}
2049
2050/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002052 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 * @prev: the thread we just switched away from.
2054 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002055 * finish_task_switch must be called after the context switch, paired
2056 * with a prepare_task_switch call before the context switch.
2057 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2058 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 *
2060 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002061 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 * with the lock held can cause deadlocks; see schedule() for
2063 * details.)
2064 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002065static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 __releases(rq->lock)
2067{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002069 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 rq->prev_mm = NULL;
2072
2073 /*
2074 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002075 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002076 * schedule one last time. The schedule call will never return, and
2077 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002078 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * still held, otherwise prev could be scheduled on another cpu, die
2080 * there before we look at prev->state, and then the reference would
2081 * be dropped twice.
2082 * Manfred Spraul <manfred@colorfullife.com>
2083 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002084 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002085 finish_arch_switch(prev);
2086 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002087#ifdef CONFIG_SMP
2088 if (current->sched_class->post_schedule)
2089 current->sched_class->post_schedule(rq);
2090#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002091
Avi Kivitye107be32007-07-26 13:40:43 +02002092 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 if (mm)
2094 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002095 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002096 /*
2097 * Remove function-return probe instances associated with this
2098 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002099 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002100 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
2105/**
2106 * schedule_tail - first thing a freshly forked thread must call.
2107 * @prev: the thread we just switched away from.
2108 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002109asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 __releases(rq->lock)
2111{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002112 struct rq *rq = this_rq();
2113
Nick Piggin4866cde2005-06-25 14:57:23 -07002114 finish_task_switch(rq, prev);
2115#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2116 /* In this case, finish_task_switch does not reenable preemption */
2117 preempt_enable();
2118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002120 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
2123/*
2124 * context_switch - switch to the new MM and the new
2125 * thread's register state.
2126 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002127static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002128context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002129 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Ingo Molnardd41f592007-07-09 18:51:59 +02002131 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Avi Kivitye107be32007-07-26 13:40:43 +02002133 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002134 mm = next->mm;
2135 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002136 /*
2137 * For paravirt, this is coupled with an exit in switch_to to
2138 * combine the page table reload and the switch backend into
2139 * one hypercall.
2140 */
2141 arch_enter_lazy_cpu_mode();
2142
Ingo Molnardd41f592007-07-09 18:51:59 +02002143 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 next->active_mm = oldmm;
2145 atomic_inc(&oldmm->mm_count);
2146 enter_lazy_tlb(oldmm, next);
2147 } else
2148 switch_mm(oldmm, mm, next);
2149
Ingo Molnardd41f592007-07-09 18:51:59 +02002150 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 rq->prev_mm = oldmm;
2153 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002154 /*
2155 * Since the runqueue lock will be released by the next
2156 * task (which is an invalid locking op but in the case
2157 * of the scheduler it's an obvious special-case), so we
2158 * do an early lockdep release here:
2159 */
2160#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002161 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164 /* Here we just switch the register state and the stack. */
2165 switch_to(prev, next, prev);
2166
Ingo Molnardd41f592007-07-09 18:51:59 +02002167 barrier();
2168 /*
2169 * this_rq must be evaluated again because prev may have moved
2170 * CPUs since it called schedule(), thus the 'rq' on its stack
2171 * frame will be invalid.
2172 */
2173 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
2176/*
2177 * nr_running, nr_uninterruptible and nr_context_switches:
2178 *
2179 * externally visible scheduler statistics: current number of runnable
2180 * threads, current number of uninterruptible-sleeping threads, total
2181 * number of context switches performed since bootup.
2182 */
2183unsigned long nr_running(void)
2184{
2185 unsigned long i, sum = 0;
2186
2187 for_each_online_cpu(i)
2188 sum += cpu_rq(i)->nr_running;
2189
2190 return sum;
2191}
2192
2193unsigned long nr_uninterruptible(void)
2194{
2195 unsigned long i, sum = 0;
2196
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002197 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 sum += cpu_rq(i)->nr_uninterruptible;
2199
2200 /*
2201 * Since we read the counters lockless, it might be slightly
2202 * inaccurate. Do not allow it to go below zero though:
2203 */
2204 if (unlikely((long)sum < 0))
2205 sum = 0;
2206
2207 return sum;
2208}
2209
2210unsigned long long nr_context_switches(void)
2211{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002212 int i;
2213 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002215 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 sum += cpu_rq(i)->nr_switches;
2217
2218 return sum;
2219}
2220
2221unsigned long nr_iowait(void)
2222{
2223 unsigned long i, sum = 0;
2224
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002225 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2227
2228 return sum;
2229}
2230
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002231unsigned long nr_active(void)
2232{
2233 unsigned long i, running = 0, uninterruptible = 0;
2234
2235 for_each_online_cpu(i) {
2236 running += cpu_rq(i)->nr_running;
2237 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2238 }
2239
2240 if (unlikely((long)uninterruptible < 0))
2241 uninterruptible = 0;
2242
2243 return running + uninterruptible;
2244}
2245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002247 * Update rq->cpu_load[] statistics. This function is usually called every
2248 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002249 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002250static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002251{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002252 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002253 int i, scale;
2254
2255 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002256
2257 /* Update our load: */
2258 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2259 unsigned long old_load, new_load;
2260
2261 /* scale is effectively 1 << i now, and >> i divides by scale */
2262
2263 old_load = this_rq->cpu_load[i];
2264 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002265 /*
2266 * Round up the averaging division if load is increasing. This
2267 * prevents us from getting stuck on 9 if the load is 10, for
2268 * example.
2269 */
2270 if (new_load > old_load)
2271 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002272 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2273 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002274}
2275
Ingo Molnardd41f592007-07-09 18:51:59 +02002276#ifdef CONFIG_SMP
2277
Ingo Molnar48f24c42006-07-03 00:25:40 -07002278/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 * double_rq_lock - safely lock two runqueues
2280 *
2281 * Note this does not disable interrupts like task_rq_lock,
2282 * you need to do so manually before calling.
2283 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002284static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 __acquires(rq1->lock)
2286 __acquires(rq2->lock)
2287{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002288 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (rq1 == rq2) {
2290 spin_lock(&rq1->lock);
2291 __acquire(rq2->lock); /* Fake it out ;) */
2292 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002293 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 spin_lock(&rq1->lock);
2295 spin_lock(&rq2->lock);
2296 } else {
2297 spin_lock(&rq2->lock);
2298 spin_lock(&rq1->lock);
2299 }
2300 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002301 update_rq_clock(rq1);
2302 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
2305/*
2306 * double_rq_unlock - safely unlock two runqueues
2307 *
2308 * Note this does not restore interrupts like task_rq_unlock,
2309 * you need to do so manually after calling.
2310 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002311static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 __releases(rq1->lock)
2313 __releases(rq2->lock)
2314{
2315 spin_unlock(&rq1->lock);
2316 if (rq1 != rq2)
2317 spin_unlock(&rq2->lock);
2318 else
2319 __release(rq2->lock);
2320}
2321
2322/*
2323 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2324 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002325static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 __releases(this_rq->lock)
2327 __acquires(busiest->lock)
2328 __acquires(this_rq->lock)
2329{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002330 int ret = 0;
2331
Kirill Korotaev054b9102006-12-10 02:20:11 -08002332 if (unlikely(!irqs_disabled())) {
2333 /* printk() doesn't work good under rq->lock */
2334 spin_unlock(&this_rq->lock);
2335 BUG_ON(1);
2336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002338 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 spin_unlock(&this_rq->lock);
2340 spin_lock(&busiest->lock);
2341 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002342 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 } else
2344 spin_lock(&busiest->lock);
2345 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002346 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
2349/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 * If dest_cpu is allowed for this process, migrate the task to it.
2351 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002352 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 * the cpu_allowed mask is restored.
2354 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002355static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002357 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002359 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 rq = task_rq_lock(p, &flags);
2362 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2363 || unlikely(cpu_is_offline(dest_cpu)))
2364 goto out;
2365
2366 /* force the process onto the specified CPU */
2367 if (migrate_task(p, dest_cpu, &req)) {
2368 /* Need to wait for migration thread (might exit: take ref). */
2369 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002370
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 get_task_struct(mt);
2372 task_rq_unlock(rq, &flags);
2373 wake_up_process(mt);
2374 put_task_struct(mt);
2375 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 return;
2378 }
2379out:
2380 task_rq_unlock(rq, &flags);
2381}
2382
2383/*
Nick Piggin476d1392005-06-25 14:57:29 -07002384 * sched_exec - execve() is a valuable balancing opportunity, because at
2385 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 */
2387void sched_exec(void)
2388{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002390 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002392 if (new_cpu != this_cpu)
2393 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394}
2395
2396/*
2397 * pull_task - move a task from a remote runqueue to the local runqueue.
2398 * Both runqueues must be locked.
2399 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002400static void pull_task(struct rq *src_rq, struct task_struct *p,
2401 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002403 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002405 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 /*
2407 * Note that idle threads have a prio of MAX_PRIO, for this test
2408 * to be always true for them.
2409 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002410 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411}
2412
2413/*
2414 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2415 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002416static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002417int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002418 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002419 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
2421 /*
2422 * We do not migrate tasks that are:
2423 * 1) running (obviously), or
2424 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2425 * 3) are cache-hot on their current CPU.
2426 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002427 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2428 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002430 }
Nick Piggin81026792005-06-25 14:57:07 -07002431 *all_pinned = 0;
2432
Ingo Molnarcc367732007-10-15 17:00:18 +02002433 if (task_running(rq, p)) {
2434 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002435 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Ingo Molnarda84d962007-10-15 17:00:18 +02002438 /*
2439 * Aggressive migration if:
2440 * 1) task is cache cold, or
2441 * 2) too many balance attempts have failed.
2442 */
2443
Ingo Molnar6bc16652007-10-15 17:00:18 +02002444 if (!task_hot(p, rq->clock, sd) ||
2445 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002446#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002447 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002448 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002449 schedstat_inc(p, se.nr_forced_migrations);
2450 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002451#endif
2452 return 1;
2453 }
2454
Ingo Molnarcc367732007-10-15 17:00:18 +02002455 if (task_hot(p, rq->clock, sd)) {
2456 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002457 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return 1;
2460}
2461
Peter Williamse1d14842007-10-24 18:23:51 +02002462static unsigned long
2463balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2464 unsigned long max_load_move, struct sched_domain *sd,
2465 enum cpu_idle_type idle, int *all_pinned,
2466 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002467{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002468 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002469 struct task_struct *p;
2470 long rem_load_move = max_load_move;
2471
Peter Williamse1d14842007-10-24 18:23:51 +02002472 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002473 goto out;
2474
2475 pinned = 1;
2476
2477 /*
2478 * Start the load-balancing iterator:
2479 */
2480 p = iterator->start(iterator->arg);
2481next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002482 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002483 goto out;
2484 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002485 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002486 * skip a task if it will be the highest priority task (i.e. smallest
2487 * prio value) on its new queue regardless of its load weight
2488 */
2489 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2490 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002491 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002492 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002493 p = iterator->next(iterator->arg);
2494 goto next;
2495 }
2496
2497 pull_task(busiest, p, this_rq, this_cpu);
2498 pulled++;
2499 rem_load_move -= p->se.load.weight;
2500
2501 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002502 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002503 */
Peter Williamse1d14842007-10-24 18:23:51 +02002504 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002505 if (p->prio < *this_best_prio)
2506 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002507 p = iterator->next(iterator->arg);
2508 goto next;
2509 }
2510out:
2511 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002512 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002513 * so we can safely collect pull_task() stats here rather than
2514 * inside pull_task().
2515 */
2516 schedstat_add(sd, lb_gained[idle], pulled);
2517
2518 if (all_pinned)
2519 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002520
2521 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002522}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524/*
Peter Williams43010652007-08-09 11:16:46 +02002525 * move_tasks tries to move up to max_load_move weighted load from busiest to
2526 * this_rq, as part of a balancing operation within domain "sd".
2527 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 *
2529 * Called with both runqueues locked.
2530 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002531static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002532 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002533 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002534 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002536 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002537 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002538 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Ingo Molnardd41f592007-07-09 18:51:59 +02002540 do {
Peter Williams43010652007-08-09 11:16:46 +02002541 total_load_moved +=
2542 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002543 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002544 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002545 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002546 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Peter Williams43010652007-08-09 11:16:46 +02002548 return total_load_moved > 0;
2549}
2550
Peter Williamse1d14842007-10-24 18:23:51 +02002551static int
2552iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2553 struct sched_domain *sd, enum cpu_idle_type idle,
2554 struct rq_iterator *iterator)
2555{
2556 struct task_struct *p = iterator->start(iterator->arg);
2557 int pinned = 0;
2558
2559 while (p) {
2560 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2561 pull_task(busiest, p, this_rq, this_cpu);
2562 /*
2563 * Right now, this is only the second place pull_task()
2564 * is called, so we can safely collect pull_task()
2565 * stats here rather than inside pull_task().
2566 */
2567 schedstat_inc(sd, lb_gained[idle]);
2568
2569 return 1;
2570 }
2571 p = iterator->next(iterator->arg);
2572 }
2573
2574 return 0;
2575}
2576
Peter Williams43010652007-08-09 11:16:46 +02002577/*
2578 * move_one_task tries to move exactly one task from busiest to this_rq, as
2579 * part of active balancing operations within "domain".
2580 * Returns 1 if successful and 0 otherwise.
2581 *
2582 * Called with both runqueues locked.
2583 */
2584static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2585 struct sched_domain *sd, enum cpu_idle_type idle)
2586{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002587 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002588
2589 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002590 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002591 return 1;
2592
2593 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
2595
2596/*
2597 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002598 * domain. It calculates and returns the amount of weighted load which
2599 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 */
2601static struct sched_group *
2602find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002603 unsigned long *imbalance, enum cpu_idle_type idle,
2604 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
2606 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2607 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002608 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002609 unsigned long busiest_load_per_task, busiest_nr_running;
2610 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002611 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002612#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2613 int power_savings_balance = 1;
2614 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2615 unsigned long min_nr_running = ULONG_MAX;
2616 struct sched_group *group_min = NULL, *group_leader = NULL;
2617#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
2619 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002620 busiest_load_per_task = busiest_nr_running = 0;
2621 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002622 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002623 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002624 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002625 load_idx = sd->newidle_idx;
2626 else
2627 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
2629 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002630 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 int local_group;
2632 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002633 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002634 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002635 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 local_group = cpu_isset(this_cpu, group->cpumask);
2638
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002639 if (local_group)
2640 balance_cpu = first_cpu(group->cpumask);
2641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002643 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002644 max_cpu_load = 0;
2645 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002648 struct rq *rq;
2649
2650 if (!cpu_isset(i, *cpus))
2651 continue;
2652
2653 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002654
Suresh Siddha9439aab2007-07-19 21:28:35 +02002655 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002656 *sd_idle = 0;
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002659 if (local_group) {
2660 if (idle_cpu(i) && !first_idle_cpu) {
2661 first_idle_cpu = 1;
2662 balance_cpu = i;
2663 }
2664
Nick Piggina2000572006-02-10 01:51:02 -08002665 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002666 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002667 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002668 if (load > max_cpu_load)
2669 max_cpu_load = load;
2670 if (min_cpu_load > load)
2671 min_cpu_load = load;
2672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
2674 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002675 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002676 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 }
2678
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002679 /*
2680 * First idle cpu or the first cpu(busiest) in this sched group
2681 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002682 * domains. In the newly idle case, we will allow all the cpu's
2683 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002684 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002685 if (idle != CPU_NEWLY_IDLE && local_group &&
2686 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002687 *balance = 0;
2688 goto ret;
2689 }
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002692 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002695 avg_load = sg_div_cpu_power(group,
2696 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Ken Chen908a7c12007-10-17 16:55:11 +02002698 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2699 __group_imb = 1;
2700
Eric Dumazet5517d862007-05-08 00:32:57 -07002701 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (local_group) {
2704 this_load = avg_load;
2705 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002706 this_nr_running = sum_nr_running;
2707 this_load_per_task = sum_weighted_load;
2708 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002709 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 max_load = avg_load;
2711 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002712 busiest_nr_running = sum_nr_running;
2713 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002714 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002716
2717#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2718 /*
2719 * Busy processors will not participate in power savings
2720 * balance.
2721 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002722 if (idle == CPU_NOT_IDLE ||
2723 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2724 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002725
2726 /*
2727 * If the local group is idle or completely loaded
2728 * no need to do power savings balance at this domain
2729 */
2730 if (local_group && (this_nr_running >= group_capacity ||
2731 !this_nr_running))
2732 power_savings_balance = 0;
2733
Ingo Molnardd41f592007-07-09 18:51:59 +02002734 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002735 * If a group is already running at full capacity or idle,
2736 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002737 */
2738 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002739 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002740 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002741
Ingo Molnardd41f592007-07-09 18:51:59 +02002742 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002743 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002744 * This is the group from where we need to pick up the load
2745 * for saving power
2746 */
2747 if ((sum_nr_running < min_nr_running) ||
2748 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002749 first_cpu(group->cpumask) <
2750 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002751 group_min = group;
2752 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002753 min_load_per_task = sum_weighted_load /
2754 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002755 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002756
Ingo Molnardd41f592007-07-09 18:51:59 +02002757 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002758 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002759 * capacity but still has some space to pick up some load
2760 * from other group and save more power
2761 */
2762 if (sum_nr_running <= group_capacity - 1) {
2763 if (sum_nr_running > leader_nr_running ||
2764 (sum_nr_running == leader_nr_running &&
2765 first_cpu(group->cpumask) >
2766 first_cpu(group_leader->cpumask))) {
2767 group_leader = group;
2768 leader_nr_running = sum_nr_running;
2769 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002770 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002771group_next:
2772#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 group = group->next;
2774 } while (group != sd->groups);
2775
Peter Williams2dd73a42006-06-27 02:54:34 -07002776 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 goto out_balanced;
2778
2779 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2780
2781 if (this_load >= avg_load ||
2782 100*max_load <= sd->imbalance_pct*this_load)
2783 goto out_balanced;
2784
Peter Williams2dd73a42006-06-27 02:54:34 -07002785 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002786 if (group_imb)
2787 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 /*
2790 * We're trying to get all the cpus to the average_load, so we don't
2791 * want to push ourselves above the average load, nor do we wish to
2792 * reduce the max loaded cpu below the average load, as either of these
2793 * actions would just result in more rebalancing later, and ping-pong
2794 * tasks around. Thus we look for the minimum possible imbalance.
2795 * Negative imbalances (*we* are more loaded than anyone else) will
2796 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002797 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 * appear as very large values with unsigned longs.
2799 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002800 if (max_load <= busiest_load_per_task)
2801 goto out_balanced;
2802
2803 /*
2804 * In the presence of smp nice balancing, certain scenarios can have
2805 * max load less than avg load(as we skip the groups at or below
2806 * its cpu_power, while calculating max_load..)
2807 */
2808 if (max_load < avg_load) {
2809 *imbalance = 0;
2810 goto small_imbalance;
2811 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002812
2813 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002814 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002817 *imbalance = min(max_pull * busiest->__cpu_power,
2818 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 / SCHED_LOAD_SCALE;
2820
Peter Williams2dd73a42006-06-27 02:54:34 -07002821 /*
2822 * if *imbalance is less than the average load per runnable task
2823 * there is no gaurantee that any tasks will be moved so we'll have
2824 * a think about bumping its value to force at least one task to be
2825 * moved
2826 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002827 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002828 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002829 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Peter Williams2dd73a42006-06-27 02:54:34 -07002831small_imbalance:
2832 pwr_move = pwr_now = 0;
2833 imbn = 2;
2834 if (this_nr_running) {
2835 this_load_per_task /= this_nr_running;
2836 if (busiest_load_per_task > this_load_per_task)
2837 imbn = 1;
2838 } else
2839 this_load_per_task = SCHED_LOAD_SCALE;
2840
Ingo Molnardd41f592007-07-09 18:51:59 +02002841 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2842 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002843 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 return busiest;
2845 }
2846
2847 /*
2848 * OK, we don't have enough imbalance to justify moving tasks,
2849 * however we may be able to increase total CPU power used by
2850 * moving them.
2851 */
2852
Eric Dumazet5517d862007-05-08 00:32:57 -07002853 pwr_now += busiest->__cpu_power *
2854 min(busiest_load_per_task, max_load);
2855 pwr_now += this->__cpu_power *
2856 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 pwr_now /= SCHED_LOAD_SCALE;
2858
2859 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002860 tmp = sg_div_cpu_power(busiest,
2861 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002863 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002864 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002867 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002868 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002869 tmp = sg_div_cpu_power(this,
2870 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002872 tmp = sg_div_cpu_power(this,
2873 busiest_load_per_task * SCHED_LOAD_SCALE);
2874 pwr_move += this->__cpu_power *
2875 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 pwr_move /= SCHED_LOAD_SCALE;
2877
2878 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002879 if (pwr_move > pwr_now)
2880 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 }
2882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return busiest;
2884
2885out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002886#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002887 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002888 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002890 if (this == group_leader && group_leader != group_min) {
2891 *imbalance = min_load_per_task;
2892 return group_min;
2893 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002894#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002895ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 *imbalance = 0;
2897 return NULL;
2898}
2899
2900/*
2901 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2902 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002903static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002904find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002905 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002907 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002908 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 int i;
2910
2911 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002912 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002913
2914 if (!cpu_isset(i, *cpus))
2915 continue;
2916
Ingo Molnar48f24c42006-07-03 00:25:40 -07002917 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002918 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Ingo Molnardd41f592007-07-09 18:51:59 +02002920 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002921 continue;
2922
Ingo Molnardd41f592007-07-09 18:51:59 +02002923 if (wl > max_load) {
2924 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002925 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 }
2927 }
2928
2929 return busiest;
2930}
2931
2932/*
Nick Piggin77391d72005-06-25 14:57:30 -07002933 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2934 * so long as it is large enough.
2935 */
2936#define MAX_PINNED_INTERVAL 512
2937
2938/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2940 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002942static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002943 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002944 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945{
Peter Williams43010652007-08-09 11:16:46 +02002946 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002949 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002950 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002951 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002952
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002953 /*
2954 * When power savings policy is enabled for the parent domain, idle
2955 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002956 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002957 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002958 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002959 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002960 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002961 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Ingo Molnar2d723762007-10-15 17:00:12 +02002963 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002965redo:
2966 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002967 &cpus, balance);
2968
Chen, Kenneth W06066712006-12-10 02:20:35 -08002969 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002970 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (!group) {
2973 schedstat_inc(sd, lb_nobusyg[idle]);
2974 goto out_balanced;
2975 }
2976
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002977 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 if (!busiest) {
2979 schedstat_inc(sd, lb_nobusyq[idle]);
2980 goto out_balanced;
2981 }
2982
Nick Piggindb935db2005-06-25 14:57:11 -07002983 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 schedstat_add(sd, lb_imbalance[idle], imbalance);
2986
Peter Williams43010652007-08-09 11:16:46 +02002987 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 if (busiest->nr_running > 1) {
2989 /*
2990 * Attempt to move tasks. If find_busiest_group has found
2991 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02002992 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 * correctly treated as an imbalance.
2994 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002995 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07002996 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02002997 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07002998 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07002999 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003000 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003001
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003002 /*
3003 * some other cpu did the load balance for us.
3004 */
Peter Williams43010652007-08-09 11:16:46 +02003005 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003006 resched_cpu(this_cpu);
3007
Nick Piggin81026792005-06-25 14:57:07 -07003008 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003009 if (unlikely(all_pinned)) {
3010 cpu_clear(cpu_of(busiest), cpus);
3011 if (!cpus_empty(cpus))
3012 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003013 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 }
Nick Piggin81026792005-06-25 14:57:07 -07003016
Peter Williams43010652007-08-09 11:16:46 +02003017 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 schedstat_inc(sd, lb_failed[idle]);
3019 sd->nr_balance_failed++;
3020
3021 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003023 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003024
3025 /* don't kick the migration_thread, if the curr
3026 * task on busiest cpu can't be moved to this_cpu
3027 */
3028 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003029 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003030 all_pinned = 1;
3031 goto out_one_pinned;
3032 }
3033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 if (!busiest->active_balance) {
3035 busiest->active_balance = 1;
3036 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003037 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003039 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003040 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 wake_up_process(busiest->migration_thread);
3042
3043 /*
3044 * We've kicked active balancing, reset the failure
3045 * counter.
3046 */
Nick Piggin39507452005-06-25 14:57:09 -07003047 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 }
Nick Piggin81026792005-06-25 14:57:07 -07003049 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 sd->nr_balance_failed = 0;
3051
Nick Piggin81026792005-06-25 14:57:07 -07003052 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 /* We were unbalanced, so reset the balancing interval */
3054 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003055 } else {
3056 /*
3057 * If we've begun active balancing, start to back off. This
3058 * case may not be covered by the all_pinned logic if there
3059 * is only 1 task on the busy runqueue (because we don't call
3060 * move_tasks).
3061 */
3062 if (sd->balance_interval < sd->max_interval)
3063 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
3065
Peter Williams43010652007-08-09 11:16:46 +02003066 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003067 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003068 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003069 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
3071out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 schedstat_inc(sd, lb_balanced[idle]);
3073
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003074 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003075
3076out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003078 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3079 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 sd->balance_interval *= 2;
3081
Ingo Molnar48f24c42006-07-03 00:25:40 -07003082 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003083 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003084 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 return 0;
3086}
3087
3088/*
3089 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3090 * tasks if there is an imbalance.
3091 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003092 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 * this_rq is locked.
3094 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003095static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003096load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097{
3098 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003099 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003101 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003102 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003103 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003104 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003105
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003106 /*
3107 * When power savings policy is enabled for the parent domain, idle
3108 * sibling can pick up load irrespective of busy siblings. In this case,
3109 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003110 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003111 */
3112 if (sd->flags & SD_SHARE_CPUPOWER &&
3113 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003114 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Ingo Molnar2d723762007-10-15 17:00:12 +02003116 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003117redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003118 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003119 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003121 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003122 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 }
3124
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003125 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003126 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003127 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003128 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003129 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 }
3131
Nick Piggindb935db2005-06-25 14:57:11 -07003132 BUG_ON(busiest == this_rq);
3133
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003134 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003135
Peter Williams43010652007-08-09 11:16:46 +02003136 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003137 if (busiest->nr_running > 1) {
3138 /* Attempt to move tasks */
3139 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003140 /* this_rq->clock is already updated */
3141 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003142 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003143 imbalance, sd, CPU_NEWLY_IDLE,
3144 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003145 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003146
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003147 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003148 cpu_clear(cpu_of(busiest), cpus);
3149 if (!cpus_empty(cpus))
3150 goto redo;
3151 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003152 }
3153
Peter Williams43010652007-08-09 11:16:46 +02003154 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003155 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003156 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3157 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003158 return -1;
3159 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003160 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Peter Williams43010652007-08-09 11:16:46 +02003162 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003163
3164out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003165 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003166 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003167 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003168 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003169 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003170
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172}
3173
3174/*
3175 * idle_balance is called by schedule() if this_cpu is about to become
3176 * idle. Attempts to pull tasks from other CPUs.
3177 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003178static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179{
3180 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003181 int pulled_task = -1;
3182 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
3184 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003185 unsigned long interval;
3186
3187 if (!(sd->flags & SD_LOAD_BALANCE))
3188 continue;
3189
3190 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003191 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003192 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003193 this_rq, sd);
3194
3195 interval = msecs_to_jiffies(sd->balance_interval);
3196 if (time_after(next_balance, sd->last_balance + interval))
3197 next_balance = sd->last_balance + interval;
3198 if (pulled_task)
3199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003201 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003202 /*
3203 * We are going idle. next_balance may be set based on
3204 * a busy processor. So reset next_balance.
3205 */
3206 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208}
3209
3210/*
3211 * active_load_balance is run by migration threads. It pushes running tasks
3212 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3213 * running on each physical CPU where possible, and avoids physical /
3214 * logical imbalances.
3215 *
3216 * Called with busiest_rq locked.
3217 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003218static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219{
Nick Piggin39507452005-06-25 14:57:09 -07003220 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003221 struct sched_domain *sd;
3222 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003223
Ingo Molnar48f24c42006-07-03 00:25:40 -07003224 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003225 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003226 return;
3227
3228 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230 /*
Nick Piggin39507452005-06-25 14:57:09 -07003231 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003232 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003233 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 */
Nick Piggin39507452005-06-25 14:57:09 -07003235 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Nick Piggin39507452005-06-25 14:57:09 -07003237 /* move a task from busiest_rq to target_rq */
3238 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003239 update_rq_clock(busiest_rq);
3240 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Nick Piggin39507452005-06-25 14:57:09 -07003242 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003243 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003244 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003245 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003246 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Ingo Molnar48f24c42006-07-03 00:25:40 -07003249 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003250 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
Peter Williams43010652007-08-09 11:16:46 +02003252 if (move_one_task(target_rq, target_cpu, busiest_rq,
3253 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003254 schedstat_inc(sd, alb_pushed);
3255 else
3256 schedstat_inc(sd, alb_failed);
3257 }
Nick Piggin39507452005-06-25 14:57:09 -07003258 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259}
3260
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003261#ifdef CONFIG_NO_HZ
3262static struct {
3263 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003264 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003265} nohz ____cacheline_aligned = {
3266 .load_balancer = ATOMIC_INIT(-1),
3267 .cpu_mask = CPU_MASK_NONE,
3268};
3269
Christoph Lameter7835b982006-12-10 02:20:22 -08003270/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003271 * This routine will try to nominate the ilb (idle load balancing)
3272 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3273 * load balancing on behalf of all those cpus. If all the cpus in the system
3274 * go into this tickless mode, then there will be no ilb owner (as there is
3275 * no need for one) and all the cpus will sleep till the next wakeup event
3276 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003277 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003278 * For the ilb owner, tick is not stopped. And this tick will be used
3279 * for idle load balancing. ilb owner will still be part of
3280 * nohz.cpu_mask..
3281 *
3282 * While stopping the tick, this cpu will become the ilb owner if there
3283 * is no other owner. And will be the owner till that cpu becomes busy
3284 * or if all cpus in the system stop their ticks at which point
3285 * there is no need for ilb owner.
3286 *
3287 * When the ilb owner becomes busy, it nominates another owner, during the
3288 * next busy scheduler_tick()
3289 */
3290int select_nohz_load_balancer(int stop_tick)
3291{
3292 int cpu = smp_processor_id();
3293
3294 if (stop_tick) {
3295 cpu_set(cpu, nohz.cpu_mask);
3296 cpu_rq(cpu)->in_nohz_recently = 1;
3297
3298 /*
3299 * If we are going offline and still the leader, give up!
3300 */
3301 if (cpu_is_offline(cpu) &&
3302 atomic_read(&nohz.load_balancer) == cpu) {
3303 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3304 BUG();
3305 return 0;
3306 }
3307
3308 /* time for ilb owner also to sleep */
3309 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3310 if (atomic_read(&nohz.load_balancer) == cpu)
3311 atomic_set(&nohz.load_balancer, -1);
3312 return 0;
3313 }
3314
3315 if (atomic_read(&nohz.load_balancer) == -1) {
3316 /* make me the ilb owner */
3317 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3318 return 1;
3319 } else if (atomic_read(&nohz.load_balancer) == cpu)
3320 return 1;
3321 } else {
3322 if (!cpu_isset(cpu, nohz.cpu_mask))
3323 return 0;
3324
3325 cpu_clear(cpu, nohz.cpu_mask);
3326
3327 if (atomic_read(&nohz.load_balancer) == cpu)
3328 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3329 BUG();
3330 }
3331 return 0;
3332}
3333#endif
3334
3335static DEFINE_SPINLOCK(balancing);
3336
3337/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003338 * It checks each scheduling domain to see if it is due to be balanced,
3339 * and initiates a balancing operation if so.
3340 *
3341 * Balancing parameters are set up in arch_init_sched_domains.
3342 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003343static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003344{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003345 int balance = 1;
3346 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003347 unsigned long interval;
3348 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003349 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003350 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003351 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003353 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 if (!(sd->flags & SD_LOAD_BALANCE))
3355 continue;
3356
3357 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003358 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 interval *= sd->busy_factor;
3360
3361 /* scale ms to jiffies */
3362 interval = msecs_to_jiffies(interval);
3363 if (unlikely(!interval))
3364 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003365 if (interval > HZ*NR_CPUS/10)
3366 interval = HZ*NR_CPUS/10;
3367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Christoph Lameter08c183f2006-12-10 02:20:29 -08003369 if (sd->flags & SD_SERIALIZE) {
3370 if (!spin_trylock(&balancing))
3371 goto out;
3372 }
3373
Christoph Lameterc9819f42006-12-10 02:20:25 -08003374 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003375 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003376 /*
3377 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003378 * longer idle, or one of our SMT siblings is
3379 * not idle.
3380 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003381 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003383 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003385 if (sd->flags & SD_SERIALIZE)
3386 spin_unlock(&balancing);
3387out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003388 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003389 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003390 update_next_balance = 1;
3391 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003392
3393 /*
3394 * Stop the load balance at this level. There is another
3395 * CPU in our sched group which is doing load balancing more
3396 * actively.
3397 */
3398 if (!balance)
3399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003401
3402 /*
3403 * next_balance will be updated only when there is a need.
3404 * When the cpu is attached to null domain for ex, it will not be
3405 * updated.
3406 */
3407 if (likely(update_next_balance))
3408 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003409}
3410
3411/*
3412 * run_rebalance_domains is triggered when needed from the scheduler tick.
3413 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3414 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3415 */
3416static void run_rebalance_domains(struct softirq_action *h)
3417{
Ingo Molnardd41f592007-07-09 18:51:59 +02003418 int this_cpu = smp_processor_id();
3419 struct rq *this_rq = cpu_rq(this_cpu);
3420 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3421 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003422
Ingo Molnardd41f592007-07-09 18:51:59 +02003423 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003424
3425#ifdef CONFIG_NO_HZ
3426 /*
3427 * If this cpu is the owner for idle load balancing, then do the
3428 * balancing on behalf of the other idle cpus whose ticks are
3429 * stopped.
3430 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003431 if (this_rq->idle_at_tick &&
3432 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003433 cpumask_t cpus = nohz.cpu_mask;
3434 struct rq *rq;
3435 int balance_cpu;
3436
Ingo Molnardd41f592007-07-09 18:51:59 +02003437 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003438 for_each_cpu_mask(balance_cpu, cpus) {
3439 /*
3440 * If this cpu gets work to do, stop the load balancing
3441 * work being done for other cpus. Next load
3442 * balancing owner will pick it up.
3443 */
3444 if (need_resched())
3445 break;
3446
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003447 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003448
3449 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003450 if (time_after(this_rq->next_balance, rq->next_balance))
3451 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003452 }
3453 }
3454#endif
3455}
3456
3457/*
3458 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3459 *
3460 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3461 * idle load balancing owner or decide to stop the periodic load balancing,
3462 * if the whole system is idle.
3463 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003464static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003465{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003466#ifdef CONFIG_NO_HZ
3467 /*
3468 * If we were in the nohz mode recently and busy at the current
3469 * scheduler tick, then check if we need to nominate new idle
3470 * load balancer.
3471 */
3472 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3473 rq->in_nohz_recently = 0;
3474
3475 if (atomic_read(&nohz.load_balancer) == cpu) {
3476 cpu_clear(cpu, nohz.cpu_mask);
3477 atomic_set(&nohz.load_balancer, -1);
3478 }
3479
3480 if (atomic_read(&nohz.load_balancer) == -1) {
3481 /*
3482 * simple selection for now: Nominate the
3483 * first cpu in the nohz list to be the next
3484 * ilb owner.
3485 *
3486 * TBD: Traverse the sched domains and nominate
3487 * the nearest cpu in the nohz.cpu_mask.
3488 */
3489 int ilb = first_cpu(nohz.cpu_mask);
3490
3491 if (ilb != NR_CPUS)
3492 resched_cpu(ilb);
3493 }
3494 }
3495
3496 /*
3497 * If this cpu is idle and doing idle load balancing for all the
3498 * cpus with ticks stopped, is it time for that to stop?
3499 */
3500 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3501 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3502 resched_cpu(cpu);
3503 return;
3504 }
3505
3506 /*
3507 * If this cpu is idle and the idle load balancing is done by
3508 * someone else, then no need raise the SCHED_SOFTIRQ
3509 */
3510 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3511 cpu_isset(cpu, nohz.cpu_mask))
3512 return;
3513#endif
3514 if (time_after_eq(jiffies, rq->next_balance))
3515 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516}
Ingo Molnardd41f592007-07-09 18:51:59 +02003517
3518#else /* CONFIG_SMP */
3519
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520/*
3521 * on UP we do not need to balance between CPUs:
3522 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003523static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524{
3525}
Ingo Molnardd41f592007-07-09 18:51:59 +02003526
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527#endif
3528
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529DEFINE_PER_CPU(struct kernel_stat, kstat);
3530
3531EXPORT_PER_CPU_SYMBOL(kstat);
3532
3533/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003534 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3535 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003537unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003540 u64 ns, delta_exec;
3541 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003542
Ingo Molnar41b86e92007-07-09 18:51:58 +02003543 rq = task_rq_lock(p, &flags);
3544 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003545 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003546 update_rq_clock(rq);
3547 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003548 if ((s64)delta_exec > 0)
3549 ns += delta_exec;
3550 }
3551 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003552
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 return ns;
3554}
3555
3556/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 * Account user cpu time to a process.
3558 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 * @cputime: the cpu time spent in user space since the last update
3560 */
3561void account_user_time(struct task_struct *p, cputime_t cputime)
3562{
3563 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3564 cputime64_t tmp;
3565
3566 p->utime = cputime_add(p->utime, cputime);
3567
3568 /* Add user time to cpustat. */
3569 tmp = cputime_to_cputime64(cputime);
3570 if (TASK_NICE(p) > 0)
3571 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3572 else
3573 cpustat->user = cputime64_add(cpustat->user, tmp);
3574}
3575
3576/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003577 * Account guest cpu time to a process.
3578 * @p: the process that the cpu time gets accounted to
3579 * @cputime: the cpu time spent in virtual machine since the last update
3580 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003581static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003582{
3583 cputime64_t tmp;
3584 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3585
3586 tmp = cputime_to_cputime64(cputime);
3587
3588 p->utime = cputime_add(p->utime, cputime);
3589 p->gtime = cputime_add(p->gtime, cputime);
3590
3591 cpustat->user = cputime64_add(cpustat->user, tmp);
3592 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3593}
3594
3595/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003596 * Account scaled user cpu time to a process.
3597 * @p: the process that the cpu time gets accounted to
3598 * @cputime: the cpu time spent in user space since the last update
3599 */
3600void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3601{
3602 p->utimescaled = cputime_add(p->utimescaled, cputime);
3603}
3604
3605/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 * Account system cpu time to a process.
3607 * @p: the process that the cpu time gets accounted to
3608 * @hardirq_offset: the offset to subtract from hardirq_count()
3609 * @cputime: the cpu time spent in kernel space since the last update
3610 */
3611void account_system_time(struct task_struct *p, int hardirq_offset,
3612 cputime_t cputime)
3613{
3614 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003615 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 cputime64_t tmp;
3617
Christian Borntraeger97783852007-11-15 20:57:39 +01003618 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3619 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003620
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 p->stime = cputime_add(p->stime, cputime);
3622
3623 /* Add system time to cpustat. */
3624 tmp = cputime_to_cputime64(cputime);
3625 if (hardirq_count() - hardirq_offset)
3626 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3627 else if (softirq_count())
3628 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003629 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003631 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3633 else
3634 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3635 /* Account for system time used */
3636 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637}
3638
3639/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003640 * Account scaled system cpu time to a process.
3641 * @p: the process that the cpu time gets accounted to
3642 * @hardirq_offset: the offset to subtract from hardirq_count()
3643 * @cputime: the cpu time spent in kernel space since the last update
3644 */
3645void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3646{
3647 p->stimescaled = cputime_add(p->stimescaled, cputime);
3648}
3649
3650/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 * Account for involuntary wait time.
3652 * @p: the process from which the cpu time has been stolen
3653 * @steal: the cpu time spent in involuntary wait
3654 */
3655void account_steal_time(struct task_struct *p, cputime_t steal)
3656{
3657 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3658 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003659 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
3661 if (p == rq->idle) {
3662 p->stime = cputime_add(p->stime, steal);
3663 if (atomic_read(&rq->nr_iowait) > 0)
3664 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3665 else
3666 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003667 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3669}
3670
Christoph Lameter7835b982006-12-10 02:20:22 -08003671/*
3672 * This function gets called by the timer code, with HZ frequency.
3673 * We call it with interrupts disabled.
3674 *
3675 * It also gets called by the fork code, when changing the parent's
3676 * timeslices.
3677 */
3678void scheduler_tick(void)
3679{
Christoph Lameter7835b982006-12-10 02:20:22 -08003680 int cpu = smp_processor_id();
3681 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003682 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003683 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003684
Ingo Molnardd41f592007-07-09 18:51:59 +02003685 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003686 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003687 /*
3688 * Let rq->clock advance by at least TICK_NSEC:
3689 */
3690 if (unlikely(rq->clock < next_tick))
3691 rq->clock = next_tick;
3692 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003693 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003694 curr->sched_class->task_tick(rq, curr, 0);
3695 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003696 spin_unlock(&rq->lock);
3697
Christoph Lametere418e1c2006-12-10 02:20:23 -08003698#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003699 rq->idle_at_tick = idle_cpu(cpu);
3700 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003701#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702}
3703
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3705
3706void fastcall add_preempt_count(int val)
3707{
3708 /*
3709 * Underflow?
3710 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003711 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 preempt_count() += val;
3714 /*
3715 * Spinlock count overflowing soon?
3716 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003717 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3718 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719}
3720EXPORT_SYMBOL(add_preempt_count);
3721
3722void fastcall sub_preempt_count(int val)
3723{
3724 /*
3725 * Underflow?
3726 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003727 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3728 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 /*
3730 * Is the spinlock portion underflowing?
3731 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003732 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3733 !(preempt_count() & PREEMPT_MASK)))
3734 return;
3735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 preempt_count() -= val;
3737}
3738EXPORT_SYMBOL(sub_preempt_count);
3739
3740#endif
3741
3742/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003743 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003745static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746{
Satyam Sharma838225b2007-10-24 18:23:50 +02003747 struct pt_regs *regs = get_irq_regs();
3748
3749 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3750 prev->comm, prev->pid, preempt_count());
3751
Ingo Molnardd41f592007-07-09 18:51:59 +02003752 debug_show_held_locks(prev);
3753 if (irqs_disabled())
3754 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003755
3756 if (regs)
3757 show_regs(regs);
3758 else
3759 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003760}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Ingo Molnardd41f592007-07-09 18:51:59 +02003762/*
3763 * Various schedule()-time debugging checks and statistics:
3764 */
3765static inline void schedule_debug(struct task_struct *prev)
3766{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003768 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 * schedule() atomically, we ignore that path for now.
3770 * Otherwise, whine if we are scheduling when we should not be.
3771 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003772 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3773 __schedule_bug(prev);
3774
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3776
Ingo Molnar2d723762007-10-15 17:00:12 +02003777 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003778#ifdef CONFIG_SCHEDSTATS
3779 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003780 schedstat_inc(this_rq(), bkl_count);
3781 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003782 }
3783#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003784}
3785
3786/*
3787 * Pick up the highest-prio task:
3788 */
3789static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003790pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003791{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003792 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003793 struct task_struct *p;
3794
3795 /*
3796 * Optimization: we know that if all tasks are in
3797 * the fair class we can call that function directly:
3798 */
3799 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003800 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003801 if (likely(p))
3802 return p;
3803 }
3804
3805 class = sched_class_highest;
3806 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003807 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003808 if (p)
3809 return p;
3810 /*
3811 * Will never be NULL as the idle class always
3812 * returns a non-NULL p:
3813 */
3814 class = class->next;
3815 }
3816}
3817
3818/*
3819 * schedule() is the main scheduler function.
3820 */
3821asmlinkage void __sched schedule(void)
3822{
3823 struct task_struct *prev, *next;
3824 long *switch_count;
3825 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003826 int cpu;
3827
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828need_resched:
3829 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003830 cpu = smp_processor_id();
3831 rq = cpu_rq(cpu);
3832 rcu_qsctr_inc(cpu);
3833 prev = rq->curr;
3834 switch_count = &prev->nivcsw;
3835
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 release_kernel_lock(prev);
3837need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Ingo Molnardd41f592007-07-09 18:51:59 +02003839 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003841 hrtick_clear(rq);
3842
Ingo Molnar1e819952007-10-15 17:00:13 +02003843 /*
3844 * Do the rq-clock update outside the rq lock:
3845 */
3846 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003847 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003848 spin_lock(&rq->lock);
3849 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
Ingo Molnardd41f592007-07-09 18:51:59 +02003851 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3852 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3853 unlikely(signal_pending(prev)))) {
3854 prev->state = TASK_RUNNING;
3855 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003856 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003857 }
3858 switch_count = &prev->nvcsw;
3859 }
3860
Steven Rostedt9a897c52008-01-25 21:08:22 +01003861#ifdef CONFIG_SMP
3862 if (prev->sched_class->pre_schedule)
3863 prev->sched_class->pre_schedule(rq, prev);
3864#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01003865
Ingo Molnardd41f592007-07-09 18:51:59 +02003866 if (unlikely(!rq->nr_running))
3867 idle_balance(cpu, rq);
3868
Ingo Molnar31ee5292007-08-09 11:16:49 +02003869 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003870 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
3872 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003873
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 rq->nr_switches++;
3876 rq->curr = next;
3877 ++*switch_count;
3878
Ingo Molnardd41f592007-07-09 18:51:59 +02003879 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003880 /*
3881 * the context switch might have flipped the stack from under
3882 * us, hence refresh the local variables.
3883 */
3884 cpu = smp_processor_id();
3885 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 } else
3887 spin_unlock_irq(&rq->lock);
3888
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003889 hrtick_set(rq);
3890
3891 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 preempt_enable_no_resched();
3895 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3896 goto need_resched;
3897}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898EXPORT_SYMBOL(schedule);
3899
3900#ifdef CONFIG_PREEMPT
3901/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003902 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003903 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 * occur there and call schedule directly.
3905 */
3906asmlinkage void __sched preempt_schedule(void)
3907{
3908 struct thread_info *ti = current_thread_info();
3909#ifdef CONFIG_PREEMPT_BKL
3910 struct task_struct *task = current;
3911 int saved_lock_depth;
3912#endif
3913 /*
3914 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003915 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003917 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 return;
3919
Andi Kleen3a5c3592007-10-15 17:00:14 +02003920 do {
3921 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Andi Kleen3a5c3592007-10-15 17:00:14 +02003923 /*
3924 * We keep the big kernel semaphore locked, but we
3925 * clear ->lock_depth so that schedule() doesnt
3926 * auto-release the semaphore:
3927 */
3928#ifdef CONFIG_PREEMPT_BKL
3929 saved_lock_depth = task->lock_depth;
3930 task->lock_depth = -1;
3931#endif
3932 schedule();
3933#ifdef CONFIG_PREEMPT_BKL
3934 task->lock_depth = saved_lock_depth;
3935#endif
3936 sub_preempt_count(PREEMPT_ACTIVE);
3937
3938 /*
3939 * Check again in case we missed a preemption opportunity
3940 * between schedule and now.
3941 */
3942 barrier();
3943 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945EXPORT_SYMBOL(preempt_schedule);
3946
3947/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003948 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 * off of irq context.
3950 * Note, that this is called and return with irqs disabled. This will
3951 * protect us against recursive calling from irq.
3952 */
3953asmlinkage void __sched preempt_schedule_irq(void)
3954{
3955 struct thread_info *ti = current_thread_info();
3956#ifdef CONFIG_PREEMPT_BKL
3957 struct task_struct *task = current;
3958 int saved_lock_depth;
3959#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003960 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 BUG_ON(ti->preempt_count || !irqs_disabled());
3962
Andi Kleen3a5c3592007-10-15 17:00:14 +02003963 do {
3964 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Andi Kleen3a5c3592007-10-15 17:00:14 +02003966 /*
3967 * We keep the big kernel semaphore locked, but we
3968 * clear ->lock_depth so that schedule() doesnt
3969 * auto-release the semaphore:
3970 */
3971#ifdef CONFIG_PREEMPT_BKL
3972 saved_lock_depth = task->lock_depth;
3973 task->lock_depth = -1;
3974#endif
3975 local_irq_enable();
3976 schedule();
3977 local_irq_disable();
3978#ifdef CONFIG_PREEMPT_BKL
3979 task->lock_depth = saved_lock_depth;
3980#endif
3981 sub_preempt_count(PREEMPT_ACTIVE);
3982
3983 /*
3984 * Check again in case we missed a preemption opportunity
3985 * between schedule and now.
3986 */
3987 barrier();
3988 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989}
3990
3991#endif /* CONFIG_PREEMPT */
3992
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003993int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3994 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003996 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998EXPORT_SYMBOL(default_wake_function);
3999
4000/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004001 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4002 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 * number) then we wake all the non-exclusive tasks and one exclusive task.
4004 *
4005 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004006 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4008 */
4009static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4010 int nr_exclusive, int sync, void *key)
4011{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004012 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004014 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004015 unsigned flags = curr->flags;
4016
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004018 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 break;
4020 }
4021}
4022
4023/**
4024 * __wake_up - wake up threads blocked on a waitqueue.
4025 * @q: the waitqueue
4026 * @mode: which threads
4027 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004028 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 */
4030void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004031 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032{
4033 unsigned long flags;
4034
4035 spin_lock_irqsave(&q->lock, flags);
4036 __wake_up_common(q, mode, nr_exclusive, 0, key);
4037 spin_unlock_irqrestore(&q->lock, flags);
4038}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039EXPORT_SYMBOL(__wake_up);
4040
4041/*
4042 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4043 */
4044void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
4045{
4046 __wake_up_common(q, mode, 1, 0, NULL);
4047}
4048
4049/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004050 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 * @q: the waitqueue
4052 * @mode: which threads
4053 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4054 *
4055 * The sync wakeup differs that the waker knows that it will schedule
4056 * away soon, so while the target thread will be woken up, it will not
4057 * be migrated to another CPU - ie. the two threads are 'synchronized'
4058 * with each other. This can prevent needless bouncing between CPUs.
4059 *
4060 * On UP it can prevent extra preemption.
4061 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004062void fastcall
4063__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064{
4065 unsigned long flags;
4066 int sync = 1;
4067
4068 if (unlikely(!q))
4069 return;
4070
4071 if (unlikely(!nr_exclusive))
4072 sync = 0;
4073
4074 spin_lock_irqsave(&q->lock, flags);
4075 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4076 spin_unlock_irqrestore(&q->lock, flags);
4077}
4078EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4079
Ingo Molnarb15136e2007-10-24 18:23:48 +02004080void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081{
4082 unsigned long flags;
4083
4084 spin_lock_irqsave(&x->wait.lock, flags);
4085 x->done++;
4086 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
4087 1, 0, NULL);
4088 spin_unlock_irqrestore(&x->wait.lock, flags);
4089}
4090EXPORT_SYMBOL(complete);
4091
Ingo Molnarb15136e2007-10-24 18:23:48 +02004092void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093{
4094 unsigned long flags;
4095
4096 spin_lock_irqsave(&x->wait.lock, flags);
4097 x->done += UINT_MAX/2;
4098 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
4099 0, 0, NULL);
4100 spin_unlock_irqrestore(&x->wait.lock, flags);
4101}
4102EXPORT_SYMBOL(complete_all);
4103
Andi Kleen8cbbe862007-10-15 17:00:14 +02004104static inline long __sched
4105do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 if (!x->done) {
4108 DECLARE_WAITQUEUE(wait, current);
4109
4110 wait.flags |= WQ_FLAG_EXCLUSIVE;
4111 __add_wait_queue_tail(&x->wait, &wait);
4112 do {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004113 if (state == TASK_INTERRUPTIBLE &&
4114 signal_pending(current)) {
4115 __remove_wait_queue(&x->wait, &wait);
4116 return -ERESTARTSYS;
4117 }
4118 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004120 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004122 if (!timeout) {
4123 __remove_wait_queue(&x->wait, &wait);
4124 return timeout;
4125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 } while (!x->done);
4127 __remove_wait_queue(&x->wait, &wait);
4128 }
4129 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004130 return timeout;
4131}
4132
4133static long __sched
4134wait_for_common(struct completion *x, long timeout, int state)
4135{
4136 might_sleep();
4137
4138 spin_lock_irq(&x->wait.lock);
4139 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004141 return timeout;
4142}
4143
Ingo Molnarb15136e2007-10-24 18:23:48 +02004144void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004145{
4146 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147}
4148EXPORT_SYMBOL(wait_for_completion);
4149
Ingo Molnarb15136e2007-10-24 18:23:48 +02004150unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4152{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004153 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154}
4155EXPORT_SYMBOL(wait_for_completion_timeout);
4156
Andi Kleen8cbbe862007-10-15 17:00:14 +02004157int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
Andi Kleen51e97992007-10-18 21:32:55 +02004159 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4160 if (t == -ERESTARTSYS)
4161 return t;
4162 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163}
4164EXPORT_SYMBOL(wait_for_completion_interruptible);
4165
Ingo Molnarb15136e2007-10-24 18:23:48 +02004166unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167wait_for_completion_interruptible_timeout(struct completion *x,
4168 unsigned long timeout)
4169{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004170 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171}
4172EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4173
Andi Kleen8cbbe862007-10-15 17:00:14 +02004174static long __sched
4175sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004176{
4177 unsigned long flags;
4178 wait_queue_t wait;
4179
4180 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Andi Kleen8cbbe862007-10-15 17:00:14 +02004182 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Andi Kleen8cbbe862007-10-15 17:00:14 +02004184 spin_lock_irqsave(&q->lock, flags);
4185 __add_wait_queue(q, &wait);
4186 spin_unlock(&q->lock);
4187 timeout = schedule_timeout(timeout);
4188 spin_lock_irq(&q->lock);
4189 __remove_wait_queue(q, &wait);
4190 spin_unlock_irqrestore(&q->lock, flags);
4191
4192 return timeout;
4193}
4194
4195void __sched interruptible_sleep_on(wait_queue_head_t *q)
4196{
4197 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199EXPORT_SYMBOL(interruptible_sleep_on);
4200
Ingo Molnar0fec1712007-07-09 18:52:01 +02004201long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004202interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004204 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4207
Ingo Molnar0fec1712007-07-09 18:52:01 +02004208void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004210 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212EXPORT_SYMBOL(sleep_on);
4213
Ingo Molnar0fec1712007-07-09 18:52:01 +02004214long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004216 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218EXPORT_SYMBOL(sleep_on_timeout);
4219
Ingo Molnarb29739f2006-06-27 02:54:51 -07004220#ifdef CONFIG_RT_MUTEXES
4221
4222/*
4223 * rt_mutex_setprio - set the current priority of a task
4224 * @p: task
4225 * @prio: prio value (kernel-internal form)
4226 *
4227 * This function changes the 'effective' priority of a task. It does
4228 * not touch ->normal_prio like __setscheduler().
4229 *
4230 * Used by the rt_mutex code to implement priority inheritance logic.
4231 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004232void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004233{
4234 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004235 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004236 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004237 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004238
4239 BUG_ON(prio < 0 || prio > MAX_PRIO);
4240
4241 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004242 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004243
Andrew Mortond5f9f942007-05-08 20:27:06 -07004244 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004245 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004246 running = task_current(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004247 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004248 dequeue_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004249 if (running)
4250 p->sched_class->put_prev_task(rq, p);
4251 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004252
4253 if (rt_prio(prio))
4254 p->sched_class = &rt_sched_class;
4255 else
4256 p->sched_class = &fair_sched_class;
4257
Ingo Molnarb29739f2006-06-27 02:54:51 -07004258 p->prio = prio;
4259
Ingo Molnardd41f592007-07-09 18:51:59 +02004260 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004261 if (running)
4262 p->sched_class->set_curr_task(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01004263
Ingo Molnar8159f872007-08-09 11:16:49 +02004264 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004265
4266 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004267 }
4268 task_rq_unlock(rq, &flags);
4269}
4270
4271#endif
4272
Ingo Molnar36c8b582006-07-03 00:25:41 -07004273void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274{
Ingo Molnardd41f592007-07-09 18:51:59 +02004275 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004277 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278
4279 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4280 return;
4281 /*
4282 * We have to be careful, if called from sys_setpriority(),
4283 * the task might be in the middle of scheduling on another CPU.
4284 */
4285 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004286 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 /*
4288 * The RT priorities are set via sched_setscheduler(), but we still
4289 * allow the 'normal' nice value to be set - but as expected
4290 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004291 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004293 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 p->static_prio = NICE_TO_PRIO(nice);
4295 goto out_unlock;
4296 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004297 on_rq = p->se.on_rq;
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +01004298 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004299 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004302 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004303 old_prio = p->prio;
4304 p->prio = effective_prio(p);
4305 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
Ingo Molnardd41f592007-07-09 18:51:59 +02004307 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004308 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004310 * If the task increased its priority or is running and
4311 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004313 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 resched_task(rq->curr);
4315 }
4316out_unlock:
4317 task_rq_unlock(rq, &flags);
4318}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319EXPORT_SYMBOL(set_user_nice);
4320
Matt Mackalle43379f2005-05-01 08:59:00 -07004321/*
4322 * can_nice - check if a task can reduce its nice value
4323 * @p: task
4324 * @nice: nice value
4325 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004326int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004327{
Matt Mackall024f4742005-08-18 11:24:19 -07004328 /* convert nice value [19,-20] to rlimit style value [1,40] */
4329 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004330
Matt Mackalle43379f2005-05-01 08:59:00 -07004331 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4332 capable(CAP_SYS_NICE));
4333}
4334
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335#ifdef __ARCH_WANT_SYS_NICE
4336
4337/*
4338 * sys_nice - change the priority of the current process.
4339 * @increment: priority increment
4340 *
4341 * sys_setpriority is a more generic, but much slower function that
4342 * does similar things.
4343 */
4344asmlinkage long sys_nice(int increment)
4345{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004346 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
4348 /*
4349 * Setpriority might change our priority at the same moment.
4350 * We don't have to worry. Conceptually one call occurs first
4351 * and we have a single winner.
4352 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004353 if (increment < -40)
4354 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 if (increment > 40)
4356 increment = 40;
4357
4358 nice = PRIO_TO_NICE(current->static_prio) + increment;
4359 if (nice < -20)
4360 nice = -20;
4361 if (nice > 19)
4362 nice = 19;
4363
Matt Mackalle43379f2005-05-01 08:59:00 -07004364 if (increment < 0 && !can_nice(current, nice))
4365 return -EPERM;
4366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 retval = security_task_setnice(current, nice);
4368 if (retval)
4369 return retval;
4370
4371 set_user_nice(current, nice);
4372 return 0;
4373}
4374
4375#endif
4376
4377/**
4378 * task_prio - return the priority value of a given task.
4379 * @p: the task in question.
4380 *
4381 * This is the priority value as seen by users in /proc.
4382 * RT tasks are offset by -200. Normal tasks are centered
4383 * around 0, value goes from -16 to +15.
4384 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004385int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386{
4387 return p->prio - MAX_RT_PRIO;
4388}
4389
4390/**
4391 * task_nice - return the nice value of a given task.
4392 * @p: the task in question.
4393 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004394int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395{
4396 return TASK_NICE(p);
4397}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
4400/**
4401 * idle_cpu - is a given cpu idle currently?
4402 * @cpu: the processor in question.
4403 */
4404int idle_cpu(int cpu)
4405{
4406 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4407}
4408
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409/**
4410 * idle_task - return the idle task for a given cpu.
4411 * @cpu: the processor in question.
4412 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004413struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414{
4415 return cpu_rq(cpu)->idle;
4416}
4417
4418/**
4419 * find_process_by_pid - find a process with a matching PID value.
4420 * @pid: the pid in question.
4421 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004422static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004424 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425}
4426
4427/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004428static void
4429__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430{
Ingo Molnardd41f592007-07-09 18:51:59 +02004431 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004434 switch (p->policy) {
4435 case SCHED_NORMAL:
4436 case SCHED_BATCH:
4437 case SCHED_IDLE:
4438 p->sched_class = &fair_sched_class;
4439 break;
4440 case SCHED_FIFO:
4441 case SCHED_RR:
4442 p->sched_class = &rt_sched_class;
4443 break;
4444 }
4445
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004447 p->normal_prio = normal_prio(p);
4448 /* we are holding p->pi_lock already */
4449 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004450 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451}
4452
4453/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004454 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 * @p: the task in question.
4456 * @policy: new policy.
4457 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004458 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004459 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004461int sched_setscheduler(struct task_struct *p, int policy,
4462 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004464 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004466 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004467 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Steven Rostedt66e53932006-06-27 02:54:44 -07004469 /* may grab non-irq protected spin_locks */
4470 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471recheck:
4472 /* double check policy once rq lock held */
4473 if (policy < 0)
4474 policy = oldpolicy = p->policy;
4475 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004476 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4477 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004478 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 /*
4480 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004481 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4482 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 */
4484 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004485 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004486 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004488 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 return -EINVAL;
4490
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004491 /*
4492 * Allow unprivileged RT tasks to decrease priority:
4493 */
4494 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004495 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004496 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004497
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004498 if (!lock_task_sighand(p, &flags))
4499 return -ESRCH;
4500 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4501 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004502
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004503 /* can't set/change the rt policy */
4504 if (policy != p->policy && !rlim_rtprio)
4505 return -EPERM;
4506
4507 /* can't increase priority */
4508 if (param->sched_priority > p->rt_priority &&
4509 param->sched_priority > rlim_rtprio)
4510 return -EPERM;
4511 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004512 /*
4513 * Like positive nice levels, dont allow tasks to
4514 * move out of SCHED_IDLE either:
4515 */
4516 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4517 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004518
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004519 /* can't change other user's priorities */
4520 if ((current->euid != p->euid) &&
4521 (current->euid != p->uid))
4522 return -EPERM;
4523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
4525 retval = security_task_setscheduler(p, policy, param);
4526 if (retval)
4527 return retval;
4528 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004529 * make sure no PI-waiters arrive (or leave) while we are
4530 * changing the priority of the task:
4531 */
4532 spin_lock_irqsave(&p->pi_lock, flags);
4533 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 * To be able to change p->policy safely, the apropriate
4535 * runqueue lock must be held.
4536 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004537 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 /* recheck policy now with rq lock held */
4539 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4540 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004541 __task_rq_unlock(rq);
4542 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 goto recheck;
4544 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004545 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004546 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004547 running = task_current(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004548 if (on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004549 deactivate_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004550 if (running)
4551 p->sched_class->put_prev_task(rq, p);
4552 }
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004553
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004555 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004556
Ingo Molnardd41f592007-07-09 18:51:59 +02004557 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004558 if (running)
4559 p->sched_class->set_curr_task(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01004560
Ingo Molnardd41f592007-07-09 18:51:59 +02004561 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004562
4563 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004565 __task_rq_unlock(rq);
4566 spin_unlock_irqrestore(&p->pi_lock, flags);
4567
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004568 rt_mutex_adjust_pi(p);
4569
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 return 0;
4571}
4572EXPORT_SYMBOL_GPL(sched_setscheduler);
4573
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004574static int
4575do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 struct sched_param lparam;
4578 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004579 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
4581 if (!param || pid < 0)
4582 return -EINVAL;
4583 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4584 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004585
4586 rcu_read_lock();
4587 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004589 if (p != NULL)
4590 retval = sched_setscheduler(p, policy, &lparam);
4591 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004592
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 return retval;
4594}
4595
4596/**
4597 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4598 * @pid: the pid in question.
4599 * @policy: new policy.
4600 * @param: structure containing the new RT priority.
4601 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004602asmlinkage long
4603sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604{
Jason Baronc21761f2006-01-18 17:43:03 -08004605 /* negative values for policy are not valid */
4606 if (policy < 0)
4607 return -EINVAL;
4608
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 return do_sched_setscheduler(pid, policy, param);
4610}
4611
4612/**
4613 * sys_sched_setparam - set/change the RT priority of a thread
4614 * @pid: the pid in question.
4615 * @param: structure containing the new RT priority.
4616 */
4617asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4618{
4619 return do_sched_setscheduler(pid, -1, param);
4620}
4621
4622/**
4623 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4624 * @pid: the pid in question.
4625 */
4626asmlinkage long sys_sched_getscheduler(pid_t pid)
4627{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004628 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004629 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630
4631 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004632 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
4634 retval = -ESRCH;
4635 read_lock(&tasklist_lock);
4636 p = find_process_by_pid(pid);
4637 if (p) {
4638 retval = security_task_getscheduler(p);
4639 if (!retval)
4640 retval = p->policy;
4641 }
4642 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 return retval;
4644}
4645
4646/**
4647 * sys_sched_getscheduler - get the RT priority of a thread
4648 * @pid: the pid in question.
4649 * @param: structure containing the RT priority.
4650 */
4651asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4652{
4653 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004654 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004655 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656
4657 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004658 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
4660 read_lock(&tasklist_lock);
4661 p = find_process_by_pid(pid);
4662 retval = -ESRCH;
4663 if (!p)
4664 goto out_unlock;
4665
4666 retval = security_task_getscheduler(p);
4667 if (retval)
4668 goto out_unlock;
4669
4670 lp.sched_priority = p->rt_priority;
4671 read_unlock(&tasklist_lock);
4672
4673 /*
4674 * This one might sleep, we cannot do it with a spinlock held ...
4675 */
4676 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4677
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 return retval;
4679
4680out_unlock:
4681 read_unlock(&tasklist_lock);
4682 return retval;
4683}
4684
4685long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4686{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004688 struct task_struct *p;
4689 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004691 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 read_lock(&tasklist_lock);
4693
4694 p = find_process_by_pid(pid);
4695 if (!p) {
4696 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004697 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 return -ESRCH;
4699 }
4700
4701 /*
4702 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004703 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 * usage count and then drop tasklist_lock.
4705 */
4706 get_task_struct(p);
4707 read_unlock(&tasklist_lock);
4708
4709 retval = -EPERM;
4710 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4711 !capable(CAP_SYS_NICE))
4712 goto out_unlock;
4713
David Quigleye7834f82006-06-23 02:03:59 -07004714 retval = security_task_setscheduler(p, 0, NULL);
4715 if (retval)
4716 goto out_unlock;
4717
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 cpus_allowed = cpuset_cpus_allowed(p);
4719 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004720 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 retval = set_cpus_allowed(p, new_mask);
4722
Paul Menage8707d8b2007-10-18 23:40:22 -07004723 if (!retval) {
4724 cpus_allowed = cpuset_cpus_allowed(p);
4725 if (!cpus_subset(new_mask, cpus_allowed)) {
4726 /*
4727 * We must have raced with a concurrent cpuset
4728 * update. Just reset the cpus_allowed to the
4729 * cpuset's cpus_allowed
4730 */
4731 new_mask = cpus_allowed;
4732 goto again;
4733 }
4734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735out_unlock:
4736 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004737 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 return retval;
4739}
4740
4741static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4742 cpumask_t *new_mask)
4743{
4744 if (len < sizeof(cpumask_t)) {
4745 memset(new_mask, 0, sizeof(cpumask_t));
4746 } else if (len > sizeof(cpumask_t)) {
4747 len = sizeof(cpumask_t);
4748 }
4749 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4750}
4751
4752/**
4753 * sys_sched_setaffinity - set the cpu affinity of a process
4754 * @pid: pid of the process
4755 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4756 * @user_mask_ptr: user-space pointer to the new cpu mask
4757 */
4758asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4759 unsigned long __user *user_mask_ptr)
4760{
4761 cpumask_t new_mask;
4762 int retval;
4763
4764 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4765 if (retval)
4766 return retval;
4767
4768 return sched_setaffinity(pid, new_mask);
4769}
4770
4771/*
4772 * Represents all cpu's present in the system
4773 * In systems capable of hotplug, this map could dynamically grow
4774 * as new cpu's are detected in the system via any platform specific
4775 * method, such as ACPI for e.g.
4776 */
4777
Andi Kleen4cef0c62006-01-11 22:44:57 +01004778cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779EXPORT_SYMBOL(cpu_present_map);
4780
4781#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004782cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004783EXPORT_SYMBOL(cpu_online_map);
4784
Andi Kleen4cef0c62006-01-11 22:44:57 +01004785cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004786EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787#endif
4788
4789long sched_getaffinity(pid_t pid, cpumask_t *mask)
4790{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004791 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004794 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 read_lock(&tasklist_lock);
4796
4797 retval = -ESRCH;
4798 p = find_process_by_pid(pid);
4799 if (!p)
4800 goto out_unlock;
4801
David Quigleye7834f82006-06-23 02:03:59 -07004802 retval = security_task_getscheduler(p);
4803 if (retval)
4804 goto out_unlock;
4805
Jack Steiner2f7016d2006-02-01 03:05:18 -08004806 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
4808out_unlock:
4809 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004810 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
Ulrich Drepper9531b622007-08-09 11:16:46 +02004812 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813}
4814
4815/**
4816 * sys_sched_getaffinity - get the cpu affinity of a process
4817 * @pid: pid of the process
4818 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4819 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4820 */
4821asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4822 unsigned long __user *user_mask_ptr)
4823{
4824 int ret;
4825 cpumask_t mask;
4826
4827 if (len < sizeof(cpumask_t))
4828 return -EINVAL;
4829
4830 ret = sched_getaffinity(pid, &mask);
4831 if (ret < 0)
4832 return ret;
4833
4834 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4835 return -EFAULT;
4836
4837 return sizeof(cpumask_t);
4838}
4839
4840/**
4841 * sys_sched_yield - yield the current processor to other threads.
4842 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004843 * This function yields the current CPU to other tasks. If there are no
4844 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 */
4846asmlinkage long sys_sched_yield(void)
4847{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004848 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849
Ingo Molnar2d723762007-10-15 17:00:12 +02004850 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004851 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
4853 /*
4854 * Since we are going to call schedule() anyway, there's
4855 * no need to preempt or enable interrupts:
4856 */
4857 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004858 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 _raw_spin_unlock(&rq->lock);
4860 preempt_enable_no_resched();
4861
4862 schedule();
4863
4864 return 0;
4865}
4866
Andrew Mortone7b38402006-06-30 01:56:00 -07004867static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004869#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4870 __might_sleep(__FILE__, __LINE__);
4871#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004872 /*
4873 * The BKS might be reacquired before we have dropped
4874 * PREEMPT_ACTIVE, which could trigger a second
4875 * cond_resched() call.
4876 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 do {
4878 add_preempt_count(PREEMPT_ACTIVE);
4879 schedule();
4880 sub_preempt_count(PREEMPT_ACTIVE);
4881 } while (need_resched());
4882}
4883
Herbert Xu02b67cc32008-01-25 21:08:28 +01004884#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
4885int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886{
Ingo Molnar94142322006-12-29 16:48:13 -08004887 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4888 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 __cond_resched();
4890 return 1;
4891 }
4892 return 0;
4893}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004894EXPORT_SYMBOL(_cond_resched);
4895#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
4897/*
4898 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4899 * call schedule, and on return reacquire the lock.
4900 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004901 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 * operations here to prevent schedule() from being called twice (once via
4903 * spin_unlock(), once by hand).
4904 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004905int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906{
Jan Kara6df3cec2005-06-13 15:52:32 -07004907 int ret = 0;
4908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909 if (need_lockbreak(lock)) {
4910 spin_unlock(lock);
4911 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004912 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 spin_lock(lock);
4914 }
Ingo Molnar94142322006-12-29 16:48:13 -08004915 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004916 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 _raw_spin_unlock(lock);
4918 preempt_enable_no_resched();
4919 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004920 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004923 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925EXPORT_SYMBOL(cond_resched_lock);
4926
4927int __sched cond_resched_softirq(void)
4928{
4929 BUG_ON(!in_softirq());
4930
Ingo Molnar94142322006-12-29 16:48:13 -08004931 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004932 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 __cond_resched();
4934 local_bh_disable();
4935 return 1;
4936 }
4937 return 0;
4938}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939EXPORT_SYMBOL(cond_resched_softirq);
4940
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941/**
4942 * yield - yield the current processor to other threads.
4943 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004944 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 * thread runnable and calls sys_sched_yield().
4946 */
4947void __sched yield(void)
4948{
4949 set_current_state(TASK_RUNNING);
4950 sys_sched_yield();
4951}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952EXPORT_SYMBOL(yield);
4953
4954/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004955 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 * that process accounting knows that this is a task in IO wait state.
4957 *
4958 * But don't do that if it is a deliberate, throttling IO wait (this task
4959 * has set its backing_dev_info: the queue against which it should throttle)
4960 */
4961void __sched io_schedule(void)
4962{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004963 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004965 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 atomic_inc(&rq->nr_iowait);
4967 schedule();
4968 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004969 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971EXPORT_SYMBOL(io_schedule);
4972
4973long __sched io_schedule_timeout(long timeout)
4974{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004975 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 long ret;
4977
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004978 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 atomic_inc(&rq->nr_iowait);
4980 ret = schedule_timeout(timeout);
4981 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004982 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 return ret;
4984}
4985
4986/**
4987 * sys_sched_get_priority_max - return maximum RT priority.
4988 * @policy: scheduling class.
4989 *
4990 * this syscall returns the maximum rt_priority that can be used
4991 * by a given scheduling class.
4992 */
4993asmlinkage long sys_sched_get_priority_max(int policy)
4994{
4995 int ret = -EINVAL;
4996
4997 switch (policy) {
4998 case SCHED_FIFO:
4999 case SCHED_RR:
5000 ret = MAX_USER_RT_PRIO-1;
5001 break;
5002 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005003 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005004 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 ret = 0;
5006 break;
5007 }
5008 return ret;
5009}
5010
5011/**
5012 * sys_sched_get_priority_min - return minimum RT priority.
5013 * @policy: scheduling class.
5014 *
5015 * this syscall returns the minimum rt_priority that can be used
5016 * by a given scheduling class.
5017 */
5018asmlinkage long sys_sched_get_priority_min(int policy)
5019{
5020 int ret = -EINVAL;
5021
5022 switch (policy) {
5023 case SCHED_FIFO:
5024 case SCHED_RR:
5025 ret = 1;
5026 break;
5027 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005028 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005029 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 ret = 0;
5031 }
5032 return ret;
5033}
5034
5035/**
5036 * sys_sched_rr_get_interval - return the default timeslice of a process.
5037 * @pid: pid of the process.
5038 * @interval: userspace pointer to the timeslice value.
5039 *
5040 * this syscall writes the default timeslice value of a given process
5041 * into the user-space timespec buffer. A value of '0' means infinity.
5042 */
5043asmlinkage
5044long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5045{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005046 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005047 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005048 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050
5051 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005052 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053
5054 retval = -ESRCH;
5055 read_lock(&tasklist_lock);
5056 p = find_process_by_pid(pid);
5057 if (!p)
5058 goto out_unlock;
5059
5060 retval = security_task_getscheduler(p);
5061 if (retval)
5062 goto out_unlock;
5063
Ingo Molnar77034932007-12-04 17:04:39 +01005064 /*
5065 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5066 * tasks that are on an otherwise idle runqueue:
5067 */
5068 time_slice = 0;
5069 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005070 time_slice = DEF_TIMESLICE;
Ingo Molnar77034932007-12-04 17:04:39 +01005071 } else {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005072 struct sched_entity *se = &p->se;
5073 unsigned long flags;
5074 struct rq *rq;
5075
5076 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005077 if (rq->cfs.load.weight)
5078 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005079 task_rq_unlock(rq, &flags);
5080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005082 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005085
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086out_unlock:
5087 read_unlock(&tasklist_lock);
5088 return retval;
5089}
5090
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005091static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005092
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005093void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005096 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005099 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005100 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005101#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005103 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005105 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106#else
5107 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005108 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005110 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111#endif
5112#ifdef CONFIG_DEBUG_STACK_USAGE
5113 {
Al Viro10ebffd2005-11-13 16:06:56 -08005114 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 while (!*n)
5116 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005117 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 }
5119#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005120 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005121 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
5123 if (state != TASK_RUNNING)
5124 show_stack(p, NULL);
5125}
5126
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005127void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005129 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
Ingo Molnar4bd77322007-07-11 21:21:47 +02005131#if BITS_PER_LONG == 32
5132 printk(KERN_INFO
5133 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005135 printk(KERN_INFO
5136 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137#endif
5138 read_lock(&tasklist_lock);
5139 do_each_thread(g, p) {
5140 /*
5141 * reset the NMI-timeout, listing all files on a slow
5142 * console might take alot of time:
5143 */
5144 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005145 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005146 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147 } while_each_thread(g, p);
5148
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005149 touch_all_softlockup_watchdogs();
5150
Ingo Molnardd41f592007-07-09 18:51:59 +02005151#ifdef CONFIG_SCHED_DEBUG
5152 sysrq_sched_debug_show();
5153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005155 /*
5156 * Only show locks if all tasks are dumped:
5157 */
5158 if (state_filter == -1)
5159 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160}
5161
Ingo Molnar1df21052007-07-09 18:51:58 +02005162void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5163{
Ingo Molnardd41f592007-07-09 18:51:59 +02005164 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005165}
5166
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005167/**
5168 * init_idle - set up an idle thread for a given CPU
5169 * @idle: task in question
5170 * @cpu: cpu the idle task belongs to
5171 *
5172 * NOTE: this function does not set the idle thread's NEED_RESCHED
5173 * flag, to make booting more robust.
5174 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005175void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005177 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 unsigned long flags;
5179
Ingo Molnardd41f592007-07-09 18:51:59 +02005180 __sched_fork(idle);
5181 idle->se.exec_start = sched_clock();
5182
Ingo Molnarb29739f2006-06-27 02:54:51 -07005183 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005185 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
5187 spin_lock_irqsave(&rq->lock, flags);
5188 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005189#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5190 idle->oncpu = 1;
5191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 spin_unlock_irqrestore(&rq->lock, flags);
5193
5194 /* Set the preempt count _outside_ the spinlocks! */
5195#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f52005-11-13 16:06:55 -08005196 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197#else
Al Viroa1261f52005-11-13 16:06:55 -08005198 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005200 /*
5201 * The idle tasks have their own, simple scheduling class:
5202 */
5203 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204}
5205
5206/*
5207 * In a system that switches off the HZ timer nohz_cpu_mask
5208 * indicates which cpus entered this state. This is used
5209 * in the rcu update to wait only for active cpus. For system
5210 * which do not switch off the HZ timer nohz_cpu_mask should
5211 * always be CPU_MASK_NONE.
5212 */
5213cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5214
Ingo Molnar19978ca2007-11-09 22:39:38 +01005215/*
5216 * Increase the granularity value when there are more CPUs,
5217 * because with more CPUs the 'effective latency' as visible
5218 * to users decreases. But the relationship is not linear,
5219 * so pick a second-best guess by going with the log2 of the
5220 * number of CPUs.
5221 *
5222 * This idea comes from the SD scheduler of Con Kolivas:
5223 */
5224static inline void sched_init_granularity(void)
5225{
5226 unsigned int factor = 1 + ilog2(num_online_cpus());
5227 const unsigned long limit = 200000000;
5228
5229 sysctl_sched_min_granularity *= factor;
5230 if (sysctl_sched_min_granularity > limit)
5231 sysctl_sched_min_granularity = limit;
5232
5233 sysctl_sched_latency *= factor;
5234 if (sysctl_sched_latency > limit)
5235 sysctl_sched_latency = limit;
5236
5237 sysctl_sched_wakeup_granularity *= factor;
5238 sysctl_sched_batch_wakeup_granularity *= factor;
5239}
5240
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241#ifdef CONFIG_SMP
5242/*
5243 * This is how migration works:
5244 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005245 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 * runqueue and wake up that CPU's migration thread.
5247 * 2) we down() the locked semaphore => thread blocks.
5248 * 3) migration thread wakes up (implicitly it forces the migrated
5249 * thread off the CPU)
5250 * 4) it gets the migration request and checks whether the migrated
5251 * task is still in the wrong runqueue.
5252 * 5) if it's in the wrong runqueue then the migration thread removes
5253 * it and puts it into the right queue.
5254 * 6) migration thread up()s the semaphore.
5255 * 7) we wake up and the migration is done.
5256 */
5257
5258/*
5259 * Change a given task's CPU affinity. Migrate the thread to a
5260 * proper CPU and schedule it away if the CPU it's executing on
5261 * is removed from the allowed bitmask.
5262 *
5263 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005264 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265 * call is not atomic; no spinlocks may be held.
5266 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005267int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005269 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005271 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005272 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
5274 rq = task_rq_lock(p, &flags);
5275 if (!cpus_intersects(new_mask, cpu_online_map)) {
5276 ret = -EINVAL;
5277 goto out;
5278 }
5279
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005280 if (p->sched_class->set_cpus_allowed)
5281 p->sched_class->set_cpus_allowed(p, &new_mask);
5282 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005283 p->cpus_allowed = new_mask;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005284 p->nr_cpus_allowed = cpus_weight(new_mask);
5285 }
5286
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 /* Can the task run on the task's current CPU? If so, we're done */
5288 if (cpu_isset(task_cpu(p), new_mask))
5289 goto out;
5290
5291 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5292 /* Need help from migration thread: drop lock and wait. */
5293 task_rq_unlock(rq, &flags);
5294 wake_up_process(rq->migration_thread);
5295 wait_for_completion(&req.done);
5296 tlb_migrate_finish(p->mm);
5297 return 0;
5298 }
5299out:
5300 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005301
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 return ret;
5303}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304EXPORT_SYMBOL_GPL(set_cpus_allowed);
5305
5306/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005307 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 * this because either it can't run here any more (set_cpus_allowed()
5309 * away from this CPU, or CPU going down), or because we're
5310 * attempting to rebalance this task on exec (sched_exec).
5311 *
5312 * So we race with normal scheduler movements, but that's OK, as long
5313 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005314 *
5315 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005317static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005319 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005320 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
5322 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005323 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324
5325 rq_src = cpu_rq(src_cpu);
5326 rq_dest = cpu_rq(dest_cpu);
5327
5328 double_rq_lock(rq_src, rq_dest);
5329 /* Already moved. */
5330 if (task_cpu(p) != src_cpu)
5331 goto out;
5332 /* Affinity changed (again). */
5333 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5334 goto out;
5335
Ingo Molnardd41f592007-07-09 18:51:59 +02005336 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005337 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005338 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005339
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005341 if (on_rq) {
5342 activate_task(rq_dest, p, 0);
5343 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005345 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346out:
5347 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005348 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349}
5350
5351/*
5352 * migration_thread - this is a highprio system thread that performs
5353 * thread migration by bumping thread off CPU then 'pushing' onto
5354 * another runqueue.
5355 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005356static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005359 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
5361 rq = cpu_rq(cpu);
5362 BUG_ON(rq->migration_thread != current);
5363
5364 set_current_state(TASK_INTERRUPTIBLE);
5365 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005366 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 spin_lock_irq(&rq->lock);
5370
5371 if (cpu_is_offline(cpu)) {
5372 spin_unlock_irq(&rq->lock);
5373 goto wait_to_die;
5374 }
5375
5376 if (rq->active_balance) {
5377 active_load_balance(rq, cpu);
5378 rq->active_balance = 0;
5379 }
5380
5381 head = &rq->migration_queue;
5382
5383 if (list_empty(head)) {
5384 spin_unlock_irq(&rq->lock);
5385 schedule();
5386 set_current_state(TASK_INTERRUPTIBLE);
5387 continue;
5388 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005389 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 list_del_init(head->next);
5391
Nick Piggin674311d2005-06-25 14:57:27 -07005392 spin_unlock(&rq->lock);
5393 __migrate_task(req->task, cpu, req->dest_cpu);
5394 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395
5396 complete(&req->done);
5397 }
5398 __set_current_state(TASK_RUNNING);
5399 return 0;
5400
5401wait_to_die:
5402 /* Wait for kthread_stop */
5403 set_current_state(TASK_INTERRUPTIBLE);
5404 while (!kthread_should_stop()) {
5405 schedule();
5406 set_current_state(TASK_INTERRUPTIBLE);
5407 }
5408 __set_current_state(TASK_RUNNING);
5409 return 0;
5410}
5411
5412#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005413
5414static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5415{
5416 int ret;
5417
5418 local_irq_disable();
5419 ret = __migrate_task(p, src_cpu, dest_cpu);
5420 local_irq_enable();
5421 return ret;
5422}
5423
Kirill Korotaev054b9102006-12-10 02:20:11 -08005424/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005425 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005426 * NOTE: interrupts should be disabled by the caller
5427 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005428static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005430 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005432 struct rq *rq;
5433 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434
Andi Kleen3a5c3592007-10-15 17:00:14 +02005435 do {
5436 /* On same node? */
5437 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5438 cpus_and(mask, mask, p->cpus_allowed);
5439 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
Andi Kleen3a5c3592007-10-15 17:00:14 +02005441 /* On any allowed CPU? */
5442 if (dest_cpu == NR_CPUS)
5443 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444
Andi Kleen3a5c3592007-10-15 17:00:14 +02005445 /* No more Mr. Nice Guy. */
5446 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005447 cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p);
5448 /*
5449 * Try to stay on the same cpuset, where the
5450 * current cpuset may be a subset of all cpus.
5451 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005452 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005453 * called within calls to cpuset_lock/cpuset_unlock.
5454 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005455 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005456 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005457 dest_cpu = any_online_cpu(p->cpus_allowed);
5458 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459
Andi Kleen3a5c3592007-10-15 17:00:14 +02005460 /*
5461 * Don't tell them about moving exiting tasks or
5462 * kernel threads (both mm NULL), since they never
5463 * leave kernel.
5464 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005465 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005466 printk(KERN_INFO "process %d (%s) no "
5467 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005468 task_pid_nr(p), p->comm, dead_cpu);
5469 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005470 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005471 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472}
5473
5474/*
5475 * While a dead CPU has no uninterruptible tasks queued at this point,
5476 * it might still have a nonzero ->nr_uninterruptible counter, because
5477 * for performance reasons the counter is not stricly tracking tasks to
5478 * their home CPUs. So we just add the counter to another CPU's counter,
5479 * to keep the global sum constant after CPU-down:
5480 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005481static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005483 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 unsigned long flags;
5485
5486 local_irq_save(flags);
5487 double_rq_lock(rq_src, rq_dest);
5488 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5489 rq_src->nr_uninterruptible = 0;
5490 double_rq_unlock(rq_src, rq_dest);
5491 local_irq_restore(flags);
5492}
5493
5494/* Run through task list and migrate tasks from the dead cpu. */
5495static void migrate_live_tasks(int src_cpu)
5496{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005497 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005499 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500
Ingo Molnar48f24c42006-07-03 00:25:40 -07005501 do_each_thread(t, p) {
5502 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 continue;
5504
Ingo Molnar48f24c42006-07-03 00:25:40 -07005505 if (task_cpu(p) == src_cpu)
5506 move_task_off_dead_cpu(src_cpu, p);
5507 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005509 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510}
5511
Ingo Molnardd41f592007-07-09 18:51:59 +02005512/*
5513 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005514 * It does so by boosting its priority to highest possible.
5515 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 */
5517void sched_idle_next(void)
5518{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005519 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005520 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 struct task_struct *p = rq->idle;
5522 unsigned long flags;
5523
5524 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005525 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Ingo Molnar48f24c42006-07-03 00:25:40 -07005527 /*
5528 * Strictly not necessary since rest of the CPUs are stopped by now
5529 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 */
5531 spin_lock_irqsave(&rq->lock, flags);
5532
Ingo Molnardd41f592007-07-09 18:51:59 +02005533 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005534
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005535 update_rq_clock(rq);
5536 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
5538 spin_unlock_irqrestore(&rq->lock, flags);
5539}
5540
Ingo Molnar48f24c42006-07-03 00:25:40 -07005541/*
5542 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 * offline.
5544 */
5545void idle_task_exit(void)
5546{
5547 struct mm_struct *mm = current->active_mm;
5548
5549 BUG_ON(cpu_online(smp_processor_id()));
5550
5551 if (mm != &init_mm)
5552 switch_mm(mm, &init_mm, current);
5553 mmdrop(mm);
5554}
5555
Kirill Korotaev054b9102006-12-10 02:20:11 -08005556/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005557static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005559 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
5561 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005562 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
5564 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005565 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566
Ingo Molnar48f24c42006-07-03 00:25:40 -07005567 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
5569 /*
5570 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005571 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 * fine.
5573 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005574 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005575 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005576 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577
Ingo Molnar48f24c42006-07-03 00:25:40 -07005578 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579}
5580
5581/* release_task() removes task from tasklist, so we won't find dead tasks. */
5582static void migrate_dead_tasks(unsigned int dead_cpu)
5583{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005584 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005585 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
Ingo Molnardd41f592007-07-09 18:51:59 +02005587 for ( ; ; ) {
5588 if (!rq->nr_running)
5589 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005590 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005591 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005592 if (!next)
5593 break;
5594 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005595
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596 }
5597}
5598#endif /* CONFIG_HOTPLUG_CPU */
5599
Nick Piggine692ab52007-07-26 13:40:43 +02005600#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5601
5602static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005603 {
5604 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005605 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005606 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005607 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005608};
5609
5610static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005611 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005612 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005613 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005614 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005615 .child = sd_ctl_dir,
5616 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005617 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005618};
5619
5620static struct ctl_table *sd_alloc_ctl_entry(int n)
5621{
5622 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005623 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005624
Nick Piggine692ab52007-07-26 13:40:43 +02005625 return entry;
5626}
5627
Milton Miller6382bc92007-10-15 17:00:19 +02005628static void sd_free_ctl_entry(struct ctl_table **tablep)
5629{
Milton Millercd7900762007-10-17 16:55:11 +02005630 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005631
Milton Millercd7900762007-10-17 16:55:11 +02005632 /*
5633 * In the intermediate directories, both the child directory and
5634 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005635 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005636 * static strings and all have proc handlers.
5637 */
5638 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005639 if (entry->child)
5640 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005641 if (entry->proc_handler == NULL)
5642 kfree(entry->procname);
5643 }
Milton Miller6382bc92007-10-15 17:00:19 +02005644
5645 kfree(*tablep);
5646 *tablep = NULL;
5647}
5648
Nick Piggine692ab52007-07-26 13:40:43 +02005649static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005650set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005651 const char *procname, void *data, int maxlen,
5652 mode_t mode, proc_handler *proc_handler)
5653{
Nick Piggine692ab52007-07-26 13:40:43 +02005654 entry->procname = procname;
5655 entry->data = data;
5656 entry->maxlen = maxlen;
5657 entry->mode = mode;
5658 entry->proc_handler = proc_handler;
5659}
5660
5661static struct ctl_table *
5662sd_alloc_ctl_domain_table(struct sched_domain *sd)
5663{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005664 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005665
Milton Millerad1cdc12007-10-15 17:00:19 +02005666 if (table == NULL)
5667 return NULL;
5668
Alexey Dobriyane0361852007-08-09 11:16:46 +02005669 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005670 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005671 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005672 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005673 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005674 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005675 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005676 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005677 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005678 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005679 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005680 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005681 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005682 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005683 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005684 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005685 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005686 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005687 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005688 &sd->cache_nice_tries,
5689 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005690 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005691 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005692 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005693
5694 return table;
5695}
5696
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005697static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005698{
5699 struct ctl_table *entry, *table;
5700 struct sched_domain *sd;
5701 int domain_num = 0, i;
5702 char buf[32];
5703
5704 for_each_domain(cpu, sd)
5705 domain_num++;
5706 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005707 if (table == NULL)
5708 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005709
5710 i = 0;
5711 for_each_domain(cpu, sd) {
5712 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005713 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005714 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005715 entry->child = sd_alloc_ctl_domain_table(sd);
5716 entry++;
5717 i++;
5718 }
5719 return table;
5720}
5721
5722static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005723static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005724{
5725 int i, cpu_num = num_online_cpus();
5726 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5727 char buf[32];
5728
Milton Miller73785472007-10-24 18:23:48 +02005729 WARN_ON(sd_ctl_dir[0].child);
5730 sd_ctl_dir[0].child = entry;
5731
Milton Millerad1cdc12007-10-15 17:00:19 +02005732 if (entry == NULL)
5733 return;
5734
Milton Miller97b6ea72007-10-15 17:00:19 +02005735 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005736 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005737 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005738 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005739 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005740 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005741 }
Milton Miller73785472007-10-24 18:23:48 +02005742
5743 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005744 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5745}
Milton Miller6382bc92007-10-15 17:00:19 +02005746
Milton Miller73785472007-10-24 18:23:48 +02005747/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005748static void unregister_sched_domain_sysctl(void)
5749{
Milton Miller73785472007-10-24 18:23:48 +02005750 if (sd_sysctl_header)
5751 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005752 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005753 if (sd_ctl_dir[0].child)
5754 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005755}
Nick Piggine692ab52007-07-26 13:40:43 +02005756#else
Milton Miller6382bc92007-10-15 17:00:19 +02005757static void register_sched_domain_sysctl(void)
5758{
5759}
5760static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005761{
5762}
5763#endif
5764
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765/*
5766 * migration_call - callback that gets triggered when a CPU is added.
5767 * Here we can start up the necessary migration thread for the new CPU.
5768 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005769static int __cpuinit
5770migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005773 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005775 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776
5777 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005778
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005780 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005781 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782 if (IS_ERR(p))
5783 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 kthread_bind(p, cpu);
5785 /* Must be high prio: stop_machine expects to yield to it. */
5786 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005787 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788 task_rq_unlock(rq, &flags);
5789 cpu_rq(cpu)->migration_thread = p;
5790 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005791
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005793 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005794 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005796
5797 /* Update our root-domain */
5798 rq = cpu_rq(cpu);
5799 spin_lock_irqsave(&rq->lock, flags);
5800 if (rq->rd) {
5801 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5802 cpu_set(cpu, rq->rd->online);
5803 }
5804 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005806
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807#ifdef CONFIG_HOTPLUG_CPU
5808 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005809 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005810 if (!cpu_rq(cpu)->migration_thread)
5811 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005812 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005813 kthread_bind(cpu_rq(cpu)->migration_thread,
5814 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 kthread_stop(cpu_rq(cpu)->migration_thread);
5816 cpu_rq(cpu)->migration_thread = NULL;
5817 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005818
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005820 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005821 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 migrate_live_tasks(cpu);
5823 rq = cpu_rq(cpu);
5824 kthread_stop(rq->migration_thread);
5825 rq->migration_thread = NULL;
5826 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005827 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005828 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005829 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005831 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5832 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005834 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005835 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 migrate_nr_uninterruptible(rq);
5837 BUG_ON(rq->nr_running != 0);
5838
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005839 /*
5840 * No need to migrate the tasks: it was best-effort if
5841 * they didn't take sched_hotcpu_mutex. Just wake up
5842 * the requestors.
5843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844 spin_lock_irq(&rq->lock);
5845 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005846 struct migration_req *req;
5847
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005849 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 list_del_init(&req->list);
5851 complete(&req->done);
5852 }
5853 spin_unlock_irq(&rq->lock);
5854 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005855
5856 case CPU_DOWN_PREPARE:
5857 /* Update our root-domain */
5858 rq = cpu_rq(cpu);
5859 spin_lock_irqsave(&rq->lock, flags);
5860 if (rq->rd) {
5861 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5862 cpu_clear(cpu, rq->rd->online);
5863 }
5864 spin_unlock_irqrestore(&rq->lock, flags);
5865 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866#endif
5867 }
5868 return NOTIFY_OK;
5869}
5870
5871/* Register at highest priority so that task migration (migrate_all_tasks)
5872 * happens before everything else.
5873 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005874static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 .notifier_call = migration_call,
5876 .priority = 10
5877};
5878
Adrian Bunke6fe6642007-11-09 22:39:39 +01005879void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880{
5881 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005882 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005883
5884 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005885 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5886 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5888 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889}
5890#endif
5891
5892#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005893
5894/* Number of possible processor ids */
5895int nr_cpu_ids __read_mostly = NR_CPUS;
5896EXPORT_SYMBOL(nr_cpu_ids);
5897
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005898#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005899
5900static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
5901{
5902 struct sched_group *group = sd->groups;
5903 cpumask_t groupmask;
5904 char str[NR_CPUS];
5905
5906 cpumask_scnprintf(str, NR_CPUS, sd->span);
5907 cpus_clear(groupmask);
5908
5909 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5910
5911 if (!(sd->flags & SD_LOAD_BALANCE)) {
5912 printk("does not load-balance\n");
5913 if (sd->parent)
5914 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5915 " has parent");
5916 return -1;
5917 }
5918
5919 printk(KERN_CONT "span %s\n", str);
5920
5921 if (!cpu_isset(cpu, sd->span)) {
5922 printk(KERN_ERR "ERROR: domain->span does not contain "
5923 "CPU%d\n", cpu);
5924 }
5925 if (!cpu_isset(cpu, group->cpumask)) {
5926 printk(KERN_ERR "ERROR: domain->groups does not contain"
5927 " CPU%d\n", cpu);
5928 }
5929
5930 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5931 do {
5932 if (!group) {
5933 printk("\n");
5934 printk(KERN_ERR "ERROR: group is NULL\n");
5935 break;
5936 }
5937
5938 if (!group->__cpu_power) {
5939 printk(KERN_CONT "\n");
5940 printk(KERN_ERR "ERROR: domain->cpu_power not "
5941 "set\n");
5942 break;
5943 }
5944
5945 if (!cpus_weight(group->cpumask)) {
5946 printk(KERN_CONT "\n");
5947 printk(KERN_ERR "ERROR: empty group\n");
5948 break;
5949 }
5950
5951 if (cpus_intersects(groupmask, group->cpumask)) {
5952 printk(KERN_CONT "\n");
5953 printk(KERN_ERR "ERROR: repeated CPUs\n");
5954 break;
5955 }
5956
5957 cpus_or(groupmask, groupmask, group->cpumask);
5958
5959 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5960 printk(KERN_CONT " %s", str);
5961
5962 group = group->next;
5963 } while (group != sd->groups);
5964 printk(KERN_CONT "\n");
5965
5966 if (!cpus_equal(sd->span, groupmask))
5967 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
5968
5969 if (sd->parent && !cpus_subset(groupmask, sd->parent->span))
5970 printk(KERN_ERR "ERROR: parent span is not a superset "
5971 "of domain->span\n");
5972 return 0;
5973}
5974
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975static void sched_domain_debug(struct sched_domain *sd, int cpu)
5976{
5977 int level = 0;
5978
Nick Piggin41c7ce92005-06-25 14:57:24 -07005979 if (!sd) {
5980 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5981 return;
5982 }
5983
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5985
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005986 for (;;) {
5987 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 level++;
5990 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005991 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005992 break;
5993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994}
5995#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07005996# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997#endif
5998
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005999static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006000{
6001 if (cpus_weight(sd->span) == 1)
6002 return 1;
6003
6004 /* Following flags need at least 2 groups */
6005 if (sd->flags & (SD_LOAD_BALANCE |
6006 SD_BALANCE_NEWIDLE |
6007 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006008 SD_BALANCE_EXEC |
6009 SD_SHARE_CPUPOWER |
6010 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006011 if (sd->groups != sd->groups->next)
6012 return 0;
6013 }
6014
6015 /* Following flags don't use groups */
6016 if (sd->flags & (SD_WAKE_IDLE |
6017 SD_WAKE_AFFINE |
6018 SD_WAKE_BALANCE))
6019 return 0;
6020
6021 return 1;
6022}
6023
Ingo Molnar48f24c42006-07-03 00:25:40 -07006024static int
6025sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006026{
6027 unsigned long cflags = sd->flags, pflags = parent->flags;
6028
6029 if (sd_degenerate(parent))
6030 return 1;
6031
6032 if (!cpus_equal(sd->span, parent->span))
6033 return 0;
6034
6035 /* Does parent contain flags not in child? */
6036 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6037 if (cflags & SD_WAKE_AFFINE)
6038 pflags &= ~SD_WAKE_BALANCE;
6039 /* Flags needing groups don't count if only 1 group in parent */
6040 if (parent->groups == parent->groups->next) {
6041 pflags &= ~(SD_LOAD_BALANCE |
6042 SD_BALANCE_NEWIDLE |
6043 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006044 SD_BALANCE_EXEC |
6045 SD_SHARE_CPUPOWER |
6046 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006047 }
6048 if (~cflags & pflags)
6049 return 0;
6050
6051 return 1;
6052}
6053
Gregory Haskins57d885f2008-01-25 21:08:18 +01006054static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6055{
6056 unsigned long flags;
6057 const struct sched_class *class;
6058
6059 spin_lock_irqsave(&rq->lock, flags);
6060
6061 if (rq->rd) {
6062 struct root_domain *old_rd = rq->rd;
6063
Ingo Molnar0eab9142008-01-25 21:08:19 +01006064 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006065 if (class->leave_domain)
6066 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006067 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006068
Gregory Haskinsdc938522008-01-25 21:08:26 +01006069 cpu_clear(rq->cpu, old_rd->span);
6070 cpu_clear(rq->cpu, old_rd->online);
6071
Gregory Haskins57d885f2008-01-25 21:08:18 +01006072 if (atomic_dec_and_test(&old_rd->refcount))
6073 kfree(old_rd);
6074 }
6075
6076 atomic_inc(&rd->refcount);
6077 rq->rd = rd;
6078
Gregory Haskinsdc938522008-01-25 21:08:26 +01006079 cpu_set(rq->cpu, rd->span);
6080 if (cpu_isset(rq->cpu, cpu_online_map))
6081 cpu_set(rq->cpu, rd->online);
6082
Ingo Molnar0eab9142008-01-25 21:08:19 +01006083 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006084 if (class->join_domain)
6085 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006086 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006087
6088 spin_unlock_irqrestore(&rq->lock, flags);
6089}
6090
Gregory Haskinsdc938522008-01-25 21:08:26 +01006091static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006092{
6093 memset(rd, 0, sizeof(*rd));
6094
Gregory Haskinsdc938522008-01-25 21:08:26 +01006095 cpus_clear(rd->span);
6096 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006097}
6098
6099static void init_defrootdomain(void)
6100{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006101 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006102 atomic_set(&def_root_domain.refcount, 1);
6103}
6104
Gregory Haskinsdc938522008-01-25 21:08:26 +01006105static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006106{
6107 struct root_domain *rd;
6108
6109 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6110 if (!rd)
6111 return NULL;
6112
Gregory Haskinsdc938522008-01-25 21:08:26 +01006113 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006114
6115 return rd;
6116}
6117
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006119 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120 * hold the hotplug lock.
6121 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006122static void
6123cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006125 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006126 struct sched_domain *tmp;
6127
6128 /* Remove the sched domains which do not contribute to scheduling. */
6129 for (tmp = sd; tmp; tmp = tmp->parent) {
6130 struct sched_domain *parent = tmp->parent;
6131 if (!parent)
6132 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006133 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006134 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006135 if (parent->parent)
6136 parent->parent->child = tmp;
6137 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006138 }
6139
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006140 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006141 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006142 if (sd)
6143 sd->child = NULL;
6144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
6146 sched_domain_debug(sd, cpu);
6147
Gregory Haskins57d885f2008-01-25 21:08:18 +01006148 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006149 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150}
6151
6152/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006153static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
6155/* Setup the mask of cpus configured for isolated domains */
6156static int __init isolated_cpu_setup(char *str)
6157{
6158 int ints[NR_CPUS], i;
6159
6160 str = get_options(str, ARRAY_SIZE(ints), ints);
6161 cpus_clear(cpu_isolated_map);
6162 for (i = 1; i <= ints[0]; i++)
6163 if (ints[i] < NR_CPUS)
6164 cpu_set(ints[i], cpu_isolated_map);
6165 return 1;
6166}
6167
Ingo Molnar8927f492007-10-15 17:00:13 +02006168__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169
6170/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006171 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6172 * to a function which identifies what group(along with sched group) a CPU
6173 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6174 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175 *
6176 * init_sched_build_groups will build a circular linked list of the groups
6177 * covered by the given span, and will set each group's ->cpumask correctly,
6178 * and ->cpu_power to 0.
6179 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006180static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006181init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
6182 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6183 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184{
6185 struct sched_group *first = NULL, *last = NULL;
6186 cpumask_t covered = CPU_MASK_NONE;
6187 int i;
6188
6189 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006190 struct sched_group *sg;
6191 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192 int j;
6193
6194 if (cpu_isset(i, covered))
6195 continue;
6196
6197 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006198 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199
6200 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006201 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 continue;
6203
6204 cpu_set(j, covered);
6205 cpu_set(j, sg->cpumask);
6206 }
6207 if (!first)
6208 first = sg;
6209 if (last)
6210 last->next = sg;
6211 last = sg;
6212 }
6213 last->next = first;
6214}
6215
John Hawkes9c1cfda2005-09-06 15:18:14 -07006216#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217
John Hawkes9c1cfda2005-09-06 15:18:14 -07006218#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006219
John Hawkes9c1cfda2005-09-06 15:18:14 -07006220/**
6221 * find_next_best_node - find the next node to include in a sched_domain
6222 * @node: node whose sched_domain we're building
6223 * @used_nodes: nodes already in the sched_domain
6224 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006225 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006226 * finds the closest node not already in the @used_nodes map.
6227 *
6228 * Should use nodemask_t.
6229 */
6230static int find_next_best_node(int node, unsigned long *used_nodes)
6231{
6232 int i, n, val, min_val, best_node = 0;
6233
6234 min_val = INT_MAX;
6235
6236 for (i = 0; i < MAX_NUMNODES; i++) {
6237 /* Start at @node */
6238 n = (node + i) % MAX_NUMNODES;
6239
6240 if (!nr_cpus_node(n))
6241 continue;
6242
6243 /* Skip already used nodes */
6244 if (test_bit(n, used_nodes))
6245 continue;
6246
6247 /* Simple min distance search */
6248 val = node_distance(node, n);
6249
6250 if (val < min_val) {
6251 min_val = val;
6252 best_node = n;
6253 }
6254 }
6255
6256 set_bit(best_node, used_nodes);
6257 return best_node;
6258}
6259
6260/**
6261 * sched_domain_node_span - get a cpumask for a node's sched_domain
6262 * @node: node whose cpumask we're constructing
6263 * @size: number of nodes to include in this span
6264 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006265 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006266 * should be one that prevents unnecessary balancing, but also spreads tasks
6267 * out optimally.
6268 */
6269static cpumask_t sched_domain_node_span(int node)
6270{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006271 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006272 cpumask_t span, nodemask;
6273 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006274
6275 cpus_clear(span);
6276 bitmap_zero(used_nodes, MAX_NUMNODES);
6277
6278 nodemask = node_to_cpumask(node);
6279 cpus_or(span, span, nodemask);
6280 set_bit(node, used_nodes);
6281
6282 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6283 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006284
John Hawkes9c1cfda2005-09-06 15:18:14 -07006285 nodemask = node_to_cpumask(next_node);
6286 cpus_or(span, span, nodemask);
6287 }
6288
6289 return span;
6290}
6291#endif
6292
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006293int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006294
John Hawkes9c1cfda2005-09-06 15:18:14 -07006295/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006296 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298#ifdef CONFIG_SCHED_SMT
6299static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006300static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006301
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006302static int
6303cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006305 if (sg)
6306 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307 return cpu;
6308}
6309#endif
6310
Ingo Molnar48f24c42006-07-03 00:25:40 -07006311/*
6312 * multi-core sched-domains:
6313 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006314#ifdef CONFIG_SCHED_MC
6315static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006316static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006317#endif
6318
6319#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006320static int
6321cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006322{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006323 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006324 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006325 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006326 group = first_cpu(mask);
6327 if (sg)
6328 *sg = &per_cpu(sched_group_core, group);
6329 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006330}
6331#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006332static int
6333cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006334{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006335 if (sg)
6336 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006337 return cpu;
6338}
6339#endif
6340
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006342static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006343
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006344static int
6345cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006347 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006348#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006349 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006350 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006351 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006352#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006353 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006354 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006355 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006357 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006359 if (sg)
6360 *sg = &per_cpu(sched_group_phys, group);
6361 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362}
6363
6364#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006365/*
6366 * The init_sched_build_groups can't handle what we want to do with node
6367 * groups, so roll our own. Now each node has its own list of groups which
6368 * gets dynamically allocated.
6369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006371static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006372
6373static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006374static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006375
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006376static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6377 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006379 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6380 int group;
6381
6382 cpus_and(nodemask, nodemask, *cpu_map);
6383 group = first_cpu(nodemask);
6384
6385 if (sg)
6386 *sg = &per_cpu(sched_group_allnodes, group);
6387 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006389
Siddha, Suresh B08069032006-03-27 01:15:23 -08006390static void init_numa_sched_groups_power(struct sched_group *group_head)
6391{
6392 struct sched_group *sg = group_head;
6393 int j;
6394
6395 if (!sg)
6396 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006397 do {
6398 for_each_cpu_mask(j, sg->cpumask) {
6399 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006400
Andi Kleen3a5c3592007-10-15 17:00:14 +02006401 sd = &per_cpu(phys_domains, j);
6402 if (j != first_cpu(sd->groups->cpumask)) {
6403 /*
6404 * Only add "power" once for each
6405 * physical package.
6406 */
6407 continue;
6408 }
6409
6410 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006411 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006412 sg = sg->next;
6413 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006414}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415#endif
6416
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006417#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006418/* Free memory allocated for various sched_group structures */
6419static void free_sched_groups(const cpumask_t *cpu_map)
6420{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006421 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006422
6423 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006424 struct sched_group **sched_group_nodes
6425 = sched_group_nodes_bycpu[cpu];
6426
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006427 if (!sched_group_nodes)
6428 continue;
6429
6430 for (i = 0; i < MAX_NUMNODES; i++) {
6431 cpumask_t nodemask = node_to_cpumask(i);
6432 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6433
6434 cpus_and(nodemask, nodemask, *cpu_map);
6435 if (cpus_empty(nodemask))
6436 continue;
6437
6438 if (sg == NULL)
6439 continue;
6440 sg = sg->next;
6441next_sg:
6442 oldsg = sg;
6443 sg = sg->next;
6444 kfree(oldsg);
6445 if (oldsg != sched_group_nodes[i])
6446 goto next_sg;
6447 }
6448 kfree(sched_group_nodes);
6449 sched_group_nodes_bycpu[cpu] = NULL;
6450 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006451}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006452#else
6453static void free_sched_groups(const cpumask_t *cpu_map)
6454{
6455}
6456#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006457
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006459 * Initialize sched groups cpu_power.
6460 *
6461 * cpu_power indicates the capacity of sched group, which is used while
6462 * distributing the load between different sched groups in a sched domain.
6463 * Typically cpu_power for all the groups in a sched domain will be same unless
6464 * there are asymmetries in the topology. If there are asymmetries, group
6465 * having more cpu_power will pickup more load compared to the group having
6466 * less cpu_power.
6467 *
6468 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6469 * the maximum number of tasks a group can handle in the presence of other idle
6470 * or lightly loaded groups in the same sched domain.
6471 */
6472static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6473{
6474 struct sched_domain *child;
6475 struct sched_group *group;
6476
6477 WARN_ON(!sd || !sd->groups);
6478
6479 if (cpu != first_cpu(sd->groups->cpumask))
6480 return;
6481
6482 child = sd->child;
6483
Eric Dumazet5517d862007-05-08 00:32:57 -07006484 sd->groups->__cpu_power = 0;
6485
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006486 /*
6487 * For perf policy, if the groups in child domain share resources
6488 * (for example cores sharing some portions of the cache hierarchy
6489 * or SMT), then set this domain groups cpu_power such that each group
6490 * can handle only one task, when there are other idle groups in the
6491 * same sched domain.
6492 */
6493 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6494 (child->flags &
6495 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006496 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006497 return;
6498 }
6499
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006500 /*
6501 * add cpu_power of each child group to this groups cpu_power
6502 */
6503 group = child->groups;
6504 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006505 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006506 group = group->next;
6507 } while (group != child->groups);
6508}
6509
6510/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006511 * Build sched domains for a given set of cpus and attach the sched domains
6512 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006514static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515{
6516 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006517 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006518#ifdef CONFIG_NUMA
6519 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006520 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006521
6522 /*
6523 * Allocate the per-node list of sched groups
6524 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006525 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006526 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006527 if (!sched_group_nodes) {
6528 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006529 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006530 }
6531 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6532#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533
Gregory Haskinsdc938522008-01-25 21:08:26 +01006534 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006535 if (!rd) {
6536 printk(KERN_WARNING "Cannot alloc root domain\n");
6537 return -ENOMEM;
6538 }
6539
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006541 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006543 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544 struct sched_domain *sd = NULL, *p;
6545 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6546
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006547 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548
6549#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006550 if (cpus_weight(*cpu_map) >
6551 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006552 sd = &per_cpu(allnodes_domains, i);
6553 *sd = SD_ALLNODES_INIT;
6554 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006555 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006556 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006557 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006558 } else
6559 p = NULL;
6560
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006563 sd->span = sched_domain_node_span(cpu_to_node(i));
6564 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006565 if (p)
6566 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006567 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568#endif
6569
6570 p = sd;
6571 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 *sd = SD_CPU_INIT;
6573 sd->span = nodemask;
6574 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006575 if (p)
6576 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006577 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006579#ifdef CONFIG_SCHED_MC
6580 p = sd;
6581 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006582 *sd = SD_MC_INIT;
6583 sd->span = cpu_coregroup_map(i);
6584 cpus_and(sd->span, sd->span, *cpu_map);
6585 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006586 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006587 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006588#endif
6589
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590#ifdef CONFIG_SCHED_SMT
6591 p = sd;
6592 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006594 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006595 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006597 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006598 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599#endif
6600 }
6601
6602#ifdef CONFIG_SCHED_SMT
6603 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006604 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006605 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006606 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607 if (i != first_cpu(this_sibling_map))
6608 continue;
6609
Ingo Molnardd41f592007-07-09 18:51:59 +02006610 init_sched_build_groups(this_sibling_map, cpu_map,
6611 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 }
6613#endif
6614
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006615#ifdef CONFIG_SCHED_MC
6616 /* Set up multi-core groups */
6617 for_each_cpu_mask(i, *cpu_map) {
6618 cpumask_t this_core_map = cpu_coregroup_map(i);
6619 cpus_and(this_core_map, this_core_map, *cpu_map);
6620 if (i != first_cpu(this_core_map))
6621 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006622 init_sched_build_groups(this_core_map, cpu_map,
6623 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006624 }
6625#endif
6626
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627 /* Set up physical groups */
6628 for (i = 0; i < MAX_NUMNODES; i++) {
6629 cpumask_t nodemask = node_to_cpumask(i);
6630
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006631 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632 if (cpus_empty(nodemask))
6633 continue;
6634
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006635 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636 }
6637
6638#ifdef CONFIG_NUMA
6639 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006640 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006641 init_sched_build_groups(*cpu_map, cpu_map,
6642 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006643
6644 for (i = 0; i < MAX_NUMNODES; i++) {
6645 /* Set up node groups */
6646 struct sched_group *sg, *prev;
6647 cpumask_t nodemask = node_to_cpumask(i);
6648 cpumask_t domainspan;
6649 cpumask_t covered = CPU_MASK_NONE;
6650 int j;
6651
6652 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006653 if (cpus_empty(nodemask)) {
6654 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006655 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006656 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006657
6658 domainspan = sched_domain_node_span(i);
6659 cpus_and(domainspan, domainspan, *cpu_map);
6660
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006661 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006662 if (!sg) {
6663 printk(KERN_WARNING "Can not alloc domain group for "
6664 "node %d\n", i);
6665 goto error;
6666 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006667 sched_group_nodes[i] = sg;
6668 for_each_cpu_mask(j, nodemask) {
6669 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006670
John Hawkes9c1cfda2005-09-06 15:18:14 -07006671 sd = &per_cpu(node_domains, j);
6672 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006673 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006674 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006675 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006676 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006677 cpus_or(covered, covered, nodemask);
6678 prev = sg;
6679
6680 for (j = 0; j < MAX_NUMNODES; j++) {
6681 cpumask_t tmp, notcovered;
6682 int n = (i + j) % MAX_NUMNODES;
6683
6684 cpus_complement(notcovered, covered);
6685 cpus_and(tmp, notcovered, *cpu_map);
6686 cpus_and(tmp, tmp, domainspan);
6687 if (cpus_empty(tmp))
6688 break;
6689
6690 nodemask = node_to_cpumask(n);
6691 cpus_and(tmp, tmp, nodemask);
6692 if (cpus_empty(tmp))
6693 continue;
6694
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006695 sg = kmalloc_node(sizeof(struct sched_group),
6696 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006697 if (!sg) {
6698 printk(KERN_WARNING
6699 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006700 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006701 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006702 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006703 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006704 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006705 cpus_or(covered, covered, tmp);
6706 prev->next = sg;
6707 prev = sg;
6708 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710#endif
6711
6712 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006713#ifdef CONFIG_SCHED_SMT
6714 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006715 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6716
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006717 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006718 }
6719#endif
6720#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006721 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006722 struct sched_domain *sd = &per_cpu(core_domains, i);
6723
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006724 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006725 }
6726#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006728 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006729 struct sched_domain *sd = &per_cpu(phys_domains, i);
6730
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006731 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732 }
6733
John Hawkes9c1cfda2005-09-06 15:18:14 -07006734#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006735 for (i = 0; i < MAX_NUMNODES; i++)
6736 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006737
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006738 if (sd_allnodes) {
6739 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006740
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006741 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006742 init_numa_sched_groups_power(sg);
6743 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006744#endif
6745
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006747 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748 struct sched_domain *sd;
6749#ifdef CONFIG_SCHED_SMT
6750 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006751#elif defined(CONFIG_SCHED_MC)
6752 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753#else
6754 sd = &per_cpu(phys_domains, i);
6755#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006756 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006758
6759 return 0;
6760
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006761#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006762error:
6763 free_sched_groups(cpu_map);
6764 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006765#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766}
Paul Jackson029190c2007-10-18 23:40:20 -07006767
6768static cpumask_t *doms_cur; /* current sched domains */
6769static int ndoms_cur; /* number of sched domains in 'doms_cur' */
6770
6771/*
6772 * Special case: If a kmalloc of a doms_cur partition (array of
6773 * cpumask_t) fails, then fallback to a single sched domain,
6774 * as determined by the single cpumask_t fallback_doms.
6775 */
6776static cpumask_t fallback_doms;
6777
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006778/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006779 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006780 * For now this just excludes isolated cpus, but could be used to
6781 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006782 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006783static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006784{
Milton Miller73785472007-10-24 18:23:48 +02006785 int err;
6786
Paul Jackson029190c2007-10-18 23:40:20 -07006787 ndoms_cur = 1;
6788 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6789 if (!doms_cur)
6790 doms_cur = &fallback_doms;
6791 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02006792 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006793 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006794
6795 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006796}
6797
6798static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006800 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006801}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006803/*
6804 * Detach sched domains from a group of cpus specified in cpu_map
6805 * These cpus will now be attached to the NULL domain
6806 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006807static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006808{
6809 int i;
6810
Milton Miller6382bc92007-10-15 17:00:19 +02006811 unregister_sched_domain_sysctl();
6812
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006813 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006814 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006815 synchronize_sched();
6816 arch_destroy_sched_domains(cpu_map);
6817}
6818
Paul Jackson029190c2007-10-18 23:40:20 -07006819/*
6820 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006821 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006822 * doms_new[] to the current sched domain partitioning, doms_cur[].
6823 * It destroys each deleted domain and builds each new domain.
6824 *
6825 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006826 * The masks don't intersect (don't overlap.) We should setup one
6827 * sched domain for each mask. CPUs not in any of the cpumasks will
6828 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006829 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6830 * it as it is.
6831 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006832 * The passed in 'doms_new' should be kmalloc'd. This routine takes
6833 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07006834 * failed the kmalloc call, then it can pass in doms_new == NULL,
6835 * and partition_sched_domains() will fallback to the single partition
6836 * 'fallback_doms'.
6837 *
6838 * Call with hotplug lock held
6839 */
6840void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
6841{
6842 int i, j;
6843
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006844 lock_doms_cur();
6845
Milton Miller73785472007-10-24 18:23:48 +02006846 /* always unregister in case we don't destroy any domains */
6847 unregister_sched_domain_sysctl();
6848
Paul Jackson029190c2007-10-18 23:40:20 -07006849 if (doms_new == NULL) {
6850 ndoms_new = 1;
6851 doms_new = &fallback_doms;
6852 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
6853 }
6854
6855 /* Destroy deleted domains */
6856 for (i = 0; i < ndoms_cur; i++) {
6857 for (j = 0; j < ndoms_new; j++) {
6858 if (cpus_equal(doms_cur[i], doms_new[j]))
6859 goto match1;
6860 }
6861 /* no match - a current sched domain not in new doms_new[] */
6862 detach_destroy_domains(doms_cur + i);
6863match1:
6864 ;
6865 }
6866
6867 /* Build new domains */
6868 for (i = 0; i < ndoms_new; i++) {
6869 for (j = 0; j < ndoms_cur; j++) {
6870 if (cpus_equal(doms_new[i], doms_cur[j]))
6871 goto match2;
6872 }
6873 /* no match - add a new doms_new */
6874 build_sched_domains(doms_new + i);
6875match2:
6876 ;
6877 }
6878
6879 /* Remember the new sched domains */
6880 if (doms_cur != &fallback_doms)
6881 kfree(doms_cur);
6882 doms_cur = doms_new;
6883 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006884
6885 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006886
6887 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07006888}
6889
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006890#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006891static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006892{
6893 int err;
6894
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006895 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006896 detach_destroy_domains(&cpu_online_map);
6897 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006898 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006899
6900 return err;
6901}
6902
6903static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6904{
6905 int ret;
6906
6907 if (buf[0] != '0' && buf[0] != '1')
6908 return -EINVAL;
6909
6910 if (smt)
6911 sched_smt_power_savings = (buf[0] == '1');
6912 else
6913 sched_mc_power_savings = (buf[0] == '1');
6914
6915 ret = arch_reinit_sched_domains();
6916
6917 return ret ? ret : count;
6918}
6919
Adrian Bunk6707de002007-08-12 18:08:19 +02006920#ifdef CONFIG_SCHED_MC
6921static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6922{
6923 return sprintf(page, "%u\n", sched_mc_power_savings);
6924}
6925static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6926 const char *buf, size_t count)
6927{
6928 return sched_power_savings_store(buf, count, 0);
6929}
6930static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6931 sched_mc_power_savings_store);
6932#endif
6933
6934#ifdef CONFIG_SCHED_SMT
6935static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6936{
6937 return sprintf(page, "%u\n", sched_smt_power_savings);
6938}
6939static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6940 const char *buf, size_t count)
6941{
6942 return sched_power_savings_store(buf, count, 1);
6943}
6944static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6945 sched_smt_power_savings_store);
6946#endif
6947
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006948int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6949{
6950 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006951
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006952#ifdef CONFIG_SCHED_SMT
6953 if (smt_capable())
6954 err = sysfs_create_file(&cls->kset.kobj,
6955 &attr_sched_smt_power_savings.attr);
6956#endif
6957#ifdef CONFIG_SCHED_MC
6958 if (!err && mc_capable())
6959 err = sysfs_create_file(&cls->kset.kobj,
6960 &attr_sched_mc_power_savings.attr);
6961#endif
6962 return err;
6963}
6964#endif
6965
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006967 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006969 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970 * which will prevent rebalancing while the sched domains are recalculated.
6971 */
6972static int update_sched_domains(struct notifier_block *nfb,
6973 unsigned long action, void *hcpu)
6974{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975 switch (action) {
6976 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006977 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006979 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006980 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981 return NOTIFY_OK;
6982
6983 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006984 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006986 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006988 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006990 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991 /*
6992 * Fall through and re-initialise the domains.
6993 */
6994 break;
6995 default:
6996 return NOTIFY_DONE;
6997 }
6998
6999 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007000 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001
7002 return NOTIFY_OK;
7003}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004
7005void __init sched_init_smp(void)
7006{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007007 cpumask_t non_isolated_cpus;
7008
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007009 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007010 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007011 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007012 if (cpus_empty(non_isolated_cpus))
7013 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007014 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015 /* XXX: Theoretical race here - CPU may be hotplugged now */
7016 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007017
7018 /* Move init over to a non-isolated CPU */
7019 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7020 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007021 sched_init_granularity();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007022
7023#ifdef CONFIG_FAIR_GROUP_SCHED
7024 if (nr_cpu_ids == 1)
7025 return;
7026
7027 lb_monitor_task = kthread_create(load_balance_monitor, NULL,
7028 "group_balance");
7029 if (!IS_ERR(lb_monitor_task)) {
7030 lb_monitor_task->flags |= PF_NOFREEZE;
7031 wake_up_process(lb_monitor_task);
7032 } else {
7033 printk(KERN_ERR "Could not create load balance monitor thread"
7034 "(error = %ld) \n", PTR_ERR(lb_monitor_task));
7035 }
7036#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037}
7038#else
7039void __init sched_init_smp(void)
7040{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007041 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042}
7043#endif /* CONFIG_SMP */
7044
7045int in_sched_functions(unsigned long addr)
7046{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047 return in_lock_functions(addr) ||
7048 (addr >= (unsigned long)__sched_text_start
7049 && addr < (unsigned long)__sched_text_end);
7050}
7051
Alexey Dobriyana9957442007-10-15 17:00:13 +02007052static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007053{
7054 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007055#ifdef CONFIG_FAIR_GROUP_SCHED
7056 cfs_rq->rq = rq;
7057#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007058 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007059}
7060
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007061static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7062{
7063 struct rt_prio_array *array;
7064 int i;
7065
7066 array = &rt_rq->active;
7067 for (i = 0; i < MAX_RT_PRIO; i++) {
7068 INIT_LIST_HEAD(array->queue + i);
7069 __clear_bit(i, array->bitmap);
7070 }
7071 /* delimiter for bitsearch: */
7072 __set_bit(MAX_RT_PRIO, array->bitmap);
7073
7074#ifdef CONFIG_SMP
7075 rt_rq->rt_nr_migratory = 0;
7076 rt_rq->highest_prio = MAX_RT_PRIO;
7077 rt_rq->overloaded = 0;
7078#endif
7079
7080 rt_rq->rt_time = 0;
7081 rt_rq->rt_throttled = 0;
7082}
7083
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084void __init sched_init(void)
7085{
Christoph Lameter476f3532007-05-06 14:48:58 -07007086 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007087 int i, j;
7088
Gregory Haskins57d885f2008-01-25 21:08:18 +01007089#ifdef CONFIG_SMP
7090 init_defrootdomain();
7091#endif
7092
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007093 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007094 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095
7096 rq = cpu_rq(i);
7097 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007098 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007099 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007100 rq->clock = 1;
7101 init_cfs_rq(&rq->cfs, rq);
7102#ifdef CONFIG_FAIR_GROUP_SCHED
7103 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Ingo Molnar3a252012007-10-15 17:00:12 +02007104 {
7105 struct cfs_rq *cfs_rq = &per_cpu(init_cfs_rq, i);
7106 struct sched_entity *se =
7107 &per_cpu(init_sched_entity, i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007108
Ingo Molnar3a252012007-10-15 17:00:12 +02007109 init_cfs_rq_p[i] = cfs_rq;
7110 init_cfs_rq(cfs_rq, rq);
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007111 cfs_rq->tg = &init_task_group;
Ingo Molnar3a252012007-10-15 17:00:12 +02007112 list_add(&cfs_rq->leaf_cfs_rq_list,
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007113 &rq->leaf_cfs_rq_list);
7114
Ingo Molnar3a252012007-10-15 17:00:12 +02007115 init_sched_entity_p[i] = se;
7116 se->cfs_rq = &rq->cfs;
7117 se->my_q = cfs_rq;
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007118 se->load.weight = init_task_group_load;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007119 se->load.inv_weight =
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007120 div64_64(1ULL<<32, init_task_group_load);
Ingo Molnar3a252012007-10-15 17:00:12 +02007121 se->parent = NULL;
7122 }
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007123 init_task_group.shares = init_task_group_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02007124#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007125 init_rt_rq(&rq->rt, rq);
7126 rq->rt_period_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127
Ingo Molnardd41f592007-07-09 18:51:59 +02007128 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7129 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007131 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007132 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007134 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007136 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137 rq->migration_thread = NULL;
7138 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007139 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007141 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007142 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007143 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144 }
7145
Peter Williams2dd73a42006-06-27 02:54:34 -07007146 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007147
Avi Kivitye107be32007-07-26 13:40:43 +02007148#ifdef CONFIG_PREEMPT_NOTIFIERS
7149 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7150#endif
7151
Christoph Lameterc9819f42006-12-10 02:20:25 -08007152#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007153 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007154 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7155#endif
7156
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007157#ifdef CONFIG_RT_MUTEXES
7158 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7159#endif
7160
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161 /*
7162 * The boot idle thread does lazy MMU switching as well:
7163 */
7164 atomic_inc(&init_mm.mm_count);
7165 enter_lazy_tlb(&init_mm, current);
7166
7167 /*
7168 * Make us the idle thread. Technically, schedule() should not be
7169 * called from this thread, however somewhere below it might be,
7170 * but because we are the idle thread, we just pick up running again
7171 * when this runqueue becomes "idle".
7172 */
7173 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007174 /*
7175 * During early bootup we pretend to be a normal task:
7176 */
7177 current->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007178}
7179
7180#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7181void __might_sleep(char *file, int line)
7182{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007183#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184 static unsigned long prev_jiffy; /* ratelimiting */
7185
7186 if ((in_atomic() || irqs_disabled()) &&
7187 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7188 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7189 return;
7190 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007191 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192 " context at %s:%d\n", file, line);
7193 printk("in_atomic():%d, irqs_disabled():%d\n",
7194 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007195 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007196 if (irqs_disabled())
7197 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007198 dump_stack();
7199 }
7200#endif
7201}
7202EXPORT_SYMBOL(__might_sleep);
7203#endif
7204
7205#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007206static void normalize_task(struct rq *rq, struct task_struct *p)
7207{
7208 int on_rq;
7209 update_rq_clock(rq);
7210 on_rq = p->se.on_rq;
7211 if (on_rq)
7212 deactivate_task(rq, p, 0);
7213 __setscheduler(rq, p, SCHED_NORMAL, 0);
7214 if (on_rq) {
7215 activate_task(rq, p, 0);
7216 resched_task(rq->curr);
7217 }
7218}
7219
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220void normalize_rt_tasks(void)
7221{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007222 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007223 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007224 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225
7226 read_lock_irq(&tasklist_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007227 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007228 /*
7229 * Only normalize user tasks:
7230 */
7231 if (!p->mm)
7232 continue;
7233
Ingo Molnardd41f592007-07-09 18:51:59 +02007234 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007235#ifdef CONFIG_SCHEDSTATS
7236 p->se.wait_start = 0;
7237 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007238 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007239#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007240 task_rq(p)->clock = 0;
7241
7242 if (!rt_task(p)) {
7243 /*
7244 * Renice negative nice level userspace
7245 * tasks back to 0:
7246 */
7247 if (TASK_NICE(p) < 0 && p->mm)
7248 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251
Ingo Molnarb29739f2006-06-27 02:54:51 -07007252 spin_lock_irqsave(&p->pi_lock, flags);
7253 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254
Ingo Molnar178be792007-10-15 17:00:18 +02007255 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007256
Ingo Molnarb29739f2006-06-27 02:54:51 -07007257 __task_rq_unlock(rq);
7258 spin_unlock_irqrestore(&p->pi_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007259 } while_each_thread(g, p);
7260
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261 read_unlock_irq(&tasklist_lock);
7262}
7263
7264#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007265
7266#ifdef CONFIG_IA64
7267/*
7268 * These functions are only useful for the IA64 MCA handling.
7269 *
7270 * They can only be called when the whole system has been
7271 * stopped - every CPU needs to be quiescent, and no scheduling
7272 * activity can take place. Using them for anything else would
7273 * be a serious bug, and as a result, they aren't even visible
7274 * under any other configuration.
7275 */
7276
7277/**
7278 * curr_task - return the current task for a given cpu.
7279 * @cpu: the processor in question.
7280 *
7281 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7282 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007283struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007284{
7285 return cpu_curr(cpu);
7286}
7287
7288/**
7289 * set_curr_task - set the current task for a given cpu.
7290 * @cpu: the processor in question.
7291 * @p: the task pointer to set.
7292 *
7293 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007294 * are serviced on a separate stack. It allows the architecture to switch the
7295 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007296 * must be called with all CPU's synchronized, and interrupts disabled, the
7297 * and caller must save the original value of the current task (see
7298 * curr_task() above) and restore that value before reenabling interrupts and
7299 * re-starting the system.
7300 *
7301 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7302 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007303void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007304{
7305 cpu_curr(cpu) = p;
7306}
7307
7308#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007309
7310#ifdef CONFIG_FAIR_GROUP_SCHED
7311
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007312#ifdef CONFIG_SMP
7313/*
7314 * distribute shares of all task groups among their schedulable entities,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007315 * to reflect load distribution across cpus.
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007316 */
7317static int rebalance_shares(struct sched_domain *sd, int this_cpu)
7318{
7319 struct cfs_rq *cfs_rq;
7320 struct rq *rq = cpu_rq(this_cpu);
7321 cpumask_t sdspan = sd->span;
7322 int balanced = 1;
7323
7324 /* Walk thr' all the task groups that we have */
7325 for_each_leaf_cfs_rq(rq, cfs_rq) {
7326 int i;
7327 unsigned long total_load = 0, total_shares;
7328 struct task_group *tg = cfs_rq->tg;
7329
7330 /* Gather total task load of this group across cpus */
7331 for_each_cpu_mask(i, sdspan)
7332 total_load += tg->cfs_rq[i]->load.weight;
7333
Ingo Molnar0eab9142008-01-25 21:08:19 +01007334 /* Nothing to do if this group has no load */
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007335 if (!total_load)
7336 continue;
7337
7338 /*
7339 * tg->shares represents the number of cpu shares the task group
7340 * is eligible to hold on a single cpu. On N cpus, it is
7341 * eligible to hold (N * tg->shares) number of cpu shares.
7342 */
7343 total_shares = tg->shares * cpus_weight(sdspan);
7344
7345 /*
7346 * redistribute total_shares across cpus as per the task load
7347 * distribution.
7348 */
7349 for_each_cpu_mask(i, sdspan) {
7350 unsigned long local_load, local_shares;
7351
7352 local_load = tg->cfs_rq[i]->load.weight;
7353 local_shares = (local_load * total_shares) / total_load;
7354 if (!local_shares)
7355 local_shares = MIN_GROUP_SHARES;
7356 if (local_shares == tg->se[i]->load.weight)
7357 continue;
7358
7359 spin_lock_irq(&cpu_rq(i)->lock);
7360 set_se_shares(tg->se[i], local_shares);
7361 spin_unlock_irq(&cpu_rq(i)->lock);
7362 balanced = 0;
7363 }
7364 }
7365
7366 return balanced;
7367}
7368
7369/*
7370 * How frequently should we rebalance_shares() across cpus?
7371 *
7372 * The more frequently we rebalance shares, the more accurate is the fairness
7373 * of cpu bandwidth distribution between task groups. However higher frequency
7374 * also implies increased scheduling overhead.
7375 *
7376 * sysctl_sched_min_bal_int_shares represents the minimum interval between
7377 * consecutive calls to rebalance_shares() in the same sched domain.
7378 *
7379 * sysctl_sched_max_bal_int_shares represents the maximum interval between
7380 * consecutive calls to rebalance_shares() in the same sched domain.
7381 *
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007382 * These settings allows for the appropriate trade-off between accuracy of
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007383 * fairness and the associated overhead.
7384 *
7385 */
7386
7387/* default: 8ms, units: milliseconds */
7388const_debug unsigned int sysctl_sched_min_bal_int_shares = 8;
7389
7390/* default: 128ms, units: milliseconds */
7391const_debug unsigned int sysctl_sched_max_bal_int_shares = 128;
7392
7393/* kernel thread that runs rebalance_shares() periodically */
7394static int load_balance_monitor(void *unused)
7395{
7396 unsigned int timeout = sysctl_sched_min_bal_int_shares;
7397 struct sched_param schedparm;
7398 int ret;
7399
7400 /*
7401 * We don't want this thread's execution to be limited by the shares
7402 * assigned to default group (init_task_group). Hence make it run
7403 * as a SCHED_RR RT task at the lowest priority.
7404 */
7405 schedparm.sched_priority = 1;
7406 ret = sched_setscheduler(current, SCHED_RR, &schedparm);
7407 if (ret)
7408 printk(KERN_ERR "Couldn't set SCHED_RR policy for load balance"
7409 " monitor thread (error = %d) \n", ret);
7410
7411 while (!kthread_should_stop()) {
7412 int i, cpu, balanced = 1;
7413
7414 /* Prevent cpus going down or coming up */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01007415 get_online_cpus();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007416 /* lockout changes to doms_cur[] array */
7417 lock_doms_cur();
7418 /*
7419 * Enter a rcu read-side critical section to safely walk rq->sd
7420 * chain on various cpus and to walk task group list
7421 * (rq->leaf_cfs_rq_list) in rebalance_shares().
7422 */
7423 rcu_read_lock();
7424
7425 for (i = 0; i < ndoms_cur; i++) {
7426 cpumask_t cpumap = doms_cur[i];
7427 struct sched_domain *sd = NULL, *sd_prev = NULL;
7428
7429 cpu = first_cpu(cpumap);
7430
7431 /* Find the highest domain at which to balance shares */
7432 for_each_domain(cpu, sd) {
7433 if (!(sd->flags & SD_LOAD_BALANCE))
7434 continue;
7435 sd_prev = sd;
7436 }
7437
7438 sd = sd_prev;
7439 /* sd == NULL? No load balance reqd in this domain */
7440 if (!sd)
7441 continue;
7442
7443 balanced &= rebalance_shares(sd, cpu);
7444 }
7445
7446 rcu_read_unlock();
7447
7448 unlock_doms_cur();
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01007449 put_online_cpus();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007450
7451 if (!balanced)
7452 timeout = sysctl_sched_min_bal_int_shares;
7453 else if (timeout < sysctl_sched_max_bal_int_shares)
7454 timeout *= 2;
7455
7456 msleep_interruptible(timeout);
7457 }
7458
7459 return 0;
7460}
7461#endif /* CONFIG_SMP */
7462
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007463/* allocate runqueue etc for a new task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007464struct task_group *sched_create_group(void)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007465{
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007466 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007467 struct cfs_rq *cfs_rq;
7468 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007469 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007470 int i;
7471
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007472 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7473 if (!tg)
7474 return ERR_PTR(-ENOMEM);
7475
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007476 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007477 if (!tg->cfs_rq)
7478 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007479 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007480 if (!tg->se)
7481 goto err;
7482
7483 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007484 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007485
7486 cfs_rq = kmalloc_node(sizeof(struct cfs_rq), GFP_KERNEL,
7487 cpu_to_node(i));
7488 if (!cfs_rq)
7489 goto err;
7490
7491 se = kmalloc_node(sizeof(struct sched_entity), GFP_KERNEL,
7492 cpu_to_node(i));
7493 if (!se)
7494 goto err;
7495
7496 memset(cfs_rq, 0, sizeof(struct cfs_rq));
7497 memset(se, 0, sizeof(struct sched_entity));
7498
7499 tg->cfs_rq[i] = cfs_rq;
7500 init_cfs_rq(cfs_rq, rq);
7501 cfs_rq->tg = tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007502
7503 tg->se[i] = se;
7504 se->cfs_rq = &rq->cfs;
7505 se->my_q = cfs_rq;
7506 se->load.weight = NICE_0_LOAD;
7507 se->load.inv_weight = div64_64(1ULL<<32, NICE_0_LOAD);
7508 se->parent = NULL;
7509 }
7510
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007511 tg->shares = NICE_0_LOAD;
7512
7513 lock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007514 for_each_possible_cpu(i) {
7515 rq = cpu_rq(i);
7516 cfs_rq = tg->cfs_rq[i];
7517 list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7518 }
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007519 unlock_task_group_list();
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007520
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007521 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007522
7523err:
7524 for_each_possible_cpu(i) {
Ingo Molnara65914b2007-10-15 17:00:13 +02007525 if (tg->cfs_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007526 kfree(tg->cfs_rq[i]);
Ingo Molnara65914b2007-10-15 17:00:13 +02007527 if (tg->se)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007528 kfree(tg->se[i]);
7529 }
Ingo Molnara65914b2007-10-15 17:00:13 +02007530 kfree(tg->cfs_rq);
7531 kfree(tg->se);
7532 kfree(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007533
7534 return ERR_PTR(-ENOMEM);
7535}
7536
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007537/* rcu callback to free various structures associated with a task group */
7538static void free_sched_group(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007539{
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +01007540 struct task_group *tg = container_of(rhp, struct task_group, rcu);
7541 struct cfs_rq *cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007542 struct sched_entity *se;
7543 int i;
7544
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007545 /* now it should be safe to free those cfs_rqs */
7546 for_each_possible_cpu(i) {
7547 cfs_rq = tg->cfs_rq[i];
7548 kfree(cfs_rq);
7549
7550 se = tg->se[i];
7551 kfree(se);
7552 }
7553
7554 kfree(tg->cfs_rq);
7555 kfree(tg->se);
7556 kfree(tg);
7557}
7558
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007559/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007560void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007561{
James Bottomley7bae49d2007-10-29 21:18:11 +01007562 struct cfs_rq *cfs_rq = NULL;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007563 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007564
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007565 lock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007566 for_each_possible_cpu(i) {
7567 cfs_rq = tg->cfs_rq[i];
7568 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
7569 }
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007570 unlock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007571
James Bottomley7bae49d2007-10-29 21:18:11 +01007572 BUG_ON(!cfs_rq);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007573
7574 /* wait for possible concurrent references to cfs_rqs complete */
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +01007575 call_rcu(&tg->rcu, free_sched_group);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007576}
7577
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007578/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007579 * The caller of this function should have put the task in its new group
7580 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7581 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007582 */
7583void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007584{
7585 int on_rq, running;
7586 unsigned long flags;
7587 struct rq *rq;
7588
7589 rq = task_rq_lock(tsk, &flags);
7590
Oleg Nesterovdae51f52007-11-15 20:57:40 +01007591 if (tsk->sched_class != &fair_sched_class) {
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01007592 set_task_cfs_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007593 goto done;
Oleg Nesterovdae51f52007-11-15 20:57:40 +01007594 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007595
7596 update_rq_clock(rq);
7597
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007598 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007599 on_rq = tsk->se.on_rq;
7600
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007601 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007602 dequeue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007603 if (unlikely(running))
7604 tsk->sched_class->put_prev_task(rq, tsk);
7605 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007606
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01007607 set_task_cfs_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007608
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007609 if (on_rq) {
7610 if (unlikely(running))
7611 tsk->sched_class->set_curr_task(rq);
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007612 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007613 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007614
7615done:
7616 task_rq_unlock(rq, &flags);
7617}
7618
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007619/* rq->lock to be locked by caller */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007620static void set_se_shares(struct sched_entity *se, unsigned long shares)
7621{
7622 struct cfs_rq *cfs_rq = se->cfs_rq;
7623 struct rq *rq = cfs_rq->rq;
7624 int on_rq;
7625
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007626 if (!shares)
7627 shares = MIN_GROUP_SHARES;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007628
7629 on_rq = se->on_rq;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007630 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007631 dequeue_entity(cfs_rq, se, 0);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007632 dec_cpu_load(rq, se->load.weight);
7633 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007634
7635 se->load.weight = shares;
7636 se->load.inv_weight = div64_64((1ULL<<32), shares);
7637
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007638 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007639 enqueue_entity(cfs_rq, se, 0);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007640 inc_cpu_load(rq, se->load.weight);
7641 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007642}
7643
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007644int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007645{
7646 int i;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007647 struct cfs_rq *cfs_rq;
7648 struct rq *rq;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007649
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007650 lock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007651 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007652 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007653
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007654 if (shares < MIN_GROUP_SHARES)
7655 shares = MIN_GROUP_SHARES;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007656
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007657 /*
7658 * Prevent any load balance activity (rebalance_shares,
7659 * load_balance_fair) from referring to this group first,
7660 * by taking it off the rq->leaf_cfs_rq_list on each cpu.
7661 */
7662 for_each_possible_cpu(i) {
7663 cfs_rq = tg->cfs_rq[i];
7664 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
7665 }
7666
7667 /* wait for any ongoing reference to this group to finish */
7668 synchronize_sched();
7669
7670 /*
7671 * Now we are free to modify the group's share on each cpu
7672 * w/o tripping rebalance_share or load_balance_fair.
7673 */
7674 tg->shares = shares;
7675 for_each_possible_cpu(i) {
7676 spin_lock_irq(&cpu_rq(i)->lock);
7677 set_se_shares(tg->se[i], shares);
7678 spin_unlock_irq(&cpu_rq(i)->lock);
7679 }
7680
7681 /*
7682 * Enable load balance activity on this group, by inserting it back on
7683 * each cpu's rq->leaf_cfs_rq_list.
7684 */
7685 for_each_possible_cpu(i) {
7686 rq = cpu_rq(i);
7687 cfs_rq = tg->cfs_rq[i];
7688 list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7689 }
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007690done:
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007691 unlock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007692 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007693}
7694
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007695unsigned long sched_group_shares(struct task_group *tg)
7696{
7697 return tg->shares;
7698}
7699
Ingo Molnar3a252012007-10-15 17:00:12 +02007700#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007701
7702#ifdef CONFIG_FAIR_CGROUP_SCHED
7703
7704/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007705static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007706{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007707 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
7708 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007709}
7710
7711static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02007712cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007713{
7714 struct task_group *tg;
7715
Paul Menage2b01dfe2007-10-24 18:23:50 +02007716 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007717 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007718 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007719 return &init_task_group.css;
7720 }
7721
7722 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007723 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007724 return ERR_PTR(-EINVAL);
7725
7726 tg = sched_create_group();
7727 if (IS_ERR(tg))
7728 return ERR_PTR(-ENOMEM);
7729
7730 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007731 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007732
7733 return &tg->css;
7734}
7735
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007736static void
7737cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007738{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007739 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007740
7741 sched_destroy_group(tg);
7742}
7743
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007744static int
7745cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7746 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007747{
7748 /* We don't support RT-tasks being in separate groups */
7749 if (tsk->sched_class != &fair_sched_class)
7750 return -EINVAL;
7751
7752 return 0;
7753}
7754
7755static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02007756cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007757 struct cgroup *old_cont, struct task_struct *tsk)
7758{
7759 sched_move_task(tsk);
7760}
7761
Paul Menage2b01dfe2007-10-24 18:23:50 +02007762static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
7763 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007764{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007765 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007766}
7767
Paul Menage2b01dfe2007-10-24 18:23:50 +02007768static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007769{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007770 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007771
7772 return (u64) tg->shares;
7773}
7774
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007775static struct cftype cpu_files[] = {
7776 {
7777 .name = "shares",
7778 .read_uint = cpu_shares_read_uint,
7779 .write_uint = cpu_shares_write_uint,
7780 },
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007781};
7782
7783static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7784{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007785 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007786}
7787
7788struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007789 .name = "cpu",
7790 .create = cpu_cgroup_create,
7791 .destroy = cpu_cgroup_destroy,
7792 .can_attach = cpu_cgroup_can_attach,
7793 .attach = cpu_cgroup_attach,
7794 .populate = cpu_cgroup_populate,
7795 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007796 .early_init = 1,
7797};
7798
7799#endif /* CONFIG_FAIR_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007800
7801#ifdef CONFIG_CGROUP_CPUACCT
7802
7803/*
7804 * CPU accounting code for task groups.
7805 *
7806 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
7807 * (balbir@in.ibm.com).
7808 */
7809
7810/* track cpu usage of a group of tasks */
7811struct cpuacct {
7812 struct cgroup_subsys_state css;
7813 /* cpuusage holds pointer to a u64-type object on every cpu */
7814 u64 *cpuusage;
7815};
7816
7817struct cgroup_subsys cpuacct_subsys;
7818
7819/* return cpu accounting group corresponding to this container */
7820static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
7821{
7822 return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
7823 struct cpuacct, css);
7824}
7825
7826/* return cpu accounting group to which this task belongs */
7827static inline struct cpuacct *task_ca(struct task_struct *tsk)
7828{
7829 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
7830 struct cpuacct, css);
7831}
7832
7833/* create a new cpu accounting group */
7834static struct cgroup_subsys_state *cpuacct_create(
7835 struct cgroup_subsys *ss, struct cgroup *cont)
7836{
7837 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
7838
7839 if (!ca)
7840 return ERR_PTR(-ENOMEM);
7841
7842 ca->cpuusage = alloc_percpu(u64);
7843 if (!ca->cpuusage) {
7844 kfree(ca);
7845 return ERR_PTR(-ENOMEM);
7846 }
7847
7848 return &ca->css;
7849}
7850
7851/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007852static void
7853cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007854{
7855 struct cpuacct *ca = cgroup_ca(cont);
7856
7857 free_percpu(ca->cpuusage);
7858 kfree(ca);
7859}
7860
7861/* return total cpu usage (in nanoseconds) of a group */
7862static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
7863{
7864 struct cpuacct *ca = cgroup_ca(cont);
7865 u64 totalcpuusage = 0;
7866 int i;
7867
7868 for_each_possible_cpu(i) {
7869 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
7870
7871 /*
7872 * Take rq->lock to make 64-bit addition safe on 32-bit
7873 * platforms.
7874 */
7875 spin_lock_irq(&cpu_rq(i)->lock);
7876 totalcpuusage += *cpuusage;
7877 spin_unlock_irq(&cpu_rq(i)->lock);
7878 }
7879
7880 return totalcpuusage;
7881}
7882
7883static struct cftype files[] = {
7884 {
7885 .name = "usage",
7886 .read_uint = cpuusage_read,
7887 },
7888};
7889
7890static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7891{
7892 return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
7893}
7894
7895/*
7896 * charge this task's execution time to its accounting group.
7897 *
7898 * called with rq->lock held.
7899 */
7900static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
7901{
7902 struct cpuacct *ca;
7903
7904 if (!cpuacct_subsys.active)
7905 return;
7906
7907 ca = task_ca(tsk);
7908 if (ca) {
7909 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
7910
7911 *cpuusage += cputime;
7912 }
7913}
7914
7915struct cgroup_subsys cpuacct_subsys = {
7916 .name = "cpuacct",
7917 .create = cpuacct_create,
7918 .destroy = cpuacct_destroy,
7919 .populate = cpuacct_populate,
7920 .subsys_id = cpuacct_subsys_id,
7921};
7922#endif /* CONFIG_CGROUP_CPUACCT */