blob: 5ea2c533b43244c509db38adf29c4b5847729b1c [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
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100164static LIST_HEAD(task_groups);
165
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200166/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200167struct task_group {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700168#ifdef CONFIG_FAIR_CGROUP_SCHED
169 struct cgroup_subsys_state css;
170#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200171 /* schedulable entities of this group on each cpu */
172 struct sched_entity **se;
173 /* runqueue "owned" by this group on each cpu */
174 struct cfs_rq **cfs_rq;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100175
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100176 struct sched_rt_entity **rt_se;
177 struct rt_rq **rt_rq;
178
179 unsigned int rt_ratio;
180
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100181 /*
182 * shares assigned to a task group governs how much of cpu bandwidth
183 * is allocated to the group. The more shares a group has, the more is
184 * the cpu bandwidth allocated to it.
185 *
186 * For ex, lets say that there are three task groups, A, B and C which
187 * have been assigned shares 1000, 2000 and 3000 respectively. Then,
188 * cpu bandwidth allocated by the scheduler to task groups A, B and C
189 * should be:
190 *
191 * Bw(A) = 1000/(1000+2000+3000) * 100 = 16.66%
192 * Bw(B) = 2000/(1000+2000+3000) * 100 = 33.33%
Ingo Molnar03319ec2008-01-25 21:08:28 +0100193 * Bw(C) = 3000/(1000+2000+3000) * 100 = 50%
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100194 *
195 * The weight assigned to a task group's schedulable entities on every
196 * cpu (task_group.se[a_cpu]->load.weight) is derived from the task
197 * group's shares. For ex: lets say that task group A has been
198 * assigned shares of 1000 and there are two CPUs in a system. Then,
199 *
200 * tg_A->se[0]->load.weight = tg_A->se[1]->load.weight = 1000;
201 *
202 * Note: It's not necessary that each of a task's group schedulable
Ingo Molnar03319ec2008-01-25 21:08:28 +0100203 * entity have the same weight on all CPUs. If the group
204 * has 2 of its tasks on CPU0 and 1 task on CPU1, then a
205 * better distribution of weight could be:
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100206 *
207 * tg_A->se[0]->load.weight = 2/3 * 2000 = 1333
208 * tg_A->se[1]->load.weight = 1/2 * 2000 = 667
209 *
210 * rebalance_shares() is responsible for distributing the shares of a
211 * task groups like this among the group's schedulable entities across
212 * cpus.
213 *
214 */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200215 unsigned long shares;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100216
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100217 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100218 struct list_head list;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200219};
220
221/* Default task group's sched entity on each cpu */
222static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
223/* Default task group's cfs_rq on each cpu */
224static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
225
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100226static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
227static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
228
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200229static struct sched_entity *init_sched_entity_p[NR_CPUS];
230static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200231
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100232static struct sched_rt_entity *init_sched_rt_entity_p[NR_CPUS];
233static struct rt_rq *init_rt_rq_p[NR_CPUS];
234
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100235/* task_group_mutex serializes add/remove of task groups and also changes to
236 * a task group's cpu shares.
237 */
238static DEFINE_MUTEX(task_group_mutex);
239
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100240/* doms_cur_mutex serializes access to doms_cur[] array */
241static DEFINE_MUTEX(doms_cur_mutex);
242
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100243#ifdef CONFIG_SMP
244/* kernel thread that runs rebalance_shares() periodically */
245static struct task_struct *lb_monitor_task;
246static int load_balance_monitor(void *unused);
247#endif
248
249static void set_se_shares(struct sched_entity *se, unsigned long shares);
250
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200251/* Default task group.
Ingo Molnar3a252012007-10-15 17:00:12 +0200252 * Every task in system belong to this group at bootup.
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200253 */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200254struct task_group init_task_group = {
Ingo Molnar0eab9142008-01-25 21:08:19 +0100255 .se = init_sched_entity_p,
Ingo Molnar3a252012007-10-15 17:00:12 +0200256 .cfs_rq = init_cfs_rq_p,
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100257
258 .rt_se = init_sched_rt_entity_p,
259 .rt_rq = init_rt_rq_p,
Ingo Molnar3a252012007-10-15 17:00:12 +0200260};
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200261
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200262#ifdef CONFIG_FAIR_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100263# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200264#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100265# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200266#endif
267
Ingo Molnar0eab9142008-01-25 21:08:19 +0100268#define MIN_GROUP_SHARES 2
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100269
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100270static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200271
272/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200273static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200274{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200275 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200276
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200277#ifdef CONFIG_FAIR_USER_SCHED
278 tg = p->user->tg;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700279#elif defined(CONFIG_FAIR_CGROUP_SCHED)
280 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
281 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200282#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100283 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200284#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200285 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200286}
287
288/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100289static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200290{
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100291 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
292 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100293
294 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
295 p->rt.parent = task_group(p)->rt_se[cpu];
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200296}
297
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100298static inline void lock_task_group_list(void)
299{
300 mutex_lock(&task_group_mutex);
301}
302
303static inline void unlock_task_group_list(void)
304{
305 mutex_unlock(&task_group_mutex);
306}
307
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100308static inline void lock_doms_cur(void)
309{
310 mutex_lock(&doms_cur_mutex);
311}
312
313static inline void unlock_doms_cur(void)
314{
315 mutex_unlock(&doms_cur_mutex);
316}
317
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200318#else
319
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100320static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100321static inline void lock_task_group_list(void) { }
322static inline void unlock_task_group_list(void) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100323static inline void lock_doms_cur(void) { }
324static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200325
326#endif /* CONFIG_FAIR_GROUP_SCHED */
327
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200328/* CFS-related fields in a runqueue */
329struct cfs_rq {
330 struct load_weight load;
331 unsigned long nr_running;
332
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200333 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200334 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200335
336 struct rb_root tasks_timeline;
337 struct rb_node *rb_leftmost;
338 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200339 /* 'curr' points to currently running entity on this cfs_rq.
340 * It is set to NULL otherwise (i.e when none are currently running).
341 */
342 struct sched_entity *curr;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200343
344 unsigned long nr_spread_over;
345
Ingo Molnar62160e32007-10-15 17:00:03 +0200346#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200347 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
348
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100349 /*
350 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200351 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
352 * (like users, containers etc.)
353 *
354 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
355 * list is used during load balance.
356 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100357 struct list_head leaf_cfs_rq_list;
358 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200359#endif
360};
361
362/* Real-Time classes' related field in a runqueue: */
363struct rt_rq {
364 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100365 unsigned long rt_nr_running;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100366#if defined CONFIG_SMP || defined CONFIG_FAIR_GROUP_SCHED
367 int highest_prio; /* highest queued rt task prio */
368#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100369#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100370 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100371 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100372#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100373 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100374 u64 rt_time;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100375
376#ifdef CONFIG_FAIR_GROUP_SCHED
377 struct rq *rq;
378 struct list_head leaf_rt_rq_list;
379 struct task_group *tg;
380 struct sched_rt_entity *rt_se;
381#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200382};
383
Gregory Haskins57d885f2008-01-25 21:08:18 +0100384#ifdef CONFIG_SMP
385
386/*
387 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100388 * variables. Each exclusive cpuset essentially defines an island domain by
389 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100390 * exclusive cpuset is created, we also create and attach a new root-domain
391 * object.
392 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100393 */
394struct root_domain {
395 atomic_t refcount;
396 cpumask_t span;
397 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100398
Ingo Molnar0eab9142008-01-25 21:08:19 +0100399 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100400 * The "RT overload" flag: it gets set if a CPU has more than
401 * one runnable RT task.
402 */
403 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100404 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100405};
406
Gregory Haskinsdc938522008-01-25 21:08:26 +0100407/*
408 * By default the system creates a single root-domain with all cpus as
409 * members (mimicking the global state we have today).
410 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100411static struct root_domain def_root_domain;
412
413#endif
414
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200415/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * This is the main, per-CPU runqueue data structure.
417 *
418 * Locking rule: those places that want to lock multiple runqueues
419 * (such as the load balancing or the thread migration code), lock
420 * acquire operations must be ordered by ascending &runqueue.
421 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700422struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200423 /* runqueue lock: */
424 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 /*
427 * nr_running and cpu_load should be in the same cacheline because
428 * remote CPUs use both these fields when doing load calculation.
429 */
430 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200431 #define CPU_LOAD_IDX_MAX 5
432 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700433 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700434#ifdef CONFIG_NO_HZ
435 unsigned char in_nohz_recently;
436#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200437 /* capture load from *all* tasks on this cpu: */
438 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200439 unsigned long nr_load_updates;
440 u64 nr_switches;
441
442 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100443 struct rt_rq rt;
444 u64 rt_period_expire;
445
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200446#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200447 /* list of leaf cfs_rq on this cpu: */
448 struct list_head leaf_cfs_rq_list;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100449 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 /*
453 * This is part of a global counter where only the total sum
454 * over all CPUs matters. A task can increase this counter on
455 * one CPU and if it got migrated afterwards it may decrease
456 * it on another CPU. Always updated under the runqueue lock:
457 */
458 unsigned long nr_uninterruptible;
459
Ingo Molnar36c8b582006-07-03 00:25:41 -0700460 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800461 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200463
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200464 u64 clock, prev_clock_raw;
465 s64 clock_max_delta;
466
467 unsigned int clock_warps, clock_overflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200468 u64 idle_clock;
469 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200470 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 atomic_t nr_iowait;
473
474#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100475 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct sched_domain *sd;
477
478 /* For active balancing */
479 int active_balance;
480 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200481 /* cpu of this runqueue: */
482 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Ingo Molnar36c8b582006-07-03 00:25:41 -0700484 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct list_head migration_queue;
486#endif
487
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100488#ifdef CONFIG_SCHED_HRTICK
489 unsigned long hrtick_flags;
490 ktime_t hrtick_expire;
491 struct hrtimer hrtick_timer;
492#endif
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494#ifdef CONFIG_SCHEDSTATS
495 /* latency stats */
496 struct sched_info rq_sched_info;
497
498 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200499 unsigned int yld_exp_empty;
500 unsigned int yld_act_empty;
501 unsigned int yld_both_empty;
502 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200505 unsigned int sched_switch;
506 unsigned int sched_count;
507 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200510 unsigned int ttwu_count;
511 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200512
513 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200514 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700516 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517};
518
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700519static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Ingo Molnardd41f592007-07-09 18:51:59 +0200521static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
522{
523 rq->curr->sched_class->check_preempt_curr(rq, p);
524}
525
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700526static inline int cpu_of(struct rq *rq)
527{
528#ifdef CONFIG_SMP
529 return rq->cpu;
530#else
531 return 0;
532#endif
533}
534
Nick Piggin674311d2005-06-25 14:57:27 -0700535/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200536 * Update the per-runqueue clock, as finegrained as the platform can give
537 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200538 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200539static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200540{
541 u64 prev_raw = rq->prev_clock_raw;
542 u64 now = sched_clock();
543 s64 delta = now - prev_raw;
544 u64 clock = rq->clock;
545
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200546#ifdef CONFIG_SCHED_DEBUG
547 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
548#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200549 /*
550 * Protect against sched_clock() occasionally going backwards:
551 */
552 if (unlikely(delta < 0)) {
553 clock++;
554 rq->clock_warps++;
555 } else {
556 /*
557 * Catch too large forward jumps too:
558 */
Ingo Molnar529c7722007-08-10 23:05:11 +0200559 if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) {
560 if (clock < rq->tick_timestamp + TICK_NSEC)
561 clock = rq->tick_timestamp + TICK_NSEC;
562 else
563 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200564 rq->clock_overflows++;
565 } else {
566 if (unlikely(delta > rq->clock_max_delta))
567 rq->clock_max_delta = delta;
568 clock += delta;
569 }
570 }
571
572 rq->prev_clock_raw = now;
573 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200574}
575
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200576static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200577{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200578 if (likely(smp_processor_id() == cpu_of(rq)))
579 __update_rq_clock(rq);
580}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200581
Ingo Molnar20d315d2007-07-09 18:51:58 +0200582/*
Nick Piggin674311d2005-06-25 14:57:27 -0700583 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700584 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700585 *
586 * The domain tree of any CPU may only be accessed from within
587 * preempt-disabled sections.
588 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700589#define for_each_domain(cpu, __sd) \
590 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
593#define this_rq() (&__get_cpu_var(runqueues))
594#define task_rq(p) cpu_rq(task_cpu(p))
595#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
596
Ingo Molnare436d802007-07-19 21:28:35 +0200597/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200598 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
599 */
600#ifdef CONFIG_SCHED_DEBUG
601# define const_debug __read_mostly
602#else
603# define const_debug static const
604#endif
605
606/*
607 * Debugging: various feature bits
608 */
609enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200610 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100611 SCHED_FEAT_WAKEUP_PREEMPT = 2,
612 SCHED_FEAT_START_DEBIT = 4,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100613 SCHED_FEAT_TREE_AVG = 8,
614 SCHED_FEAT_APPROX_AVG = 16,
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100615 SCHED_FEAT_HRTICK = 32,
616 SCHED_FEAT_DOUBLE_TICK = 64,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200617};
618
619const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200620 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100621 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200622 SCHED_FEAT_START_DEBIT * 1 |
623 SCHED_FEAT_TREE_AVG * 0 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100624 SCHED_FEAT_APPROX_AVG * 0 |
625 SCHED_FEAT_HRTICK * 1 |
626 SCHED_FEAT_DOUBLE_TICK * 0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200627
628#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
629
630/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100631 * Number of tasks to iterate in a single balance run.
632 * Limited because this is done with IRQs disabled.
633 */
634const_debug unsigned int sysctl_sched_nr_migrate = 32;
635
636/*
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100637 * period over which we measure -rt task cpu usage in ms.
638 * default: 1s
639 */
640const_debug unsigned int sysctl_sched_rt_period = 1000;
641
642#define SCHED_RT_FRAC_SHIFT 16
643#define SCHED_RT_FRAC (1UL << SCHED_RT_FRAC_SHIFT)
644
645/*
646 * ratio of time -rt tasks may consume.
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100647 * default: 95%
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100648 */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100649const_debug unsigned int sysctl_sched_rt_ratio = 62259;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100650
651/*
Ingo Molnare436d802007-07-19 21:28:35 +0200652 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
653 * clock constructed from sched_clock():
654 */
655unsigned long long cpu_clock(int cpu)
656{
Ingo Molnare436d802007-07-19 21:28:35 +0200657 unsigned long long now;
658 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200659 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200660
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200661 local_irq_save(flags);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200662 rq = cpu_rq(cpu);
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100663 /*
664 * Only call sched_clock() if the scheduler has already been
665 * initialized (some code might call cpu_clock() very early):
666 */
667 if (rq->idle)
668 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200669 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200670 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200671
672 return now;
673}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200674EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700677# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700679#ifndef finish_arch_switch
680# define finish_arch_switch(prev) do { } while (0)
681#endif
682
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100683static inline int task_current(struct rq *rq, struct task_struct *p)
684{
685 return rq->curr == p;
686}
687
Nick Piggin4866cde2005-06-25 14:57:23 -0700688#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700689static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700690{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100691 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700692}
693
Ingo Molnar70b97a72006-07-03 00:25:42 -0700694static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700695{
696}
697
Ingo Molnar70b97a72006-07-03 00:25:42 -0700698static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700699{
Ingo Molnarda04c032005-09-13 11:17:59 +0200700#ifdef CONFIG_DEBUG_SPINLOCK
701 /* this is a valid case when another task releases the spinlock */
702 rq->lock.owner = current;
703#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700704 /*
705 * If we are tracking spinlock dependencies then we have to
706 * fix up the runqueue lock - which gets 'carried over' from
707 * prev into current:
708 */
709 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
710
Nick Piggin4866cde2005-06-25 14:57:23 -0700711 spin_unlock_irq(&rq->lock);
712}
713
714#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700715static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700716{
717#ifdef CONFIG_SMP
718 return p->oncpu;
719#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100720 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700721#endif
722}
723
Ingo Molnar70b97a72006-07-03 00:25:42 -0700724static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700725{
726#ifdef CONFIG_SMP
727 /*
728 * We can optimise this out completely for !SMP, because the
729 * SMP rebalancing from interrupt is the only thing that cares
730 * here.
731 */
732 next->oncpu = 1;
733#endif
734#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
735 spin_unlock_irq(&rq->lock);
736#else
737 spin_unlock(&rq->lock);
738#endif
739}
740
Ingo Molnar70b97a72006-07-03 00:25:42 -0700741static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700742{
743#ifdef CONFIG_SMP
744 /*
745 * After ->oncpu is cleared, the task can be moved to a different CPU.
746 * We must ensure this doesn't happen until the switch is completely
747 * finished.
748 */
749 smp_wmb();
750 prev->oncpu = 0;
751#endif
752#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
753 local_irq_enable();
754#endif
755}
756#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700759 * __task_rq_lock - lock the runqueue a given task resides on.
760 * Must be called interrupts disabled.
761 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700762static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700763 __acquires(rq->lock)
764{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200765 for (;;) {
766 struct rq *rq = task_rq(p);
767 spin_lock(&rq->lock);
768 if (likely(rq == task_rq(p)))
769 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700770 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700771 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700772}
773
774/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100776 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * explicitly disabling preemption.
778 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700779static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 __acquires(rq->lock)
781{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700782 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Andi Kleen3a5c3592007-10-15 17:00:14 +0200784 for (;;) {
785 local_irq_save(*flags);
786 rq = task_rq(p);
787 spin_lock(&rq->lock);
788 if (likely(rq == task_rq(p)))
789 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
Alexey Dobriyana9957442007-10-15 17:00:13 +0200794static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700795 __releases(rq->lock)
796{
797 spin_unlock(&rq->lock);
798}
799
Ingo Molnar70b97a72006-07-03 00:25:42 -0700800static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 __releases(rq->lock)
802{
803 spin_unlock_irqrestore(&rq->lock, *flags);
804}
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800807 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200809static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 __acquires(rq->lock)
811{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700812 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 local_irq_disable();
815 rq = this_rq();
816 spin_lock(&rq->lock);
817
818 return rq;
819}
820
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200821/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200822 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200823 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200824void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200825{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200826 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200827
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200828 spin_lock(&rq->lock);
829 __update_rq_clock(rq);
830 spin_unlock(&rq->lock);
831 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200832}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200833EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
834
835/*
836 * We just idled delta nanoseconds (called with irqs disabled):
837 */
838void sched_clock_idle_wakeup_event(u64 delta_ns)
839{
840 struct rq *rq = cpu_rq(smp_processor_id());
841 u64 now = sched_clock();
842
Ingo Molnar2bacec82007-12-18 15:21:13 +0100843 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200844 rq->idle_clock += delta_ns;
845 /*
846 * Override the previous timestamp and ignore all
847 * sched_clock() deltas that occured while we idled,
848 * and use the PM-provided delta_ns to advance the
849 * rq clock:
850 */
851 spin_lock(&rq->lock);
852 rq->prev_clock_raw = now;
853 rq->clock += delta_ns;
854 spin_unlock(&rq->lock);
855}
856EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200857
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100858static void __resched_task(struct task_struct *p, int tif_bit);
859
860static inline void resched_task(struct task_struct *p)
861{
862 __resched_task(p, TIF_NEED_RESCHED);
863}
864
865#ifdef CONFIG_SCHED_HRTICK
866/*
867 * Use HR-timers to deliver accurate preemption points.
868 *
869 * Its all a bit involved since we cannot program an hrt while holding the
870 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
871 * reschedule event.
872 *
873 * When we get rescheduled we reprogram the hrtick_timer outside of the
874 * rq->lock.
875 */
876static inline void resched_hrt(struct task_struct *p)
877{
878 __resched_task(p, TIF_HRTICK_RESCHED);
879}
880
881static inline void resched_rq(struct rq *rq)
882{
883 unsigned long flags;
884
885 spin_lock_irqsave(&rq->lock, flags);
886 resched_task(rq->curr);
887 spin_unlock_irqrestore(&rq->lock, flags);
888}
889
890enum {
891 HRTICK_SET, /* re-programm hrtick_timer */
892 HRTICK_RESET, /* not a new slice */
893};
894
895/*
896 * Use hrtick when:
897 * - enabled by features
898 * - hrtimer is actually high res
899 */
900static inline int hrtick_enabled(struct rq *rq)
901{
902 if (!sched_feat(HRTICK))
903 return 0;
904 return hrtimer_is_hres_active(&rq->hrtick_timer);
905}
906
907/*
908 * Called to set the hrtick timer state.
909 *
910 * called with rq->lock held and irqs disabled
911 */
912static void hrtick_start(struct rq *rq, u64 delay, int reset)
913{
914 assert_spin_locked(&rq->lock);
915
916 /*
917 * preempt at: now + delay
918 */
919 rq->hrtick_expire =
920 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
921 /*
922 * indicate we need to program the timer
923 */
924 __set_bit(HRTICK_SET, &rq->hrtick_flags);
925 if (reset)
926 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
927
928 /*
929 * New slices are called from the schedule path and don't need a
930 * forced reschedule.
931 */
932 if (reset)
933 resched_hrt(rq->curr);
934}
935
936static void hrtick_clear(struct rq *rq)
937{
938 if (hrtimer_active(&rq->hrtick_timer))
939 hrtimer_cancel(&rq->hrtick_timer);
940}
941
942/*
943 * Update the timer from the possible pending state.
944 */
945static void hrtick_set(struct rq *rq)
946{
947 ktime_t time;
948 int set, reset;
949 unsigned long flags;
950
951 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
952
953 spin_lock_irqsave(&rq->lock, flags);
954 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
955 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
956 time = rq->hrtick_expire;
957 clear_thread_flag(TIF_HRTICK_RESCHED);
958 spin_unlock_irqrestore(&rq->lock, flags);
959
960 if (set) {
961 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
962 if (reset && !hrtimer_active(&rq->hrtick_timer))
963 resched_rq(rq);
964 } else
965 hrtick_clear(rq);
966}
967
968/*
969 * High-resolution timer tick.
970 * Runs from hardirq context with interrupts disabled.
971 */
972static enum hrtimer_restart hrtick(struct hrtimer *timer)
973{
974 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
975
976 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
977
978 spin_lock(&rq->lock);
979 __update_rq_clock(rq);
980 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
981 spin_unlock(&rq->lock);
982
983 return HRTIMER_NORESTART;
984}
985
986static inline void init_rq_hrtick(struct rq *rq)
987{
988 rq->hrtick_flags = 0;
989 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
990 rq->hrtick_timer.function = hrtick;
991 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
992}
993
994void hrtick_resched(void)
995{
996 struct rq *rq;
997 unsigned long flags;
998
999 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1000 return;
1001
1002 local_irq_save(flags);
1003 rq = cpu_rq(smp_processor_id());
1004 hrtick_set(rq);
1005 local_irq_restore(flags);
1006}
1007#else
1008static inline void hrtick_clear(struct rq *rq)
1009{
1010}
1011
1012static inline void hrtick_set(struct rq *rq)
1013{
1014}
1015
1016static inline void init_rq_hrtick(struct rq *rq)
1017{
1018}
1019
1020void hrtick_resched(void)
1021{
1022}
1023#endif
1024
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001025/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001026 * resched_task - mark a task 'to be rescheduled now'.
1027 *
1028 * On UP this means the setting of the need_resched flag, on SMP it
1029 * might also involve a cross-CPU call to trigger the scheduler on
1030 * the target CPU.
1031 */
1032#ifdef CONFIG_SMP
1033
1034#ifndef tsk_is_polling
1035#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1036#endif
1037
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001038static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001039{
1040 int cpu;
1041
1042 assert_spin_locked(&task_rq(p)->lock);
1043
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001044 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001045 return;
1046
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001047 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001048
1049 cpu = task_cpu(p);
1050 if (cpu == smp_processor_id())
1051 return;
1052
1053 /* NEED_RESCHED must be visible before we test polling */
1054 smp_mb();
1055 if (!tsk_is_polling(p))
1056 smp_send_reschedule(cpu);
1057}
1058
1059static void resched_cpu(int cpu)
1060{
1061 struct rq *rq = cpu_rq(cpu);
1062 unsigned long flags;
1063
1064 if (!spin_trylock_irqsave(&rq->lock, flags))
1065 return;
1066 resched_task(cpu_curr(cpu));
1067 spin_unlock_irqrestore(&rq->lock, flags);
1068}
1069#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001070static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001071{
1072 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001073 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001074}
1075#endif
1076
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001077#if BITS_PER_LONG == 32
1078# define WMULT_CONST (~0UL)
1079#else
1080# define WMULT_CONST (1UL << 32)
1081#endif
1082
1083#define WMULT_SHIFT 32
1084
Ingo Molnar194081e2007-08-09 11:16:51 +02001085/*
1086 * Shift right and round:
1087 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001088#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001089
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001090static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001091calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1092 struct load_weight *lw)
1093{
1094 u64 tmp;
1095
1096 if (unlikely(!lw->inv_weight))
Ingo Molnar194081e2007-08-09 11:16:51 +02001097 lw->inv_weight = (WMULT_CONST - lw->weight/2) / lw->weight + 1;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001098
1099 tmp = (u64)delta_exec * weight;
1100 /*
1101 * Check whether we'd overflow the 64-bit multiplication:
1102 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001103 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001104 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001105 WMULT_SHIFT/2);
1106 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001107 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001108
Ingo Molnarecf691d2007-08-02 17:41:40 +02001109 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001110}
1111
1112static inline unsigned long
1113calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1114{
1115 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1116}
1117
Ingo Molnar10919852007-10-15 17:00:04 +02001118static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001119{
1120 lw->weight += inc;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001121}
1122
Ingo Molnar10919852007-10-15 17:00:04 +02001123static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001124{
1125 lw->weight -= dec;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001126}
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001129 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1130 * of tasks with abnormal "nice" values across CPUs the contribution that
1131 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001132 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001133 * scaled version of the new time slice allocation that they receive on time
1134 * slice expiry etc.
1135 */
1136
Ingo Molnardd41f592007-07-09 18:51:59 +02001137#define WEIGHT_IDLEPRIO 2
1138#define WMULT_IDLEPRIO (1 << 31)
1139
1140/*
1141 * Nice levels are multiplicative, with a gentle 10% change for every
1142 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1143 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1144 * that remained on nice 0.
1145 *
1146 * The "10% effect" is relative and cumulative: from _any_ nice level,
1147 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001148 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1149 * If a task goes up by ~10% and another task goes down by ~10% then
1150 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001151 */
1152static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001153 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1154 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1155 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1156 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1157 /* 0 */ 1024, 820, 655, 526, 423,
1158 /* 5 */ 335, 272, 215, 172, 137,
1159 /* 10 */ 110, 87, 70, 56, 45,
1160 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001161};
1162
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001163/*
1164 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1165 *
1166 * In cases where the weight does not change often, we can use the
1167 * precalculated inverse to speed up arithmetics by turning divisions
1168 * into multiplications:
1169 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001170static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001171 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1172 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1173 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1174 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1175 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1176 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1177 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1178 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001179};
Peter Williams2dd73a42006-06-27 02:54:34 -07001180
Ingo Molnardd41f592007-07-09 18:51:59 +02001181static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1182
1183/*
1184 * runqueue iterator, to support SMP load-balancing between different
1185 * scheduling classes, without having to expose their internal data
1186 * structures to the load-balancing proper:
1187 */
1188struct rq_iterator {
1189 void *arg;
1190 struct task_struct *(*start)(void *);
1191 struct task_struct *(*next)(void *);
1192};
1193
Peter Williamse1d14842007-10-24 18:23:51 +02001194#ifdef CONFIG_SMP
1195static unsigned long
1196balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1197 unsigned long max_load_move, struct sched_domain *sd,
1198 enum cpu_idle_type idle, int *all_pinned,
1199 int *this_best_prio, struct rq_iterator *iterator);
1200
1201static int
1202iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1203 struct sched_domain *sd, enum cpu_idle_type idle,
1204 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001205#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001206
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001207#ifdef CONFIG_CGROUP_CPUACCT
1208static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1209#else
1210static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1211#endif
1212
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +01001213static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1214{
1215 update_load_add(&rq->load, load);
1216}
1217
1218static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1219{
1220 update_load_sub(&rq->load, load);
1221}
1222
Gregory Haskinse7693a32008-01-25 21:08:09 +01001223#ifdef CONFIG_SMP
1224static unsigned long source_load(int cpu, int type);
1225static unsigned long target_load(int cpu, int type);
1226static unsigned long cpu_avg_load_per_task(int cpu);
1227static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1228#endif /* CONFIG_SMP */
1229
Ingo Molnardd41f592007-07-09 18:51:59 +02001230#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001231#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001232#include "sched_fair.c"
1233#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001234#ifdef CONFIG_SCHED_DEBUG
1235# include "sched_debug.c"
1236#endif
1237
1238#define sched_class_highest (&rt_sched_class)
1239
Ingo Molnare5fa2232007-08-09 11:16:49 +02001240static void inc_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001241{
1242 rq->nr_running++;
Ingo Molnar9c217242007-08-02 17:41:40 +02001243}
1244
Ingo Molnardb531812007-08-09 11:16:49 +02001245static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001246{
1247 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001248}
1249
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001250static void set_load_weight(struct task_struct *p)
1251{
1252 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001253 p->se.load.weight = prio_to_weight[0] * 2;
1254 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1255 return;
1256 }
1257
1258 /*
1259 * SCHED_IDLE tasks get minimal weight:
1260 */
1261 if (p->policy == SCHED_IDLE) {
1262 p->se.load.weight = WEIGHT_IDLEPRIO;
1263 p->se.load.inv_weight = WMULT_IDLEPRIO;
1264 return;
1265 }
1266
1267 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1268 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001269}
1270
Ingo Molnar8159f872007-08-09 11:16:49 +02001271static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001272{
1273 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001274 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001275 p->se.on_rq = 1;
1276}
1277
Ingo Molnar69be72c2007-08-09 11:16:49 +02001278static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001279{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001280 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001281 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001282}
1283
1284/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001285 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001286 */
Ingo Molnar14531182007-07-09 18:51:59 +02001287static inline int __normal_prio(struct task_struct *p)
1288{
Ingo Molnardd41f592007-07-09 18:51:59 +02001289 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001290}
1291
1292/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001293 * Calculate the expected normal priority: i.e. priority
1294 * without taking RT-inheritance into account. Might be
1295 * boosted by interactivity modifiers. Changes upon fork,
1296 * setprio syscalls, and whenever the interactivity
1297 * estimator recalculates.
1298 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001299static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001300{
1301 int prio;
1302
Ingo Molnare05606d2007-07-09 18:51:59 +02001303 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001304 prio = MAX_RT_PRIO-1 - p->rt_priority;
1305 else
1306 prio = __normal_prio(p);
1307 return prio;
1308}
1309
1310/*
1311 * Calculate the current priority, i.e. the priority
1312 * taken into account by the scheduler. This value might
1313 * be boosted by RT tasks, or might be boosted by
1314 * interactivity modifiers. Will be RT if the task got
1315 * RT-boosted. If not then it returns p->normal_prio.
1316 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001317static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001318{
1319 p->normal_prio = normal_prio(p);
1320 /*
1321 * If we are RT tasks or we were boosted to RT priority,
1322 * keep the priority unchanged. Otherwise, update priority
1323 * to the normal priority:
1324 */
1325 if (!rt_prio(p->prio))
1326 return p->normal_prio;
1327 return p->prio;
1328}
1329
1330/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001331 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001333static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Ingo Molnardd41f592007-07-09 18:51:59 +02001335 if (p->state == TASK_UNINTERRUPTIBLE)
1336 rq->nr_uninterruptible--;
1337
Ingo Molnar8159f872007-08-09 11:16:49 +02001338 enqueue_task(rq, p, wakeup);
Ingo Molnare5fa2232007-08-09 11:16:49 +02001339 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 * deactivate_task - remove a task from the runqueue.
1344 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001345static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Ingo Molnardd41f592007-07-09 18:51:59 +02001347 if (p->state == TASK_UNINTERRUPTIBLE)
1348 rq->nr_uninterruptible++;
1349
Ingo Molnar69be72c2007-08-09 11:16:49 +02001350 dequeue_task(rq, p, sleep);
Ingo Molnardb531812007-08-09 11:16:49 +02001351 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354/**
1355 * task_curr - is this task currently executing on a CPU?
1356 * @p: the task in question.
1357 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001358inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 return cpu_curr(task_cpu(p)) == p;
1361}
1362
Peter Williams2dd73a42006-06-27 02:54:34 -07001363/* Used instead of source_load when we know the type == 0 */
1364unsigned long weighted_cpuload(const int cpu)
1365{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001366 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001367}
1368
1369static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1370{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001371 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001372#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001373 /*
1374 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1375 * successfuly executed on another CPU. We must ensure that updates of
1376 * per-task data have been completed by this moment.
1377 */
1378 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001379 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001380#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001381}
1382
Steven Rostedtcb469842008-01-25 21:08:22 +01001383static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1384 const struct sched_class *prev_class,
1385 int oldprio, int running)
1386{
1387 if (prev_class != p->sched_class) {
1388 if (prev_class->switched_from)
1389 prev_class->switched_from(rq, p, running);
1390 p->sched_class->switched_to(rq, p, running);
1391 } else
1392 p->sched_class->prio_changed(rq, p, oldprio, running);
1393}
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001396
Ingo Molnarcc367732007-10-15 17:00:18 +02001397/*
1398 * Is this task likely cache-hot:
1399 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001400static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001401task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1402{
1403 s64 delta;
1404
1405 if (p->sched_class != &fair_sched_class)
1406 return 0;
1407
Ingo Molnar6bc16652007-10-15 17:00:18 +02001408 if (sysctl_sched_migration_cost == -1)
1409 return 1;
1410 if (sysctl_sched_migration_cost == 0)
1411 return 0;
1412
Ingo Molnarcc367732007-10-15 17:00:18 +02001413 delta = now - p->se.exec_start;
1414
1415 return delta < (s64)sysctl_sched_migration_cost;
1416}
1417
1418
Ingo Molnardd41f592007-07-09 18:51:59 +02001419void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001420{
Ingo Molnardd41f592007-07-09 18:51:59 +02001421 int old_cpu = task_cpu(p);
1422 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001423 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1424 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001425 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001426
1427 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001428
1429#ifdef CONFIG_SCHEDSTATS
1430 if (p->se.wait_start)
1431 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001432 if (p->se.sleep_start)
1433 p->se.sleep_start -= clock_offset;
1434 if (p->se.block_start)
1435 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001436 if (old_cpu != new_cpu) {
1437 schedstat_inc(p, se.nr_migrations);
1438 if (task_hot(p, old_rq->clock, NULL))
1439 schedstat_inc(p, se.nr_forced2_migrations);
1440 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001441#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001442 p->se.vruntime -= old_cfsrq->min_vruntime -
1443 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001444
1445 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001446}
1447
Ingo Molnar70b97a72006-07-03 00:25:42 -07001448struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Ingo Molnar36c8b582006-07-03 00:25:41 -07001451 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 int dest_cpu;
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001455};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457/*
1458 * The task's runqueue lock must be held.
1459 * Returns true if you have to wait for migration thread.
1460 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001461static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001462migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001464 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 /*
1467 * If the task is not on a runqueue (and not running), then
1468 * it is sufficient to simply update the task's cpu field.
1469 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001470 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 set_task_cpu(p, dest_cpu);
1472 return 0;
1473 }
1474
1475 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 req->task = p;
1477 req->dest_cpu = dest_cpu;
1478 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return 1;
1481}
1482
1483/*
1484 * wait_task_inactive - wait for a thread to unschedule.
1485 *
1486 * The caller must ensure that the task *will* unschedule sometime soon,
1487 * else this function might spin for a *long* time. This function can't
1488 * be called with interrupts off, or it may introduce deadlock with
1489 * smp_call_function() if an IPI is sent by the same process we are
1490 * waiting to become inactive.
1491 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001492void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
1494 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001495 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001496 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Andi Kleen3a5c3592007-10-15 17:00:14 +02001498 for (;;) {
1499 /*
1500 * We do the initial early heuristics without holding
1501 * any task-queue locks at all. We'll only try to get
1502 * the runqueue lock when things look like they will
1503 * work out!
1504 */
1505 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001506
Andi Kleen3a5c3592007-10-15 17:00:14 +02001507 /*
1508 * If the task is actively running on another CPU
1509 * still, just relax and busy-wait without holding
1510 * any locks.
1511 *
1512 * NOTE! Since we don't hold any locks, it's not
1513 * even sure that "rq" stays as the right runqueue!
1514 * But we don't care, since "task_running()" will
1515 * return false if the runqueue has changed and p
1516 * is actually now running somewhere else!
1517 */
1518 while (task_running(rq, p))
1519 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001520
Andi Kleen3a5c3592007-10-15 17:00:14 +02001521 /*
1522 * Ok, time to look more closely! We need the rq
1523 * lock now, to be *sure*. If we're wrong, we'll
1524 * just go back and repeat.
1525 */
1526 rq = task_rq_lock(p, &flags);
1527 running = task_running(rq, p);
1528 on_rq = p->se.on_rq;
1529 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001530
Andi Kleen3a5c3592007-10-15 17:00:14 +02001531 /*
1532 * Was it really running after all now that we
1533 * checked with the proper locks actually held?
1534 *
1535 * Oops. Go back and try again..
1536 */
1537 if (unlikely(running)) {
1538 cpu_relax();
1539 continue;
1540 }
1541
1542 /*
1543 * It's not enough that it's not actively running,
1544 * it must be off the runqueue _entirely_, and not
1545 * preempted!
1546 *
1547 * So if it wa still runnable (but just not actively
1548 * running right now), it's preempted, and we should
1549 * yield - it could be a while.
1550 */
1551 if (unlikely(on_rq)) {
1552 schedule_timeout_uninterruptible(1);
1553 continue;
1554 }
1555
1556 /*
1557 * Ahh, all good. It wasn't running, and it wasn't
1558 * runnable, which means that it will never become
1559 * running in the future either. We're all done!
1560 */
1561 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
1565/***
1566 * kick_process - kick a running thread to enter/exit the kernel
1567 * @p: the to-be-kicked thread
1568 *
1569 * Cause a process which is running on another CPU to enter
1570 * kernel-mode, without any delay. (to get signals handled.)
1571 *
1572 * NOTE: this function doesnt have to take the runqueue lock,
1573 * because all it wants to ensure is that the remote task enters
1574 * the kernel. If the IPI races and the task has been migrated
1575 * to another CPU then no harm is done and the purpose has been
1576 * achieved as well.
1577 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001578void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 int cpu;
1581
1582 preempt_disable();
1583 cpu = task_cpu(p);
1584 if ((cpu != smp_processor_id()) && task_curr(p))
1585 smp_send_reschedule(cpu);
1586 preempt_enable();
1587}
1588
1589/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001590 * Return a low guess at the load of a migration-source cpu weighted
1591 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 *
1593 * We want to under-estimate the load of migration sources, to
1594 * balance conservatively.
1595 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001596static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001597{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001598 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001599 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001600
Peter Williams2dd73a42006-06-27 02:54:34 -07001601 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001602 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001603
Ingo Molnardd41f592007-07-09 18:51:59 +02001604 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
1607/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001608 * Return a high guess at the load of a migration-target cpu weighted
1609 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001611static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001612{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001613 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001614 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001615
Peter Williams2dd73a42006-06-27 02:54:34 -07001616 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001617 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001618
Ingo Molnardd41f592007-07-09 18:51:59 +02001619 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001620}
1621
1622/*
1623 * Return the average load per task on the cpu's run queue
1624 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001625static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001626{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001627 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001628 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001629 unsigned long n = rq->nr_running;
1630
Ingo Molnardd41f592007-07-09 18:51:59 +02001631 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Nick Piggin147cbb42005-06-25 14:57:19 -07001634/*
1635 * find_idlest_group finds and returns the least busy CPU group within the
1636 * domain.
1637 */
1638static struct sched_group *
1639find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1640{
1641 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1642 unsigned long min_load = ULONG_MAX, this_load = 0;
1643 int load_idx = sd->forkexec_idx;
1644 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1645
1646 do {
1647 unsigned long load, avg_load;
1648 int local_group;
1649 int i;
1650
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001651 /* Skip over this group if it has no CPUs allowed */
1652 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001653 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001654
Nick Piggin147cbb42005-06-25 14:57:19 -07001655 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001656
1657 /* Tally up the load of all CPUs in the group */
1658 avg_load = 0;
1659
1660 for_each_cpu_mask(i, group->cpumask) {
1661 /* Bias balancing toward cpus of our domain */
1662 if (local_group)
1663 load = source_load(i, load_idx);
1664 else
1665 load = target_load(i, load_idx);
1666
1667 avg_load += load;
1668 }
1669
1670 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001671 avg_load = sg_div_cpu_power(group,
1672 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001673
1674 if (local_group) {
1675 this_load = avg_load;
1676 this = group;
1677 } else if (avg_load < min_load) {
1678 min_load = avg_load;
1679 idlest = group;
1680 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001681 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001682
1683 if (!idlest || 100*this_load < imbalance*min_load)
1684 return NULL;
1685 return idlest;
1686}
1687
1688/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001689 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001690 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001691static int
1692find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001693{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001694 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001695 unsigned long load, min_load = ULONG_MAX;
1696 int idlest = -1;
1697 int i;
1698
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001699 /* Traverse only the allowed CPUs */
1700 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1701
1702 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001703 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001704
1705 if (load < min_load || (load == min_load && i == this_cpu)) {
1706 min_load = load;
1707 idlest = i;
1708 }
1709 }
1710
1711 return idlest;
1712}
1713
Nick Piggin476d1392005-06-25 14:57:29 -07001714/*
1715 * sched_balance_self: balance the current task (running on cpu) in domains
1716 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1717 * SD_BALANCE_EXEC.
1718 *
1719 * Balance, ie. select the least loaded group.
1720 *
1721 * Returns the target CPU number, or the same CPU if no balancing is needed.
1722 *
1723 * preempt must be disabled.
1724 */
1725static int sched_balance_self(int cpu, int flag)
1726{
1727 struct task_struct *t = current;
1728 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001729
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001730 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001731 /*
1732 * If power savings logic is enabled for a domain, stop there.
1733 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001734 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1735 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001736 if (tmp->flags & flag)
1737 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001738 }
Nick Piggin476d1392005-06-25 14:57:29 -07001739
1740 while (sd) {
1741 cpumask_t span;
1742 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001743 int new_cpu, weight;
1744
1745 if (!(sd->flags & flag)) {
1746 sd = sd->child;
1747 continue;
1748 }
Nick Piggin476d1392005-06-25 14:57:29 -07001749
1750 span = sd->span;
1751 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001752 if (!group) {
1753 sd = sd->child;
1754 continue;
1755 }
Nick Piggin476d1392005-06-25 14:57:29 -07001756
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001757 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001758 if (new_cpu == -1 || new_cpu == cpu) {
1759 /* Now try balancing at a lower domain level of cpu */
1760 sd = sd->child;
1761 continue;
1762 }
Nick Piggin476d1392005-06-25 14:57:29 -07001763
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001764 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001765 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001766 sd = NULL;
1767 weight = cpus_weight(span);
1768 for_each_domain(cpu, tmp) {
1769 if (weight <= cpus_weight(tmp->span))
1770 break;
1771 if (tmp->flags & flag)
1772 sd = tmp;
1773 }
1774 /* while loop will break here if sd == NULL */
1775 }
1776
1777 return cpu;
1778}
1779
1780#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782/***
1783 * try_to_wake_up - wake up a thread
1784 * @p: the to-be-woken-up thread
1785 * @state: the mask of task states that can be woken
1786 * @sync: do a synchronous wakeup?
1787 *
1788 * Put it on the run-queue if it's not already there. The "current"
1789 * thread is always on the run-queue (except when the actual
1790 * re-schedule is in progress), and as such you're allowed to do
1791 * the simpler "current->state = TASK_RUNNING" to mark yourself
1792 * runnable without the overhead of this.
1793 *
1794 * returns failure only if the task is already active.
1795 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001796static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Ingo Molnarcc367732007-10-15 17:00:18 +02001798 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 unsigned long flags;
1800 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001801 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803 rq = task_rq_lock(p, &flags);
1804 old_state = p->state;
1805 if (!(old_state & state))
1806 goto out;
1807
Ingo Molnardd41f592007-07-09 18:51:59 +02001808 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 goto out_running;
1810
1811 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02001812 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 this_cpu = smp_processor_id();
1814
1815#ifdef CONFIG_SMP
1816 if (unlikely(task_running(rq, p)))
1817 goto out_activate;
1818
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01001819 cpu = p->sched_class->select_task_rq(p, sync);
1820 if (cpu != orig_cpu) {
1821 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 task_rq_unlock(rq, &flags);
1823 /* might preempt at this point */
1824 rq = task_rq_lock(p, &flags);
1825 old_state = p->state;
1826 if (!(old_state & state))
1827 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001828 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 goto out_running;
1830
1831 this_cpu = smp_processor_id();
1832 cpu = task_cpu(p);
1833 }
1834
Gregory Haskinse7693a32008-01-25 21:08:09 +01001835#ifdef CONFIG_SCHEDSTATS
1836 schedstat_inc(rq, ttwu_count);
1837 if (cpu == this_cpu)
1838 schedstat_inc(rq, ttwu_local);
1839 else {
1840 struct sched_domain *sd;
1841 for_each_domain(this_cpu, sd) {
1842 if (cpu_isset(cpu, sd->span)) {
1843 schedstat_inc(sd, ttwu_wake_remote);
1844 break;
1845 }
1846 }
1847 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01001848#endif
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850out_activate:
1851#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02001852 schedstat_inc(p, se.nr_wakeups);
1853 if (sync)
1854 schedstat_inc(p, se.nr_wakeups_sync);
1855 if (orig_cpu != cpu)
1856 schedstat_inc(p, se.nr_wakeups_migrate);
1857 if (cpu == this_cpu)
1858 schedstat_inc(p, se.nr_wakeups_local);
1859 else
1860 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02001861 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001862 activate_task(rq, p, 1);
Ingo Molnar9c63d9c2007-10-15 17:00:20 +02001863 check_preempt_curr(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 success = 1;
1865
1866out_running:
1867 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01001868#ifdef CONFIG_SMP
1869 if (p->sched_class->task_wake_up)
1870 p->sched_class->task_wake_up(rq, p);
1871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872out:
1873 task_rq_unlock(rq, &flags);
1874
1875 return success;
1876}
1877
Ingo Molnar36c8b582006-07-03 00:25:41 -07001878int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
1880 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1881 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1882}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883EXPORT_SYMBOL(wake_up_process);
1884
Ingo Molnar36c8b582006-07-03 00:25:41 -07001885int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
1887 return try_to_wake_up(p, state, 0);
1888}
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890/*
1891 * Perform scheduler related setup for a newly forked process p.
1892 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001893 *
1894 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001896static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
Ingo Molnardd41f592007-07-09 18:51:59 +02001898 p->se.exec_start = 0;
1899 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001900 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001901
1902#ifdef CONFIG_SCHEDSTATS
1903 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001904 p->se.sum_sleep_runtime = 0;
1905 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001906 p->se.block_start = 0;
1907 p->se.sleep_max = 0;
1908 p->se.block_max = 0;
1909 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001910 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001911 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001912#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001913
Peter Zijlstrafa717062008-01-25 21:08:27 +01001914 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02001915 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001916
Avi Kivitye107be32007-07-26 13:40:43 +02001917#ifdef CONFIG_PREEMPT_NOTIFIERS
1918 INIT_HLIST_HEAD(&p->preempt_notifiers);
1919#endif
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 /*
1922 * We mark the process as running here, but have not actually
1923 * inserted it onto the runqueue yet. This guarantees that
1924 * nobody will actually run it, and a signal or other external
1925 * event cannot wake it up and insert it on the runqueue either.
1926 */
1927 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001928}
1929
1930/*
1931 * fork()/clone()-time setup:
1932 */
1933void sched_fork(struct task_struct *p, int clone_flags)
1934{
1935 int cpu = get_cpu();
1936
1937 __sched_fork(p);
1938
1939#ifdef CONFIG_SMP
1940 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1941#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02001942 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001943
1944 /*
1945 * Make sure we do not leak PI boosting priority to the child:
1946 */
1947 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001948 if (!rt_prio(p->prio))
1949 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001950
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001951#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001952 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001953 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001955#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001956 p->oncpu = 0;
1957#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001959 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001960 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001962 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
1964
1965/*
1966 * wake_up_new_task - wake up a newly created task for the first time.
1967 *
1968 * This function will do some initial scheduler statistics housekeeping
1969 * that must be done for every newly created context, then puts the task
1970 * on the runqueue and wakes it.
1971 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001972void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001975 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02001979 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 p->prio = effective_prio(p);
1982
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02001983 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001984 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001987 * Let the scheduling class do new task startup
1988 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001990 p->sched_class->task_new(rq, p);
Ingo Molnare5fa2232007-08-09 11:16:49 +02001991 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001993 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01001994#ifdef CONFIG_SMP
1995 if (p->sched_class->task_wake_up)
1996 p->sched_class->task_wake_up(rq, p);
1997#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001998 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
Avi Kivitye107be32007-07-26 13:40:43 +02002001#ifdef CONFIG_PREEMPT_NOTIFIERS
2002
2003/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002004 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2005 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002006 */
2007void preempt_notifier_register(struct preempt_notifier *notifier)
2008{
2009 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2010}
2011EXPORT_SYMBOL_GPL(preempt_notifier_register);
2012
2013/**
2014 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002015 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002016 *
2017 * This is safe to call from within a preemption notifier.
2018 */
2019void preempt_notifier_unregister(struct preempt_notifier *notifier)
2020{
2021 hlist_del(&notifier->link);
2022}
2023EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2024
2025static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2026{
2027 struct preempt_notifier *notifier;
2028 struct hlist_node *node;
2029
2030 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2031 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2032}
2033
2034static void
2035fire_sched_out_preempt_notifiers(struct task_struct *curr,
2036 struct task_struct *next)
2037{
2038 struct preempt_notifier *notifier;
2039 struct hlist_node *node;
2040
2041 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2042 notifier->ops->sched_out(notifier, next);
2043}
2044
2045#else
2046
2047static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2048{
2049}
2050
2051static void
2052fire_sched_out_preempt_notifiers(struct task_struct *curr,
2053 struct task_struct *next)
2054{
2055}
2056
2057#endif
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002060 * prepare_task_switch - prepare to switch tasks
2061 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002062 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002063 * @next: the task we are going to switch to.
2064 *
2065 * This is called with the rq lock held and interrupts off. It must
2066 * be paired with a subsequent finish_task_switch after the context
2067 * switch.
2068 *
2069 * prepare_task_switch sets up locking and calls architecture specific
2070 * hooks.
2071 */
Avi Kivitye107be32007-07-26 13:40:43 +02002072static inline void
2073prepare_task_switch(struct rq *rq, struct task_struct *prev,
2074 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002075{
Avi Kivitye107be32007-07-26 13:40:43 +02002076 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002077 prepare_lock_switch(rq, next);
2078 prepare_arch_switch(next);
2079}
2080
2081/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002083 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * @prev: the thread we just switched away from.
2085 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002086 * finish_task_switch must be called after the context switch, paired
2087 * with a prepare_task_switch call before the context switch.
2088 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2089 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 *
2091 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002092 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 * with the lock held can cause deadlocks; see schedule() for
2094 * details.)
2095 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002096static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 __releases(rq->lock)
2098{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002100 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 rq->prev_mm = NULL;
2103
2104 /*
2105 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002106 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002107 * schedule one last time. The schedule call will never return, and
2108 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002109 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 * still held, otherwise prev could be scheduled on another cpu, die
2111 * there before we look at prev->state, and then the reference would
2112 * be dropped twice.
2113 * Manfred Spraul <manfred@colorfullife.com>
2114 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002115 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002116 finish_arch_switch(prev);
2117 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002118#ifdef CONFIG_SMP
2119 if (current->sched_class->post_schedule)
2120 current->sched_class->post_schedule(rq);
2121#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002122
Avi Kivitye107be32007-07-26 13:40:43 +02002123 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 if (mm)
2125 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002126 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002127 /*
2128 * Remove function-return probe instances associated with this
2129 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002130 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002131 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
2135
2136/**
2137 * schedule_tail - first thing a freshly forked thread must call.
2138 * @prev: the thread we just switched away from.
2139 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002140asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 __releases(rq->lock)
2142{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002143 struct rq *rq = this_rq();
2144
Nick Piggin4866cde2005-06-25 14:57:23 -07002145 finish_task_switch(rq, prev);
2146#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2147 /* In this case, finish_task_switch does not reenable preemption */
2148 preempt_enable();
2149#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002151 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152}
2153
2154/*
2155 * context_switch - switch to the new MM and the new
2156 * thread's register state.
2157 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002158static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002159context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002160 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
Ingo Molnardd41f592007-07-09 18:51:59 +02002162 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Avi Kivitye107be32007-07-26 13:40:43 +02002164 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002165 mm = next->mm;
2166 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002167 /*
2168 * For paravirt, this is coupled with an exit in switch_to to
2169 * combine the page table reload and the switch backend into
2170 * one hypercall.
2171 */
2172 arch_enter_lazy_cpu_mode();
2173
Ingo Molnardd41f592007-07-09 18:51:59 +02002174 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 next->active_mm = oldmm;
2176 atomic_inc(&oldmm->mm_count);
2177 enter_lazy_tlb(oldmm, next);
2178 } else
2179 switch_mm(oldmm, mm, next);
2180
Ingo Molnardd41f592007-07-09 18:51:59 +02002181 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 rq->prev_mm = oldmm;
2184 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002185 /*
2186 * Since the runqueue lock will be released by the next
2187 * task (which is an invalid locking op but in the case
2188 * of the scheduler it's an obvious special-case), so we
2189 * do an early lockdep release here:
2190 */
2191#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002192 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002193#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 /* Here we just switch the register state and the stack. */
2196 switch_to(prev, next, prev);
2197
Ingo Molnardd41f592007-07-09 18:51:59 +02002198 barrier();
2199 /*
2200 * this_rq must be evaluated again because prev may have moved
2201 * CPUs since it called schedule(), thus the 'rq' on its stack
2202 * frame will be invalid.
2203 */
2204 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205}
2206
2207/*
2208 * nr_running, nr_uninterruptible and nr_context_switches:
2209 *
2210 * externally visible scheduler statistics: current number of runnable
2211 * threads, current number of uninterruptible-sleeping threads, total
2212 * number of context switches performed since bootup.
2213 */
2214unsigned long nr_running(void)
2215{
2216 unsigned long i, sum = 0;
2217
2218 for_each_online_cpu(i)
2219 sum += cpu_rq(i)->nr_running;
2220
2221 return sum;
2222}
2223
2224unsigned long nr_uninterruptible(void)
2225{
2226 unsigned long i, sum = 0;
2227
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002228 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 sum += cpu_rq(i)->nr_uninterruptible;
2230
2231 /*
2232 * Since we read the counters lockless, it might be slightly
2233 * inaccurate. Do not allow it to go below zero though:
2234 */
2235 if (unlikely((long)sum < 0))
2236 sum = 0;
2237
2238 return sum;
2239}
2240
2241unsigned long long nr_context_switches(void)
2242{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002243 int i;
2244 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002246 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 sum += cpu_rq(i)->nr_switches;
2248
2249 return sum;
2250}
2251
2252unsigned long nr_iowait(void)
2253{
2254 unsigned long i, sum = 0;
2255
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002256 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2258
2259 return sum;
2260}
2261
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002262unsigned long nr_active(void)
2263{
2264 unsigned long i, running = 0, uninterruptible = 0;
2265
2266 for_each_online_cpu(i) {
2267 running += cpu_rq(i)->nr_running;
2268 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2269 }
2270
2271 if (unlikely((long)uninterruptible < 0))
2272 uninterruptible = 0;
2273
2274 return running + uninterruptible;
2275}
2276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002278 * Update rq->cpu_load[] statistics. This function is usually called every
2279 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002280 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002281static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002282{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002283 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002284 int i, scale;
2285
2286 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002287
2288 /* Update our load: */
2289 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2290 unsigned long old_load, new_load;
2291
2292 /* scale is effectively 1 << i now, and >> i divides by scale */
2293
2294 old_load = this_rq->cpu_load[i];
2295 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002296 /*
2297 * Round up the averaging division if load is increasing. This
2298 * prevents us from getting stuck on 9 if the load is 10, for
2299 * example.
2300 */
2301 if (new_load > old_load)
2302 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002303 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2304 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002305}
2306
Ingo Molnardd41f592007-07-09 18:51:59 +02002307#ifdef CONFIG_SMP
2308
Ingo Molnar48f24c42006-07-03 00:25:40 -07002309/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 * double_rq_lock - safely lock two runqueues
2311 *
2312 * Note this does not disable interrupts like task_rq_lock,
2313 * you need to do so manually before calling.
2314 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002315static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 __acquires(rq1->lock)
2317 __acquires(rq2->lock)
2318{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002319 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 if (rq1 == rq2) {
2321 spin_lock(&rq1->lock);
2322 __acquire(rq2->lock); /* Fake it out ;) */
2323 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002324 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 spin_lock(&rq1->lock);
2326 spin_lock(&rq2->lock);
2327 } else {
2328 spin_lock(&rq2->lock);
2329 spin_lock(&rq1->lock);
2330 }
2331 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002332 update_rq_clock(rq1);
2333 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
2336/*
2337 * double_rq_unlock - safely unlock two runqueues
2338 *
2339 * Note this does not restore interrupts like task_rq_unlock,
2340 * you need to do so manually after calling.
2341 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002342static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 __releases(rq1->lock)
2344 __releases(rq2->lock)
2345{
2346 spin_unlock(&rq1->lock);
2347 if (rq1 != rq2)
2348 spin_unlock(&rq2->lock);
2349 else
2350 __release(rq2->lock);
2351}
2352
2353/*
2354 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2355 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002356static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 __releases(this_rq->lock)
2358 __acquires(busiest->lock)
2359 __acquires(this_rq->lock)
2360{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002361 int ret = 0;
2362
Kirill Korotaev054b9102006-12-10 02:20:11 -08002363 if (unlikely(!irqs_disabled())) {
2364 /* printk() doesn't work good under rq->lock */
2365 spin_unlock(&this_rq->lock);
2366 BUG_ON(1);
2367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002369 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 spin_unlock(&this_rq->lock);
2371 spin_lock(&busiest->lock);
2372 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002373 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 } else
2375 spin_lock(&busiest->lock);
2376 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002377 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
2380/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 * If dest_cpu is allowed for this process, migrate the task to it.
2382 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002383 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 * the cpu_allowed mask is restored.
2385 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002386static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002388 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002390 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 rq = task_rq_lock(p, &flags);
2393 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2394 || unlikely(cpu_is_offline(dest_cpu)))
2395 goto out;
2396
2397 /* force the process onto the specified CPU */
2398 if (migrate_task(p, dest_cpu, &req)) {
2399 /* Need to wait for migration thread (might exit: take ref). */
2400 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 get_task_struct(mt);
2403 task_rq_unlock(rq, &flags);
2404 wake_up_process(mt);
2405 put_task_struct(mt);
2406 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 return;
2409 }
2410out:
2411 task_rq_unlock(rq, &flags);
2412}
2413
2414/*
Nick Piggin476d1392005-06-25 14:57:29 -07002415 * sched_exec - execve() is a valuable balancing opportunity, because at
2416 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 */
2418void sched_exec(void)
2419{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002421 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002423 if (new_cpu != this_cpu)
2424 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425}
2426
2427/*
2428 * pull_task - move a task from a remote runqueue to the local runqueue.
2429 * Both runqueues must be locked.
2430 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002431static void pull_task(struct rq *src_rq, struct task_struct *p,
2432 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002434 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002436 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 /*
2438 * Note that idle threads have a prio of MAX_PRIO, for this test
2439 * to be always true for them.
2440 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002441 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
2444/*
2445 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2446 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002447static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002448int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002449 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002450 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
2452 /*
2453 * We do not migrate tasks that are:
2454 * 1) running (obviously), or
2455 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2456 * 3) are cache-hot on their current CPU.
2457 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002458 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2459 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002461 }
Nick Piggin81026792005-06-25 14:57:07 -07002462 *all_pinned = 0;
2463
Ingo Molnarcc367732007-10-15 17:00:18 +02002464 if (task_running(rq, p)) {
2465 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002466 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Ingo Molnarda84d962007-10-15 17:00:18 +02002469 /*
2470 * Aggressive migration if:
2471 * 1) task is cache cold, or
2472 * 2) too many balance attempts have failed.
2473 */
2474
Ingo Molnar6bc16652007-10-15 17:00:18 +02002475 if (!task_hot(p, rq->clock, sd) ||
2476 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002477#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002478 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002479 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002480 schedstat_inc(p, se.nr_forced_migrations);
2481 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002482#endif
2483 return 1;
2484 }
2485
Ingo Molnarcc367732007-10-15 17:00:18 +02002486 if (task_hot(p, rq->clock, sd)) {
2487 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002488 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 return 1;
2491}
2492
Peter Williamse1d14842007-10-24 18:23:51 +02002493static unsigned long
2494balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2495 unsigned long max_load_move, struct sched_domain *sd,
2496 enum cpu_idle_type idle, int *all_pinned,
2497 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002498{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002499 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002500 struct task_struct *p;
2501 long rem_load_move = max_load_move;
2502
Peter Williamse1d14842007-10-24 18:23:51 +02002503 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002504 goto out;
2505
2506 pinned = 1;
2507
2508 /*
2509 * Start the load-balancing iterator:
2510 */
2511 p = iterator->start(iterator->arg);
2512next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002513 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002514 goto out;
2515 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002516 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002517 * skip a task if it will be the highest priority task (i.e. smallest
2518 * prio value) on its new queue regardless of its load weight
2519 */
2520 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2521 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002522 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002523 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002524 p = iterator->next(iterator->arg);
2525 goto next;
2526 }
2527
2528 pull_task(busiest, p, this_rq, this_cpu);
2529 pulled++;
2530 rem_load_move -= p->se.load.weight;
2531
2532 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002533 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002534 */
Peter Williamse1d14842007-10-24 18:23:51 +02002535 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002536 if (p->prio < *this_best_prio)
2537 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002538 p = iterator->next(iterator->arg);
2539 goto next;
2540 }
2541out:
2542 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002543 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002544 * so we can safely collect pull_task() stats here rather than
2545 * inside pull_task().
2546 */
2547 schedstat_add(sd, lb_gained[idle], pulled);
2548
2549 if (all_pinned)
2550 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002551
2552 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002553}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555/*
Peter Williams43010652007-08-09 11:16:46 +02002556 * move_tasks tries to move up to max_load_move weighted load from busiest to
2557 * this_rq, as part of a balancing operation within domain "sd".
2558 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 *
2560 * Called with both runqueues locked.
2561 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002562static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002563 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002564 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002565 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002567 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002568 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002569 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Ingo Molnardd41f592007-07-09 18:51:59 +02002571 do {
Peter Williams43010652007-08-09 11:16:46 +02002572 total_load_moved +=
2573 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002574 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002575 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002576 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002577 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Peter Williams43010652007-08-09 11:16:46 +02002579 return total_load_moved > 0;
2580}
2581
Peter Williamse1d14842007-10-24 18:23:51 +02002582static int
2583iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2584 struct sched_domain *sd, enum cpu_idle_type idle,
2585 struct rq_iterator *iterator)
2586{
2587 struct task_struct *p = iterator->start(iterator->arg);
2588 int pinned = 0;
2589
2590 while (p) {
2591 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2592 pull_task(busiest, p, this_rq, this_cpu);
2593 /*
2594 * Right now, this is only the second place pull_task()
2595 * is called, so we can safely collect pull_task()
2596 * stats here rather than inside pull_task().
2597 */
2598 schedstat_inc(sd, lb_gained[idle]);
2599
2600 return 1;
2601 }
2602 p = iterator->next(iterator->arg);
2603 }
2604
2605 return 0;
2606}
2607
Peter Williams43010652007-08-09 11:16:46 +02002608/*
2609 * move_one_task tries to move exactly one task from busiest to this_rq, as
2610 * part of active balancing operations within "domain".
2611 * Returns 1 if successful and 0 otherwise.
2612 *
2613 * Called with both runqueues locked.
2614 */
2615static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2616 struct sched_domain *sd, enum cpu_idle_type idle)
2617{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002618 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002619
2620 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002621 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002622 return 1;
2623
2624 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626
2627/*
2628 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002629 * domain. It calculates and returns the amount of weighted load which
2630 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 */
2632static struct sched_group *
2633find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002634 unsigned long *imbalance, enum cpu_idle_type idle,
2635 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636{
2637 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2638 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002639 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002640 unsigned long busiest_load_per_task, busiest_nr_running;
2641 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002642 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002643#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2644 int power_savings_balance = 1;
2645 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2646 unsigned long min_nr_running = ULONG_MAX;
2647 struct sched_group *group_min = NULL, *group_leader = NULL;
2648#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002651 busiest_load_per_task = busiest_nr_running = 0;
2652 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002653 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002654 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002655 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002656 load_idx = sd->newidle_idx;
2657 else
2658 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002661 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 int local_group;
2663 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002664 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002665 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002666 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668 local_group = cpu_isset(this_cpu, group->cpumask);
2669
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002670 if (local_group)
2671 balance_cpu = first_cpu(group->cpumask);
2672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002674 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002675 max_cpu_load = 0;
2676 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002679 struct rq *rq;
2680
2681 if (!cpu_isset(i, *cpus))
2682 continue;
2683
2684 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002685
Suresh Siddha9439aab2007-07-19 21:28:35 +02002686 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002687 *sd_idle = 0;
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002690 if (local_group) {
2691 if (idle_cpu(i) && !first_idle_cpu) {
2692 first_idle_cpu = 1;
2693 balance_cpu = i;
2694 }
2695
Nick Piggina2000572006-02-10 01:51:02 -08002696 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002697 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002698 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002699 if (load > max_cpu_load)
2700 max_cpu_load = load;
2701 if (min_cpu_load > load)
2702 min_cpu_load = load;
2703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
2705 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002706 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002707 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 }
2709
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002710 /*
2711 * First idle cpu or the first cpu(busiest) in this sched group
2712 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002713 * domains. In the newly idle case, we will allow all the cpu's
2714 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002715 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002716 if (idle != CPU_NEWLY_IDLE && local_group &&
2717 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002718 *balance = 0;
2719 goto ret;
2720 }
2721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002723 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
2725 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002726 avg_load = sg_div_cpu_power(group,
2727 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Ken Chen908a7c12007-10-17 16:55:11 +02002729 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2730 __group_imb = 1;
2731
Eric Dumazet5517d862007-05-08 00:32:57 -07002732 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 if (local_group) {
2735 this_load = avg_load;
2736 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002737 this_nr_running = sum_nr_running;
2738 this_load_per_task = sum_weighted_load;
2739 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002740 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 max_load = avg_load;
2742 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002743 busiest_nr_running = sum_nr_running;
2744 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002745 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002747
2748#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2749 /*
2750 * Busy processors will not participate in power savings
2751 * balance.
2752 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002753 if (idle == CPU_NOT_IDLE ||
2754 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2755 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002756
2757 /*
2758 * If the local group is idle or completely loaded
2759 * no need to do power savings balance at this domain
2760 */
2761 if (local_group && (this_nr_running >= group_capacity ||
2762 !this_nr_running))
2763 power_savings_balance = 0;
2764
Ingo Molnardd41f592007-07-09 18:51:59 +02002765 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002766 * If a group is already running at full capacity or idle,
2767 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002768 */
2769 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002770 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002771 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002772
Ingo Molnardd41f592007-07-09 18:51:59 +02002773 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002774 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002775 * This is the group from where we need to pick up the load
2776 * for saving power
2777 */
2778 if ((sum_nr_running < min_nr_running) ||
2779 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002780 first_cpu(group->cpumask) <
2781 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002782 group_min = group;
2783 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002784 min_load_per_task = sum_weighted_load /
2785 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002786 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002787
Ingo Molnardd41f592007-07-09 18:51:59 +02002788 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002789 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002790 * capacity but still has some space to pick up some load
2791 * from other group and save more power
2792 */
2793 if (sum_nr_running <= group_capacity - 1) {
2794 if (sum_nr_running > leader_nr_running ||
2795 (sum_nr_running == leader_nr_running &&
2796 first_cpu(group->cpumask) >
2797 first_cpu(group_leader->cpumask))) {
2798 group_leader = group;
2799 leader_nr_running = sum_nr_running;
2800 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002801 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002802group_next:
2803#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 group = group->next;
2805 } while (group != sd->groups);
2806
Peter Williams2dd73a42006-06-27 02:54:34 -07002807 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 goto out_balanced;
2809
2810 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2811
2812 if (this_load >= avg_load ||
2813 100*max_load <= sd->imbalance_pct*this_load)
2814 goto out_balanced;
2815
Peter Williams2dd73a42006-06-27 02:54:34 -07002816 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002817 if (group_imb)
2818 busiest_load_per_task = min(busiest_load_per_task, avg_load);
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 /*
2821 * We're trying to get all the cpus to the average_load, so we don't
2822 * want to push ourselves above the average load, nor do we wish to
2823 * reduce the max loaded cpu below the average load, as either of these
2824 * actions would just result in more rebalancing later, and ping-pong
2825 * tasks around. Thus we look for the minimum possible imbalance.
2826 * Negative imbalances (*we* are more loaded than anyone else) will
2827 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002828 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 * appear as very large values with unsigned longs.
2830 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002831 if (max_load <= busiest_load_per_task)
2832 goto out_balanced;
2833
2834 /*
2835 * In the presence of smp nice balancing, certain scenarios can have
2836 * max load less than avg load(as we skip the groups at or below
2837 * its cpu_power, while calculating max_load..)
2838 */
2839 if (max_load < avg_load) {
2840 *imbalance = 0;
2841 goto small_imbalance;
2842 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002843
2844 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002845 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002848 *imbalance = min(max_pull * busiest->__cpu_power,
2849 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 / SCHED_LOAD_SCALE;
2851
Peter Williams2dd73a42006-06-27 02:54:34 -07002852 /*
2853 * if *imbalance is less than the average load per runnable task
2854 * there is no gaurantee that any tasks will be moved so we'll have
2855 * a think about bumping its value to force at least one task to be
2856 * moved
2857 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002858 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002859 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002860 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Peter Williams2dd73a42006-06-27 02:54:34 -07002862small_imbalance:
2863 pwr_move = pwr_now = 0;
2864 imbn = 2;
2865 if (this_nr_running) {
2866 this_load_per_task /= this_nr_running;
2867 if (busiest_load_per_task > this_load_per_task)
2868 imbn = 1;
2869 } else
2870 this_load_per_task = SCHED_LOAD_SCALE;
2871
Ingo Molnardd41f592007-07-09 18:51:59 +02002872 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2873 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002874 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 return busiest;
2876 }
2877
2878 /*
2879 * OK, we don't have enough imbalance to justify moving tasks,
2880 * however we may be able to increase total CPU power used by
2881 * moving them.
2882 */
2883
Eric Dumazet5517d862007-05-08 00:32:57 -07002884 pwr_now += busiest->__cpu_power *
2885 min(busiest_load_per_task, max_load);
2886 pwr_now += this->__cpu_power *
2887 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 pwr_now /= SCHED_LOAD_SCALE;
2889
2890 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002891 tmp = sg_div_cpu_power(busiest,
2892 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002894 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002895 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002898 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002899 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002900 tmp = sg_div_cpu_power(this,
2901 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002903 tmp = sg_div_cpu_power(this,
2904 busiest_load_per_task * SCHED_LOAD_SCALE);
2905 pwr_move += this->__cpu_power *
2906 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 pwr_move /= SCHED_LOAD_SCALE;
2908
2909 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002910 if (pwr_move > pwr_now)
2911 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 }
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 return busiest;
2915
2916out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002917#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002918 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002919 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002921 if (this == group_leader && group_leader != group_min) {
2922 *imbalance = min_load_per_task;
2923 return group_min;
2924 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002925#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002926ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 *imbalance = 0;
2928 return NULL;
2929}
2930
2931/*
2932 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2933 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002934static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002935find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002936 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002938 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002939 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 int i;
2941
2942 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002943 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002944
2945 if (!cpu_isset(i, *cpus))
2946 continue;
2947
Ingo Molnar48f24c42006-07-03 00:25:40 -07002948 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002949 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Ingo Molnardd41f592007-07-09 18:51:59 +02002951 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002952 continue;
2953
Ingo Molnardd41f592007-07-09 18:51:59 +02002954 if (wl > max_load) {
2955 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002956 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 }
2958 }
2959
2960 return busiest;
2961}
2962
2963/*
Nick Piggin77391d72005-06-25 14:57:30 -07002964 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2965 * so long as it is large enough.
2966 */
2967#define MAX_PINNED_INTERVAL 512
2968
2969/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2971 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002973static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002974 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002975 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Peter Williams43010652007-08-09 11:16:46 +02002977 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002980 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002981 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002982 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002983
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002984 /*
2985 * When power savings policy is enabled for the parent domain, idle
2986 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002987 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002988 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002989 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002990 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002991 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002992 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Ingo Molnar2d723762007-10-15 17:00:12 +02002994 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002996redo:
2997 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002998 &cpus, balance);
2999
Chen, Kenneth W06066712006-12-10 02:20:35 -08003000 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003001 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 if (!group) {
3004 schedstat_inc(sd, lb_nobusyg[idle]);
3005 goto out_balanced;
3006 }
3007
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003008 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 if (!busiest) {
3010 schedstat_inc(sd, lb_nobusyq[idle]);
3011 goto out_balanced;
3012 }
3013
Nick Piggindb935db2005-06-25 14:57:11 -07003014 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016 schedstat_add(sd, lb_imbalance[idle], imbalance);
3017
Peter Williams43010652007-08-09 11:16:46 +02003018 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 if (busiest->nr_running > 1) {
3020 /*
3021 * Attempt to move tasks. If find_busiest_group has found
3022 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003023 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 * correctly treated as an imbalance.
3025 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003026 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003027 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003028 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003029 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003030 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003031 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003032
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003033 /*
3034 * some other cpu did the load balance for us.
3035 */
Peter Williams43010652007-08-09 11:16:46 +02003036 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003037 resched_cpu(this_cpu);
3038
Nick Piggin81026792005-06-25 14:57:07 -07003039 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003040 if (unlikely(all_pinned)) {
3041 cpu_clear(cpu_of(busiest), cpus);
3042 if (!cpus_empty(cpus))
3043 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003044 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
Nick Piggin81026792005-06-25 14:57:07 -07003047
Peter Williams43010652007-08-09 11:16:46 +02003048 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 schedstat_inc(sd, lb_failed[idle]);
3050 sd->nr_balance_failed++;
3051
3052 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003054 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003055
3056 /* don't kick the migration_thread, if the curr
3057 * task on busiest cpu can't be moved to this_cpu
3058 */
3059 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003060 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003061 all_pinned = 1;
3062 goto out_one_pinned;
3063 }
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 if (!busiest->active_balance) {
3066 busiest->active_balance = 1;
3067 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003068 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003070 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003071 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 wake_up_process(busiest->migration_thread);
3073
3074 /*
3075 * We've kicked active balancing, reset the failure
3076 * counter.
3077 */
Nick Piggin39507452005-06-25 14:57:09 -07003078 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 }
Nick Piggin81026792005-06-25 14:57:07 -07003080 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 sd->nr_balance_failed = 0;
3082
Nick Piggin81026792005-06-25 14:57:07 -07003083 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 /* We were unbalanced, so reset the balancing interval */
3085 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003086 } else {
3087 /*
3088 * If we've begun active balancing, start to back off. This
3089 * case may not be covered by the all_pinned logic if there
3090 * is only 1 task on the busy runqueue (because we don't call
3091 * move_tasks).
3092 */
3093 if (sd->balance_interval < sd->max_interval)
3094 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
3096
Peter Williams43010652007-08-09 11:16:46 +02003097 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003098 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003099 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003100 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
3102out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 schedstat_inc(sd, lb_balanced[idle]);
3104
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003105 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003106
3107out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003109 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3110 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 sd->balance_interval *= 2;
3112
Ingo Molnar48f24c42006-07-03 00:25:40 -07003113 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003114 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003115 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 return 0;
3117}
3118
3119/*
3120 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3121 * tasks if there is an imbalance.
3122 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003123 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 * this_rq is locked.
3125 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003126static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003127load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128{
3129 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003130 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003132 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003133 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003134 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003135 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07003136
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003137 /*
3138 * When power savings policy is enabled for the parent domain, idle
3139 * sibling can pick up load irrespective of busy siblings. In this case,
3140 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003141 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003142 */
3143 if (sd->flags & SD_SHARE_CPUPOWER &&
3144 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003145 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Ingo Molnar2d723762007-10-15 17:00:12 +02003147 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003148redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003149 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003150 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003152 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003153 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 }
3155
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003156 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003157 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003158 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003159 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003160 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 }
3162
Nick Piggindb935db2005-06-25 14:57:11 -07003163 BUG_ON(busiest == this_rq);
3164
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003165 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003166
Peter Williams43010652007-08-09 11:16:46 +02003167 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003168 if (busiest->nr_running > 1) {
3169 /* Attempt to move tasks */
3170 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003171 /* this_rq->clock is already updated */
3172 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003173 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003174 imbalance, sd, CPU_NEWLY_IDLE,
3175 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003176 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003177
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003178 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003179 cpu_clear(cpu_of(busiest), cpus);
3180 if (!cpus_empty(cpus))
3181 goto redo;
3182 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003183 }
3184
Peter Williams43010652007-08-09 11:16:46 +02003185 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003186 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003187 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3188 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003189 return -1;
3190 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003191 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Peter Williams43010652007-08-09 11:16:46 +02003193 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003194
3195out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003196 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003197 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003198 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003199 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003200 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003201
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003202 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203}
3204
3205/*
3206 * idle_balance is called by schedule() if this_cpu is about to become
3207 * idle. Attempts to pull tasks from other CPUs.
3208 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003209static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210{
3211 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003212 int pulled_task = -1;
3213 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
3215 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003216 unsigned long interval;
3217
3218 if (!(sd->flags & SD_LOAD_BALANCE))
3219 continue;
3220
3221 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003222 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003223 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003224 this_rq, sd);
3225
3226 interval = msecs_to_jiffies(sd->balance_interval);
3227 if (time_after(next_balance, sd->last_balance + interval))
3228 next_balance = sd->last_balance + interval;
3229 if (pulled_task)
3230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003232 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003233 /*
3234 * We are going idle. next_balance may be set based on
3235 * a busy processor. So reset next_balance.
3236 */
3237 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239}
3240
3241/*
3242 * active_load_balance is run by migration threads. It pushes running tasks
3243 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3244 * running on each physical CPU where possible, and avoids physical /
3245 * logical imbalances.
3246 *
3247 * Called with busiest_rq locked.
3248 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003249static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250{
Nick Piggin39507452005-06-25 14:57:09 -07003251 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003252 struct sched_domain *sd;
3253 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003254
Ingo Molnar48f24c42006-07-03 00:25:40 -07003255 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003256 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003257 return;
3258
3259 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
3261 /*
Nick Piggin39507452005-06-25 14:57:09 -07003262 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003263 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003264 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 */
Nick Piggin39507452005-06-25 14:57:09 -07003266 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Nick Piggin39507452005-06-25 14:57:09 -07003268 /* move a task from busiest_rq to target_rq */
3269 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003270 update_rq_clock(busiest_rq);
3271 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Nick Piggin39507452005-06-25 14:57:09 -07003273 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003274 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003275 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003276 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003277 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Ingo Molnar48f24c42006-07-03 00:25:40 -07003280 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003281 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Peter Williams43010652007-08-09 11:16:46 +02003283 if (move_one_task(target_rq, target_cpu, busiest_rq,
3284 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003285 schedstat_inc(sd, alb_pushed);
3286 else
3287 schedstat_inc(sd, alb_failed);
3288 }
Nick Piggin39507452005-06-25 14:57:09 -07003289 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003292#ifdef CONFIG_NO_HZ
3293static struct {
3294 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003295 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003296} nohz ____cacheline_aligned = {
3297 .load_balancer = ATOMIC_INIT(-1),
3298 .cpu_mask = CPU_MASK_NONE,
3299};
3300
Christoph Lameter7835b982006-12-10 02:20:22 -08003301/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003302 * This routine will try to nominate the ilb (idle load balancing)
3303 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3304 * load balancing on behalf of all those cpus. If all the cpus in the system
3305 * go into this tickless mode, then there will be no ilb owner (as there is
3306 * no need for one) and all the cpus will sleep till the next wakeup event
3307 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003308 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003309 * For the ilb owner, tick is not stopped. And this tick will be used
3310 * for idle load balancing. ilb owner will still be part of
3311 * nohz.cpu_mask..
3312 *
3313 * While stopping the tick, this cpu will become the ilb owner if there
3314 * is no other owner. And will be the owner till that cpu becomes busy
3315 * or if all cpus in the system stop their ticks at which point
3316 * there is no need for ilb owner.
3317 *
3318 * When the ilb owner becomes busy, it nominates another owner, during the
3319 * next busy scheduler_tick()
3320 */
3321int select_nohz_load_balancer(int stop_tick)
3322{
3323 int cpu = smp_processor_id();
3324
3325 if (stop_tick) {
3326 cpu_set(cpu, nohz.cpu_mask);
3327 cpu_rq(cpu)->in_nohz_recently = 1;
3328
3329 /*
3330 * If we are going offline and still the leader, give up!
3331 */
3332 if (cpu_is_offline(cpu) &&
3333 atomic_read(&nohz.load_balancer) == cpu) {
3334 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3335 BUG();
3336 return 0;
3337 }
3338
3339 /* time for ilb owner also to sleep */
3340 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3341 if (atomic_read(&nohz.load_balancer) == cpu)
3342 atomic_set(&nohz.load_balancer, -1);
3343 return 0;
3344 }
3345
3346 if (atomic_read(&nohz.load_balancer) == -1) {
3347 /* make me the ilb owner */
3348 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3349 return 1;
3350 } else if (atomic_read(&nohz.load_balancer) == cpu)
3351 return 1;
3352 } else {
3353 if (!cpu_isset(cpu, nohz.cpu_mask))
3354 return 0;
3355
3356 cpu_clear(cpu, nohz.cpu_mask);
3357
3358 if (atomic_read(&nohz.load_balancer) == cpu)
3359 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3360 BUG();
3361 }
3362 return 0;
3363}
3364#endif
3365
3366static DEFINE_SPINLOCK(balancing);
3367
3368/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003369 * It checks each scheduling domain to see if it is due to be balanced,
3370 * and initiates a balancing operation if so.
3371 *
3372 * Balancing parameters are set up in arch_init_sched_domains.
3373 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003374static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003375{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003376 int balance = 1;
3377 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003378 unsigned long interval;
3379 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003380 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003381 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003382 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003384 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 if (!(sd->flags & SD_LOAD_BALANCE))
3386 continue;
3387
3388 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003389 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 interval *= sd->busy_factor;
3391
3392 /* scale ms to jiffies */
3393 interval = msecs_to_jiffies(interval);
3394 if (unlikely(!interval))
3395 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003396 if (interval > HZ*NR_CPUS/10)
3397 interval = HZ*NR_CPUS/10;
3398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Christoph Lameter08c183f2006-12-10 02:20:29 -08003400 if (sd->flags & SD_SERIALIZE) {
3401 if (!spin_trylock(&balancing))
3402 goto out;
3403 }
3404
Christoph Lameterc9819f42006-12-10 02:20:25 -08003405 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003406 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003407 /*
3408 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003409 * longer idle, or one of our SMT siblings is
3410 * not idle.
3411 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003412 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003414 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003416 if (sd->flags & SD_SERIALIZE)
3417 spin_unlock(&balancing);
3418out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003419 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003420 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003421 update_next_balance = 1;
3422 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003423
3424 /*
3425 * Stop the load balance at this level. There is another
3426 * CPU in our sched group which is doing load balancing more
3427 * actively.
3428 */
3429 if (!balance)
3430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003432
3433 /*
3434 * next_balance will be updated only when there is a need.
3435 * When the cpu is attached to null domain for ex, it will not be
3436 * updated.
3437 */
3438 if (likely(update_next_balance))
3439 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003440}
3441
3442/*
3443 * run_rebalance_domains is triggered when needed from the scheduler tick.
3444 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3445 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3446 */
3447static void run_rebalance_domains(struct softirq_action *h)
3448{
Ingo Molnardd41f592007-07-09 18:51:59 +02003449 int this_cpu = smp_processor_id();
3450 struct rq *this_rq = cpu_rq(this_cpu);
3451 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3452 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003453
Ingo Molnardd41f592007-07-09 18:51:59 +02003454 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003455
3456#ifdef CONFIG_NO_HZ
3457 /*
3458 * If this cpu is the owner for idle load balancing, then do the
3459 * balancing on behalf of the other idle cpus whose ticks are
3460 * stopped.
3461 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003462 if (this_rq->idle_at_tick &&
3463 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003464 cpumask_t cpus = nohz.cpu_mask;
3465 struct rq *rq;
3466 int balance_cpu;
3467
Ingo Molnardd41f592007-07-09 18:51:59 +02003468 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003469 for_each_cpu_mask(balance_cpu, cpus) {
3470 /*
3471 * If this cpu gets work to do, stop the load balancing
3472 * work being done for other cpus. Next load
3473 * balancing owner will pick it up.
3474 */
3475 if (need_resched())
3476 break;
3477
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003478 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003479
3480 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003481 if (time_after(this_rq->next_balance, rq->next_balance))
3482 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003483 }
3484 }
3485#endif
3486}
3487
3488/*
3489 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3490 *
3491 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3492 * idle load balancing owner or decide to stop the periodic load balancing,
3493 * if the whole system is idle.
3494 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003495static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003496{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003497#ifdef CONFIG_NO_HZ
3498 /*
3499 * If we were in the nohz mode recently and busy at the current
3500 * scheduler tick, then check if we need to nominate new idle
3501 * load balancer.
3502 */
3503 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3504 rq->in_nohz_recently = 0;
3505
3506 if (atomic_read(&nohz.load_balancer) == cpu) {
3507 cpu_clear(cpu, nohz.cpu_mask);
3508 atomic_set(&nohz.load_balancer, -1);
3509 }
3510
3511 if (atomic_read(&nohz.load_balancer) == -1) {
3512 /*
3513 * simple selection for now: Nominate the
3514 * first cpu in the nohz list to be the next
3515 * ilb owner.
3516 *
3517 * TBD: Traverse the sched domains and nominate
3518 * the nearest cpu in the nohz.cpu_mask.
3519 */
3520 int ilb = first_cpu(nohz.cpu_mask);
3521
3522 if (ilb != NR_CPUS)
3523 resched_cpu(ilb);
3524 }
3525 }
3526
3527 /*
3528 * If this cpu is idle and doing idle load balancing for all the
3529 * cpus with ticks stopped, is it time for that to stop?
3530 */
3531 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3532 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3533 resched_cpu(cpu);
3534 return;
3535 }
3536
3537 /*
3538 * If this cpu is idle and the idle load balancing is done by
3539 * someone else, then no need raise the SCHED_SOFTIRQ
3540 */
3541 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3542 cpu_isset(cpu, nohz.cpu_mask))
3543 return;
3544#endif
3545 if (time_after_eq(jiffies, rq->next_balance))
3546 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547}
Ingo Molnardd41f592007-07-09 18:51:59 +02003548
3549#else /* CONFIG_SMP */
3550
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551/*
3552 * on UP we do not need to balance between CPUs:
3553 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003554static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555{
3556}
Ingo Molnardd41f592007-07-09 18:51:59 +02003557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558#endif
3559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560DEFINE_PER_CPU(struct kernel_stat, kstat);
3561
3562EXPORT_PER_CPU_SYMBOL(kstat);
3563
3564/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003565 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3566 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003568unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003571 u64 ns, delta_exec;
3572 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003573
Ingo Molnar41b86e92007-07-09 18:51:58 +02003574 rq = task_rq_lock(p, &flags);
3575 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003576 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003577 update_rq_clock(rq);
3578 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003579 if ((s64)delta_exec > 0)
3580 ns += delta_exec;
3581 }
3582 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003583
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 return ns;
3585}
3586
3587/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 * Account user cpu time to a process.
3589 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 * @cputime: the cpu time spent in user space since the last update
3591 */
3592void account_user_time(struct task_struct *p, cputime_t cputime)
3593{
3594 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3595 cputime64_t tmp;
3596
3597 p->utime = cputime_add(p->utime, cputime);
3598
3599 /* Add user time to cpustat. */
3600 tmp = cputime_to_cputime64(cputime);
3601 if (TASK_NICE(p) > 0)
3602 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3603 else
3604 cpustat->user = cputime64_add(cpustat->user, tmp);
3605}
3606
3607/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003608 * Account guest cpu time to a process.
3609 * @p: the process that the cpu time gets accounted to
3610 * @cputime: the cpu time spent in virtual machine since the last update
3611 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003612static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003613{
3614 cputime64_t tmp;
3615 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3616
3617 tmp = cputime_to_cputime64(cputime);
3618
3619 p->utime = cputime_add(p->utime, cputime);
3620 p->gtime = cputime_add(p->gtime, cputime);
3621
3622 cpustat->user = cputime64_add(cpustat->user, tmp);
3623 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3624}
3625
3626/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003627 * Account scaled user cpu time to a process.
3628 * @p: the process that the cpu time gets accounted to
3629 * @cputime: the cpu time spent in user space since the last update
3630 */
3631void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3632{
3633 p->utimescaled = cputime_add(p->utimescaled, cputime);
3634}
3635
3636/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 * Account system cpu time to a process.
3638 * @p: the process that the cpu time gets accounted to
3639 * @hardirq_offset: the offset to subtract from hardirq_count()
3640 * @cputime: the cpu time spent in kernel space since the last update
3641 */
3642void account_system_time(struct task_struct *p, int hardirq_offset,
3643 cputime_t cputime)
3644{
3645 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003646 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 cputime64_t tmp;
3648
Christian Borntraeger97783852007-11-15 20:57:39 +01003649 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3650 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 p->stime = cputime_add(p->stime, cputime);
3653
3654 /* Add system time to cpustat. */
3655 tmp = cputime_to_cputime64(cputime);
3656 if (hardirq_count() - hardirq_offset)
3657 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3658 else if (softirq_count())
3659 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003660 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003662 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3664 else
3665 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3666 /* Account for system time used */
3667 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668}
3669
3670/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003671 * Account scaled system cpu time to a process.
3672 * @p: the process that the cpu time gets accounted to
3673 * @hardirq_offset: the offset to subtract from hardirq_count()
3674 * @cputime: the cpu time spent in kernel space since the last update
3675 */
3676void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3677{
3678 p->stimescaled = cputime_add(p->stimescaled, cputime);
3679}
3680
3681/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 * Account for involuntary wait time.
3683 * @p: the process from which the cpu time has been stolen
3684 * @steal: the cpu time spent in involuntary wait
3685 */
3686void account_steal_time(struct task_struct *p, cputime_t steal)
3687{
3688 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3689 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003690 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692 if (p == rq->idle) {
3693 p->stime = cputime_add(p->stime, steal);
3694 if (atomic_read(&rq->nr_iowait) > 0)
3695 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3696 else
3697 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003698 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3700}
3701
Christoph Lameter7835b982006-12-10 02:20:22 -08003702/*
3703 * This function gets called by the timer code, with HZ frequency.
3704 * We call it with interrupts disabled.
3705 *
3706 * It also gets called by the fork code, when changing the parent's
3707 * timeslices.
3708 */
3709void scheduler_tick(void)
3710{
Christoph Lameter7835b982006-12-10 02:20:22 -08003711 int cpu = smp_processor_id();
3712 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003713 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003714 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003715
Ingo Molnardd41f592007-07-09 18:51:59 +02003716 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003717 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003718 /*
3719 * Let rq->clock advance by at least TICK_NSEC:
3720 */
3721 if (unlikely(rq->clock < next_tick))
3722 rq->clock = next_tick;
3723 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003724 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003725 curr->sched_class->task_tick(rq, curr, 0);
3726 update_sched_rt_period(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003727 spin_unlock(&rq->lock);
3728
Christoph Lametere418e1c2006-12-10 02:20:23 -08003729#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003730 rq->idle_at_tick = idle_cpu(cpu);
3731 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003732#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733}
3734
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3736
3737void fastcall add_preempt_count(int val)
3738{
3739 /*
3740 * Underflow?
3741 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003742 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3743 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 preempt_count() += val;
3745 /*
3746 * Spinlock count overflowing soon?
3747 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003748 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3749 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750}
3751EXPORT_SYMBOL(add_preempt_count);
3752
3753void fastcall sub_preempt_count(int val)
3754{
3755 /*
3756 * Underflow?
3757 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003758 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3759 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 /*
3761 * Is the spinlock portion underflowing?
3762 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003763 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3764 !(preempt_count() & PREEMPT_MASK)))
3765 return;
3766
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 preempt_count() -= val;
3768}
3769EXPORT_SYMBOL(sub_preempt_count);
3770
3771#endif
3772
3773/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003774 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003776static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777{
Satyam Sharma838225b2007-10-24 18:23:50 +02003778 struct pt_regs *regs = get_irq_regs();
3779
3780 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3781 prev->comm, prev->pid, preempt_count());
3782
Ingo Molnardd41f592007-07-09 18:51:59 +02003783 debug_show_held_locks(prev);
3784 if (irqs_disabled())
3785 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003786
3787 if (regs)
3788 show_regs(regs);
3789 else
3790 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003791}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
Ingo Molnardd41f592007-07-09 18:51:59 +02003793/*
3794 * Various schedule()-time debugging checks and statistics:
3795 */
3796static inline void schedule_debug(struct task_struct *prev)
3797{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003799 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 * schedule() atomically, we ignore that path for now.
3801 * Otherwise, whine if we are scheduling when we should not be.
3802 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003803 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3804 __schedule_bug(prev);
3805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3807
Ingo Molnar2d723762007-10-15 17:00:12 +02003808 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003809#ifdef CONFIG_SCHEDSTATS
3810 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003811 schedstat_inc(this_rq(), bkl_count);
3812 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003813 }
3814#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003815}
3816
3817/*
3818 * Pick up the highest-prio task:
3819 */
3820static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003821pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003822{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003823 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003824 struct task_struct *p;
3825
3826 /*
3827 * Optimization: we know that if all tasks are in
3828 * the fair class we can call that function directly:
3829 */
3830 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003831 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003832 if (likely(p))
3833 return p;
3834 }
3835
3836 class = sched_class_highest;
3837 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003838 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003839 if (p)
3840 return p;
3841 /*
3842 * Will never be NULL as the idle class always
3843 * returns a non-NULL p:
3844 */
3845 class = class->next;
3846 }
3847}
3848
3849/*
3850 * schedule() is the main scheduler function.
3851 */
3852asmlinkage void __sched schedule(void)
3853{
3854 struct task_struct *prev, *next;
3855 long *switch_count;
3856 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003857 int cpu;
3858
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859need_resched:
3860 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003861 cpu = smp_processor_id();
3862 rq = cpu_rq(cpu);
3863 rcu_qsctr_inc(cpu);
3864 prev = rq->curr;
3865 switch_count = &prev->nivcsw;
3866
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 release_kernel_lock(prev);
3868need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869
Ingo Molnardd41f592007-07-09 18:51:59 +02003870 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003872 hrtick_clear(rq);
3873
Ingo Molnar1e819952007-10-15 17:00:13 +02003874 /*
3875 * Do the rq-clock update outside the rq lock:
3876 */
3877 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003878 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003879 spin_lock(&rq->lock);
3880 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Ingo Molnardd41f592007-07-09 18:51:59 +02003882 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3883 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3884 unlikely(signal_pending(prev)))) {
3885 prev->state = TASK_RUNNING;
3886 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003887 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003888 }
3889 switch_count = &prev->nvcsw;
3890 }
3891
Steven Rostedt9a897c52008-01-25 21:08:22 +01003892#ifdef CONFIG_SMP
3893 if (prev->sched_class->pre_schedule)
3894 prev->sched_class->pre_schedule(rq, prev);
3895#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01003896
Ingo Molnardd41f592007-07-09 18:51:59 +02003897 if (unlikely(!rq->nr_running))
3898 idle_balance(cpu, rq);
3899
Ingo Molnar31ee5292007-08-09 11:16:49 +02003900 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003901 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 rq->nr_switches++;
3907 rq->curr = next;
3908 ++*switch_count;
3909
Ingo Molnardd41f592007-07-09 18:51:59 +02003910 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003911 /*
3912 * the context switch might have flipped the stack from under
3913 * us, hence refresh the local variables.
3914 */
3915 cpu = smp_processor_id();
3916 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 } else
3918 spin_unlock_irq(&rq->lock);
3919
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003920 hrtick_set(rq);
3921
3922 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003924
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 preempt_enable_no_resched();
3926 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3927 goto need_resched;
3928}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929EXPORT_SYMBOL(schedule);
3930
3931#ifdef CONFIG_PREEMPT
3932/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003933 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003934 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 * occur there and call schedule directly.
3936 */
3937asmlinkage void __sched preempt_schedule(void)
3938{
3939 struct thread_info *ti = current_thread_info();
3940#ifdef CONFIG_PREEMPT_BKL
3941 struct task_struct *task = current;
3942 int saved_lock_depth;
3943#endif
3944 /*
3945 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003946 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003948 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 return;
3950
Andi Kleen3a5c3592007-10-15 17:00:14 +02003951 do {
3952 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Andi Kleen3a5c3592007-10-15 17:00:14 +02003954 /*
3955 * We keep the big kernel semaphore locked, but we
3956 * clear ->lock_depth so that schedule() doesnt
3957 * auto-release the semaphore:
3958 */
3959#ifdef CONFIG_PREEMPT_BKL
3960 saved_lock_depth = task->lock_depth;
3961 task->lock_depth = -1;
3962#endif
3963 schedule();
3964#ifdef CONFIG_PREEMPT_BKL
3965 task->lock_depth = saved_lock_depth;
3966#endif
3967 sub_preempt_count(PREEMPT_ACTIVE);
3968
3969 /*
3970 * Check again in case we missed a preemption opportunity
3971 * between schedule and now.
3972 */
3973 barrier();
3974 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976EXPORT_SYMBOL(preempt_schedule);
3977
3978/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003979 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 * off of irq context.
3981 * Note, that this is called and return with irqs disabled. This will
3982 * protect us against recursive calling from irq.
3983 */
3984asmlinkage void __sched preempt_schedule_irq(void)
3985{
3986 struct thread_info *ti = current_thread_info();
3987#ifdef CONFIG_PREEMPT_BKL
3988 struct task_struct *task = current;
3989 int saved_lock_depth;
3990#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003991 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 BUG_ON(ti->preempt_count || !irqs_disabled());
3993
Andi Kleen3a5c3592007-10-15 17:00:14 +02003994 do {
3995 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Andi Kleen3a5c3592007-10-15 17:00:14 +02003997 /*
3998 * We keep the big kernel semaphore locked, but we
3999 * clear ->lock_depth so that schedule() doesnt
4000 * auto-release the semaphore:
4001 */
4002#ifdef CONFIG_PREEMPT_BKL
4003 saved_lock_depth = task->lock_depth;
4004 task->lock_depth = -1;
4005#endif
4006 local_irq_enable();
4007 schedule();
4008 local_irq_disable();
4009#ifdef CONFIG_PREEMPT_BKL
4010 task->lock_depth = saved_lock_depth;
4011#endif
4012 sub_preempt_count(PREEMPT_ACTIVE);
4013
4014 /*
4015 * Check again in case we missed a preemption opportunity
4016 * between schedule and now.
4017 */
4018 barrier();
4019 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020}
4021
4022#endif /* CONFIG_PREEMPT */
4023
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004024int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4025 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004027 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029EXPORT_SYMBOL(default_wake_function);
4030
4031/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004032 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4033 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 * number) then we wake all the non-exclusive tasks and one exclusive task.
4035 *
4036 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004037 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4039 */
4040static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4041 int nr_exclusive, int sync, void *key)
4042{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004043 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004045 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004046 unsigned flags = curr->flags;
4047
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004049 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 break;
4051 }
4052}
4053
4054/**
4055 * __wake_up - wake up threads blocked on a waitqueue.
4056 * @q: the waitqueue
4057 * @mode: which threads
4058 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004059 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 */
4061void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004062 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063{
4064 unsigned long flags;
4065
4066 spin_lock_irqsave(&q->lock, flags);
4067 __wake_up_common(q, mode, nr_exclusive, 0, key);
4068 spin_unlock_irqrestore(&q->lock, flags);
4069}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070EXPORT_SYMBOL(__wake_up);
4071
4072/*
4073 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4074 */
4075void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
4076{
4077 __wake_up_common(q, mode, 1, 0, NULL);
4078}
4079
4080/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004081 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 * @q: the waitqueue
4083 * @mode: which threads
4084 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4085 *
4086 * The sync wakeup differs that the waker knows that it will schedule
4087 * away soon, so while the target thread will be woken up, it will not
4088 * be migrated to another CPU - ie. the two threads are 'synchronized'
4089 * with each other. This can prevent needless bouncing between CPUs.
4090 *
4091 * On UP it can prevent extra preemption.
4092 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004093void fastcall
4094__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095{
4096 unsigned long flags;
4097 int sync = 1;
4098
4099 if (unlikely(!q))
4100 return;
4101
4102 if (unlikely(!nr_exclusive))
4103 sync = 0;
4104
4105 spin_lock_irqsave(&q->lock, flags);
4106 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4107 spin_unlock_irqrestore(&q->lock, flags);
4108}
4109EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4110
Ingo Molnarb15136e2007-10-24 18:23:48 +02004111void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112{
4113 unsigned long flags;
4114
4115 spin_lock_irqsave(&x->wait.lock, flags);
4116 x->done++;
4117 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
4118 1, 0, NULL);
4119 spin_unlock_irqrestore(&x->wait.lock, flags);
4120}
4121EXPORT_SYMBOL(complete);
4122
Ingo Molnarb15136e2007-10-24 18:23:48 +02004123void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124{
4125 unsigned long flags;
4126
4127 spin_lock_irqsave(&x->wait.lock, flags);
4128 x->done += UINT_MAX/2;
4129 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
4130 0, 0, NULL);
4131 spin_unlock_irqrestore(&x->wait.lock, flags);
4132}
4133EXPORT_SYMBOL(complete_all);
4134
Andi Kleen8cbbe862007-10-15 17:00:14 +02004135static inline long __sched
4136do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 if (!x->done) {
4139 DECLARE_WAITQUEUE(wait, current);
4140
4141 wait.flags |= WQ_FLAG_EXCLUSIVE;
4142 __add_wait_queue_tail(&x->wait, &wait);
4143 do {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004144 if (state == TASK_INTERRUPTIBLE &&
4145 signal_pending(current)) {
4146 __remove_wait_queue(&x->wait, &wait);
4147 return -ERESTARTSYS;
4148 }
4149 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004151 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004153 if (!timeout) {
4154 __remove_wait_queue(&x->wait, &wait);
4155 return timeout;
4156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 } while (!x->done);
4158 __remove_wait_queue(&x->wait, &wait);
4159 }
4160 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004161 return timeout;
4162}
4163
4164static long __sched
4165wait_for_common(struct completion *x, long timeout, int state)
4166{
4167 might_sleep();
4168
4169 spin_lock_irq(&x->wait.lock);
4170 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004172 return timeout;
4173}
4174
Ingo Molnarb15136e2007-10-24 18:23:48 +02004175void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004176{
4177 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178}
4179EXPORT_SYMBOL(wait_for_completion);
4180
Ingo Molnarb15136e2007-10-24 18:23:48 +02004181unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4183{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004184 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
4186EXPORT_SYMBOL(wait_for_completion_timeout);
4187
Andi Kleen8cbbe862007-10-15 17:00:14 +02004188int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189{
Andi Kleen51e97992007-10-18 21:32:55 +02004190 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4191 if (t == -ERESTARTSYS)
4192 return t;
4193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194}
4195EXPORT_SYMBOL(wait_for_completion_interruptible);
4196
Ingo Molnarb15136e2007-10-24 18:23:48 +02004197unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198wait_for_completion_interruptible_timeout(struct completion *x,
4199 unsigned long timeout)
4200{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004201 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202}
4203EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4204
Andi Kleen8cbbe862007-10-15 17:00:14 +02004205static long __sched
4206sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004207{
4208 unsigned long flags;
4209 wait_queue_t wait;
4210
4211 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Andi Kleen8cbbe862007-10-15 17:00:14 +02004213 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Andi Kleen8cbbe862007-10-15 17:00:14 +02004215 spin_lock_irqsave(&q->lock, flags);
4216 __add_wait_queue(q, &wait);
4217 spin_unlock(&q->lock);
4218 timeout = schedule_timeout(timeout);
4219 spin_lock_irq(&q->lock);
4220 __remove_wait_queue(q, &wait);
4221 spin_unlock_irqrestore(&q->lock, flags);
4222
4223 return timeout;
4224}
4225
4226void __sched interruptible_sleep_on(wait_queue_head_t *q)
4227{
4228 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230EXPORT_SYMBOL(interruptible_sleep_on);
4231
Ingo Molnar0fec1712007-07-09 18:52:01 +02004232long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004233interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004235 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4238
Ingo Molnar0fec1712007-07-09 18:52:01 +02004239void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004241 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243EXPORT_SYMBOL(sleep_on);
4244
Ingo Molnar0fec1712007-07-09 18:52:01 +02004245long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004247 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249EXPORT_SYMBOL(sleep_on_timeout);
4250
Ingo Molnarb29739f2006-06-27 02:54:51 -07004251#ifdef CONFIG_RT_MUTEXES
4252
4253/*
4254 * rt_mutex_setprio - set the current priority of a task
4255 * @p: task
4256 * @prio: prio value (kernel-internal form)
4257 *
4258 * This function changes the 'effective' priority of a task. It does
4259 * not touch ->normal_prio like __setscheduler().
4260 *
4261 * Used by the rt_mutex code to implement priority inheritance logic.
4262 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004263void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004264{
4265 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004266 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004267 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004268 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004269
4270 BUG_ON(prio < 0 || prio > MAX_PRIO);
4271
4272 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004273 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004274
Andrew Mortond5f9f942007-05-08 20:27:06 -07004275 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004276 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004277 running = task_current(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004278 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004279 dequeue_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004280 if (running)
4281 p->sched_class->put_prev_task(rq, p);
4282 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004283
4284 if (rt_prio(prio))
4285 p->sched_class = &rt_sched_class;
4286 else
4287 p->sched_class = &fair_sched_class;
4288
Ingo Molnarb29739f2006-06-27 02:54:51 -07004289 p->prio = prio;
4290
Ingo Molnardd41f592007-07-09 18:51:59 +02004291 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004292 if (running)
4293 p->sched_class->set_curr_task(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01004294
Ingo Molnar8159f872007-08-09 11:16:49 +02004295 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004296
4297 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004298 }
4299 task_rq_unlock(rq, &flags);
4300}
4301
4302#endif
4303
Ingo Molnar36c8b582006-07-03 00:25:41 -07004304void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305{
Ingo Molnardd41f592007-07-09 18:51:59 +02004306 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004308 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
4310 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4311 return;
4312 /*
4313 * We have to be careful, if called from sys_setpriority(),
4314 * the task might be in the middle of scheduling on another CPU.
4315 */
4316 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004317 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 /*
4319 * The RT priorities are set via sched_setscheduler(), but we still
4320 * allow the 'normal' nice value to be set - but as expected
4321 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004322 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004324 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 p->static_prio = NICE_TO_PRIO(nice);
4326 goto out_unlock;
4327 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004328 on_rq = p->se.on_rq;
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +01004329 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004330 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004333 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004334 old_prio = p->prio;
4335 p->prio = effective_prio(p);
4336 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
Ingo Molnardd41f592007-07-09 18:51:59 +02004338 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004339 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004341 * If the task increased its priority or is running and
4342 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004344 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 resched_task(rq->curr);
4346 }
4347out_unlock:
4348 task_rq_unlock(rq, &flags);
4349}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350EXPORT_SYMBOL(set_user_nice);
4351
Matt Mackalle43379f2005-05-01 08:59:00 -07004352/*
4353 * can_nice - check if a task can reduce its nice value
4354 * @p: task
4355 * @nice: nice value
4356 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004357int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004358{
Matt Mackall024f4742005-08-18 11:24:19 -07004359 /* convert nice value [19,-20] to rlimit style value [1,40] */
4360 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004361
Matt Mackalle43379f2005-05-01 08:59:00 -07004362 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4363 capable(CAP_SYS_NICE));
4364}
4365
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366#ifdef __ARCH_WANT_SYS_NICE
4367
4368/*
4369 * sys_nice - change the priority of the current process.
4370 * @increment: priority increment
4371 *
4372 * sys_setpriority is a more generic, but much slower function that
4373 * does similar things.
4374 */
4375asmlinkage long sys_nice(int increment)
4376{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004377 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
4379 /*
4380 * Setpriority might change our priority at the same moment.
4381 * We don't have to worry. Conceptually one call occurs first
4382 * and we have a single winner.
4383 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004384 if (increment < -40)
4385 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 if (increment > 40)
4387 increment = 40;
4388
4389 nice = PRIO_TO_NICE(current->static_prio) + increment;
4390 if (nice < -20)
4391 nice = -20;
4392 if (nice > 19)
4393 nice = 19;
4394
Matt Mackalle43379f2005-05-01 08:59:00 -07004395 if (increment < 0 && !can_nice(current, nice))
4396 return -EPERM;
4397
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 retval = security_task_setnice(current, nice);
4399 if (retval)
4400 return retval;
4401
4402 set_user_nice(current, nice);
4403 return 0;
4404}
4405
4406#endif
4407
4408/**
4409 * task_prio - return the priority value of a given task.
4410 * @p: the task in question.
4411 *
4412 * This is the priority value as seen by users in /proc.
4413 * RT tasks are offset by -200. Normal tasks are centered
4414 * around 0, value goes from -16 to +15.
4415 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004416int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417{
4418 return p->prio - MAX_RT_PRIO;
4419}
4420
4421/**
4422 * task_nice - return the nice value of a given task.
4423 * @p: the task in question.
4424 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004425int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426{
4427 return TASK_NICE(p);
4428}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
4431/**
4432 * idle_cpu - is a given cpu idle currently?
4433 * @cpu: the processor in question.
4434 */
4435int idle_cpu(int cpu)
4436{
4437 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4438}
4439
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440/**
4441 * idle_task - return the idle task for a given cpu.
4442 * @cpu: the processor in question.
4443 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004444struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445{
4446 return cpu_rq(cpu)->idle;
4447}
4448
4449/**
4450 * find_process_by_pid - find a process with a matching PID value.
4451 * @pid: the pid in question.
4452 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004453static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004455 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456}
4457
4458/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004459static void
4460__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461{
Ingo Molnardd41f592007-07-09 18:51:59 +02004462 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004463
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004465 switch (p->policy) {
4466 case SCHED_NORMAL:
4467 case SCHED_BATCH:
4468 case SCHED_IDLE:
4469 p->sched_class = &fair_sched_class;
4470 break;
4471 case SCHED_FIFO:
4472 case SCHED_RR:
4473 p->sched_class = &rt_sched_class;
4474 break;
4475 }
4476
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004478 p->normal_prio = normal_prio(p);
4479 /* we are holding p->pi_lock already */
4480 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004481 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482}
4483
4484/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004485 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 * @p: the task in question.
4487 * @policy: new policy.
4488 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004489 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004490 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004492int sched_setscheduler(struct task_struct *p, int policy,
4493 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004495 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004497 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004498 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
Steven Rostedt66e53932006-06-27 02:54:44 -07004500 /* may grab non-irq protected spin_locks */
4501 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502recheck:
4503 /* double check policy once rq lock held */
4504 if (policy < 0)
4505 policy = oldpolicy = p->policy;
4506 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004507 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4508 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004509 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 /*
4511 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004512 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4513 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 */
4515 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004516 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004517 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004519 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 return -EINVAL;
4521
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004522 /*
4523 * Allow unprivileged RT tasks to decrease priority:
4524 */
4525 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004526 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004527 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004528
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004529 if (!lock_task_sighand(p, &flags))
4530 return -ESRCH;
4531 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4532 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004533
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004534 /* can't set/change the rt policy */
4535 if (policy != p->policy && !rlim_rtprio)
4536 return -EPERM;
4537
4538 /* can't increase priority */
4539 if (param->sched_priority > p->rt_priority &&
4540 param->sched_priority > rlim_rtprio)
4541 return -EPERM;
4542 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004543 /*
4544 * Like positive nice levels, dont allow tasks to
4545 * move out of SCHED_IDLE either:
4546 */
4547 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4548 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004549
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004550 /* can't change other user's priorities */
4551 if ((current->euid != p->euid) &&
4552 (current->euid != p->uid))
4553 return -EPERM;
4554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556 retval = security_task_setscheduler(p, policy, param);
4557 if (retval)
4558 return retval;
4559 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004560 * make sure no PI-waiters arrive (or leave) while we are
4561 * changing the priority of the task:
4562 */
4563 spin_lock_irqsave(&p->pi_lock, flags);
4564 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 * To be able to change p->policy safely, the apropriate
4566 * runqueue lock must be held.
4567 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004568 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 /* recheck policy now with rq lock held */
4570 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4571 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004572 __task_rq_unlock(rq);
4573 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 goto recheck;
4575 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004576 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004577 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004578 running = task_current(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004579 if (on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004580 deactivate_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004581 if (running)
4582 p->sched_class->put_prev_task(rq, p);
4583 }
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004586 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004587
Ingo Molnardd41f592007-07-09 18:51:59 +02004588 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004589 if (running)
4590 p->sched_class->set_curr_task(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01004591
Ingo Molnardd41f592007-07-09 18:51:59 +02004592 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004593
4594 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004596 __task_rq_unlock(rq);
4597 spin_unlock_irqrestore(&p->pi_lock, flags);
4598
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004599 rt_mutex_adjust_pi(p);
4600
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 return 0;
4602}
4603EXPORT_SYMBOL_GPL(sched_setscheduler);
4604
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004605static int
4606do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 struct sched_param lparam;
4609 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004610 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
4612 if (!param || pid < 0)
4613 return -EINVAL;
4614 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4615 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004616
4617 rcu_read_lock();
4618 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004620 if (p != NULL)
4621 retval = sched_setscheduler(p, policy, &lparam);
4622 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004623
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 return retval;
4625}
4626
4627/**
4628 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4629 * @pid: the pid in question.
4630 * @policy: new policy.
4631 * @param: structure containing the new RT priority.
4632 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004633asmlinkage long
4634sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635{
Jason Baronc21761f2006-01-18 17:43:03 -08004636 /* negative values for policy are not valid */
4637 if (policy < 0)
4638 return -EINVAL;
4639
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 return do_sched_setscheduler(pid, policy, param);
4641}
4642
4643/**
4644 * sys_sched_setparam - set/change the RT priority of a thread
4645 * @pid: the pid in question.
4646 * @param: structure containing the new RT priority.
4647 */
4648asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4649{
4650 return do_sched_setscheduler(pid, -1, param);
4651}
4652
4653/**
4654 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4655 * @pid: the pid in question.
4656 */
4657asmlinkage long sys_sched_getscheduler(pid_t pid)
4658{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004659 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004660 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
4662 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004663 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
4665 retval = -ESRCH;
4666 read_lock(&tasklist_lock);
4667 p = find_process_by_pid(pid);
4668 if (p) {
4669 retval = security_task_getscheduler(p);
4670 if (!retval)
4671 retval = p->policy;
4672 }
4673 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 return retval;
4675}
4676
4677/**
4678 * sys_sched_getscheduler - get the RT priority of a thread
4679 * @pid: the pid in question.
4680 * @param: structure containing the RT priority.
4681 */
4682asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4683{
4684 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004685 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004686 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687
4688 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004689 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
4691 read_lock(&tasklist_lock);
4692 p = find_process_by_pid(pid);
4693 retval = -ESRCH;
4694 if (!p)
4695 goto out_unlock;
4696
4697 retval = security_task_getscheduler(p);
4698 if (retval)
4699 goto out_unlock;
4700
4701 lp.sched_priority = p->rt_priority;
4702 read_unlock(&tasklist_lock);
4703
4704 /*
4705 * This one might sleep, we cannot do it with a spinlock held ...
4706 */
4707 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4708
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 return retval;
4710
4711out_unlock:
4712 read_unlock(&tasklist_lock);
4713 return retval;
4714}
4715
4716long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4717{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004719 struct task_struct *p;
4720 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004722 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 read_lock(&tasklist_lock);
4724
4725 p = find_process_by_pid(pid);
4726 if (!p) {
4727 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004728 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 return -ESRCH;
4730 }
4731
4732 /*
4733 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004734 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 * usage count and then drop tasklist_lock.
4736 */
4737 get_task_struct(p);
4738 read_unlock(&tasklist_lock);
4739
4740 retval = -EPERM;
4741 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4742 !capable(CAP_SYS_NICE))
4743 goto out_unlock;
4744
David Quigleye7834f82006-06-23 02:03:59 -07004745 retval = security_task_setscheduler(p, 0, NULL);
4746 if (retval)
4747 goto out_unlock;
4748
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 cpus_allowed = cpuset_cpus_allowed(p);
4750 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004751 again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 retval = set_cpus_allowed(p, new_mask);
4753
Paul Menage8707d8b2007-10-18 23:40:22 -07004754 if (!retval) {
4755 cpus_allowed = cpuset_cpus_allowed(p);
4756 if (!cpus_subset(new_mask, cpus_allowed)) {
4757 /*
4758 * We must have raced with a concurrent cpuset
4759 * update. Just reset the cpus_allowed to the
4760 * cpuset's cpus_allowed
4761 */
4762 new_mask = cpus_allowed;
4763 goto again;
4764 }
4765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766out_unlock:
4767 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004768 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 return retval;
4770}
4771
4772static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4773 cpumask_t *new_mask)
4774{
4775 if (len < sizeof(cpumask_t)) {
4776 memset(new_mask, 0, sizeof(cpumask_t));
4777 } else if (len > sizeof(cpumask_t)) {
4778 len = sizeof(cpumask_t);
4779 }
4780 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4781}
4782
4783/**
4784 * sys_sched_setaffinity - set the cpu affinity of a process
4785 * @pid: pid of the process
4786 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4787 * @user_mask_ptr: user-space pointer to the new cpu mask
4788 */
4789asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4790 unsigned long __user *user_mask_ptr)
4791{
4792 cpumask_t new_mask;
4793 int retval;
4794
4795 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4796 if (retval)
4797 return retval;
4798
4799 return sched_setaffinity(pid, new_mask);
4800}
4801
4802/*
4803 * Represents all cpu's present in the system
4804 * In systems capable of hotplug, this map could dynamically grow
4805 * as new cpu's are detected in the system via any platform specific
4806 * method, such as ACPI for e.g.
4807 */
4808
Andi Kleen4cef0c62006-01-11 22:44:57 +01004809cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810EXPORT_SYMBOL(cpu_present_map);
4811
4812#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004813cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004814EXPORT_SYMBOL(cpu_online_map);
4815
Andi Kleen4cef0c62006-01-11 22:44:57 +01004816cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004817EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818#endif
4819
4820long sched_getaffinity(pid_t pid, cpumask_t *mask)
4821{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004822 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004825 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 read_lock(&tasklist_lock);
4827
4828 retval = -ESRCH;
4829 p = find_process_by_pid(pid);
4830 if (!p)
4831 goto out_unlock;
4832
David Quigleye7834f82006-06-23 02:03:59 -07004833 retval = security_task_getscheduler(p);
4834 if (retval)
4835 goto out_unlock;
4836
Jack Steiner2f7016d2006-02-01 03:05:18 -08004837 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
4839out_unlock:
4840 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004841 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842
Ulrich Drepper9531b622007-08-09 11:16:46 +02004843 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844}
4845
4846/**
4847 * sys_sched_getaffinity - get the cpu affinity of a process
4848 * @pid: pid of the process
4849 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4850 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4851 */
4852asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4853 unsigned long __user *user_mask_ptr)
4854{
4855 int ret;
4856 cpumask_t mask;
4857
4858 if (len < sizeof(cpumask_t))
4859 return -EINVAL;
4860
4861 ret = sched_getaffinity(pid, &mask);
4862 if (ret < 0)
4863 return ret;
4864
4865 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4866 return -EFAULT;
4867
4868 return sizeof(cpumask_t);
4869}
4870
4871/**
4872 * sys_sched_yield - yield the current processor to other threads.
4873 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004874 * This function yields the current CPU to other tasks. If there are no
4875 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876 */
4877asmlinkage long sys_sched_yield(void)
4878{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004879 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
Ingo Molnar2d723762007-10-15 17:00:12 +02004881 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004882 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
4884 /*
4885 * Since we are going to call schedule() anyway, there's
4886 * no need to preempt or enable interrupts:
4887 */
4888 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004889 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 _raw_spin_unlock(&rq->lock);
4891 preempt_enable_no_resched();
4892
4893 schedule();
4894
4895 return 0;
4896}
4897
Andrew Mortone7b38402006-06-30 01:56:00 -07004898static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004900#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4901 __might_sleep(__FILE__, __LINE__);
4902#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004903 /*
4904 * The BKS might be reacquired before we have dropped
4905 * PREEMPT_ACTIVE, which could trigger a second
4906 * cond_resched() call.
4907 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 do {
4909 add_preempt_count(PREEMPT_ACTIVE);
4910 schedule();
4911 sub_preempt_count(PREEMPT_ACTIVE);
4912 } while (need_resched());
4913}
4914
Herbert Xu02b67cc32008-01-25 21:08:28 +01004915#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
4916int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917{
Ingo Molnar94142322006-12-29 16:48:13 -08004918 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4919 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 __cond_resched();
4921 return 1;
4922 }
4923 return 0;
4924}
Herbert Xu02b67cc32008-01-25 21:08:28 +01004925EXPORT_SYMBOL(_cond_resched);
4926#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927
4928/*
4929 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4930 * call schedule, and on return reacquire the lock.
4931 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004932 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 * operations here to prevent schedule() from being called twice (once via
4934 * spin_unlock(), once by hand).
4935 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004936int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937{
Jan Kara6df3cec2005-06-13 15:52:32 -07004938 int ret = 0;
4939
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 if (need_lockbreak(lock)) {
4941 spin_unlock(lock);
4942 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004943 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 spin_lock(lock);
4945 }
Ingo Molnar94142322006-12-29 16:48:13 -08004946 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004947 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 _raw_spin_unlock(lock);
4949 preempt_enable_no_resched();
4950 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004951 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004954 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956EXPORT_SYMBOL(cond_resched_lock);
4957
4958int __sched cond_resched_softirq(void)
4959{
4960 BUG_ON(!in_softirq());
4961
Ingo Molnar94142322006-12-29 16:48:13 -08004962 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004963 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 __cond_resched();
4965 local_bh_disable();
4966 return 1;
4967 }
4968 return 0;
4969}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970EXPORT_SYMBOL(cond_resched_softirq);
4971
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972/**
4973 * yield - yield the current processor to other threads.
4974 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004975 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 * thread runnable and calls sys_sched_yield().
4977 */
4978void __sched yield(void)
4979{
4980 set_current_state(TASK_RUNNING);
4981 sys_sched_yield();
4982}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983EXPORT_SYMBOL(yield);
4984
4985/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004986 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 * that process accounting knows that this is a task in IO wait state.
4988 *
4989 * But don't do that if it is a deliberate, throttling IO wait (this task
4990 * has set its backing_dev_info: the queue against which it should throttle)
4991 */
4992void __sched io_schedule(void)
4993{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004994 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004996 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 atomic_inc(&rq->nr_iowait);
4998 schedule();
4999 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005000 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002EXPORT_SYMBOL(io_schedule);
5003
5004long __sched io_schedule_timeout(long timeout)
5005{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005006 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007 long ret;
5008
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005009 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 atomic_inc(&rq->nr_iowait);
5011 ret = schedule_timeout(timeout);
5012 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005013 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 return ret;
5015}
5016
5017/**
5018 * sys_sched_get_priority_max - return maximum RT priority.
5019 * @policy: scheduling class.
5020 *
5021 * this syscall returns the maximum rt_priority that can be used
5022 * by a given scheduling class.
5023 */
5024asmlinkage long sys_sched_get_priority_max(int policy)
5025{
5026 int ret = -EINVAL;
5027
5028 switch (policy) {
5029 case SCHED_FIFO:
5030 case SCHED_RR:
5031 ret = MAX_USER_RT_PRIO-1;
5032 break;
5033 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005034 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005035 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 ret = 0;
5037 break;
5038 }
5039 return ret;
5040}
5041
5042/**
5043 * sys_sched_get_priority_min - return minimum RT priority.
5044 * @policy: scheduling class.
5045 *
5046 * this syscall returns the minimum rt_priority that can be used
5047 * by a given scheduling class.
5048 */
5049asmlinkage long sys_sched_get_priority_min(int policy)
5050{
5051 int ret = -EINVAL;
5052
5053 switch (policy) {
5054 case SCHED_FIFO:
5055 case SCHED_RR:
5056 ret = 1;
5057 break;
5058 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005059 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005060 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 ret = 0;
5062 }
5063 return ret;
5064}
5065
5066/**
5067 * sys_sched_rr_get_interval - return the default timeslice of a process.
5068 * @pid: pid of the process.
5069 * @interval: userspace pointer to the timeslice value.
5070 *
5071 * this syscall writes the default timeslice value of a given process
5072 * into the user-space timespec buffer. A value of '0' means infinity.
5073 */
5074asmlinkage
5075long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5076{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005077 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005078 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005079 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081
5082 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005083 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
5085 retval = -ESRCH;
5086 read_lock(&tasklist_lock);
5087 p = find_process_by_pid(pid);
5088 if (!p)
5089 goto out_unlock;
5090
5091 retval = security_task_getscheduler(p);
5092 if (retval)
5093 goto out_unlock;
5094
Ingo Molnar77034932007-12-04 17:04:39 +01005095 /*
5096 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5097 * tasks that are on an otherwise idle runqueue:
5098 */
5099 time_slice = 0;
5100 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005101 time_slice = DEF_TIMESLICE;
Ingo Molnar77034932007-12-04 17:04:39 +01005102 } else {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005103 struct sched_entity *se = &p->se;
5104 unsigned long flags;
5105 struct rq *rq;
5106
5107 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005108 if (rq->cfs.load.weight)
5109 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005110 task_rq_unlock(rq, &flags);
5111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005113 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005116
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117out_unlock:
5118 read_unlock(&tasklist_lock);
5119 return retval;
5120}
5121
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005122static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005123
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005124void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005127 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005130 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005131 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005132#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005134 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005136 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137#else
5138 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005139 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005141 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142#endif
5143#ifdef CONFIG_DEBUG_STACK_USAGE
5144 {
Al Viro10ebffd2005-11-13 16:06:56 -08005145 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 while (!*n)
5147 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005148 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 }
5150#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005151 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005152 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153
5154 if (state != TASK_RUNNING)
5155 show_stack(p, NULL);
5156}
5157
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005158void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005160 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
Ingo Molnar4bd77322007-07-11 21:21:47 +02005162#if BITS_PER_LONG == 32
5163 printk(KERN_INFO
5164 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005166 printk(KERN_INFO
5167 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168#endif
5169 read_lock(&tasklist_lock);
5170 do_each_thread(g, p) {
5171 /*
5172 * reset the NMI-timeout, listing all files on a slow
5173 * console might take alot of time:
5174 */
5175 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005176 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005177 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 } while_each_thread(g, p);
5179
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005180 touch_all_softlockup_watchdogs();
5181
Ingo Molnardd41f592007-07-09 18:51:59 +02005182#ifdef CONFIG_SCHED_DEBUG
5183 sysrq_sched_debug_show();
5184#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005186 /*
5187 * Only show locks if all tasks are dumped:
5188 */
5189 if (state_filter == -1)
5190 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191}
5192
Ingo Molnar1df21052007-07-09 18:51:58 +02005193void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5194{
Ingo Molnardd41f592007-07-09 18:51:59 +02005195 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005196}
5197
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005198/**
5199 * init_idle - set up an idle thread for a given CPU
5200 * @idle: task in question
5201 * @cpu: cpu the idle task belongs to
5202 *
5203 * NOTE: this function does not set the idle thread's NEED_RESCHED
5204 * flag, to make booting more robust.
5205 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005206void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005208 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 unsigned long flags;
5210
Ingo Molnardd41f592007-07-09 18:51:59 +02005211 __sched_fork(idle);
5212 idle->se.exec_start = sched_clock();
5213
Ingo Molnarb29739f2006-06-27 02:54:51 -07005214 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005216 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217
5218 spin_lock_irqsave(&rq->lock, flags);
5219 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005220#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5221 idle->oncpu = 1;
5222#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 spin_unlock_irqrestore(&rq->lock, flags);
5224
5225 /* Set the preempt count _outside_ the spinlocks! */
5226#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f52005-11-13 16:06:55 -08005227 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228#else
Al Viroa1261f52005-11-13 16:06:55 -08005229 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005231 /*
5232 * The idle tasks have their own, simple scheduling class:
5233 */
5234 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235}
5236
5237/*
5238 * In a system that switches off the HZ timer nohz_cpu_mask
5239 * indicates which cpus entered this state. This is used
5240 * in the rcu update to wait only for active cpus. For system
5241 * which do not switch off the HZ timer nohz_cpu_mask should
5242 * always be CPU_MASK_NONE.
5243 */
5244cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5245
Ingo Molnar19978ca2007-11-09 22:39:38 +01005246/*
5247 * Increase the granularity value when there are more CPUs,
5248 * because with more CPUs the 'effective latency' as visible
5249 * to users decreases. But the relationship is not linear,
5250 * so pick a second-best guess by going with the log2 of the
5251 * number of CPUs.
5252 *
5253 * This idea comes from the SD scheduler of Con Kolivas:
5254 */
5255static inline void sched_init_granularity(void)
5256{
5257 unsigned int factor = 1 + ilog2(num_online_cpus());
5258 const unsigned long limit = 200000000;
5259
5260 sysctl_sched_min_granularity *= factor;
5261 if (sysctl_sched_min_granularity > limit)
5262 sysctl_sched_min_granularity = limit;
5263
5264 sysctl_sched_latency *= factor;
5265 if (sysctl_sched_latency > limit)
5266 sysctl_sched_latency = limit;
5267
5268 sysctl_sched_wakeup_granularity *= factor;
5269 sysctl_sched_batch_wakeup_granularity *= factor;
5270}
5271
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272#ifdef CONFIG_SMP
5273/*
5274 * This is how migration works:
5275 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005276 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 * runqueue and wake up that CPU's migration thread.
5278 * 2) we down() the locked semaphore => thread blocks.
5279 * 3) migration thread wakes up (implicitly it forces the migrated
5280 * thread off the CPU)
5281 * 4) it gets the migration request and checks whether the migrated
5282 * task is still in the wrong runqueue.
5283 * 5) if it's in the wrong runqueue then the migration thread removes
5284 * it and puts it into the right queue.
5285 * 6) migration thread up()s the semaphore.
5286 * 7) we wake up and the migration is done.
5287 */
5288
5289/*
5290 * Change a given task's CPU affinity. Migrate the thread to a
5291 * proper CPU and schedule it away if the CPU it's executing on
5292 * is removed from the allowed bitmask.
5293 *
5294 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005295 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 * call is not atomic; no spinlocks may be held.
5297 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005298int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005300 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005302 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005303 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
5305 rq = task_rq_lock(p, &flags);
5306 if (!cpus_intersects(new_mask, cpu_online_map)) {
5307 ret = -EINVAL;
5308 goto out;
5309 }
5310
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005311 if (p->sched_class->set_cpus_allowed)
5312 p->sched_class->set_cpus_allowed(p, &new_mask);
5313 else {
Ingo Molnar0eab9142008-01-25 21:08:19 +01005314 p->cpus_allowed = new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01005315 p->rt.nr_cpus_allowed = cpus_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005316 }
5317
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 /* Can the task run on the task's current CPU? If so, we're done */
5319 if (cpu_isset(task_cpu(p), new_mask))
5320 goto out;
5321
5322 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5323 /* Need help from migration thread: drop lock and wait. */
5324 task_rq_unlock(rq, &flags);
5325 wake_up_process(rq->migration_thread);
5326 wait_for_completion(&req.done);
5327 tlb_migrate_finish(p->mm);
5328 return 0;
5329 }
5330out:
5331 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 return ret;
5334}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335EXPORT_SYMBOL_GPL(set_cpus_allowed);
5336
5337/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005338 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 * this because either it can't run here any more (set_cpus_allowed()
5340 * away from this CPU, or CPU going down), or because we're
5341 * attempting to rebalance this task on exec (sched_exec).
5342 *
5343 * So we race with normal scheduler movements, but that's OK, as long
5344 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005345 *
5346 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005348static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005350 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005351 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352
5353 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005354 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
5356 rq_src = cpu_rq(src_cpu);
5357 rq_dest = cpu_rq(dest_cpu);
5358
5359 double_rq_lock(rq_src, rq_dest);
5360 /* Already moved. */
5361 if (task_cpu(p) != src_cpu)
5362 goto out;
5363 /* Affinity changed (again). */
5364 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5365 goto out;
5366
Ingo Molnardd41f592007-07-09 18:51:59 +02005367 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005368 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005369 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005370
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005372 if (on_rq) {
5373 activate_task(rq_dest, p, 0);
5374 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005376 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377out:
5378 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005379 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380}
5381
5382/*
5383 * migration_thread - this is a highprio system thread that performs
5384 * thread migration by bumping thread off CPU then 'pushing' onto
5385 * another runqueue.
5386 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005387static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005390 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
5392 rq = cpu_rq(cpu);
5393 BUG_ON(rq->migration_thread != current);
5394
5395 set_current_state(TASK_INTERRUPTIBLE);
5396 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005397 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400 spin_lock_irq(&rq->lock);
5401
5402 if (cpu_is_offline(cpu)) {
5403 spin_unlock_irq(&rq->lock);
5404 goto wait_to_die;
5405 }
5406
5407 if (rq->active_balance) {
5408 active_load_balance(rq, cpu);
5409 rq->active_balance = 0;
5410 }
5411
5412 head = &rq->migration_queue;
5413
5414 if (list_empty(head)) {
5415 spin_unlock_irq(&rq->lock);
5416 schedule();
5417 set_current_state(TASK_INTERRUPTIBLE);
5418 continue;
5419 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005420 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 list_del_init(head->next);
5422
Nick Piggin674311d2005-06-25 14:57:27 -07005423 spin_unlock(&rq->lock);
5424 __migrate_task(req->task, cpu, req->dest_cpu);
5425 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
5427 complete(&req->done);
5428 }
5429 __set_current_state(TASK_RUNNING);
5430 return 0;
5431
5432wait_to_die:
5433 /* Wait for kthread_stop */
5434 set_current_state(TASK_INTERRUPTIBLE);
5435 while (!kthread_should_stop()) {
5436 schedule();
5437 set_current_state(TASK_INTERRUPTIBLE);
5438 }
5439 __set_current_state(TASK_RUNNING);
5440 return 0;
5441}
5442
5443#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005444
5445static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5446{
5447 int ret;
5448
5449 local_irq_disable();
5450 ret = __migrate_task(p, src_cpu, dest_cpu);
5451 local_irq_enable();
5452 return ret;
5453}
5454
Kirill Korotaev054b9102006-12-10 02:20:11 -08005455/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005456 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005457 * NOTE: interrupts should be disabled by the caller
5458 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005459static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005461 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005463 struct rq *rq;
5464 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465
Andi Kleen3a5c3592007-10-15 17:00:14 +02005466 do {
5467 /* On same node? */
5468 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5469 cpus_and(mask, mask, p->cpus_allowed);
5470 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471
Andi Kleen3a5c3592007-10-15 17:00:14 +02005472 /* On any allowed CPU? */
5473 if (dest_cpu == NR_CPUS)
5474 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Andi Kleen3a5c3592007-10-15 17:00:14 +02005476 /* No more Mr. Nice Guy. */
5477 if (dest_cpu == NR_CPUS) {
Cliff Wickman470fd642007-10-18 23:40:46 -07005478 cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p);
5479 /*
5480 * Try to stay on the same cpuset, where the
5481 * current cpuset may be a subset of all cpus.
5482 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005483 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005484 * called within calls to cpuset_lock/cpuset_unlock.
5485 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005486 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005487 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005488 dest_cpu = any_online_cpu(p->cpus_allowed);
5489 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Andi Kleen3a5c3592007-10-15 17:00:14 +02005491 /*
5492 * Don't tell them about moving exiting tasks or
5493 * kernel threads (both mm NULL), since they never
5494 * leave kernel.
5495 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005496 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005497 printk(KERN_INFO "process %d (%s) no "
5498 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005499 task_pid_nr(p), p->comm, dead_cpu);
5500 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005501 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005502 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503}
5504
5505/*
5506 * While a dead CPU has no uninterruptible tasks queued at this point,
5507 * it might still have a nonzero ->nr_uninterruptible counter, because
5508 * for performance reasons the counter is not stricly tracking tasks to
5509 * their home CPUs. So we just add the counter to another CPU's counter,
5510 * to keep the global sum constant after CPU-down:
5511 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005512static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005514 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 unsigned long flags;
5516
5517 local_irq_save(flags);
5518 double_rq_lock(rq_src, rq_dest);
5519 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5520 rq_src->nr_uninterruptible = 0;
5521 double_rq_unlock(rq_src, rq_dest);
5522 local_irq_restore(flags);
5523}
5524
5525/* Run through task list and migrate tasks from the dead cpu. */
5526static void migrate_live_tasks(int src_cpu)
5527{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005528 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005530 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531
Ingo Molnar48f24c42006-07-03 00:25:40 -07005532 do_each_thread(t, p) {
5533 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534 continue;
5535
Ingo Molnar48f24c42006-07-03 00:25:40 -07005536 if (task_cpu(p) == src_cpu)
5537 move_task_off_dead_cpu(src_cpu, p);
5538 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005540 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541}
5542
Ingo Molnardd41f592007-07-09 18:51:59 +02005543/*
5544 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005545 * It does so by boosting its priority to highest possible.
5546 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547 */
5548void sched_idle_next(void)
5549{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005550 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005551 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 struct task_struct *p = rq->idle;
5553 unsigned long flags;
5554
5555 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005556 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557
Ingo Molnar48f24c42006-07-03 00:25:40 -07005558 /*
5559 * Strictly not necessary since rest of the CPUs are stopped by now
5560 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561 */
5562 spin_lock_irqsave(&rq->lock, flags);
5563
Ingo Molnardd41f592007-07-09 18:51:59 +02005564 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005565
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005566 update_rq_clock(rq);
5567 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
5569 spin_unlock_irqrestore(&rq->lock, flags);
5570}
5571
Ingo Molnar48f24c42006-07-03 00:25:40 -07005572/*
5573 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 * offline.
5575 */
5576void idle_task_exit(void)
5577{
5578 struct mm_struct *mm = current->active_mm;
5579
5580 BUG_ON(cpu_online(smp_processor_id()));
5581
5582 if (mm != &init_mm)
5583 switch_mm(mm, &init_mm, current);
5584 mmdrop(mm);
5585}
5586
Kirill Korotaev054b9102006-12-10 02:20:11 -08005587/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005588static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005590 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591
5592 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005593 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
5595 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005596 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597
Ingo Molnar48f24c42006-07-03 00:25:40 -07005598 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599
5600 /*
5601 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005602 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 * fine.
5604 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005605 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005606 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005607 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
Ingo Molnar48f24c42006-07-03 00:25:40 -07005609 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610}
5611
5612/* release_task() removes task from tasklist, so we won't find dead tasks. */
5613static void migrate_dead_tasks(unsigned int dead_cpu)
5614{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005615 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005616 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
Ingo Molnardd41f592007-07-09 18:51:59 +02005618 for ( ; ; ) {
5619 if (!rq->nr_running)
5620 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005621 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005622 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005623 if (!next)
5624 break;
5625 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005626
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627 }
5628}
5629#endif /* CONFIG_HOTPLUG_CPU */
5630
Nick Piggine692ab52007-07-26 13:40:43 +02005631#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5632
5633static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005634 {
5635 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005636 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005637 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005638 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005639};
5640
5641static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005642 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005643 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005644 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005645 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005646 .child = sd_ctl_dir,
5647 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005648 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005649};
5650
5651static struct ctl_table *sd_alloc_ctl_entry(int n)
5652{
5653 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005654 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005655
Nick Piggine692ab52007-07-26 13:40:43 +02005656 return entry;
5657}
5658
Milton Miller6382bc92007-10-15 17:00:19 +02005659static void sd_free_ctl_entry(struct ctl_table **tablep)
5660{
Milton Millercd790072007-10-17 16:55:11 +02005661 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005662
Milton Millercd790072007-10-17 16:55:11 +02005663 /*
5664 * In the intermediate directories, both the child directory and
5665 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005666 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02005667 * static strings and all have proc handlers.
5668 */
5669 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005670 if (entry->child)
5671 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02005672 if (entry->proc_handler == NULL)
5673 kfree(entry->procname);
5674 }
Milton Miller6382bc92007-10-15 17:00:19 +02005675
5676 kfree(*tablep);
5677 *tablep = NULL;
5678}
5679
Nick Piggine692ab52007-07-26 13:40:43 +02005680static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005681set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005682 const char *procname, void *data, int maxlen,
5683 mode_t mode, proc_handler *proc_handler)
5684{
Nick Piggine692ab52007-07-26 13:40:43 +02005685 entry->procname = procname;
5686 entry->data = data;
5687 entry->maxlen = maxlen;
5688 entry->mode = mode;
5689 entry->proc_handler = proc_handler;
5690}
5691
5692static struct ctl_table *
5693sd_alloc_ctl_domain_table(struct sched_domain *sd)
5694{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005695 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005696
Milton Millerad1cdc12007-10-15 17:00:19 +02005697 if (table == NULL)
5698 return NULL;
5699
Alexey Dobriyane0361852007-08-09 11:16:46 +02005700 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005701 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005702 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005703 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005704 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005705 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005706 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005707 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005708 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005709 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005710 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005711 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005712 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005713 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005714 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005715 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005716 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005717 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005718 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005719 &sd->cache_nice_tries,
5720 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005721 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005722 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005723 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005724
5725 return table;
5726}
5727
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005728static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005729{
5730 struct ctl_table *entry, *table;
5731 struct sched_domain *sd;
5732 int domain_num = 0, i;
5733 char buf[32];
5734
5735 for_each_domain(cpu, sd)
5736 domain_num++;
5737 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005738 if (table == NULL)
5739 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005740
5741 i = 0;
5742 for_each_domain(cpu, sd) {
5743 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005744 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005745 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005746 entry->child = sd_alloc_ctl_domain_table(sd);
5747 entry++;
5748 i++;
5749 }
5750 return table;
5751}
5752
5753static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005754static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005755{
5756 int i, cpu_num = num_online_cpus();
5757 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5758 char buf[32];
5759
Milton Miller73785472007-10-24 18:23:48 +02005760 WARN_ON(sd_ctl_dir[0].child);
5761 sd_ctl_dir[0].child = entry;
5762
Milton Millerad1cdc12007-10-15 17:00:19 +02005763 if (entry == NULL)
5764 return;
5765
Milton Miller97b6ea72007-10-15 17:00:19 +02005766 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005767 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005768 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005769 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005770 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005771 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005772 }
Milton Miller73785472007-10-24 18:23:48 +02005773
5774 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005775 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5776}
Milton Miller6382bc92007-10-15 17:00:19 +02005777
Milton Miller73785472007-10-24 18:23:48 +02005778/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005779static void unregister_sched_domain_sysctl(void)
5780{
Milton Miller73785472007-10-24 18:23:48 +02005781 if (sd_sysctl_header)
5782 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005783 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005784 if (sd_ctl_dir[0].child)
5785 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005786}
Nick Piggine692ab52007-07-26 13:40:43 +02005787#else
Milton Miller6382bc92007-10-15 17:00:19 +02005788static void register_sched_domain_sysctl(void)
5789{
5790}
5791static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005792{
5793}
5794#endif
5795
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796/*
5797 * migration_call - callback that gets triggered when a CPU is added.
5798 * Here we can start up the necessary migration thread for the new CPU.
5799 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005800static int __cpuinit
5801migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005804 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005806 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807
5808 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005809
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005811 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005812 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813 if (IS_ERR(p))
5814 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 kthread_bind(p, cpu);
5816 /* Must be high prio: stop_machine expects to yield to it. */
5817 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005818 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 task_rq_unlock(rq, &flags);
5820 cpu_rq(cpu)->migration_thread = p;
5821 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005822
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005824 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005825 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins57d885f2008-01-25 21:08:18 +01005827
5828 /* Update our root-domain */
5829 rq = cpu_rq(cpu);
5830 spin_lock_irqsave(&rq->lock, flags);
5831 if (rq->rd) {
5832 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5833 cpu_set(cpu, rq->rd->online);
5834 }
5835 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005837
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838#ifdef CONFIG_HOTPLUG_CPU
5839 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005840 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005841 if (!cpu_rq(cpu)->migration_thread)
5842 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005843 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005844 kthread_bind(cpu_rq(cpu)->migration_thread,
5845 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 kthread_stop(cpu_rq(cpu)->migration_thread);
5847 cpu_rq(cpu)->migration_thread = NULL;
5848 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005849
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005851 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07005852 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853 migrate_live_tasks(cpu);
5854 rq = cpu_rq(cpu);
5855 kthread_stop(rq->migration_thread);
5856 rq->migration_thread = NULL;
5857 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005858 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005859 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005860 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005862 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5863 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07005865 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07005866 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867 migrate_nr_uninterruptible(rq);
5868 BUG_ON(rq->nr_running != 0);
5869
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005870 /*
5871 * No need to migrate the tasks: it was best-effort if
5872 * they didn't take sched_hotcpu_mutex. Just wake up
5873 * the requestors.
5874 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 spin_lock_irq(&rq->lock);
5876 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005877 struct migration_req *req;
5878
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005880 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881 list_del_init(&req->list);
5882 complete(&req->done);
5883 }
5884 spin_unlock_irq(&rq->lock);
5885 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01005886
5887 case CPU_DOWN_PREPARE:
5888 /* Update our root-domain */
5889 rq = cpu_rq(cpu);
5890 spin_lock_irqsave(&rq->lock, flags);
5891 if (rq->rd) {
5892 BUG_ON(!cpu_isset(cpu, rq->rd->span));
5893 cpu_clear(cpu, rq->rd->online);
5894 }
5895 spin_unlock_irqrestore(&rq->lock, flags);
5896 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897#endif
5898 }
5899 return NOTIFY_OK;
5900}
5901
5902/* Register at highest priority so that task migration (migrate_all_tasks)
5903 * happens before everything else.
5904 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005905static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906 .notifier_call = migration_call,
5907 .priority = 10
5908};
5909
Adrian Bunke6fe6642007-11-09 22:39:39 +01005910void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911{
5912 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005913 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005914
5915 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005916 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5917 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5919 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920}
5921#endif
5922
5923#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005924
5925/* Number of possible processor ids */
5926int nr_cpu_ids __read_mostly = NR_CPUS;
5927EXPORT_SYMBOL(nr_cpu_ids);
5928
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005929#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02005930
5931static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level)
5932{
5933 struct sched_group *group = sd->groups;
5934 cpumask_t groupmask;
5935 char str[NR_CPUS];
5936
5937 cpumask_scnprintf(str, NR_CPUS, sd->span);
5938 cpus_clear(groupmask);
5939
5940 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
5941
5942 if (!(sd->flags & SD_LOAD_BALANCE)) {
5943 printk("does not load-balance\n");
5944 if (sd->parent)
5945 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5946 " has parent");
5947 return -1;
5948 }
5949
5950 printk(KERN_CONT "span %s\n", str);
5951
5952 if (!cpu_isset(cpu, sd->span)) {
5953 printk(KERN_ERR "ERROR: domain->span does not contain "
5954 "CPU%d\n", cpu);
5955 }
5956 if (!cpu_isset(cpu, group->cpumask)) {
5957 printk(KERN_ERR "ERROR: domain->groups does not contain"
5958 " CPU%d\n", cpu);
5959 }
5960
5961 printk(KERN_DEBUG "%*s groups:", level + 1, "");
5962 do {
5963 if (!group) {
5964 printk("\n");
5965 printk(KERN_ERR "ERROR: group is NULL\n");
5966 break;
5967 }
5968
5969 if (!group->__cpu_power) {
5970 printk(KERN_CONT "\n");
5971 printk(KERN_ERR "ERROR: domain->cpu_power not "
5972 "set\n");
5973 break;
5974 }
5975
5976 if (!cpus_weight(group->cpumask)) {
5977 printk(KERN_CONT "\n");
5978 printk(KERN_ERR "ERROR: empty group\n");
5979 break;
5980 }
5981
5982 if (cpus_intersects(groupmask, group->cpumask)) {
5983 printk(KERN_CONT "\n");
5984 printk(KERN_ERR "ERROR: repeated CPUs\n");
5985 break;
5986 }
5987
5988 cpus_or(groupmask, groupmask, group->cpumask);
5989
5990 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5991 printk(KERN_CONT " %s", str);
5992
5993 group = group->next;
5994 } while (group != sd->groups);
5995 printk(KERN_CONT "\n");
5996
5997 if (!cpus_equal(sd->span, groupmask))
5998 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
5999
6000 if (sd->parent && !cpus_subset(groupmask, sd->parent->span))
6001 printk(KERN_ERR "ERROR: parent span is not a superset "
6002 "of domain->span\n");
6003 return 0;
6004}
6005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006static void sched_domain_debug(struct sched_domain *sd, int cpu)
6007{
6008 int level = 0;
6009
Nick Piggin41c7ce92005-06-25 14:57:24 -07006010 if (!sd) {
6011 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6012 return;
6013 }
6014
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6016
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006017 for (;;) {
6018 if (sched_domain_debug_one(sd, cpu, level))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 level++;
6021 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006022 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006023 break;
6024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025}
6026#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006027# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028#endif
6029
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006030static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006031{
6032 if (cpus_weight(sd->span) == 1)
6033 return 1;
6034
6035 /* Following flags need at least 2 groups */
6036 if (sd->flags & (SD_LOAD_BALANCE |
6037 SD_BALANCE_NEWIDLE |
6038 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006039 SD_BALANCE_EXEC |
6040 SD_SHARE_CPUPOWER |
6041 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006042 if (sd->groups != sd->groups->next)
6043 return 0;
6044 }
6045
6046 /* Following flags don't use groups */
6047 if (sd->flags & (SD_WAKE_IDLE |
6048 SD_WAKE_AFFINE |
6049 SD_WAKE_BALANCE))
6050 return 0;
6051
6052 return 1;
6053}
6054
Ingo Molnar48f24c42006-07-03 00:25:40 -07006055static int
6056sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006057{
6058 unsigned long cflags = sd->flags, pflags = parent->flags;
6059
6060 if (sd_degenerate(parent))
6061 return 1;
6062
6063 if (!cpus_equal(sd->span, parent->span))
6064 return 0;
6065
6066 /* Does parent contain flags not in child? */
6067 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6068 if (cflags & SD_WAKE_AFFINE)
6069 pflags &= ~SD_WAKE_BALANCE;
6070 /* Flags needing groups don't count if only 1 group in parent */
6071 if (parent->groups == parent->groups->next) {
6072 pflags &= ~(SD_LOAD_BALANCE |
6073 SD_BALANCE_NEWIDLE |
6074 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006075 SD_BALANCE_EXEC |
6076 SD_SHARE_CPUPOWER |
6077 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006078 }
6079 if (~cflags & pflags)
6080 return 0;
6081
6082 return 1;
6083}
6084
Gregory Haskins57d885f2008-01-25 21:08:18 +01006085static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6086{
6087 unsigned long flags;
6088 const struct sched_class *class;
6089
6090 spin_lock_irqsave(&rq->lock, flags);
6091
6092 if (rq->rd) {
6093 struct root_domain *old_rd = rq->rd;
6094
Ingo Molnar0eab9142008-01-25 21:08:19 +01006095 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006096 if (class->leave_domain)
6097 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006098 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006099
Gregory Haskinsdc938522008-01-25 21:08:26 +01006100 cpu_clear(rq->cpu, old_rd->span);
6101 cpu_clear(rq->cpu, old_rd->online);
6102
Gregory Haskins57d885f2008-01-25 21:08:18 +01006103 if (atomic_dec_and_test(&old_rd->refcount))
6104 kfree(old_rd);
6105 }
6106
6107 atomic_inc(&rd->refcount);
6108 rq->rd = rd;
6109
Gregory Haskinsdc938522008-01-25 21:08:26 +01006110 cpu_set(rq->cpu, rd->span);
6111 if (cpu_isset(rq->cpu, cpu_online_map))
6112 cpu_set(rq->cpu, rd->online);
6113
Ingo Molnar0eab9142008-01-25 21:08:19 +01006114 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006115 if (class->join_domain)
6116 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006117 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006118
6119 spin_unlock_irqrestore(&rq->lock, flags);
6120}
6121
Gregory Haskinsdc938522008-01-25 21:08:26 +01006122static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006123{
6124 memset(rd, 0, sizeof(*rd));
6125
Gregory Haskinsdc938522008-01-25 21:08:26 +01006126 cpus_clear(rd->span);
6127 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006128}
6129
6130static void init_defrootdomain(void)
6131{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006132 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006133 atomic_set(&def_root_domain.refcount, 1);
6134}
6135
Gregory Haskinsdc938522008-01-25 21:08:26 +01006136static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006137{
6138 struct root_domain *rd;
6139
6140 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6141 if (!rd)
6142 return NULL;
6143
Gregory Haskinsdc938522008-01-25 21:08:26 +01006144 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006145
6146 return rd;
6147}
6148
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006150 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151 * hold the hotplug lock.
6152 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006153static void
6154cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006156 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006157 struct sched_domain *tmp;
6158
6159 /* Remove the sched domains which do not contribute to scheduling. */
6160 for (tmp = sd; tmp; tmp = tmp->parent) {
6161 struct sched_domain *parent = tmp->parent;
6162 if (!parent)
6163 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006164 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006165 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006166 if (parent->parent)
6167 parent->parent->child = tmp;
6168 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006169 }
6170
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006171 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006172 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006173 if (sd)
6174 sd->child = NULL;
6175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176
6177 sched_domain_debug(sd, cpu);
6178
Gregory Haskins57d885f2008-01-25 21:08:18 +01006179 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006180 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181}
6182
6183/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006184static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185
6186/* Setup the mask of cpus configured for isolated domains */
6187static int __init isolated_cpu_setup(char *str)
6188{
6189 int ints[NR_CPUS], i;
6190
6191 str = get_options(str, ARRAY_SIZE(ints), ints);
6192 cpus_clear(cpu_isolated_map);
6193 for (i = 1; i <= ints[0]; i++)
6194 if (ints[i] < NR_CPUS)
6195 cpu_set(ints[i], cpu_isolated_map);
6196 return 1;
6197}
6198
Ingo Molnar8927f492007-10-15 17:00:13 +02006199__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
6201/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006202 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6203 * to a function which identifies what group(along with sched group) a CPU
6204 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6205 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206 *
6207 * init_sched_build_groups will build a circular linked list of the groups
6208 * covered by the given span, and will set each group's ->cpumask correctly,
6209 * and ->cpu_power to 0.
6210 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006211static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006212init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
6213 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
6214 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215{
6216 struct sched_group *first = NULL, *last = NULL;
6217 cpumask_t covered = CPU_MASK_NONE;
6218 int i;
6219
6220 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006221 struct sched_group *sg;
6222 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223 int j;
6224
6225 if (cpu_isset(i, covered))
6226 continue;
6227
6228 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07006229 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230
6231 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006232 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 continue;
6234
6235 cpu_set(j, covered);
6236 cpu_set(j, sg->cpumask);
6237 }
6238 if (!first)
6239 first = sg;
6240 if (last)
6241 last->next = sg;
6242 last = sg;
6243 }
6244 last->next = first;
6245}
6246
John Hawkes9c1cfda2005-09-06 15:18:14 -07006247#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248
John Hawkes9c1cfda2005-09-06 15:18:14 -07006249#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006250
John Hawkes9c1cfda2005-09-06 15:18:14 -07006251/**
6252 * find_next_best_node - find the next node to include in a sched_domain
6253 * @node: node whose sched_domain we're building
6254 * @used_nodes: nodes already in the sched_domain
6255 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006256 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006257 * finds the closest node not already in the @used_nodes map.
6258 *
6259 * Should use nodemask_t.
6260 */
6261static int find_next_best_node(int node, unsigned long *used_nodes)
6262{
6263 int i, n, val, min_val, best_node = 0;
6264
6265 min_val = INT_MAX;
6266
6267 for (i = 0; i < MAX_NUMNODES; i++) {
6268 /* Start at @node */
6269 n = (node + i) % MAX_NUMNODES;
6270
6271 if (!nr_cpus_node(n))
6272 continue;
6273
6274 /* Skip already used nodes */
6275 if (test_bit(n, used_nodes))
6276 continue;
6277
6278 /* Simple min distance search */
6279 val = node_distance(node, n);
6280
6281 if (val < min_val) {
6282 min_val = val;
6283 best_node = n;
6284 }
6285 }
6286
6287 set_bit(best_node, used_nodes);
6288 return best_node;
6289}
6290
6291/**
6292 * sched_domain_node_span - get a cpumask for a node's sched_domain
6293 * @node: node whose cpumask we're constructing
6294 * @size: number of nodes to include in this span
6295 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006296 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006297 * should be one that prevents unnecessary balancing, but also spreads tasks
6298 * out optimally.
6299 */
6300static cpumask_t sched_domain_node_span(int node)
6301{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006302 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006303 cpumask_t span, nodemask;
6304 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006305
6306 cpus_clear(span);
6307 bitmap_zero(used_nodes, MAX_NUMNODES);
6308
6309 nodemask = node_to_cpumask(node);
6310 cpus_or(span, span, nodemask);
6311 set_bit(node, used_nodes);
6312
6313 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6314 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006315
John Hawkes9c1cfda2005-09-06 15:18:14 -07006316 nodemask = node_to_cpumask(next_node);
6317 cpus_or(span, span, nodemask);
6318 }
6319
6320 return span;
6321}
6322#endif
6323
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006324int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006325
John Hawkes9c1cfda2005-09-06 15:18:14 -07006326/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006327 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006328 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329#ifdef CONFIG_SCHED_SMT
6330static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006331static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006332
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006333static int
6334cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006336 if (sg)
6337 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338 return cpu;
6339}
6340#endif
6341
Ingo Molnar48f24c42006-07-03 00:25:40 -07006342/*
6343 * multi-core sched-domains:
6344 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006345#ifdef CONFIG_SCHED_MC
6346static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006347static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006348#endif
6349
6350#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006351static int
6352cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006353{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006354 int group;
Mike Travisd5a74302007-10-16 01:24:05 -07006355 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006356 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006357 group = first_cpu(mask);
6358 if (sg)
6359 *sg = &per_cpu(sched_group_core, group);
6360 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006361}
6362#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006363static int
6364cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006365{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006366 if (sg)
6367 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006368 return cpu;
6369}
6370#endif
6371
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006373static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006374
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006375static int
6376cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006378 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006379#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006380 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006381 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006382 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006383#elif defined(CONFIG_SCHED_SMT)
Mike Travisd5a74302007-10-16 01:24:05 -07006384 cpumask_t mask = per_cpu(cpu_sibling_map, cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006385 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006386 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006388 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006390 if (sg)
6391 *sg = &per_cpu(sched_group_phys, group);
6392 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393}
6394
6395#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006396/*
6397 * The init_sched_build_groups can't handle what we want to do with node
6398 * groups, so roll our own. Now each node has its own list of groups which
6399 * gets dynamically allocated.
6400 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006402static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006403
6404static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006405static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006406
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006407static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6408 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006410 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6411 int group;
6412
6413 cpus_and(nodemask, nodemask, *cpu_map);
6414 group = first_cpu(nodemask);
6415
6416 if (sg)
6417 *sg = &per_cpu(sched_group_allnodes, group);
6418 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006420
Siddha, Suresh B08069032006-03-27 01:15:23 -08006421static void init_numa_sched_groups_power(struct sched_group *group_head)
6422{
6423 struct sched_group *sg = group_head;
6424 int j;
6425
6426 if (!sg)
6427 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006428 do {
6429 for_each_cpu_mask(j, sg->cpumask) {
6430 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006431
Andi Kleen3a5c3592007-10-15 17:00:14 +02006432 sd = &per_cpu(phys_domains, j);
6433 if (j != first_cpu(sd->groups->cpumask)) {
6434 /*
6435 * Only add "power" once for each
6436 * physical package.
6437 */
6438 continue;
6439 }
6440
6441 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006442 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006443 sg = sg->next;
6444 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006445}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446#endif
6447
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006448#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006449/* Free memory allocated for various sched_group structures */
6450static void free_sched_groups(const cpumask_t *cpu_map)
6451{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006452 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006453
6454 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006455 struct sched_group **sched_group_nodes
6456 = sched_group_nodes_bycpu[cpu];
6457
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006458 if (!sched_group_nodes)
6459 continue;
6460
6461 for (i = 0; i < MAX_NUMNODES; i++) {
6462 cpumask_t nodemask = node_to_cpumask(i);
6463 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6464
6465 cpus_and(nodemask, nodemask, *cpu_map);
6466 if (cpus_empty(nodemask))
6467 continue;
6468
6469 if (sg == NULL)
6470 continue;
6471 sg = sg->next;
6472next_sg:
6473 oldsg = sg;
6474 sg = sg->next;
6475 kfree(oldsg);
6476 if (oldsg != sched_group_nodes[i])
6477 goto next_sg;
6478 }
6479 kfree(sched_group_nodes);
6480 sched_group_nodes_bycpu[cpu] = NULL;
6481 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006482}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006483#else
6484static void free_sched_groups(const cpumask_t *cpu_map)
6485{
6486}
6487#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006488
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006490 * Initialize sched groups cpu_power.
6491 *
6492 * cpu_power indicates the capacity of sched group, which is used while
6493 * distributing the load between different sched groups in a sched domain.
6494 * Typically cpu_power for all the groups in a sched domain will be same unless
6495 * there are asymmetries in the topology. If there are asymmetries, group
6496 * having more cpu_power will pickup more load compared to the group having
6497 * less cpu_power.
6498 *
6499 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6500 * the maximum number of tasks a group can handle in the presence of other idle
6501 * or lightly loaded groups in the same sched domain.
6502 */
6503static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6504{
6505 struct sched_domain *child;
6506 struct sched_group *group;
6507
6508 WARN_ON(!sd || !sd->groups);
6509
6510 if (cpu != first_cpu(sd->groups->cpumask))
6511 return;
6512
6513 child = sd->child;
6514
Eric Dumazet5517d862007-05-08 00:32:57 -07006515 sd->groups->__cpu_power = 0;
6516
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006517 /*
6518 * For perf policy, if the groups in child domain share resources
6519 * (for example cores sharing some portions of the cache hierarchy
6520 * or SMT), then set this domain groups cpu_power such that each group
6521 * can handle only one task, when there are other idle groups in the
6522 * same sched domain.
6523 */
6524 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6525 (child->flags &
6526 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006527 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006528 return;
6529 }
6530
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006531 /*
6532 * add cpu_power of each child group to this groups cpu_power
6533 */
6534 group = child->groups;
6535 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006536 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006537 group = group->next;
6538 } while (group != child->groups);
6539}
6540
6541/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006542 * Build sched domains for a given set of cpus and attach the sched domains
6543 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006545static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546{
6547 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006548 struct root_domain *rd;
John Hawkesd1b55132005-09-06 15:18:14 -07006549#ifdef CONFIG_NUMA
6550 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006551 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006552
6553 /*
6554 * Allocate the per-node list of sched groups
6555 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006556 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006557 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006558 if (!sched_group_nodes) {
6559 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006560 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006561 }
6562 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6563#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564
Gregory Haskinsdc938522008-01-25 21:08:26 +01006565 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006566 if (!rd) {
6567 printk(KERN_WARNING "Cannot alloc root domain\n");
6568 return -ENOMEM;
6569 }
6570
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006572 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006574 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575 struct sched_domain *sd = NULL, *p;
6576 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6577
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006578 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579
6580#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006581 if (cpus_weight(*cpu_map) >
6582 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006583 sd = &per_cpu(allnodes_domains, i);
6584 *sd = SD_ALLNODES_INIT;
6585 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006586 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006587 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006588 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006589 } else
6590 p = NULL;
6591
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006594 sd->span = sched_domain_node_span(cpu_to_node(i));
6595 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006596 if (p)
6597 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006598 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599#endif
6600
6601 p = sd;
6602 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603 *sd = SD_CPU_INIT;
6604 sd->span = nodemask;
6605 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006606 if (p)
6607 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006608 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006610#ifdef CONFIG_SCHED_MC
6611 p = sd;
6612 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006613 *sd = SD_MC_INIT;
6614 sd->span = cpu_coregroup_map(i);
6615 cpus_and(sd->span, sd->span, *cpu_map);
6616 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006617 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006618 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006619#endif
6620
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621#ifdef CONFIG_SCHED_SMT
6622 p = sd;
6623 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624 *sd = SD_SIBLING_INIT;
Mike Travisd5a74302007-10-16 01:24:05 -07006625 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006626 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006628 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006629 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630#endif
6631 }
6632
6633#ifdef CONFIG_SCHED_SMT
6634 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006635 for_each_cpu_mask(i, *cpu_map) {
Mike Travisd5a74302007-10-16 01:24:05 -07006636 cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006637 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638 if (i != first_cpu(this_sibling_map))
6639 continue;
6640
Ingo Molnardd41f592007-07-09 18:51:59 +02006641 init_sched_build_groups(this_sibling_map, cpu_map,
6642 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 }
6644#endif
6645
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006646#ifdef CONFIG_SCHED_MC
6647 /* Set up multi-core groups */
6648 for_each_cpu_mask(i, *cpu_map) {
6649 cpumask_t this_core_map = cpu_coregroup_map(i);
6650 cpus_and(this_core_map, this_core_map, *cpu_map);
6651 if (i != first_cpu(this_core_map))
6652 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006653 init_sched_build_groups(this_core_map, cpu_map,
6654 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006655 }
6656#endif
6657
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658 /* Set up physical groups */
6659 for (i = 0; i < MAX_NUMNODES; i++) {
6660 cpumask_t nodemask = node_to_cpumask(i);
6661
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006662 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663 if (cpus_empty(nodemask))
6664 continue;
6665
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006666 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667 }
6668
6669#ifdef CONFIG_NUMA
6670 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006671 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006672 init_sched_build_groups(*cpu_map, cpu_map,
6673 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006674
6675 for (i = 0; i < MAX_NUMNODES; i++) {
6676 /* Set up node groups */
6677 struct sched_group *sg, *prev;
6678 cpumask_t nodemask = node_to_cpumask(i);
6679 cpumask_t domainspan;
6680 cpumask_t covered = CPU_MASK_NONE;
6681 int j;
6682
6683 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006684 if (cpus_empty(nodemask)) {
6685 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006686 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006687 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006688
6689 domainspan = sched_domain_node_span(i);
6690 cpus_and(domainspan, domainspan, *cpu_map);
6691
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006692 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006693 if (!sg) {
6694 printk(KERN_WARNING "Can not alloc domain group for "
6695 "node %d\n", i);
6696 goto error;
6697 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006698 sched_group_nodes[i] = sg;
6699 for_each_cpu_mask(j, nodemask) {
6700 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006701
John Hawkes9c1cfda2005-09-06 15:18:14 -07006702 sd = &per_cpu(node_domains, j);
6703 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006704 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006705 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006706 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006707 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006708 cpus_or(covered, covered, nodemask);
6709 prev = sg;
6710
6711 for (j = 0; j < MAX_NUMNODES; j++) {
6712 cpumask_t tmp, notcovered;
6713 int n = (i + j) % MAX_NUMNODES;
6714
6715 cpus_complement(notcovered, covered);
6716 cpus_and(tmp, notcovered, *cpu_map);
6717 cpus_and(tmp, tmp, domainspan);
6718 if (cpus_empty(tmp))
6719 break;
6720
6721 nodemask = node_to_cpumask(n);
6722 cpus_and(tmp, tmp, nodemask);
6723 if (cpus_empty(tmp))
6724 continue;
6725
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006726 sg = kmalloc_node(sizeof(struct sched_group),
6727 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006728 if (!sg) {
6729 printk(KERN_WARNING
6730 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006731 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006732 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006733 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006734 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006735 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006736 cpus_or(covered, covered, tmp);
6737 prev->next = sg;
6738 prev = sg;
6739 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741#endif
6742
6743 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006744#ifdef CONFIG_SCHED_SMT
6745 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006746 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6747
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006748 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006749 }
6750#endif
6751#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006752 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006753 struct sched_domain *sd = &per_cpu(core_domains, i);
6754
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006755 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006756 }
6757#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006759 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006760 struct sched_domain *sd = &per_cpu(phys_domains, i);
6761
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006762 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 }
6764
John Hawkes9c1cfda2005-09-06 15:18:14 -07006765#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006766 for (i = 0; i < MAX_NUMNODES; i++)
6767 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006768
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006769 if (sd_allnodes) {
6770 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006771
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006772 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006773 init_numa_sched_groups_power(sg);
6774 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006775#endif
6776
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006778 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779 struct sched_domain *sd;
6780#ifdef CONFIG_SCHED_SMT
6781 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006782#elif defined(CONFIG_SCHED_MC)
6783 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784#else
6785 sd = &per_cpu(phys_domains, i);
6786#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006787 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006789
6790 return 0;
6791
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006792#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006793error:
6794 free_sched_groups(cpu_map);
6795 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006796#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797}
Paul Jackson029190c2007-10-18 23:40:20 -07006798
6799static cpumask_t *doms_cur; /* current sched domains */
6800static int ndoms_cur; /* number of sched domains in 'doms_cur' */
6801
6802/*
6803 * Special case: If a kmalloc of a doms_cur partition (array of
6804 * cpumask_t) fails, then fallback to a single sched domain,
6805 * as determined by the single cpumask_t fallback_doms.
6806 */
6807static cpumask_t fallback_doms;
6808
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006809/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006810 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07006811 * For now this just excludes isolated cpus, but could be used to
6812 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006813 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006814static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006815{
Milton Miller73785472007-10-24 18:23:48 +02006816 int err;
6817
Paul Jackson029190c2007-10-18 23:40:20 -07006818 ndoms_cur = 1;
6819 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6820 if (!doms_cur)
6821 doms_cur = &fallback_doms;
6822 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02006823 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02006824 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02006825
6826 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006827}
6828
6829static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006831 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006832}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006834/*
6835 * Detach sched domains from a group of cpus specified in cpu_map
6836 * These cpus will now be attached to the NULL domain
6837 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006838static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006839{
6840 int i;
6841
Milton Miller6382bc92007-10-15 17:00:19 +02006842 unregister_sched_domain_sysctl();
6843
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006844 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006845 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006846 synchronize_sched();
6847 arch_destroy_sched_domains(cpu_map);
6848}
6849
Paul Jackson029190c2007-10-18 23:40:20 -07006850/*
6851 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006852 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07006853 * doms_new[] to the current sched domain partitioning, doms_cur[].
6854 * It destroys each deleted domain and builds each new domain.
6855 *
6856 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006857 * The masks don't intersect (don't overlap.) We should setup one
6858 * sched domain for each mask. CPUs not in any of the cpumasks will
6859 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07006860 * current 'doms_cur' domains and in the new 'doms_new', we can leave
6861 * it as it is.
6862 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006863 * The passed in 'doms_new' should be kmalloc'd. This routine takes
6864 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07006865 * failed the kmalloc call, then it can pass in doms_new == NULL,
6866 * and partition_sched_domains() will fallback to the single partition
6867 * 'fallback_doms'.
6868 *
6869 * Call with hotplug lock held
6870 */
6871void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
6872{
6873 int i, j;
6874
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006875 lock_doms_cur();
6876
Milton Miller73785472007-10-24 18:23:48 +02006877 /* always unregister in case we don't destroy any domains */
6878 unregister_sched_domain_sysctl();
6879
Paul Jackson029190c2007-10-18 23:40:20 -07006880 if (doms_new == NULL) {
6881 ndoms_new = 1;
6882 doms_new = &fallback_doms;
6883 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
6884 }
6885
6886 /* Destroy deleted domains */
6887 for (i = 0; i < ndoms_cur; i++) {
6888 for (j = 0; j < ndoms_new; j++) {
6889 if (cpus_equal(doms_cur[i], doms_new[j]))
6890 goto match1;
6891 }
6892 /* no match - a current sched domain not in new doms_new[] */
6893 detach_destroy_domains(doms_cur + i);
6894match1:
6895 ;
6896 }
6897
6898 /* Build new domains */
6899 for (i = 0; i < ndoms_new; i++) {
6900 for (j = 0; j < ndoms_cur; j++) {
6901 if (cpus_equal(doms_new[i], doms_cur[j]))
6902 goto match2;
6903 }
6904 /* no match - add a new doms_new */
6905 build_sched_domains(doms_new + i);
6906match2:
6907 ;
6908 }
6909
6910 /* Remember the new sched domains */
6911 if (doms_cur != &fallback_doms)
6912 kfree(doms_cur);
6913 doms_cur = doms_new;
6914 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02006915
6916 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01006917
6918 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07006919}
6920
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006921#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006922static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006923{
6924 int err;
6925
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006926 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006927 detach_destroy_domains(&cpu_online_map);
6928 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01006929 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006930
6931 return err;
6932}
6933
6934static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6935{
6936 int ret;
6937
6938 if (buf[0] != '0' && buf[0] != '1')
6939 return -EINVAL;
6940
6941 if (smt)
6942 sched_smt_power_savings = (buf[0] == '1');
6943 else
6944 sched_mc_power_savings = (buf[0] == '1');
6945
6946 ret = arch_reinit_sched_domains();
6947
6948 return ret ? ret : count;
6949}
6950
Adrian Bunk6707de002007-08-12 18:08:19 +02006951#ifdef CONFIG_SCHED_MC
6952static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6953{
6954 return sprintf(page, "%u\n", sched_mc_power_savings);
6955}
6956static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6957 const char *buf, size_t count)
6958{
6959 return sched_power_savings_store(buf, count, 0);
6960}
6961static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6962 sched_mc_power_savings_store);
6963#endif
6964
6965#ifdef CONFIG_SCHED_SMT
6966static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6967{
6968 return sprintf(page, "%u\n", sched_smt_power_savings);
6969}
6970static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6971 const char *buf, size_t count)
6972{
6973 return sched_power_savings_store(buf, count, 1);
6974}
6975static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6976 sched_smt_power_savings_store);
6977#endif
6978
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006979int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6980{
6981 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006982
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006983#ifdef CONFIG_SCHED_SMT
6984 if (smt_capable())
6985 err = sysfs_create_file(&cls->kset.kobj,
6986 &attr_sched_smt_power_savings.attr);
6987#endif
6988#ifdef CONFIG_SCHED_MC
6989 if (!err && mc_capable())
6990 err = sysfs_create_file(&cls->kset.kobj,
6991 &attr_sched_mc_power_savings.attr);
6992#endif
6993 return err;
6994}
6995#endif
6996
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006998 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007000 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001 * which will prevent rebalancing while the sched domains are recalculated.
7002 */
7003static int update_sched_domains(struct notifier_block *nfb,
7004 unsigned long action, void *hcpu)
7005{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006 switch (action) {
7007 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007008 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007010 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007011 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012 return NOTIFY_OK;
7013
7014 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007015 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007016 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007017 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007019 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007021 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022 /*
7023 * Fall through and re-initialise the domains.
7024 */
7025 break;
7026 default:
7027 return NOTIFY_DONE;
7028 }
7029
7030 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007031 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032
7033 return NOTIFY_OK;
7034}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007035
7036void __init sched_init_smp(void)
7037{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007038 cpumask_t non_isolated_cpus;
7039
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007040 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007041 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007042 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007043 if (cpus_empty(non_isolated_cpus))
7044 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007045 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046 /* XXX: Theoretical race here - CPU may be hotplugged now */
7047 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007048
7049 /* Move init over to a non-isolated CPU */
7050 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
7051 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007052 sched_init_granularity();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007053
7054#ifdef CONFIG_FAIR_GROUP_SCHED
7055 if (nr_cpu_ids == 1)
7056 return;
7057
7058 lb_monitor_task = kthread_create(load_balance_monitor, NULL,
7059 "group_balance");
7060 if (!IS_ERR(lb_monitor_task)) {
7061 lb_monitor_task->flags |= PF_NOFREEZE;
7062 wake_up_process(lb_monitor_task);
7063 } else {
7064 printk(KERN_ERR "Could not create load balance monitor thread"
7065 "(error = %ld) \n", PTR_ERR(lb_monitor_task));
7066 }
7067#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068}
7069#else
7070void __init sched_init_smp(void)
7071{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007072 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073}
7074#endif /* CONFIG_SMP */
7075
7076int in_sched_functions(unsigned long addr)
7077{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078 return in_lock_functions(addr) ||
7079 (addr >= (unsigned long)__sched_text_start
7080 && addr < (unsigned long)__sched_text_end);
7081}
7082
Alexey Dobriyana9957442007-10-15 17:00:13 +02007083static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007084{
7085 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007086#ifdef CONFIG_FAIR_GROUP_SCHED
7087 cfs_rq->rq = rq;
7088#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007089 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007090}
7091
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007092static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7093{
7094 struct rt_prio_array *array;
7095 int i;
7096
7097 array = &rt_rq->active;
7098 for (i = 0; i < MAX_RT_PRIO; i++) {
7099 INIT_LIST_HEAD(array->queue + i);
7100 __clear_bit(i, array->bitmap);
7101 }
7102 /* delimiter for bitsearch: */
7103 __set_bit(MAX_RT_PRIO, array->bitmap);
7104
7105#ifdef CONFIG_SMP
7106 rt_rq->rt_nr_migratory = 0;
7107 rt_rq->highest_prio = MAX_RT_PRIO;
7108 rt_rq->overloaded = 0;
7109#endif
7110
7111 rt_rq->rt_time = 0;
7112 rt_rq->rt_throttled = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007113
7114#ifdef CONFIG_FAIR_GROUP_SCHED
7115 rt_rq->rq = rq;
7116#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007117}
7118
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007119#ifdef CONFIG_FAIR_GROUP_SCHED
7120static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7121 struct cfs_rq *cfs_rq, struct sched_entity *se,
7122 int cpu, int add)
7123{
7124 tg->cfs_rq[cpu] = cfs_rq;
7125 init_cfs_rq(cfs_rq, rq);
7126 cfs_rq->tg = tg;
7127 if (add)
7128 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7129
7130 tg->se[cpu] = se;
7131 se->cfs_rq = &rq->cfs;
7132 se->my_q = cfs_rq;
7133 se->load.weight = tg->shares;
7134 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7135 se->parent = NULL;
7136}
7137
7138static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7139 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7140 int cpu, int add)
7141{
7142 tg->rt_rq[cpu] = rt_rq;
7143 init_rt_rq(rt_rq, rq);
7144 rt_rq->tg = tg;
7145 rt_rq->rt_se = rt_se;
7146 if (add)
7147 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7148
7149 tg->rt_se[cpu] = rt_se;
7150 rt_se->rt_rq = &rq->rt;
7151 rt_se->my_q = rt_rq;
7152 rt_se->parent = NULL;
7153 INIT_LIST_HEAD(&rt_se->run_list);
7154}
7155#endif
7156
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157void __init sched_init(void)
7158{
Christoph Lameter476f3532007-05-06 14:48:58 -07007159 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007160 int i, j;
7161
Gregory Haskins57d885f2008-01-25 21:08:18 +01007162#ifdef CONFIG_SMP
7163 init_defrootdomain();
7164#endif
7165
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007166#ifdef CONFIG_FAIR_GROUP_SCHED
7167 list_add(&init_task_group.list, &task_groups);
7168#endif
7169
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007170 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007171 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172
7173 rq = cpu_rq(i);
7174 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007175 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007176 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007177 rq->clock = 1;
7178 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007179 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007180#ifdef CONFIG_FAIR_GROUP_SCHED
7181 init_task_group.shares = init_task_group_load;
7182 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7183 init_tg_cfs_entry(rq, &init_task_group,
7184 &per_cpu(init_cfs_rq, i),
7185 &per_cpu(init_sched_entity, i), i, 1);
7186
7187 init_task_group.rt_ratio = sysctl_sched_rt_ratio; /* XXX */
7188 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7189 init_tg_rt_entry(rq, &init_task_group,
7190 &per_cpu(init_rt_rq, i),
7191 &per_cpu(init_sched_rt_entity, i), i, 1);
7192#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007193 rq->rt_period_expire = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194
Ingo Molnardd41f592007-07-09 18:51:59 +02007195 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7196 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007197#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007198 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007199 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007200 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007201 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007203 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204 rq->migration_thread = NULL;
7205 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007206 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007208 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007209 atomic_set(&rq->nr_iowait, 0);
Christoph Lameter476f3532007-05-06 14:48:58 -07007210 highest_cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007211 }
7212
Peter Williams2dd73a42006-06-27 02:54:34 -07007213 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007214
Avi Kivitye107be32007-07-26 13:40:43 +02007215#ifdef CONFIG_PREEMPT_NOTIFIERS
7216 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7217#endif
7218
Christoph Lameterc9819f42006-12-10 02:20:25 -08007219#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07007220 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08007221 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7222#endif
7223
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007224#ifdef CONFIG_RT_MUTEXES
7225 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7226#endif
7227
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228 /*
7229 * The boot idle thread does lazy MMU switching as well:
7230 */
7231 atomic_inc(&init_mm.mm_count);
7232 enter_lazy_tlb(&init_mm, current);
7233
7234 /*
7235 * Make us the idle thread. Technically, schedule() should not be
7236 * called from this thread, however somewhere below it might be,
7237 * but because we are the idle thread, we just pick up running again
7238 * when this runqueue becomes "idle".
7239 */
7240 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007241 /*
7242 * During early bootup we pretend to be a normal task:
7243 */
7244 current->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007245}
7246
7247#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7248void __might_sleep(char *file, int line)
7249{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007250#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251 static unsigned long prev_jiffy; /* ratelimiting */
7252
7253 if ((in_atomic() || irqs_disabled()) &&
7254 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7255 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7256 return;
7257 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007258 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259 " context at %s:%d\n", file, line);
7260 printk("in_atomic():%d, irqs_disabled():%d\n",
7261 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007262 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007263 if (irqs_disabled())
7264 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265 dump_stack();
7266 }
7267#endif
7268}
7269EXPORT_SYMBOL(__might_sleep);
7270#endif
7271
7272#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007273static void normalize_task(struct rq *rq, struct task_struct *p)
7274{
7275 int on_rq;
7276 update_rq_clock(rq);
7277 on_rq = p->se.on_rq;
7278 if (on_rq)
7279 deactivate_task(rq, p, 0);
7280 __setscheduler(rq, p, SCHED_NORMAL, 0);
7281 if (on_rq) {
7282 activate_task(rq, p, 0);
7283 resched_task(rq->curr);
7284 }
7285}
7286
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287void normalize_rt_tasks(void)
7288{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007289 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007290 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007291 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007292
7293 read_lock_irq(&tasklist_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007294 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007295 /*
7296 * Only normalize user tasks:
7297 */
7298 if (!p->mm)
7299 continue;
7300
Ingo Molnardd41f592007-07-09 18:51:59 +02007301 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007302#ifdef CONFIG_SCHEDSTATS
7303 p->se.wait_start = 0;
7304 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007305 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007306#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007307 task_rq(p)->clock = 0;
7308
7309 if (!rt_task(p)) {
7310 /*
7311 * Renice negative nice level userspace
7312 * tasks back to 0:
7313 */
7314 if (TASK_NICE(p) < 0 && p->mm)
7315 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318
Ingo Molnarb29739f2006-06-27 02:54:51 -07007319 spin_lock_irqsave(&p->pi_lock, flags);
7320 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321
Ingo Molnar178be792007-10-15 17:00:18 +02007322 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007323
Ingo Molnarb29739f2006-06-27 02:54:51 -07007324 __task_rq_unlock(rq);
7325 spin_unlock_irqrestore(&p->pi_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007326 } while_each_thread(g, p);
7327
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328 read_unlock_irq(&tasklist_lock);
7329}
7330
7331#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007332
7333#ifdef CONFIG_IA64
7334/*
7335 * These functions are only useful for the IA64 MCA handling.
7336 *
7337 * They can only be called when the whole system has been
7338 * stopped - every CPU needs to be quiescent, and no scheduling
7339 * activity can take place. Using them for anything else would
7340 * be a serious bug, and as a result, they aren't even visible
7341 * under any other configuration.
7342 */
7343
7344/**
7345 * curr_task - return the current task for a given cpu.
7346 * @cpu: the processor in question.
7347 *
7348 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7349 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007350struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007351{
7352 return cpu_curr(cpu);
7353}
7354
7355/**
7356 * set_curr_task - set the current task for a given cpu.
7357 * @cpu: the processor in question.
7358 * @p: the task pointer to set.
7359 *
7360 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007361 * are serviced on a separate stack. It allows the architecture to switch the
7362 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007363 * must be called with all CPU's synchronized, and interrupts disabled, the
7364 * and caller must save the original value of the current task (see
7365 * curr_task() above) and restore that value before reenabling interrupts and
7366 * re-starting the system.
7367 *
7368 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7369 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007370void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007371{
7372 cpu_curr(cpu) = p;
7373}
7374
7375#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007376
7377#ifdef CONFIG_FAIR_GROUP_SCHED
7378
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007379#ifdef CONFIG_SMP
7380/*
7381 * distribute shares of all task groups among their schedulable entities,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007382 * to reflect load distribution across cpus.
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007383 */
7384static int rebalance_shares(struct sched_domain *sd, int this_cpu)
7385{
7386 struct cfs_rq *cfs_rq;
7387 struct rq *rq = cpu_rq(this_cpu);
7388 cpumask_t sdspan = sd->span;
7389 int balanced = 1;
7390
7391 /* Walk thr' all the task groups that we have */
7392 for_each_leaf_cfs_rq(rq, cfs_rq) {
7393 int i;
7394 unsigned long total_load = 0, total_shares;
7395 struct task_group *tg = cfs_rq->tg;
7396
7397 /* Gather total task load of this group across cpus */
7398 for_each_cpu_mask(i, sdspan)
7399 total_load += tg->cfs_rq[i]->load.weight;
7400
Ingo Molnar0eab9142008-01-25 21:08:19 +01007401 /* Nothing to do if this group has no load */
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007402 if (!total_load)
7403 continue;
7404
7405 /*
7406 * tg->shares represents the number of cpu shares the task group
7407 * is eligible to hold on a single cpu. On N cpus, it is
7408 * eligible to hold (N * tg->shares) number of cpu shares.
7409 */
7410 total_shares = tg->shares * cpus_weight(sdspan);
7411
7412 /*
7413 * redistribute total_shares across cpus as per the task load
7414 * distribution.
7415 */
7416 for_each_cpu_mask(i, sdspan) {
7417 unsigned long local_load, local_shares;
7418
7419 local_load = tg->cfs_rq[i]->load.weight;
7420 local_shares = (local_load * total_shares) / total_load;
7421 if (!local_shares)
7422 local_shares = MIN_GROUP_SHARES;
7423 if (local_shares == tg->se[i]->load.weight)
7424 continue;
7425
7426 spin_lock_irq(&cpu_rq(i)->lock);
7427 set_se_shares(tg->se[i], local_shares);
7428 spin_unlock_irq(&cpu_rq(i)->lock);
7429 balanced = 0;
7430 }
7431 }
7432
7433 return balanced;
7434}
7435
7436/*
7437 * How frequently should we rebalance_shares() across cpus?
7438 *
7439 * The more frequently we rebalance shares, the more accurate is the fairness
7440 * of cpu bandwidth distribution between task groups. However higher frequency
7441 * also implies increased scheduling overhead.
7442 *
7443 * sysctl_sched_min_bal_int_shares represents the minimum interval between
7444 * consecutive calls to rebalance_shares() in the same sched domain.
7445 *
7446 * sysctl_sched_max_bal_int_shares represents the maximum interval between
7447 * consecutive calls to rebalance_shares() in the same sched domain.
7448 *
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007449 * These settings allows for the appropriate trade-off between accuracy of
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007450 * fairness and the associated overhead.
7451 *
7452 */
7453
7454/* default: 8ms, units: milliseconds */
7455const_debug unsigned int sysctl_sched_min_bal_int_shares = 8;
7456
7457/* default: 128ms, units: milliseconds */
7458const_debug unsigned int sysctl_sched_max_bal_int_shares = 128;
7459
7460/* kernel thread that runs rebalance_shares() periodically */
7461static int load_balance_monitor(void *unused)
7462{
7463 unsigned int timeout = sysctl_sched_min_bal_int_shares;
7464 struct sched_param schedparm;
7465 int ret;
7466
7467 /*
7468 * We don't want this thread's execution to be limited by the shares
7469 * assigned to default group (init_task_group). Hence make it run
7470 * as a SCHED_RR RT task at the lowest priority.
7471 */
7472 schedparm.sched_priority = 1;
7473 ret = sched_setscheduler(current, SCHED_RR, &schedparm);
7474 if (ret)
7475 printk(KERN_ERR "Couldn't set SCHED_RR policy for load balance"
7476 " monitor thread (error = %d) \n", ret);
7477
7478 while (!kthread_should_stop()) {
7479 int i, cpu, balanced = 1;
7480
7481 /* Prevent cpus going down or coming up */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01007482 get_online_cpus();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007483 /* lockout changes to doms_cur[] array */
7484 lock_doms_cur();
7485 /*
7486 * Enter a rcu read-side critical section to safely walk rq->sd
7487 * chain on various cpus and to walk task group list
7488 * (rq->leaf_cfs_rq_list) in rebalance_shares().
7489 */
7490 rcu_read_lock();
7491
7492 for (i = 0; i < ndoms_cur; i++) {
7493 cpumask_t cpumap = doms_cur[i];
7494 struct sched_domain *sd = NULL, *sd_prev = NULL;
7495
7496 cpu = first_cpu(cpumap);
7497
7498 /* Find the highest domain at which to balance shares */
7499 for_each_domain(cpu, sd) {
7500 if (!(sd->flags & SD_LOAD_BALANCE))
7501 continue;
7502 sd_prev = sd;
7503 }
7504
7505 sd = sd_prev;
7506 /* sd == NULL? No load balance reqd in this domain */
7507 if (!sd)
7508 continue;
7509
7510 balanced &= rebalance_shares(sd, cpu);
7511 }
7512
7513 rcu_read_unlock();
7514
7515 unlock_doms_cur();
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +01007516 put_online_cpus();
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007517
7518 if (!balanced)
7519 timeout = sysctl_sched_min_bal_int_shares;
7520 else if (timeout < sysctl_sched_max_bal_int_shares)
7521 timeout *= 2;
7522
7523 msleep_interruptible(timeout);
7524 }
7525
7526 return 0;
7527}
7528#endif /* CONFIG_SMP */
7529
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007530static void free_sched_group(struct task_group *tg)
7531{
7532 int i;
7533
7534 for_each_possible_cpu(i) {
7535 if (tg->cfs_rq)
7536 kfree(tg->cfs_rq[i]);
7537 if (tg->se)
7538 kfree(tg->se[i]);
7539 if (tg->rt_rq)
7540 kfree(tg->rt_rq[i]);
7541 if (tg->rt_se)
7542 kfree(tg->rt_se[i]);
7543 }
7544
7545 kfree(tg->cfs_rq);
7546 kfree(tg->se);
7547 kfree(tg->rt_rq);
7548 kfree(tg->rt_se);
7549 kfree(tg);
7550}
7551
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007552/* allocate runqueue etc for a new task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007553struct task_group *sched_create_group(void)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007554{
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007555 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007556 struct cfs_rq *cfs_rq;
7557 struct sched_entity *se;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007558 struct rt_rq *rt_rq;
7559 struct sched_rt_entity *rt_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007560 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007561 int i;
7562
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007563 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7564 if (!tg)
7565 return ERR_PTR(-ENOMEM);
7566
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007567 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007568 if (!tg->cfs_rq)
7569 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007570 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007571 if (!tg->se)
7572 goto err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007573 tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL);
7574 if (!tg->rt_rq)
7575 goto err;
7576 tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL);
7577 if (!tg->rt_se)
7578 goto err;
7579
7580 tg->shares = NICE_0_LOAD;
7581 tg->rt_ratio = 0; /* XXX */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007582
7583 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007584 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007585
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007586 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7587 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007588 if (!cfs_rq)
7589 goto err;
7590
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007591 se = kmalloc_node(sizeof(struct sched_entity),
7592 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007593 if (!se)
7594 goto err;
7595
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007596 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7597 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7598 if (!rt_rq)
7599 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007600
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007601 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7602 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7603 if (!rt_se)
7604 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007605
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007606 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
7607 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007608 }
7609
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007610 lock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007611 for_each_possible_cpu(i) {
7612 rq = cpu_rq(i);
7613 cfs_rq = tg->cfs_rq[i];
7614 list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007615 rt_rq = tg->rt_rq[i];
7616 list_add_rcu(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007617 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007618 list_add_rcu(&tg->list, &task_groups);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007619 unlock_task_group_list();
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007620
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007621 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007622
7623err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007624 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007625 return ERR_PTR(-ENOMEM);
7626}
7627
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007628/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007629static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007630{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007631 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007632 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007633}
7634
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007635/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007636void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007637{
James Bottomley7bae49d2007-10-29 21:18:11 +01007638 struct cfs_rq *cfs_rq = NULL;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007639 struct rt_rq *rt_rq = NULL;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007640 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007641
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007642 lock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007643 for_each_possible_cpu(i) {
7644 cfs_rq = tg->cfs_rq[i];
7645 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007646 rt_rq = tg->rt_rq[i];
7647 list_del_rcu(&rt_rq->leaf_rt_rq_list);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007648 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007649 list_del_rcu(&tg->list);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007650 unlock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007651
James Bottomley7bae49d2007-10-29 21:18:11 +01007652 BUG_ON(!cfs_rq);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007653
7654 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007655 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007656}
7657
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007658/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007659 * The caller of this function should have put the task in its new group
7660 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7661 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007662 */
7663void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007664{
7665 int on_rq, running;
7666 unsigned long flags;
7667 struct rq *rq;
7668
7669 rq = task_rq_lock(tsk, &flags);
7670
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007671 update_rq_clock(rq);
7672
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007673 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007674 on_rq = tsk->se.on_rq;
7675
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007676 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007677 dequeue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007678 if (unlikely(running))
7679 tsk->sched_class->put_prev_task(rq, tsk);
7680 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007681
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007682 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007683
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007684 if (on_rq) {
7685 if (unlikely(running))
7686 tsk->sched_class->set_curr_task(rq);
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02007687 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02007688 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007689
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007690 task_rq_unlock(rq, &flags);
7691}
7692
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007693/* rq->lock to be locked by caller */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007694static void set_se_shares(struct sched_entity *se, unsigned long shares)
7695{
7696 struct cfs_rq *cfs_rq = se->cfs_rq;
7697 struct rq *rq = cfs_rq->rq;
7698 int on_rq;
7699
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007700 if (!shares)
7701 shares = MIN_GROUP_SHARES;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007702
7703 on_rq = se->on_rq;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007704 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007705 dequeue_entity(cfs_rq, se, 0);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007706 dec_cpu_load(rq, se->load.weight);
7707 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007708
7709 se->load.weight = shares;
7710 se->load.inv_weight = div64_64((1ULL<<32), shares);
7711
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007712 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007713 enqueue_entity(cfs_rq, se, 0);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007714 inc_cpu_load(rq, se->load.weight);
7715 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007716}
7717
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007718int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007719{
7720 int i;
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007721 struct cfs_rq *cfs_rq;
7722 struct rq *rq;
Ingo Molnarc61935f2008-01-22 11:24:58 +01007723
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007724 lock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007725 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007726 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007727
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007728 if (shares < MIN_GROUP_SHARES)
7729 shares = MIN_GROUP_SHARES;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007730
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01007731 /*
7732 * Prevent any load balance activity (rebalance_shares,
7733 * load_balance_fair) from referring to this group first,
7734 * by taking it off the rq->leaf_cfs_rq_list on each cpu.
7735 */
7736 for_each_possible_cpu(i) {
7737 cfs_rq = tg->cfs_rq[i];
7738 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
7739 }
7740
7741 /* wait for any ongoing reference to this group to finish */
7742 synchronize_sched();
7743
7744 /*
7745 * Now we are free to modify the group's share on each cpu
7746 * w/o tripping rebalance_share or load_balance_fair.
7747 */
7748 tg->shares = shares;
7749 for_each_possible_cpu(i) {
7750 spin_lock_irq(&cpu_rq(i)->lock);
7751 set_se_shares(tg->se[i], shares);
7752 spin_unlock_irq(&cpu_rq(i)->lock);
7753 }
7754
7755 /*
7756 * Enable load balance activity on this group, by inserting it back on
7757 * each cpu's rq->leaf_cfs_rq_list.
7758 */
7759 for_each_possible_cpu(i) {
7760 rq = cpu_rq(i);
7761 cfs_rq = tg->cfs_rq[i];
7762 list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7763 }
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007764done:
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +01007765 unlock_task_group_list();
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007766 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007767}
7768
Dhaval Giani5cb350b2007-10-15 17:00:14 +02007769unsigned long sched_group_shares(struct task_group *tg)
7770{
7771 return tg->shares;
7772}
7773
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007774/*
7775 * Ensure the total rt_ratio <= sysctl_sched_rt_ratio
7776 */
7777int sched_group_set_rt_ratio(struct task_group *tg, unsigned long rt_ratio)
7778{
7779 struct task_group *tgi;
7780 unsigned long total = 0;
7781
7782 rcu_read_lock();
7783 list_for_each_entry_rcu(tgi, &task_groups, list)
7784 total += tgi->rt_ratio;
7785 rcu_read_unlock();
7786
7787 if (total + rt_ratio - tg->rt_ratio > sysctl_sched_rt_ratio)
7788 return -EINVAL;
7789
7790 tg->rt_ratio = rt_ratio;
7791 return 0;
7792}
7793
7794unsigned long sched_group_rt_ratio(struct task_group *tg)
7795{
7796 return tg->rt_ratio;
7797}
7798
Ingo Molnar3a252012007-10-15 17:00:12 +02007799#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007800
7801#ifdef CONFIG_FAIR_CGROUP_SCHED
7802
7803/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007804static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007805{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007806 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
7807 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007808}
7809
7810static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02007811cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007812{
7813 struct task_group *tg;
7814
Paul Menage2b01dfe2007-10-24 18:23:50 +02007815 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007816 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007817 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007818 return &init_task_group.css;
7819 }
7820
7821 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007822 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007823 return ERR_PTR(-EINVAL);
7824
7825 tg = sched_create_group();
7826 if (IS_ERR(tg))
7827 return ERR_PTR(-ENOMEM);
7828
7829 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02007830 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007831
7832 return &tg->css;
7833}
7834
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007835static void
7836cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007837{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007838 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007839
7840 sched_destroy_group(tg);
7841}
7842
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007843static int
7844cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
7845 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007846{
7847 /* We don't support RT-tasks being in separate groups */
7848 if (tsk->sched_class != &fair_sched_class)
7849 return -EINVAL;
7850
7851 return 0;
7852}
7853
7854static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02007855cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007856 struct cgroup *old_cont, struct task_struct *tsk)
7857{
7858 sched_move_task(tsk);
7859}
7860
Paul Menage2b01dfe2007-10-24 18:23:50 +02007861static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
7862 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007863{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007864 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007865}
7866
Paul Menage2b01dfe2007-10-24 18:23:50 +02007867static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007868{
Paul Menage2b01dfe2007-10-24 18:23:50 +02007869 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007870
7871 return (u64) tg->shares;
7872}
7873
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007874static int cpu_rt_ratio_write_uint(struct cgroup *cgrp, struct cftype *cftype,
7875 u64 rt_ratio_val)
7876{
7877 return sched_group_set_rt_ratio(cgroup_tg(cgrp), rt_ratio_val);
7878}
7879
7880static u64 cpu_rt_ratio_read_uint(struct cgroup *cgrp, struct cftype *cft)
7881{
7882 struct task_group *tg = cgroup_tg(cgrp);
7883
7884 return (u64) tg->rt_ratio;
7885}
7886
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007887static struct cftype cpu_files[] = {
7888 {
7889 .name = "shares",
7890 .read_uint = cpu_shares_read_uint,
7891 .write_uint = cpu_shares_write_uint,
7892 },
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007893 {
7894 .name = "rt_ratio",
7895 .read_uint = cpu_rt_ratio_read_uint,
7896 .write_uint = cpu_rt_ratio_write_uint,
7897 },
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007898};
7899
7900static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
7901{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01007902 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007903}
7904
7905struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01007906 .name = "cpu",
7907 .create = cpu_cgroup_create,
7908 .destroy = cpu_cgroup_destroy,
7909 .can_attach = cpu_cgroup_can_attach,
7910 .attach = cpu_cgroup_attach,
7911 .populate = cpu_cgroup_populate,
7912 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07007913 .early_init = 1,
7914};
7915
7916#endif /* CONFIG_FAIR_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007917
7918#ifdef CONFIG_CGROUP_CPUACCT
7919
7920/*
7921 * CPU accounting code for task groups.
7922 *
7923 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
7924 * (balbir@in.ibm.com).
7925 */
7926
7927/* track cpu usage of a group of tasks */
7928struct cpuacct {
7929 struct cgroup_subsys_state css;
7930 /* cpuusage holds pointer to a u64-type object on every cpu */
7931 u64 *cpuusage;
7932};
7933
7934struct cgroup_subsys cpuacct_subsys;
7935
7936/* return cpu accounting group corresponding to this container */
7937static inline struct cpuacct *cgroup_ca(struct cgroup *cont)
7938{
7939 return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id),
7940 struct cpuacct, css);
7941}
7942
7943/* return cpu accounting group to which this task belongs */
7944static inline struct cpuacct *task_ca(struct task_struct *tsk)
7945{
7946 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
7947 struct cpuacct, css);
7948}
7949
7950/* create a new cpu accounting group */
7951static struct cgroup_subsys_state *cpuacct_create(
7952 struct cgroup_subsys *ss, struct cgroup *cont)
7953{
7954 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
7955
7956 if (!ca)
7957 return ERR_PTR(-ENOMEM);
7958
7959 ca->cpuusage = alloc_percpu(u64);
7960 if (!ca->cpuusage) {
7961 kfree(ca);
7962 return ERR_PTR(-ENOMEM);
7963 }
7964
7965 return &ca->css;
7966}
7967
7968/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007969static void
7970cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01007971{
7972 struct cpuacct *ca = cgroup_ca(cont);
7973
7974 free_percpu(ca->cpuusage);
7975 kfree(ca);
7976}
7977
7978/* return total cpu usage (in nanoseconds) of a group */
7979static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft)
7980{
7981 struct cpuacct *ca = cgroup_ca(cont);
7982 u64 totalcpuusage = 0;
7983 int i;
7984
7985 for_each_possible_cpu(i) {
7986 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
7987
7988 /*
7989 * Take rq->lock to make 64-bit addition safe on 32-bit
7990 * platforms.
7991 */
7992 spin_lock_irq(&cpu_rq(i)->lock);
7993 totalcpuusage += *cpuusage;
7994 spin_unlock_irq(&cpu_rq(i)->lock);
7995 }
7996
7997 return totalcpuusage;
7998}
7999
8000static struct cftype files[] = {
8001 {
8002 .name = "usage",
8003 .read_uint = cpuusage_read,
8004 },
8005};
8006
8007static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8008{
8009 return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files));
8010}
8011
8012/*
8013 * charge this task's execution time to its accounting group.
8014 *
8015 * called with rq->lock held.
8016 */
8017static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8018{
8019 struct cpuacct *ca;
8020
8021 if (!cpuacct_subsys.active)
8022 return;
8023
8024 ca = task_ca(tsk);
8025 if (ca) {
8026 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8027
8028 *cpuusage += cputime;
8029 }
8030}
8031
8032struct cgroup_subsys cpuacct_subsys = {
8033 .name = "cpuacct",
8034 .create = cpuacct_create,
8035 .destroy = cpuacct_destroy,
8036 .populate = cpuacct_populate,
8037 .subsys_id = cpuacct_subsys_id,
8038};
8039#endif /* CONFIG_CGROUP_CPUACCT */