blob: 62830eaec52fd7f304359bc2680f2aee45fd0481 [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>
Reynes Philippe30914a52008-03-17 16:19:05 -070069#include <linux/tick.h>
Mike Travis434d53b2008-04-04 18:11:04 -070070#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Eric Dumazet5517d862007-05-08 00:32:57 -070072#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020073#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080076 * Scheduler clock - returns current time in nanosec units.
77 * This is default implementation.
78 * Architectures and sub-architectures can override this.
79 */
80unsigned long long __attribute__((weak)) sched_clock(void)
81{
Eric Dumazetd6322fa2007-11-09 22:39:38 +010082 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080083}
84
85/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * Convert user-nice values [ -20 ... 0 ... 19 ]
87 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
88 * and back.
89 */
90#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
91#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
92#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
93
94/*
95 * 'User priority' is the nice value converted to something we
96 * can work with better when scaling various scheduler parameters,
97 * it's a [ 0 ... 39 ] range.
98 */
99#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
100#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
101#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
102
103/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100104 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100106#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200108#define NICE_0_LOAD SCHED_LOAD_SCALE
109#define NICE_0_SHIFT SCHED_LOAD_SHIFT
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * These are the 'tuning knobs' of the scheduler:
113 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200114 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Timeslices get refilled after they expire.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700118
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200119/*
120 * single value that denotes runtime == period, ie unlimited time.
121 */
122#define RUNTIME_INF ((u64)~0ULL)
123
Eric Dumazet5517d862007-05-08 00:32:57 -0700124#ifdef CONFIG_SMP
125/*
126 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
127 * Since cpu_power is a 'constant', we can use a reciprocal divide.
128 */
129static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
130{
131 return reciprocal_divide(load, sg->reciprocal_cpu_power);
132}
133
134/*
135 * Each time a sched group cpu_power is changed,
136 * we must compute its reciprocal value
137 */
138static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
139{
140 sg->__cpu_power += val;
141 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
142}
143#endif
144
Ingo Molnare05606d2007-07-09 18:51:59 +0200145static inline int rt_policy(int policy)
146{
147 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
148 return 1;
149 return 0;
150}
151
152static inline int task_has_rt_policy(struct task_struct *p)
153{
154 return rt_policy(p->policy);
155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200158 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200160struct rt_prio_array {
161 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
162 struct list_head queue[MAX_RT_PRIO];
163};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200165struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100166 /* nests inside the rq lock: */
167 spinlock_t rt_runtime_lock;
168 ktime_t rt_period;
169 u64 rt_runtime;
170 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200171};
172
173static struct rt_bandwidth def_rt_bandwidth;
174
175static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
176
177static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
178{
179 struct rt_bandwidth *rt_b =
180 container_of(timer, struct rt_bandwidth, rt_period_timer);
181 ktime_t now;
182 int overrun;
183 int idle = 0;
184
185 for (;;) {
186 now = hrtimer_cb_get_time(timer);
187 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
188
189 if (!overrun)
190 break;
191
192 idle = do_sched_rt_period_timer(rt_b, overrun);
193 }
194
195 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
196}
197
198static
199void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
200{
201 rt_b->rt_period = ns_to_ktime(period);
202 rt_b->rt_runtime = runtime;
203
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200204 spin_lock_init(&rt_b->rt_runtime_lock);
205
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200206 hrtimer_init(&rt_b->rt_period_timer,
207 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
208 rt_b->rt_period_timer.function = sched_rt_period_timer;
209 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
210}
211
212static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
213{
214 ktime_t now;
215
216 if (rt_b->rt_runtime == RUNTIME_INF)
217 return;
218
219 if (hrtimer_active(&rt_b->rt_period_timer))
220 return;
221
222 spin_lock(&rt_b->rt_runtime_lock);
223 for (;;) {
224 if (hrtimer_active(&rt_b->rt_period_timer))
225 break;
226
227 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
228 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
229 hrtimer_start(&rt_b->rt_period_timer,
230 rt_b->rt_period_timer.expires,
231 HRTIMER_MODE_ABS);
232 }
233 spin_unlock(&rt_b->rt_runtime_lock);
234}
235
236#ifdef CONFIG_RT_GROUP_SCHED
237static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
238{
239 hrtimer_cancel(&rt_b->rt_period_timer);
240}
241#endif
242
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100243#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200244
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700245#include <linux/cgroup.h>
246
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200247struct cfs_rq;
248
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100249static LIST_HEAD(task_groups);
250
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200251/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200252struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100253#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700254 struct cgroup_subsys_state css;
255#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100256
257#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200258 /* schedulable entities of this group on each cpu */
259 struct sched_entity **se;
260 /* runqueue "owned" by this group on each cpu */
261 struct cfs_rq **cfs_rq;
262 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100263#endif
264
265#ifdef CONFIG_RT_GROUP_SCHED
266 struct sched_rt_entity **rt_se;
267 struct rt_rq **rt_rq;
268
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200269 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100270#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100271
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100272 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100273 struct list_head list;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200274};
275
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100276#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200277/* Default task group's sched entity on each cpu */
278static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
279/* Default task group's cfs_rq on each cpu */
280static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100281#endif
282
283#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100284static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
285static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100286#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100287
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100288/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100289 * a task group's cpu shares.
290 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100291static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100292
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100293/* doms_cur_mutex serializes access to doms_cur[] array */
294static DEFINE_MUTEX(doms_cur_mutex);
295
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100296#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100297#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100298# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200299#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100300# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200301#endif
302
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100303static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100304#endif
305
306/* Default task group.
307 * Every task in system belong to this group at bootup.
308 */
Mike Travis434d53b2008-04-04 18:11:04 -0700309struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200310
311/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200312static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200313{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200314 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200315
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100316#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200317 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100318#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700319 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
320 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200321#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100322 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200323#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200324 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200325}
326
327/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100328static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200329{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100330#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100331 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
332 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100333#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100334
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100335#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100336 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
337 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100338#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200339}
340
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100341static inline void lock_doms_cur(void)
342{
343 mutex_lock(&doms_cur_mutex);
344}
345
346static inline void unlock_doms_cur(void)
347{
348 mutex_unlock(&doms_cur_mutex);
349}
350
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200351#else
352
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100353static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100354static inline void lock_doms_cur(void) { }
355static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200356
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100357#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200358
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200359/* CFS-related fields in a runqueue */
360struct cfs_rq {
361 struct load_weight load;
362 unsigned long nr_running;
363
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200364 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200365 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200366
367 struct rb_root tasks_timeline;
368 struct rb_node *rb_leftmost;
369 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200370 /* 'curr' points to currently running entity on this cfs_rq.
371 * It is set to NULL otherwise (i.e when none are currently running).
372 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100373 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200374
375 unsigned long nr_spread_over;
376
Ingo Molnar62160e32007-10-15 17:00:03 +0200377#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200378 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
379
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100380 /*
381 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200382 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
383 * (like users, containers etc.)
384 *
385 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
386 * list is used during load balance.
387 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100388 struct list_head leaf_cfs_rq_list;
389 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200390#endif
391};
392
393/* Real-Time classes' related field in a runqueue: */
394struct rt_rq {
395 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100396 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100397#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100398 int highest_prio; /* highest queued rt task prio */
399#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100400#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100401 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100402 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100403#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100404 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100405 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200406 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100407 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200408 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100409
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100410#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100411 unsigned long rt_nr_boosted;
412
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100413 struct rq *rq;
414 struct list_head leaf_rt_rq_list;
415 struct task_group *tg;
416 struct sched_rt_entity *rt_se;
417#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200418};
419
Gregory Haskins57d885f2008-01-25 21:08:18 +0100420#ifdef CONFIG_SMP
421
422/*
423 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100424 * variables. Each exclusive cpuset essentially defines an island domain by
425 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100426 * exclusive cpuset is created, we also create and attach a new root-domain
427 * object.
428 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100429 */
430struct root_domain {
431 atomic_t refcount;
432 cpumask_t span;
433 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100434
Ingo Molnar0eab9142008-01-25 21:08:19 +0100435 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100436 * The "RT overload" flag: it gets set if a CPU has more than
437 * one runnable RT task.
438 */
439 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100440 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100441};
442
Gregory Haskinsdc938522008-01-25 21:08:26 +0100443/*
444 * By default the system creates a single root-domain with all cpus as
445 * members (mimicking the global state we have today).
446 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100447static struct root_domain def_root_domain;
448
449#endif
450
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200451/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * This is the main, per-CPU runqueue data structure.
453 *
454 * Locking rule: those places that want to lock multiple runqueues
455 * (such as the load balancing or the thread migration code), lock
456 * acquire operations must be ordered by ascending &runqueue.
457 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700458struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200459 /* runqueue lock: */
460 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 /*
463 * nr_running and cpu_load should be in the same cacheline because
464 * remote CPUs use both these fields when doing load calculation.
465 */
466 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200467 #define CPU_LOAD_IDX_MAX 5
468 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700469 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700470#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200471 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700472 unsigned char in_nohz_recently;
473#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200474 /* capture load from *all* tasks on this cpu: */
475 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200476 unsigned long nr_load_updates;
477 u64 nr_switches;
478
479 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100480 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100481
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200482#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200483 /* list of leaf cfs_rq on this cpu: */
484 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100485#endif
486#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100487 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /*
491 * This is part of a global counter where only the total sum
492 * over all CPUs matters. A task can increase this counter on
493 * one CPU and if it got migrated afterwards it may decrease
494 * it on another CPU. Always updated under the runqueue lock:
495 */
496 unsigned long nr_uninterruptible;
497
Ingo Molnar36c8b582006-07-03 00:25:41 -0700498 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800499 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200501
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200502 u64 clock, prev_clock_raw;
503 s64 clock_max_delta;
504
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100505 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200506 u64 idle_clock;
507 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200508 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 atomic_t nr_iowait;
511
512#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100513 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct sched_domain *sd;
515
516 /* For active balancing */
517 int active_balance;
518 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200519 /* cpu of this runqueue: */
520 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Ingo Molnar36c8b582006-07-03 00:25:41 -0700522 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 struct list_head migration_queue;
524#endif
525
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100526#ifdef CONFIG_SCHED_HRTICK
527 unsigned long hrtick_flags;
528 ktime_t hrtick_expire;
529 struct hrtimer hrtick_timer;
530#endif
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532#ifdef CONFIG_SCHEDSTATS
533 /* latency stats */
534 struct sched_info rq_sched_info;
535
536 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200537 unsigned int yld_exp_empty;
538 unsigned int yld_act_empty;
539 unsigned int yld_both_empty;
540 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200543 unsigned int sched_switch;
544 unsigned int sched_count;
545 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200548 unsigned int ttwu_count;
549 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200550
551 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200552 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700554 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555};
556
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700557static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Ingo Molnardd41f592007-07-09 18:51:59 +0200559static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
560{
561 rq->curr->sched_class->check_preempt_curr(rq, p);
562}
563
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700564static inline int cpu_of(struct rq *rq)
565{
566#ifdef CONFIG_SMP
567 return rq->cpu;
568#else
569 return 0;
570#endif
571}
572
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200573#ifdef CONFIG_NO_HZ
574static inline bool nohz_on(int cpu)
575{
576 return tick_get_tick_sched(cpu)->nohz_mode != NOHZ_MODE_INACTIVE;
577}
578
579static inline u64 max_skipped_ticks(struct rq *rq)
580{
581 return nohz_on(cpu_of(rq)) ? jiffies - rq->last_tick_seen + 2 : 1;
582}
583
584static inline void update_last_tick_seen(struct rq *rq)
585{
586 rq->last_tick_seen = jiffies;
587}
588#else
589static inline u64 max_skipped_ticks(struct rq *rq)
590{
591 return 1;
592}
593
594static inline void update_last_tick_seen(struct rq *rq)
595{
596}
597#endif
598
Nick Piggin674311d2005-06-25 14:57:27 -0700599/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200600 * Update the per-runqueue clock, as finegrained as the platform can give
601 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200602 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200603static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200604{
605 u64 prev_raw = rq->prev_clock_raw;
606 u64 now = sched_clock();
607 s64 delta = now - prev_raw;
608 u64 clock = rq->clock;
609
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200610#ifdef CONFIG_SCHED_DEBUG
611 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
612#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200613 /*
614 * Protect against sched_clock() occasionally going backwards:
615 */
616 if (unlikely(delta < 0)) {
617 clock++;
618 rq->clock_warps++;
619 } else {
620 /*
621 * Catch too large forward jumps too:
622 */
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200623 u64 max_jump = max_skipped_ticks(rq) * TICK_NSEC;
624 u64 max_time = rq->tick_timestamp + max_jump;
625
626 if (unlikely(clock + delta > max_time)) {
627 if (clock < max_time)
628 clock = max_time;
Ingo Molnar529c7722007-08-10 23:05:11 +0200629 else
630 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200631 rq->clock_overflows++;
632 } else {
633 if (unlikely(delta > rq->clock_max_delta))
634 rq->clock_max_delta = delta;
635 clock += delta;
636 }
637 }
638
639 rq->prev_clock_raw = now;
640 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200641}
642
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200643static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200644{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200645 if (likely(smp_processor_id() == cpu_of(rq)))
646 __update_rq_clock(rq);
647}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200648
Ingo Molnar20d315d2007-07-09 18:51:58 +0200649/*
Nick Piggin674311d2005-06-25 14:57:27 -0700650 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700651 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700652 *
653 * The domain tree of any CPU may only be accessed from within
654 * preempt-disabled sections.
655 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700656#define for_each_domain(cpu, __sd) \
657 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
660#define this_rq() (&__get_cpu_var(runqueues))
661#define task_rq(p) cpu_rq(task_cpu(p))
662#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
663
Ingo Molnare436d802007-07-19 21:28:35 +0200664/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200665 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
666 */
667#ifdef CONFIG_SCHED_DEBUG
668# define const_debug __read_mostly
669#else
670# define const_debug static const
671#endif
672
673/*
674 * Debugging: various feature bits
675 */
676enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200677 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100678 SCHED_FEAT_WAKEUP_PREEMPT = 2,
679 SCHED_FEAT_START_DEBIT = 4,
Ingo Molnard25ce4c2008-03-17 09:36:53 +0100680 SCHED_FEAT_AFFINE_WAKEUPS = 8,
681 SCHED_FEAT_CACHE_HOT_BUDDY = 16,
Ingo Molnar02e2b832008-03-19 01:37:10 +0100682 SCHED_FEAT_SYNC_WAKEUPS = 32,
683 SCHED_FEAT_HRTICK = 64,
684 SCHED_FEAT_DOUBLE_TICK = 128,
Peter Zijlstra112f53f2008-03-19 11:43:36 +0100685 SCHED_FEAT_NORMALIZED_SLEEPER = 256,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200686};
687
688const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200689 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100690 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200691 SCHED_FEAT_START_DEBIT * 1 |
Ingo Molnard25ce4c2008-03-17 09:36:53 +0100692 SCHED_FEAT_AFFINE_WAKEUPS * 1 |
693 SCHED_FEAT_CACHE_HOT_BUDDY * 1 |
Ingo Molnar02e2b832008-03-19 01:37:10 +0100694 SCHED_FEAT_SYNC_WAKEUPS * 1 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100695 SCHED_FEAT_HRTICK * 1 |
Peter Zijlstra112f53f2008-03-19 11:43:36 +0100696 SCHED_FEAT_DOUBLE_TICK * 0 |
697 SCHED_FEAT_NORMALIZED_SLEEPER * 1;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200698
699#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
700
701/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100702 * Number of tasks to iterate in a single balance run.
703 * Limited because this is done with IRQs disabled.
704 */
705const_debug unsigned int sysctl_sched_nr_migrate = 32;
706
707/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100708 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100709 * default: 1s
710 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100711unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100712
Ingo Molnar6892b752008-02-13 14:02:36 +0100713static __read_mostly int scheduler_running;
714
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100715/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100716 * part of the period that we allow rt tasks to run in us.
717 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100718 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100719int sysctl_sched_rt_runtime = 950000;
720
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200721static inline u64 global_rt_period(void)
722{
723 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
724}
725
726static inline u64 global_rt_runtime(void)
727{
728 if (sysctl_sched_rt_period < 0)
729 return RUNTIME_INF;
730
731 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
732}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100733
Ingo Molnar27ec4402008-02-28 21:00:21 +0100734static const unsigned long long time_sync_thresh = 100000;
735
736static DEFINE_PER_CPU(unsigned long long, time_offset);
737static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
738
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100739/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100740 * Global lock which we take every now and then to synchronize
741 * the CPUs time. This method is not warp-safe, but it's good
742 * enough to synchronize slowly diverging time sources and thus
743 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200744 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100745static DEFINE_SPINLOCK(time_sync_lock);
746static unsigned long long prev_global_time;
747
748static unsigned long long __sync_cpu_clock(cycles_t time, int cpu)
749{
750 unsigned long flags;
751
752 spin_lock_irqsave(&time_sync_lock, flags);
753
754 if (time < prev_global_time) {
755 per_cpu(time_offset, cpu) += prev_global_time - time;
756 time = prev_global_time;
757 } else {
758 prev_global_time = time;
759 }
760
761 spin_unlock_irqrestore(&time_sync_lock, flags);
762
763 return time;
764}
765
766static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200767{
Ingo Molnare436d802007-07-19 21:28:35 +0200768 unsigned long long now;
769 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200770 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200771
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100772 /*
773 * Only call sched_clock() if the scheduler has already been
774 * initialized (some code might call cpu_clock() very early):
775 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100776 if (unlikely(!scheduler_running))
777 return 0;
778
779 local_irq_save(flags);
780 rq = cpu_rq(cpu);
781 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200782 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200783 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200784
785 return now;
786}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100787
788/*
789 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
790 * clock constructed from sched_clock():
791 */
792unsigned long long cpu_clock(int cpu)
793{
794 unsigned long long prev_cpu_time, time, delta_time;
795
796 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
797 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
798 delta_time = time-prev_cpu_time;
799
800 if (unlikely(delta_time > time_sync_thresh))
801 time = __sync_cpu_clock(time, cpu);
802
803 return time;
804}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200805EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700808# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700810#ifndef finish_arch_switch
811# define finish_arch_switch(prev) do { } while (0)
812#endif
813
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100814static inline int task_current(struct rq *rq, struct task_struct *p)
815{
816 return rq->curr == p;
817}
818
Nick Piggin4866cde2005-06-25 14:57:23 -0700819#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700820static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700821{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100822 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700823}
824
Ingo Molnar70b97a72006-07-03 00:25:42 -0700825static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700826{
827}
828
Ingo Molnar70b97a72006-07-03 00:25:42 -0700829static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700830{
Ingo Molnarda04c032005-09-13 11:17:59 +0200831#ifdef CONFIG_DEBUG_SPINLOCK
832 /* this is a valid case when another task releases the spinlock */
833 rq->lock.owner = current;
834#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700835 /*
836 * If we are tracking spinlock dependencies then we have to
837 * fix up the runqueue lock - which gets 'carried over' from
838 * prev into current:
839 */
840 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
841
Nick Piggin4866cde2005-06-25 14:57:23 -0700842 spin_unlock_irq(&rq->lock);
843}
844
845#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700846static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700847{
848#ifdef CONFIG_SMP
849 return p->oncpu;
850#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100851 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700852#endif
853}
854
Ingo Molnar70b97a72006-07-03 00:25:42 -0700855static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700856{
857#ifdef CONFIG_SMP
858 /*
859 * We can optimise this out completely for !SMP, because the
860 * SMP rebalancing from interrupt is the only thing that cares
861 * here.
862 */
863 next->oncpu = 1;
864#endif
865#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
866 spin_unlock_irq(&rq->lock);
867#else
868 spin_unlock(&rq->lock);
869#endif
870}
871
Ingo Molnar70b97a72006-07-03 00:25:42 -0700872static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700873{
874#ifdef CONFIG_SMP
875 /*
876 * After ->oncpu is cleared, the task can be moved to a different CPU.
877 * We must ensure this doesn't happen until the switch is completely
878 * finished.
879 */
880 smp_wmb();
881 prev->oncpu = 0;
882#endif
883#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
884 local_irq_enable();
885#endif
886}
887#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700890 * __task_rq_lock - lock the runqueue a given task resides on.
891 * Must be called interrupts disabled.
892 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700893static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700894 __acquires(rq->lock)
895{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200896 for (;;) {
897 struct rq *rq = task_rq(p);
898 spin_lock(&rq->lock);
899 if (likely(rq == task_rq(p)))
900 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700901 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700902 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700903}
904
905/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100907 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 * explicitly disabling preemption.
909 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700910static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 __acquires(rq->lock)
912{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700913 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Andi Kleen3a5c3592007-10-15 17:00:14 +0200915 for (;;) {
916 local_irq_save(*flags);
917 rq = task_rq(p);
918 spin_lock(&rq->lock);
919 if (likely(rq == task_rq(p)))
920 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Alexey Dobriyana9957442007-10-15 17:00:13 +0200925static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700926 __releases(rq->lock)
927{
928 spin_unlock(&rq->lock);
929}
930
Ingo Molnar70b97a72006-07-03 00:25:42 -0700931static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 __releases(rq->lock)
933{
934 spin_unlock_irqrestore(&rq->lock, *flags);
935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800938 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200940static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 __acquires(rq->lock)
942{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700943 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 local_irq_disable();
946 rq = this_rq();
947 spin_lock(&rq->lock);
948
949 return rq;
950}
951
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200952/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200953 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200954 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200955void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200956{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200957 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200958
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200959 spin_lock(&rq->lock);
960 __update_rq_clock(rq);
961 spin_unlock(&rq->lock);
962 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200963}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200964EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
965
966/*
967 * We just idled delta nanoseconds (called with irqs disabled):
968 */
969void sched_clock_idle_wakeup_event(u64 delta_ns)
970{
971 struct rq *rq = cpu_rq(smp_processor_id());
972 u64 now = sched_clock();
973
974 rq->idle_clock += delta_ns;
975 /*
976 * Override the previous timestamp and ignore all
977 * sched_clock() deltas that occured while we idled,
978 * and use the PM-provided delta_ns to advance the
979 * rq clock:
980 */
981 spin_lock(&rq->lock);
982 rq->prev_clock_raw = now;
983 rq->clock += delta_ns;
984 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100985 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200986}
987EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200988
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100989static void __resched_task(struct task_struct *p, int tif_bit);
990
991static inline void resched_task(struct task_struct *p)
992{
993 __resched_task(p, TIF_NEED_RESCHED);
994}
995
996#ifdef CONFIG_SCHED_HRTICK
997/*
998 * Use HR-timers to deliver accurate preemption points.
999 *
1000 * Its all a bit involved since we cannot program an hrt while holding the
1001 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1002 * reschedule event.
1003 *
1004 * When we get rescheduled we reprogram the hrtick_timer outside of the
1005 * rq->lock.
1006 */
1007static inline void resched_hrt(struct task_struct *p)
1008{
1009 __resched_task(p, TIF_HRTICK_RESCHED);
1010}
1011
1012static inline void resched_rq(struct rq *rq)
1013{
1014 unsigned long flags;
1015
1016 spin_lock_irqsave(&rq->lock, flags);
1017 resched_task(rq->curr);
1018 spin_unlock_irqrestore(&rq->lock, flags);
1019}
1020
1021enum {
1022 HRTICK_SET, /* re-programm hrtick_timer */
1023 HRTICK_RESET, /* not a new slice */
1024};
1025
1026/*
1027 * Use hrtick when:
1028 * - enabled by features
1029 * - hrtimer is actually high res
1030 */
1031static inline int hrtick_enabled(struct rq *rq)
1032{
1033 if (!sched_feat(HRTICK))
1034 return 0;
1035 return hrtimer_is_hres_active(&rq->hrtick_timer);
1036}
1037
1038/*
1039 * Called to set the hrtick timer state.
1040 *
1041 * called with rq->lock held and irqs disabled
1042 */
1043static void hrtick_start(struct rq *rq, u64 delay, int reset)
1044{
1045 assert_spin_locked(&rq->lock);
1046
1047 /*
1048 * preempt at: now + delay
1049 */
1050 rq->hrtick_expire =
1051 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1052 /*
1053 * indicate we need to program the timer
1054 */
1055 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1056 if (reset)
1057 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1058
1059 /*
1060 * New slices are called from the schedule path and don't need a
1061 * forced reschedule.
1062 */
1063 if (reset)
1064 resched_hrt(rq->curr);
1065}
1066
1067static void hrtick_clear(struct rq *rq)
1068{
1069 if (hrtimer_active(&rq->hrtick_timer))
1070 hrtimer_cancel(&rq->hrtick_timer);
1071}
1072
1073/*
1074 * Update the timer from the possible pending state.
1075 */
1076static void hrtick_set(struct rq *rq)
1077{
1078 ktime_t time;
1079 int set, reset;
1080 unsigned long flags;
1081
1082 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1083
1084 spin_lock_irqsave(&rq->lock, flags);
1085 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1086 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1087 time = rq->hrtick_expire;
1088 clear_thread_flag(TIF_HRTICK_RESCHED);
1089 spin_unlock_irqrestore(&rq->lock, flags);
1090
1091 if (set) {
1092 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1093 if (reset && !hrtimer_active(&rq->hrtick_timer))
1094 resched_rq(rq);
1095 } else
1096 hrtick_clear(rq);
1097}
1098
1099/*
1100 * High-resolution timer tick.
1101 * Runs from hardirq context with interrupts disabled.
1102 */
1103static enum hrtimer_restart hrtick(struct hrtimer *timer)
1104{
1105 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1106
1107 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1108
1109 spin_lock(&rq->lock);
1110 __update_rq_clock(rq);
1111 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1112 spin_unlock(&rq->lock);
1113
1114 return HRTIMER_NORESTART;
1115}
1116
1117static inline void init_rq_hrtick(struct rq *rq)
1118{
1119 rq->hrtick_flags = 0;
1120 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1121 rq->hrtick_timer.function = hrtick;
1122 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1123}
1124
1125void hrtick_resched(void)
1126{
1127 struct rq *rq;
1128 unsigned long flags;
1129
1130 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1131 return;
1132
1133 local_irq_save(flags);
1134 rq = cpu_rq(smp_processor_id());
1135 hrtick_set(rq);
1136 local_irq_restore(flags);
1137}
1138#else
1139static inline void hrtick_clear(struct rq *rq)
1140{
1141}
1142
1143static inline void hrtick_set(struct rq *rq)
1144{
1145}
1146
1147static inline void init_rq_hrtick(struct rq *rq)
1148{
1149}
1150
1151void hrtick_resched(void)
1152{
1153}
1154#endif
1155
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001156/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001157 * resched_task - mark a task 'to be rescheduled now'.
1158 *
1159 * On UP this means the setting of the need_resched flag, on SMP it
1160 * might also involve a cross-CPU call to trigger the scheduler on
1161 * the target CPU.
1162 */
1163#ifdef CONFIG_SMP
1164
1165#ifndef tsk_is_polling
1166#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1167#endif
1168
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001169static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001170{
1171 int cpu;
1172
1173 assert_spin_locked(&task_rq(p)->lock);
1174
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001175 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001176 return;
1177
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001178 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001179
1180 cpu = task_cpu(p);
1181 if (cpu == smp_processor_id())
1182 return;
1183
1184 /* NEED_RESCHED must be visible before we test polling */
1185 smp_mb();
1186 if (!tsk_is_polling(p))
1187 smp_send_reschedule(cpu);
1188}
1189
1190static void resched_cpu(int cpu)
1191{
1192 struct rq *rq = cpu_rq(cpu);
1193 unsigned long flags;
1194
1195 if (!spin_trylock_irqsave(&rq->lock, flags))
1196 return;
1197 resched_task(cpu_curr(cpu));
1198 spin_unlock_irqrestore(&rq->lock, flags);
1199}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001200
1201#ifdef CONFIG_NO_HZ
1202/*
1203 * When add_timer_on() enqueues a timer into the timer wheel of an
1204 * idle CPU then this timer might expire before the next timer event
1205 * which is scheduled to wake up that CPU. In case of a completely
1206 * idle system the next event might even be infinite time into the
1207 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1208 * leaves the inner idle loop so the newly added timer is taken into
1209 * account when the CPU goes back to idle and evaluates the timer
1210 * wheel for the next timer event.
1211 */
1212void wake_up_idle_cpu(int cpu)
1213{
1214 struct rq *rq = cpu_rq(cpu);
1215
1216 if (cpu == smp_processor_id())
1217 return;
1218
1219 /*
1220 * This is safe, as this function is called with the timer
1221 * wheel base lock of (cpu) held. When the CPU is on the way
1222 * to idle and has not yet set rq->curr to idle then it will
1223 * be serialized on the timer wheel base lock and take the new
1224 * timer into account automatically.
1225 */
1226 if (rq->curr != rq->idle)
1227 return;
1228
1229 /*
1230 * We can set TIF_RESCHED on the idle task of the other CPU
1231 * lockless. The worst case is that the other CPU runs the
1232 * idle task through an additional NOOP schedule()
1233 */
1234 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1235
1236 /* NEED_RESCHED must be visible before we test polling */
1237 smp_mb();
1238 if (!tsk_is_polling(rq->idle))
1239 smp_send_reschedule(cpu);
1240}
1241#endif
1242
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001243#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001244static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001245{
1246 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001247 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001248}
1249#endif
1250
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001251#if BITS_PER_LONG == 32
1252# define WMULT_CONST (~0UL)
1253#else
1254# define WMULT_CONST (1UL << 32)
1255#endif
1256
1257#define WMULT_SHIFT 32
1258
Ingo Molnar194081e2007-08-09 11:16:51 +02001259/*
1260 * Shift right and round:
1261 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001262#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001263
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001264static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001265calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1266 struct load_weight *lw)
1267{
1268 u64 tmp;
1269
1270 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001271 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001272
1273 tmp = (u64)delta_exec * weight;
1274 /*
1275 * Check whether we'd overflow the 64-bit multiplication:
1276 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001277 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001278 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001279 WMULT_SHIFT/2);
1280 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001281 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001282
Ingo Molnarecf691d2007-08-02 17:41:40 +02001283 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001284}
1285
1286static inline unsigned long
1287calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1288{
1289 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1290}
1291
Ingo Molnar10919852007-10-15 17:00:04 +02001292static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001293{
1294 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001295 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001296}
1297
Ingo Molnar10919852007-10-15 17:00:04 +02001298static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001299{
1300 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001301 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001302}
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001305 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1306 * of tasks with abnormal "nice" values across CPUs the contribution that
1307 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001308 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001309 * scaled version of the new time slice allocation that they receive on time
1310 * slice expiry etc.
1311 */
1312
Ingo Molnardd41f592007-07-09 18:51:59 +02001313#define WEIGHT_IDLEPRIO 2
1314#define WMULT_IDLEPRIO (1 << 31)
1315
1316/*
1317 * Nice levels are multiplicative, with a gentle 10% change for every
1318 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1319 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1320 * that remained on nice 0.
1321 *
1322 * The "10% effect" is relative and cumulative: from _any_ nice level,
1323 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001324 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1325 * If a task goes up by ~10% and another task goes down by ~10% then
1326 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001327 */
1328static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001329 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1330 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1331 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1332 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1333 /* 0 */ 1024, 820, 655, 526, 423,
1334 /* 5 */ 335, 272, 215, 172, 137,
1335 /* 10 */ 110, 87, 70, 56, 45,
1336 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001337};
1338
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001339/*
1340 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1341 *
1342 * In cases where the weight does not change often, we can use the
1343 * precalculated inverse to speed up arithmetics by turning divisions
1344 * into multiplications:
1345 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001346static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001347 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1348 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1349 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1350 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1351 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1352 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1353 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1354 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001355};
Peter Williams2dd73a42006-06-27 02:54:34 -07001356
Ingo Molnardd41f592007-07-09 18:51:59 +02001357static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1358
1359/*
1360 * runqueue iterator, to support SMP load-balancing between different
1361 * scheduling classes, without having to expose their internal data
1362 * structures to the load-balancing proper:
1363 */
1364struct rq_iterator {
1365 void *arg;
1366 struct task_struct *(*start)(void *);
1367 struct task_struct *(*next)(void *);
1368};
1369
Peter Williamse1d14842007-10-24 18:23:51 +02001370#ifdef CONFIG_SMP
1371static unsigned long
1372balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1373 unsigned long max_load_move, struct sched_domain *sd,
1374 enum cpu_idle_type idle, int *all_pinned,
1375 int *this_best_prio, struct rq_iterator *iterator);
1376
1377static int
1378iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1379 struct sched_domain *sd, enum cpu_idle_type idle,
1380 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001381#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001382
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001383#ifdef CONFIG_CGROUP_CPUACCT
1384static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1385#else
1386static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1387#endif
1388
Gregory Haskinse7693a32008-01-25 21:08:09 +01001389#ifdef CONFIG_SMP
1390static unsigned long source_load(int cpu, int type);
1391static unsigned long target_load(int cpu, int type);
1392static unsigned long cpu_avg_load_per_task(int cpu);
1393static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1394#endif /* CONFIG_SMP */
1395
Ingo Molnardd41f592007-07-09 18:51:59 +02001396#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001397#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001398#include "sched_fair.c"
1399#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001400#ifdef CONFIG_SCHED_DEBUG
1401# include "sched_debug.c"
1402#endif
1403
1404#define sched_class_highest (&rt_sched_class)
1405
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001406static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +02001407{
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001408 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +02001409}
1410
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001411static inline void dec_load(struct rq *rq, const struct task_struct *p)
1412{
1413 update_load_sub(&rq->load, p->se.load.weight);
1414}
1415
1416static void inc_nr_running(struct task_struct *p, struct rq *rq)
1417{
1418 rq->nr_running++;
1419 inc_load(rq, p);
1420}
1421
1422static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001423{
1424 rq->nr_running--;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001425 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +02001426}
1427
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001428static void set_load_weight(struct task_struct *p)
1429{
1430 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001431 p->se.load.weight = prio_to_weight[0] * 2;
1432 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1433 return;
1434 }
1435
1436 /*
1437 * SCHED_IDLE tasks get minimal weight:
1438 */
1439 if (p->policy == SCHED_IDLE) {
1440 p->se.load.weight = WEIGHT_IDLEPRIO;
1441 p->se.load.inv_weight = WMULT_IDLEPRIO;
1442 return;
1443 }
1444
1445 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1446 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001447}
1448
Ingo Molnar8159f872007-08-09 11:16:49 +02001449static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001450{
1451 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001452 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001453 p->se.on_rq = 1;
1454}
1455
Ingo Molnar69be72c2007-08-09 11:16:49 +02001456static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001457{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001458 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001459 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001460}
1461
1462/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001463 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001464 */
Ingo Molnar14531182007-07-09 18:51:59 +02001465static inline int __normal_prio(struct task_struct *p)
1466{
Ingo Molnardd41f592007-07-09 18:51:59 +02001467 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001468}
1469
1470/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001471 * Calculate the expected normal priority: i.e. priority
1472 * without taking RT-inheritance into account. Might be
1473 * boosted by interactivity modifiers. Changes upon fork,
1474 * setprio syscalls, and whenever the interactivity
1475 * estimator recalculates.
1476 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001477static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001478{
1479 int prio;
1480
Ingo Molnare05606d2007-07-09 18:51:59 +02001481 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001482 prio = MAX_RT_PRIO-1 - p->rt_priority;
1483 else
1484 prio = __normal_prio(p);
1485 return prio;
1486}
1487
1488/*
1489 * Calculate the current priority, i.e. the priority
1490 * taken into account by the scheduler. This value might
1491 * be boosted by RT tasks, or might be boosted by
1492 * interactivity modifiers. Will be RT if the task got
1493 * RT-boosted. If not then it returns p->normal_prio.
1494 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001495static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001496{
1497 p->normal_prio = normal_prio(p);
1498 /*
1499 * If we are RT tasks or we were boosted to RT priority,
1500 * keep the priority unchanged. Otherwise, update priority
1501 * to the normal priority:
1502 */
1503 if (!rt_prio(p->prio))
1504 return p->normal_prio;
1505 return p->prio;
1506}
1507
1508/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001509 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001511static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001513 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001514 rq->nr_uninterruptible--;
1515
Ingo Molnar8159f872007-08-09 11:16:49 +02001516 enqueue_task(rq, p, wakeup);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001517 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
1520/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 * deactivate_task - remove a task from the runqueue.
1522 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001523static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001525 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001526 rq->nr_uninterruptible++;
1527
Ingo Molnar69be72c2007-08-09 11:16:49 +02001528 dequeue_task(rq, p, sleep);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001529 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532/**
1533 * task_curr - is this task currently executing on a CPU?
1534 * @p: the task in question.
1535 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001536inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
1538 return cpu_curr(task_cpu(p)) == p;
1539}
1540
Peter Williams2dd73a42006-06-27 02:54:34 -07001541/* Used instead of source_load when we know the type == 0 */
1542unsigned long weighted_cpuload(const int cpu)
1543{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001544 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001545}
1546
1547static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1548{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001549 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001550#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001551 /*
1552 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1553 * successfuly executed on another CPU. We must ensure that updates of
1554 * per-task data have been completed by this moment.
1555 */
1556 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001557 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001558#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001559}
1560
Steven Rostedtcb469842008-01-25 21:08:22 +01001561static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1562 const struct sched_class *prev_class,
1563 int oldprio, int running)
1564{
1565 if (prev_class != p->sched_class) {
1566 if (prev_class->switched_from)
1567 prev_class->switched_from(rq, p, running);
1568 p->sched_class->switched_to(rq, p, running);
1569 } else
1570 p->sched_class->prio_changed(rq, p, oldprio, running);
1571}
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001574
Ingo Molnarcc367732007-10-15 17:00:18 +02001575/*
1576 * Is this task likely cache-hot:
1577 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001578static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001579task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1580{
1581 s64 delta;
1582
Ingo Molnarf540a602008-03-15 17:10:34 +01001583 /*
1584 * Buddy candidates are cache hot:
1585 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01001586 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01001587 return 1;
1588
Ingo Molnarcc367732007-10-15 17:00:18 +02001589 if (p->sched_class != &fair_sched_class)
1590 return 0;
1591
Ingo Molnar6bc16652007-10-15 17:00:18 +02001592 if (sysctl_sched_migration_cost == -1)
1593 return 1;
1594 if (sysctl_sched_migration_cost == 0)
1595 return 0;
1596
Ingo Molnarcc367732007-10-15 17:00:18 +02001597 delta = now - p->se.exec_start;
1598
1599 return delta < (s64)sysctl_sched_migration_cost;
1600}
1601
1602
Ingo Molnardd41f592007-07-09 18:51:59 +02001603void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001604{
Ingo Molnardd41f592007-07-09 18:51:59 +02001605 int old_cpu = task_cpu(p);
1606 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001607 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1608 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001609 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001610
1611 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001612
1613#ifdef CONFIG_SCHEDSTATS
1614 if (p->se.wait_start)
1615 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001616 if (p->se.sleep_start)
1617 p->se.sleep_start -= clock_offset;
1618 if (p->se.block_start)
1619 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001620 if (old_cpu != new_cpu) {
1621 schedstat_inc(p, se.nr_migrations);
1622 if (task_hot(p, old_rq->clock, NULL))
1623 schedstat_inc(p, se.nr_forced2_migrations);
1624 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001625#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001626 p->se.vruntime -= old_cfsrq->min_vruntime -
1627 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001628
1629 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001630}
1631
Ingo Molnar70b97a72006-07-03 00:25:42 -07001632struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Ingo Molnar36c8b582006-07-03 00:25:41 -07001635 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 int dest_cpu;
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001639};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641/*
1642 * The task's runqueue lock must be held.
1643 * Returns true if you have to wait for migration thread.
1644 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001645static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001646migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001648 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 /*
1651 * If the task is not on a runqueue (and not running), then
1652 * it is sufficient to simply update the task's cpu field.
1653 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001654 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 set_task_cpu(p, dest_cpu);
1656 return 0;
1657 }
1658
1659 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 req->task = p;
1661 req->dest_cpu = dest_cpu;
1662 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return 1;
1665}
1666
1667/*
1668 * wait_task_inactive - wait for a thread to unschedule.
1669 *
1670 * The caller must ensure that the task *will* unschedule sometime soon,
1671 * else this function might spin for a *long* time. This function can't
1672 * be called with interrupts off, or it may introduce deadlock with
1673 * smp_call_function() if an IPI is sent by the same process we are
1674 * waiting to become inactive.
1675 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001676void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
1678 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001679 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001680 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Andi Kleen3a5c3592007-10-15 17:00:14 +02001682 for (;;) {
1683 /*
1684 * We do the initial early heuristics without holding
1685 * any task-queue locks at all. We'll only try to get
1686 * the runqueue lock when things look like they will
1687 * work out!
1688 */
1689 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001690
Andi Kleen3a5c3592007-10-15 17:00:14 +02001691 /*
1692 * If the task is actively running on another CPU
1693 * still, just relax and busy-wait without holding
1694 * any locks.
1695 *
1696 * NOTE! Since we don't hold any locks, it's not
1697 * even sure that "rq" stays as the right runqueue!
1698 * But we don't care, since "task_running()" will
1699 * return false if the runqueue has changed and p
1700 * is actually now running somewhere else!
1701 */
1702 while (task_running(rq, p))
1703 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001704
Andi Kleen3a5c3592007-10-15 17:00:14 +02001705 /*
1706 * Ok, time to look more closely! We need the rq
1707 * lock now, to be *sure*. If we're wrong, we'll
1708 * just go back and repeat.
1709 */
1710 rq = task_rq_lock(p, &flags);
1711 running = task_running(rq, p);
1712 on_rq = p->se.on_rq;
1713 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001714
Andi Kleen3a5c3592007-10-15 17:00:14 +02001715 /*
1716 * Was it really running after all now that we
1717 * checked with the proper locks actually held?
1718 *
1719 * Oops. Go back and try again..
1720 */
1721 if (unlikely(running)) {
1722 cpu_relax();
1723 continue;
1724 }
1725
1726 /*
1727 * It's not enough that it's not actively running,
1728 * it must be off the runqueue _entirely_, and not
1729 * preempted!
1730 *
1731 * So if it wa still runnable (but just not actively
1732 * running right now), it's preempted, and we should
1733 * yield - it could be a while.
1734 */
1735 if (unlikely(on_rq)) {
1736 schedule_timeout_uninterruptible(1);
1737 continue;
1738 }
1739
1740 /*
1741 * Ahh, all good. It wasn't running, and it wasn't
1742 * runnable, which means that it will never become
1743 * running in the future either. We're all done!
1744 */
1745 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
1749/***
1750 * kick_process - kick a running thread to enter/exit the kernel
1751 * @p: the to-be-kicked thread
1752 *
1753 * Cause a process which is running on another CPU to enter
1754 * kernel-mode, without any delay. (to get signals handled.)
1755 *
1756 * NOTE: this function doesnt have to take the runqueue lock,
1757 * because all it wants to ensure is that the remote task enters
1758 * the kernel. If the IPI races and the task has been migrated
1759 * to another CPU then no harm is done and the purpose has been
1760 * achieved as well.
1761 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001762void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
1764 int cpu;
1765
1766 preempt_disable();
1767 cpu = task_cpu(p);
1768 if ((cpu != smp_processor_id()) && task_curr(p))
1769 smp_send_reschedule(cpu);
1770 preempt_enable();
1771}
1772
1773/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001774 * Return a low guess at the load of a migration-source cpu weighted
1775 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 *
1777 * We want to under-estimate the load of migration sources, to
1778 * balance conservatively.
1779 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001780static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001781{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001782 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001783 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001784
Peter Williams2dd73a42006-06-27 02:54:34 -07001785 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001786 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001787
Ingo Molnardd41f592007-07-09 18:51:59 +02001788 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
1790
1791/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001792 * Return a high guess at the load of a migration-target cpu weighted
1793 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001795static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001796{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001797 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001798 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001799
Peter Williams2dd73a42006-06-27 02:54:34 -07001800 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001801 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001802
Ingo Molnardd41f592007-07-09 18:51:59 +02001803 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001804}
1805
1806/*
1807 * Return the average load per task on the cpu's run queue
1808 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001809static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001810{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001811 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001812 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001813 unsigned long n = rq->nr_running;
1814
Ingo Molnardd41f592007-07-09 18:51:59 +02001815 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816}
1817
Nick Piggin147cbb42005-06-25 14:57:19 -07001818/*
1819 * find_idlest_group finds and returns the least busy CPU group within the
1820 * domain.
1821 */
1822static struct sched_group *
1823find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1824{
1825 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1826 unsigned long min_load = ULONG_MAX, this_load = 0;
1827 int load_idx = sd->forkexec_idx;
1828 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1829
1830 do {
1831 unsigned long load, avg_load;
1832 int local_group;
1833 int i;
1834
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001835 /* Skip over this group if it has no CPUs allowed */
1836 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001837 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001838
Nick Piggin147cbb42005-06-25 14:57:19 -07001839 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001840
1841 /* Tally up the load of all CPUs in the group */
1842 avg_load = 0;
1843
1844 for_each_cpu_mask(i, group->cpumask) {
1845 /* Bias balancing toward cpus of our domain */
1846 if (local_group)
1847 load = source_load(i, load_idx);
1848 else
1849 load = target_load(i, load_idx);
1850
1851 avg_load += load;
1852 }
1853
1854 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001855 avg_load = sg_div_cpu_power(group,
1856 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001857
1858 if (local_group) {
1859 this_load = avg_load;
1860 this = group;
1861 } else if (avg_load < min_load) {
1862 min_load = avg_load;
1863 idlest = group;
1864 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001865 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001866
1867 if (!idlest || 100*this_load < imbalance*min_load)
1868 return NULL;
1869 return idlest;
1870}
1871
1872/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001873 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001874 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001875static int
Mike Travis7c16ec52008-04-04 18:11:11 -07001876find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
1877 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07001878{
1879 unsigned long load, min_load = ULONG_MAX;
1880 int idlest = -1;
1881 int i;
1882
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001883 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07001884 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001885
Mike Travis7c16ec52008-04-04 18:11:11 -07001886 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001887 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001888
1889 if (load < min_load || (load == min_load && i == this_cpu)) {
1890 min_load = load;
1891 idlest = i;
1892 }
1893 }
1894
1895 return idlest;
1896}
1897
Nick Piggin476d1392005-06-25 14:57:29 -07001898/*
1899 * sched_balance_self: balance the current task (running on cpu) in domains
1900 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1901 * SD_BALANCE_EXEC.
1902 *
1903 * Balance, ie. select the least loaded group.
1904 *
1905 * Returns the target CPU number, or the same CPU if no balancing is needed.
1906 *
1907 * preempt must be disabled.
1908 */
1909static int sched_balance_self(int cpu, int flag)
1910{
1911 struct task_struct *t = current;
1912 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001913
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001914 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001915 /*
1916 * If power savings logic is enabled for a domain, stop there.
1917 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001918 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1919 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001920 if (tmp->flags & flag)
1921 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001922 }
Nick Piggin476d1392005-06-25 14:57:29 -07001923
1924 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07001925 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07001926 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001927 int new_cpu, weight;
1928
1929 if (!(sd->flags & flag)) {
1930 sd = sd->child;
1931 continue;
1932 }
Nick Piggin476d1392005-06-25 14:57:29 -07001933
1934 span = sd->span;
1935 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001936 if (!group) {
1937 sd = sd->child;
1938 continue;
1939 }
Nick Piggin476d1392005-06-25 14:57:29 -07001940
Mike Travis7c16ec52008-04-04 18:11:11 -07001941 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001942 if (new_cpu == -1 || new_cpu == cpu) {
1943 /* Now try balancing at a lower domain level of cpu */
1944 sd = sd->child;
1945 continue;
1946 }
Nick Piggin476d1392005-06-25 14:57:29 -07001947
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001948 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001949 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001950 sd = NULL;
1951 weight = cpus_weight(span);
1952 for_each_domain(cpu, tmp) {
1953 if (weight <= cpus_weight(tmp->span))
1954 break;
1955 if (tmp->flags & flag)
1956 sd = tmp;
1957 }
1958 /* while loop will break here if sd == NULL */
1959 }
1960
1961 return cpu;
1962}
1963
1964#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966/***
1967 * try_to_wake_up - wake up a thread
1968 * @p: the to-be-woken-up thread
1969 * @state: the mask of task states that can be woken
1970 * @sync: do a synchronous wakeup?
1971 *
1972 * Put it on the run-queue if it's not already there. The "current"
1973 * thread is always on the run-queue (except when the actual
1974 * re-schedule is in progress), and as such you're allowed to do
1975 * the simpler "current->state = TASK_RUNNING" to mark yourself
1976 * runnable without the overhead of this.
1977 *
1978 * returns failure only if the task is already active.
1979 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001980static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
Ingo Molnarcc367732007-10-15 17:00:18 +02001982 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 unsigned long flags;
1984 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001985 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Ingo Molnarb85d0662008-03-16 20:03:22 +01001987 if (!sched_feat(SYNC_WAKEUPS))
1988 sync = 0;
1989
Linus Torvalds04e2f172008-02-23 18:05:03 -08001990 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 rq = task_rq_lock(p, &flags);
1992 old_state = p->state;
1993 if (!(old_state & state))
1994 goto out;
1995
Ingo Molnardd41f592007-07-09 18:51:59 +02001996 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 goto out_running;
1998
1999 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002000 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 this_cpu = smp_processor_id();
2002
2003#ifdef CONFIG_SMP
2004 if (unlikely(task_running(rq, p)))
2005 goto out_activate;
2006
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002007 cpu = p->sched_class->select_task_rq(p, sync);
2008 if (cpu != orig_cpu) {
2009 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 task_rq_unlock(rq, &flags);
2011 /* might preempt at this point */
2012 rq = task_rq_lock(p, &flags);
2013 old_state = p->state;
2014 if (!(old_state & state))
2015 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002016 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 goto out_running;
2018
2019 this_cpu = smp_processor_id();
2020 cpu = task_cpu(p);
2021 }
2022
Gregory Haskinse7693a32008-01-25 21:08:09 +01002023#ifdef CONFIG_SCHEDSTATS
2024 schedstat_inc(rq, ttwu_count);
2025 if (cpu == this_cpu)
2026 schedstat_inc(rq, ttwu_local);
2027 else {
2028 struct sched_domain *sd;
2029 for_each_domain(this_cpu, sd) {
2030 if (cpu_isset(cpu, sd->span)) {
2031 schedstat_inc(sd, ttwu_wake_remote);
2032 break;
2033 }
2034 }
2035 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002036#endif
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038out_activate:
2039#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002040 schedstat_inc(p, se.nr_wakeups);
2041 if (sync)
2042 schedstat_inc(p, se.nr_wakeups_sync);
2043 if (orig_cpu != cpu)
2044 schedstat_inc(p, se.nr_wakeups_migrate);
2045 if (cpu == this_cpu)
2046 schedstat_inc(p, se.nr_wakeups_local);
2047 else
2048 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002049 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002050 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 success = 1;
2052
2053out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002054 check_preempt_curr(rq, p);
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002057#ifdef CONFIG_SMP
2058 if (p->sched_class->task_wake_up)
2059 p->sched_class->task_wake_up(rq, p);
2060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061out:
2062 task_rq_unlock(rq, &flags);
2063
2064 return success;
2065}
2066
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002067int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002069 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071EXPORT_SYMBOL(wake_up_process);
2072
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002073int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
2075 return try_to_wake_up(p, state, 0);
2076}
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078/*
2079 * Perform scheduler related setup for a newly forked process p.
2080 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002081 *
2082 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002084static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
Ingo Molnardd41f592007-07-09 18:51:59 +02002086 p->se.exec_start = 0;
2087 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002088 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002089 p->se.last_wakeup = 0;
2090 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002091
2092#ifdef CONFIG_SCHEDSTATS
2093 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002094 p->se.sum_sleep_runtime = 0;
2095 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002096 p->se.block_start = 0;
2097 p->se.sleep_max = 0;
2098 p->se.block_max = 0;
2099 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002100 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002101 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002102#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002103
Peter Zijlstrafa717062008-01-25 21:08:27 +01002104 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002105 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07002106
Avi Kivitye107be32007-07-26 13:40:43 +02002107#ifdef CONFIG_PREEMPT_NOTIFIERS
2108 INIT_HLIST_HEAD(&p->preempt_notifiers);
2109#endif
2110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /*
2112 * We mark the process as running here, but have not actually
2113 * inserted it onto the runqueue yet. This guarantees that
2114 * nobody will actually run it, and a signal or other external
2115 * event cannot wake it up and insert it on the runqueue either.
2116 */
2117 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002118}
2119
2120/*
2121 * fork()/clone()-time setup:
2122 */
2123void sched_fork(struct task_struct *p, int clone_flags)
2124{
2125 int cpu = get_cpu();
2126
2127 __sched_fork(p);
2128
2129#ifdef CONFIG_SMP
2130 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2131#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002132 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002133
2134 /*
2135 * Make sure we do not leak PI boosting priority to the child:
2136 */
2137 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002138 if (!rt_prio(p->prio))
2139 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002140
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002141#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002142 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002143 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002145#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002146 p->oncpu = 0;
2147#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002149 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002150 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002152 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/*
2156 * wake_up_new_task - wake up a newly created task for the first time.
2157 *
2158 * This function will do some initial scheduler statistics housekeeping
2159 * that must be done for every newly created context, then puts the task
2160 * on the runqueue and wakes it.
2161 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002162void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
2164 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002165 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002169 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 p->prio = effective_prio(p);
2172
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002173 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002174 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002177 * Let the scheduling class do new task startup
2178 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002180 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01002181 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002183 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002184#ifdef CONFIG_SMP
2185 if (p->sched_class->task_wake_up)
2186 p->sched_class->task_wake_up(rq, p);
2187#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002188 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
Avi Kivitye107be32007-07-26 13:40:43 +02002191#ifdef CONFIG_PREEMPT_NOTIFIERS
2192
2193/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002194 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2195 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002196 */
2197void preempt_notifier_register(struct preempt_notifier *notifier)
2198{
2199 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2200}
2201EXPORT_SYMBOL_GPL(preempt_notifier_register);
2202
2203/**
2204 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002205 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002206 *
2207 * This is safe to call from within a preemption notifier.
2208 */
2209void preempt_notifier_unregister(struct preempt_notifier *notifier)
2210{
2211 hlist_del(&notifier->link);
2212}
2213EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2214
2215static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2216{
2217 struct preempt_notifier *notifier;
2218 struct hlist_node *node;
2219
2220 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2221 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2222}
2223
2224static void
2225fire_sched_out_preempt_notifiers(struct task_struct *curr,
2226 struct task_struct *next)
2227{
2228 struct preempt_notifier *notifier;
2229 struct hlist_node *node;
2230
2231 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2232 notifier->ops->sched_out(notifier, next);
2233}
2234
2235#else
2236
2237static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2238{
2239}
2240
2241static void
2242fire_sched_out_preempt_notifiers(struct task_struct *curr,
2243 struct task_struct *next)
2244{
2245}
2246
2247#endif
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002250 * prepare_task_switch - prepare to switch tasks
2251 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002252 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002253 * @next: the task we are going to switch to.
2254 *
2255 * This is called with the rq lock held and interrupts off. It must
2256 * be paired with a subsequent finish_task_switch after the context
2257 * switch.
2258 *
2259 * prepare_task_switch sets up locking and calls architecture specific
2260 * hooks.
2261 */
Avi Kivitye107be32007-07-26 13:40:43 +02002262static inline void
2263prepare_task_switch(struct rq *rq, struct task_struct *prev,
2264 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002265{
Avi Kivitye107be32007-07-26 13:40:43 +02002266 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002267 prepare_lock_switch(rq, next);
2268 prepare_arch_switch(next);
2269}
2270
2271/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002273 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 * @prev: the thread we just switched away from.
2275 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002276 * finish_task_switch must be called after the context switch, paired
2277 * with a prepare_task_switch call before the context switch.
2278 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2279 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 *
2281 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002282 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 * with the lock held can cause deadlocks; see schedule() for
2284 * details.)
2285 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002286static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 __releases(rq->lock)
2288{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002290 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 rq->prev_mm = NULL;
2293
2294 /*
2295 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002296 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002297 * schedule one last time. The schedule call will never return, and
2298 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002299 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 * still held, otherwise prev could be scheduled on another cpu, die
2301 * there before we look at prev->state, and then the reference would
2302 * be dropped twice.
2303 * Manfred Spraul <manfred@colorfullife.com>
2304 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002305 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002306 finish_arch_switch(prev);
2307 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002308#ifdef CONFIG_SMP
2309 if (current->sched_class->post_schedule)
2310 current->sched_class->post_schedule(rq);
2311#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002312
Avi Kivitye107be32007-07-26 13:40:43 +02002313 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 if (mm)
2315 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002316 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002317 /*
2318 * Remove function-return probe instances associated with this
2319 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002320 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002321 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
2326/**
2327 * schedule_tail - first thing a freshly forked thread must call.
2328 * @prev: the thread we just switched away from.
2329 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002330asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 __releases(rq->lock)
2332{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002333 struct rq *rq = this_rq();
2334
Nick Piggin4866cde2005-06-25 14:57:23 -07002335 finish_task_switch(rq, prev);
2336#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2337 /* In this case, finish_task_switch does not reenable preemption */
2338 preempt_enable();
2339#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002341 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342}
2343
2344/*
2345 * context_switch - switch to the new MM and the new
2346 * thread's register state.
2347 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002348static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002349context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002350 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Ingo Molnardd41f592007-07-09 18:51:59 +02002352 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Avi Kivitye107be32007-07-26 13:40:43 +02002354 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002355 mm = next->mm;
2356 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002357 /*
2358 * For paravirt, this is coupled with an exit in switch_to to
2359 * combine the page table reload and the switch backend into
2360 * one hypercall.
2361 */
2362 arch_enter_lazy_cpu_mode();
2363
Ingo Molnardd41f592007-07-09 18:51:59 +02002364 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 next->active_mm = oldmm;
2366 atomic_inc(&oldmm->mm_count);
2367 enter_lazy_tlb(oldmm, next);
2368 } else
2369 switch_mm(oldmm, mm, next);
2370
Ingo Molnardd41f592007-07-09 18:51:59 +02002371 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 rq->prev_mm = oldmm;
2374 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002375 /*
2376 * Since the runqueue lock will be released by the next
2377 * task (which is an invalid locking op but in the case
2378 * of the scheduler it's an obvious special-case), so we
2379 * do an early lockdep release here:
2380 */
2381#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002382 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 /* Here we just switch the register state and the stack. */
2386 switch_to(prev, next, prev);
2387
Ingo Molnardd41f592007-07-09 18:51:59 +02002388 barrier();
2389 /*
2390 * this_rq must be evaluated again because prev may have moved
2391 * CPUs since it called schedule(), thus the 'rq' on its stack
2392 * frame will be invalid.
2393 */
2394 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
2396
2397/*
2398 * nr_running, nr_uninterruptible and nr_context_switches:
2399 *
2400 * externally visible scheduler statistics: current number of runnable
2401 * threads, current number of uninterruptible-sleeping threads, total
2402 * number of context switches performed since bootup.
2403 */
2404unsigned long nr_running(void)
2405{
2406 unsigned long i, sum = 0;
2407
2408 for_each_online_cpu(i)
2409 sum += cpu_rq(i)->nr_running;
2410
2411 return sum;
2412}
2413
2414unsigned long nr_uninterruptible(void)
2415{
2416 unsigned long i, sum = 0;
2417
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002418 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 sum += cpu_rq(i)->nr_uninterruptible;
2420
2421 /*
2422 * Since we read the counters lockless, it might be slightly
2423 * inaccurate. Do not allow it to go below zero though:
2424 */
2425 if (unlikely((long)sum < 0))
2426 sum = 0;
2427
2428 return sum;
2429}
2430
2431unsigned long long nr_context_switches(void)
2432{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002433 int i;
2434 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002436 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 sum += cpu_rq(i)->nr_switches;
2438
2439 return sum;
2440}
2441
2442unsigned long nr_iowait(void)
2443{
2444 unsigned long i, sum = 0;
2445
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002446 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2448
2449 return sum;
2450}
2451
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002452unsigned long nr_active(void)
2453{
2454 unsigned long i, running = 0, uninterruptible = 0;
2455
2456 for_each_online_cpu(i) {
2457 running += cpu_rq(i)->nr_running;
2458 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2459 }
2460
2461 if (unlikely((long)uninterruptible < 0))
2462 uninterruptible = 0;
2463
2464 return running + uninterruptible;
2465}
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002468 * Update rq->cpu_load[] statistics. This function is usually called every
2469 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002470 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002471static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002472{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002473 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002474 int i, scale;
2475
2476 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002477
2478 /* Update our load: */
2479 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2480 unsigned long old_load, new_load;
2481
2482 /* scale is effectively 1 << i now, and >> i divides by scale */
2483
2484 old_load = this_rq->cpu_load[i];
2485 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002486 /*
2487 * Round up the averaging division if load is increasing. This
2488 * prevents us from getting stuck on 9 if the load is 10, for
2489 * example.
2490 */
2491 if (new_load > old_load)
2492 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002493 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2494 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002495}
2496
Ingo Molnardd41f592007-07-09 18:51:59 +02002497#ifdef CONFIG_SMP
2498
Ingo Molnar48f24c42006-07-03 00:25:40 -07002499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 * double_rq_lock - safely lock two runqueues
2501 *
2502 * Note this does not disable interrupts like task_rq_lock,
2503 * you need to do so manually before calling.
2504 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002505static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 __acquires(rq1->lock)
2507 __acquires(rq2->lock)
2508{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002509 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 if (rq1 == rq2) {
2511 spin_lock(&rq1->lock);
2512 __acquire(rq2->lock); /* Fake it out ;) */
2513 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002514 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 spin_lock(&rq1->lock);
2516 spin_lock(&rq2->lock);
2517 } else {
2518 spin_lock(&rq2->lock);
2519 spin_lock(&rq1->lock);
2520 }
2521 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002522 update_rq_clock(rq1);
2523 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524}
2525
2526/*
2527 * double_rq_unlock - safely unlock two runqueues
2528 *
2529 * Note this does not restore interrupts like task_rq_unlock,
2530 * you need to do so manually after calling.
2531 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002532static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 __releases(rq1->lock)
2534 __releases(rq2->lock)
2535{
2536 spin_unlock(&rq1->lock);
2537 if (rq1 != rq2)
2538 spin_unlock(&rq2->lock);
2539 else
2540 __release(rq2->lock);
2541}
2542
2543/*
2544 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2545 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002546static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 __releases(this_rq->lock)
2548 __acquires(busiest->lock)
2549 __acquires(this_rq->lock)
2550{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002551 int ret = 0;
2552
Kirill Korotaev054b9102006-12-10 02:20:11 -08002553 if (unlikely(!irqs_disabled())) {
2554 /* printk() doesn't work good under rq->lock */
2555 spin_unlock(&this_rq->lock);
2556 BUG_ON(1);
2557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002559 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 spin_unlock(&this_rq->lock);
2561 spin_lock(&busiest->lock);
2562 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002563 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 } else
2565 spin_lock(&busiest->lock);
2566 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002567 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568}
2569
2570/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 * If dest_cpu is allowed for this process, migrate the task to it.
2572 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002573 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 * the cpu_allowed mask is restored.
2575 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002576static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002578 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002580 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582 rq = task_rq_lock(p, &flags);
2583 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2584 || unlikely(cpu_is_offline(dest_cpu)))
2585 goto out;
2586
2587 /* force the process onto the specified CPU */
2588 if (migrate_task(p, dest_cpu, &req)) {
2589 /* Need to wait for migration thread (might exit: take ref). */
2590 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 get_task_struct(mt);
2593 task_rq_unlock(rq, &flags);
2594 wake_up_process(mt);
2595 put_task_struct(mt);
2596 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002597
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 return;
2599 }
2600out:
2601 task_rq_unlock(rq, &flags);
2602}
2603
2604/*
Nick Piggin476d1392005-06-25 14:57:29 -07002605 * sched_exec - execve() is a valuable balancing opportunity, because at
2606 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 */
2608void sched_exec(void)
2609{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002611 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002613 if (new_cpu != this_cpu)
2614 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615}
2616
2617/*
2618 * pull_task - move a task from a remote runqueue to the local runqueue.
2619 * Both runqueues must be locked.
2620 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002621static void pull_task(struct rq *src_rq, struct task_struct *p,
2622 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002624 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002626 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 /*
2628 * Note that idle threads have a prio of MAX_PRIO, for this test
2629 * to be always true for them.
2630 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002631 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632}
2633
2634/*
2635 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2636 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002637static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002638int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002639 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002640 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
2642 /*
2643 * We do not migrate tasks that are:
2644 * 1) running (obviously), or
2645 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2646 * 3) are cache-hot on their current CPU.
2647 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002648 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2649 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002651 }
Nick Piggin81026792005-06-25 14:57:07 -07002652 *all_pinned = 0;
2653
Ingo Molnarcc367732007-10-15 17:00:18 +02002654 if (task_running(rq, p)) {
2655 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002656 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Ingo Molnarda84d962007-10-15 17:00:18 +02002659 /*
2660 * Aggressive migration if:
2661 * 1) task is cache cold, or
2662 * 2) too many balance attempts have failed.
2663 */
2664
Ingo Molnar6bc16652007-10-15 17:00:18 +02002665 if (!task_hot(p, rq->clock, sd) ||
2666 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002667#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002668 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002669 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002670 schedstat_inc(p, se.nr_forced_migrations);
2671 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002672#endif
2673 return 1;
2674 }
2675
Ingo Molnarcc367732007-10-15 17:00:18 +02002676 if (task_hot(p, rq->clock, sd)) {
2677 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002678 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 return 1;
2681}
2682
Peter Williamse1d14842007-10-24 18:23:51 +02002683static unsigned long
2684balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2685 unsigned long max_load_move, struct sched_domain *sd,
2686 enum cpu_idle_type idle, int *all_pinned,
2687 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002688{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002689 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002690 struct task_struct *p;
2691 long rem_load_move = max_load_move;
2692
Peter Williamse1d14842007-10-24 18:23:51 +02002693 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002694 goto out;
2695
2696 pinned = 1;
2697
2698 /*
2699 * Start the load-balancing iterator:
2700 */
2701 p = iterator->start(iterator->arg);
2702next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002703 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002704 goto out;
2705 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002706 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002707 * skip a task if it will be the highest priority task (i.e. smallest
2708 * prio value) on its new queue regardless of its load weight
2709 */
2710 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2711 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002712 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002713 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002714 p = iterator->next(iterator->arg);
2715 goto next;
2716 }
2717
2718 pull_task(busiest, p, this_rq, this_cpu);
2719 pulled++;
2720 rem_load_move -= p->se.load.weight;
2721
2722 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002723 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002724 */
Peter Williamse1d14842007-10-24 18:23:51 +02002725 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002726 if (p->prio < *this_best_prio)
2727 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002728 p = iterator->next(iterator->arg);
2729 goto next;
2730 }
2731out:
2732 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002733 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002734 * so we can safely collect pull_task() stats here rather than
2735 * inside pull_task().
2736 */
2737 schedstat_add(sd, lb_gained[idle], pulled);
2738
2739 if (all_pinned)
2740 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002741
2742 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002743}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745/*
Peter Williams43010652007-08-09 11:16:46 +02002746 * move_tasks tries to move up to max_load_move weighted load from busiest to
2747 * this_rq, as part of a balancing operation within domain "sd".
2748 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 *
2750 * Called with both runqueues locked.
2751 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002752static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002753 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002754 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002755 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002757 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002758 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002759 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Ingo Molnardd41f592007-07-09 18:51:59 +02002761 do {
Peter Williams43010652007-08-09 11:16:46 +02002762 total_load_moved +=
2763 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002764 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002765 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002766 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002767 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Peter Williams43010652007-08-09 11:16:46 +02002769 return total_load_moved > 0;
2770}
2771
Peter Williamse1d14842007-10-24 18:23:51 +02002772static int
2773iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2774 struct sched_domain *sd, enum cpu_idle_type idle,
2775 struct rq_iterator *iterator)
2776{
2777 struct task_struct *p = iterator->start(iterator->arg);
2778 int pinned = 0;
2779
2780 while (p) {
2781 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2782 pull_task(busiest, p, this_rq, this_cpu);
2783 /*
2784 * Right now, this is only the second place pull_task()
2785 * is called, so we can safely collect pull_task()
2786 * stats here rather than inside pull_task().
2787 */
2788 schedstat_inc(sd, lb_gained[idle]);
2789
2790 return 1;
2791 }
2792 p = iterator->next(iterator->arg);
2793 }
2794
2795 return 0;
2796}
2797
Peter Williams43010652007-08-09 11:16:46 +02002798/*
2799 * move_one_task tries to move exactly one task from busiest to this_rq, as
2800 * part of active balancing operations within "domain".
2801 * Returns 1 if successful and 0 otherwise.
2802 *
2803 * Called with both runqueues locked.
2804 */
2805static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2806 struct sched_domain *sd, enum cpu_idle_type idle)
2807{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002808 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002809
2810 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002811 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002812 return 1;
2813
2814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815}
2816
2817/*
2818 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002819 * domain. It calculates and returns the amount of weighted load which
2820 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 */
2822static struct sched_group *
2823find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002824 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07002825 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
2827 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2828 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002829 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002830 unsigned long busiest_load_per_task, busiest_nr_running;
2831 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002832 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002833#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2834 int power_savings_balance = 1;
2835 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2836 unsigned long min_nr_running = ULONG_MAX;
2837 struct sched_group *group_min = NULL, *group_leader = NULL;
2838#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002841 busiest_load_per_task = busiest_nr_running = 0;
2842 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002843 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002844 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002845 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002846 load_idx = sd->newidle_idx;
2847 else
2848 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
2850 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002851 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 int local_group;
2853 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002854 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002855 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002856 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858 local_group = cpu_isset(this_cpu, group->cpumask);
2859
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002860 if (local_group)
2861 balance_cpu = first_cpu(group->cpumask);
2862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002864 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002865 max_cpu_load = 0;
2866 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002869 struct rq *rq;
2870
2871 if (!cpu_isset(i, *cpus))
2872 continue;
2873
2874 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002875
Suresh Siddha9439aab2007-07-19 21:28:35 +02002876 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002877 *sd_idle = 0;
2878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002880 if (local_group) {
2881 if (idle_cpu(i) && !first_idle_cpu) {
2882 first_idle_cpu = 1;
2883 balance_cpu = i;
2884 }
2885
Nick Piggina2000572006-02-10 01:51:02 -08002886 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002887 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002888 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002889 if (load > max_cpu_load)
2890 max_cpu_load = load;
2891 if (min_cpu_load > load)
2892 min_cpu_load = load;
2893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002896 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002897 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 }
2899
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002900 /*
2901 * First idle cpu or the first cpu(busiest) in this sched group
2902 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002903 * domains. In the newly idle case, we will allow all the cpu's
2904 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002905 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002906 if (idle != CPU_NEWLY_IDLE && local_group &&
2907 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002908 *balance = 0;
2909 goto ret;
2910 }
2911
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002913 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
2915 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002916 avg_load = sg_div_cpu_power(group,
2917 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Ken Chen908a7c12007-10-17 16:55:11 +02002919 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2920 __group_imb = 1;
2921
Eric Dumazet5517d862007-05-08 00:32:57 -07002922 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 if (local_group) {
2925 this_load = avg_load;
2926 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002927 this_nr_running = sum_nr_running;
2928 this_load_per_task = sum_weighted_load;
2929 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002930 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 max_load = avg_load;
2932 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002933 busiest_nr_running = sum_nr_running;
2934 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002935 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002937
2938#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2939 /*
2940 * Busy processors will not participate in power savings
2941 * balance.
2942 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002943 if (idle == CPU_NOT_IDLE ||
2944 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2945 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002946
2947 /*
2948 * If the local group is idle or completely loaded
2949 * no need to do power savings balance at this domain
2950 */
2951 if (local_group && (this_nr_running >= group_capacity ||
2952 !this_nr_running))
2953 power_savings_balance = 0;
2954
Ingo Molnardd41f592007-07-09 18:51:59 +02002955 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002956 * If a group is already running at full capacity or idle,
2957 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002958 */
2959 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002960 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002961 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002962
Ingo Molnardd41f592007-07-09 18:51:59 +02002963 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002964 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002965 * This is the group from where we need to pick up the load
2966 * for saving power
2967 */
2968 if ((sum_nr_running < min_nr_running) ||
2969 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002970 first_cpu(group->cpumask) <
2971 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002972 group_min = group;
2973 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002974 min_load_per_task = sum_weighted_load /
2975 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002976 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002977
Ingo Molnardd41f592007-07-09 18:51:59 +02002978 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002979 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002980 * capacity but still has some space to pick up some load
2981 * from other group and save more power
2982 */
2983 if (sum_nr_running <= group_capacity - 1) {
2984 if (sum_nr_running > leader_nr_running ||
2985 (sum_nr_running == leader_nr_running &&
2986 first_cpu(group->cpumask) >
2987 first_cpu(group_leader->cpumask))) {
2988 group_leader = group;
2989 leader_nr_running = sum_nr_running;
2990 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002991 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002992group_next:
2993#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 group = group->next;
2995 } while (group != sd->groups);
2996
Peter Williams2dd73a42006-06-27 02:54:34 -07002997 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 goto out_balanced;
2999
3000 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3001
3002 if (this_load >= avg_load ||
3003 100*max_load <= sd->imbalance_pct*this_load)
3004 goto out_balanced;
3005
Peter Williams2dd73a42006-06-27 02:54:34 -07003006 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003007 if (group_imb)
3008 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 /*
3011 * We're trying to get all the cpus to the average_load, so we don't
3012 * want to push ourselves above the average load, nor do we wish to
3013 * reduce the max loaded cpu below the average load, as either of these
3014 * actions would just result in more rebalancing later, and ping-pong
3015 * tasks around. Thus we look for the minimum possible imbalance.
3016 * Negative imbalances (*we* are more loaded than anyone else) will
3017 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003018 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 * appear as very large values with unsigned longs.
3020 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003021 if (max_load <= busiest_load_per_task)
3022 goto out_balanced;
3023
3024 /*
3025 * In the presence of smp nice balancing, certain scenarios can have
3026 * max load less than avg load(as we skip the groups at or below
3027 * its cpu_power, while calculating max_load..)
3028 */
3029 if (max_load < avg_load) {
3030 *imbalance = 0;
3031 goto small_imbalance;
3032 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003033
3034 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003035 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003036
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003038 *imbalance = min(max_pull * busiest->__cpu_power,
3039 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 / SCHED_LOAD_SCALE;
3041
Peter Williams2dd73a42006-06-27 02:54:34 -07003042 /*
3043 * if *imbalance is less than the average load per runnable task
3044 * there is no gaurantee that any tasks will be moved so we'll have
3045 * a think about bumping its value to force at least one task to be
3046 * moved
3047 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003048 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003049 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003050 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Peter Williams2dd73a42006-06-27 02:54:34 -07003052small_imbalance:
3053 pwr_move = pwr_now = 0;
3054 imbn = 2;
3055 if (this_nr_running) {
3056 this_load_per_task /= this_nr_running;
3057 if (busiest_load_per_task > this_load_per_task)
3058 imbn = 1;
3059 } else
3060 this_load_per_task = SCHED_LOAD_SCALE;
3061
Ingo Molnardd41f592007-07-09 18:51:59 +02003062 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3063 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003064 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 return busiest;
3066 }
3067
3068 /*
3069 * OK, we don't have enough imbalance to justify moving tasks,
3070 * however we may be able to increase total CPU power used by
3071 * moving them.
3072 */
3073
Eric Dumazet5517d862007-05-08 00:32:57 -07003074 pwr_now += busiest->__cpu_power *
3075 min(busiest_load_per_task, max_load);
3076 pwr_now += this->__cpu_power *
3077 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 pwr_now /= SCHED_LOAD_SCALE;
3079
3080 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003081 tmp = sg_div_cpu_power(busiest,
3082 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003084 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003085 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003088 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003089 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003090 tmp = sg_div_cpu_power(this,
3091 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003093 tmp = sg_div_cpu_power(this,
3094 busiest_load_per_task * SCHED_LOAD_SCALE);
3095 pwr_move += this->__cpu_power *
3096 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 pwr_move /= SCHED_LOAD_SCALE;
3098
3099 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003100 if (pwr_move > pwr_now)
3101 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 }
3103
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 return busiest;
3105
3106out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003107#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003108 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003109 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003111 if (this == group_leader && group_leader != group_min) {
3112 *imbalance = min_load_per_task;
3113 return group_min;
3114 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003115#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003116ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 *imbalance = 0;
3118 return NULL;
3119}
3120
3121/*
3122 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3123 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003124static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003125find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003126 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003128 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003129 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 int i;
3131
3132 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003133 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003134
3135 if (!cpu_isset(i, *cpus))
3136 continue;
3137
Ingo Molnar48f24c42006-07-03 00:25:40 -07003138 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003139 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Ingo Molnardd41f592007-07-09 18:51:59 +02003141 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003142 continue;
3143
Ingo Molnardd41f592007-07-09 18:51:59 +02003144 if (wl > max_load) {
3145 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003146 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 }
3148 }
3149
3150 return busiest;
3151}
3152
3153/*
Nick Piggin77391d72005-06-25 14:57:30 -07003154 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3155 * so long as it is large enough.
3156 */
3157#define MAX_PINNED_INTERVAL 512
3158
3159/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3161 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003163static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003164 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003165 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166{
Peter Williams43010652007-08-09 11:16:46 +02003167 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003170 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003171 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003172
Mike Travis7c16ec52008-04-04 18:11:11 -07003173 cpus_setall(*cpus);
3174
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003175 /*
3176 * When power savings policy is enabled for the parent domain, idle
3177 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003178 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003179 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003180 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003181 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003182 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003183 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Ingo Molnar2d723762007-10-15 17:00:12 +02003185 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003187redo:
3188 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003189 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003190
Chen, Kenneth W06066712006-12-10 02:20:35 -08003191 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003192 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003193
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 if (!group) {
3195 schedstat_inc(sd, lb_nobusyg[idle]);
3196 goto out_balanced;
3197 }
3198
Mike Travis7c16ec52008-04-04 18:11:11 -07003199 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 if (!busiest) {
3201 schedstat_inc(sd, lb_nobusyq[idle]);
3202 goto out_balanced;
3203 }
3204
Nick Piggindb935db2005-06-25 14:57:11 -07003205 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
3207 schedstat_add(sd, lb_imbalance[idle], imbalance);
3208
Peter Williams43010652007-08-09 11:16:46 +02003209 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 if (busiest->nr_running > 1) {
3211 /*
3212 * Attempt to move tasks. If find_busiest_group has found
3213 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003214 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 * correctly treated as an imbalance.
3216 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003217 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003218 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003219 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003220 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003221 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003222 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003223
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003224 /*
3225 * some other cpu did the load balance for us.
3226 */
Peter Williams43010652007-08-09 11:16:46 +02003227 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003228 resched_cpu(this_cpu);
3229
Nick Piggin81026792005-06-25 14:57:07 -07003230 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003231 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003232 cpu_clear(cpu_of(busiest), *cpus);
3233 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003234 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003235 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 }
Nick Piggin81026792005-06-25 14:57:07 -07003238
Peter Williams43010652007-08-09 11:16:46 +02003239 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 schedstat_inc(sd, lb_failed[idle]);
3241 sd->nr_balance_failed++;
3242
3243 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003245 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003246
3247 /* don't kick the migration_thread, if the curr
3248 * task on busiest cpu can't be moved to this_cpu
3249 */
3250 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003251 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003252 all_pinned = 1;
3253 goto out_one_pinned;
3254 }
3255
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 if (!busiest->active_balance) {
3257 busiest->active_balance = 1;
3258 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003259 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003261 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003262 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 wake_up_process(busiest->migration_thread);
3264
3265 /*
3266 * We've kicked active balancing, reset the failure
3267 * counter.
3268 */
Nick Piggin39507452005-06-25 14:57:09 -07003269 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 }
Nick Piggin81026792005-06-25 14:57:07 -07003271 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 sd->nr_balance_failed = 0;
3273
Nick Piggin81026792005-06-25 14:57:07 -07003274 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 /* We were unbalanced, so reset the balancing interval */
3276 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003277 } else {
3278 /*
3279 * If we've begun active balancing, start to back off. This
3280 * case may not be covered by the all_pinned logic if there
3281 * is only 1 task on the busy runqueue (because we don't call
3282 * move_tasks).
3283 */
3284 if (sd->balance_interval < sd->max_interval)
3285 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 }
3287
Peter Williams43010652007-08-09 11:16:46 +02003288 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003289 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003290 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003291 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
3293out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 schedstat_inc(sd, lb_balanced[idle]);
3295
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003296 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003297
3298out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003300 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3301 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 sd->balance_interval *= 2;
3303
Ingo Molnar48f24c42006-07-03 00:25:40 -07003304 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003305 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003306 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 return 0;
3308}
3309
3310/*
3311 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3312 * tasks if there is an imbalance.
3313 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003314 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 * this_rq is locked.
3316 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003317static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003318load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3319 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320{
3321 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003322 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003324 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003325 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003326 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003327
3328 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003329
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003330 /*
3331 * When power savings policy is enabled for the parent domain, idle
3332 * sibling can pick up load irrespective of busy siblings. In this case,
3333 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003334 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003335 */
3336 if (sd->flags & SD_SHARE_CPUPOWER &&
3337 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003338 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Ingo Molnar2d723762007-10-15 17:00:12 +02003340 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003341redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003342 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003343 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003345 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003346 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 }
3348
Mike Travis7c16ec52008-04-04 18:11:11 -07003349 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003350 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003351 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003352 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 }
3354
Nick Piggindb935db2005-06-25 14:57:11 -07003355 BUG_ON(busiest == this_rq);
3356
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003357 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003358
Peter Williams43010652007-08-09 11:16:46 +02003359 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003360 if (busiest->nr_running > 1) {
3361 /* Attempt to move tasks */
3362 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003363 /* this_rq->clock is already updated */
3364 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003365 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003366 imbalance, sd, CPU_NEWLY_IDLE,
3367 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003368 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003369
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003370 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003371 cpu_clear(cpu_of(busiest), *cpus);
3372 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003373 goto redo;
3374 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003375 }
3376
Peter Williams43010652007-08-09 11:16:46 +02003377 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003378 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003379 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3380 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003381 return -1;
3382 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003383 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Peter Williams43010652007-08-09 11:16:46 +02003385 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003386
3387out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003388 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003389 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003390 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003391 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003392 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003393
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003394 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395}
3396
3397/*
3398 * idle_balance is called by schedule() if this_cpu is about to become
3399 * idle. Attempts to pull tasks from other CPUs.
3400 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003401static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402{
3403 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003404 int pulled_task = -1;
3405 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003406 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
3408 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003409 unsigned long interval;
3410
3411 if (!(sd->flags & SD_LOAD_BALANCE))
3412 continue;
3413
3414 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003415 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003416 pulled_task = load_balance_newidle(this_cpu, this_rq,
3417 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003418
3419 interval = msecs_to_jiffies(sd->balance_interval);
3420 if (time_after(next_balance, sd->last_balance + interval))
3421 next_balance = sd->last_balance + interval;
3422 if (pulled_task)
3423 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003425 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003426 /*
3427 * We are going idle. next_balance may be set based on
3428 * a busy processor. So reset next_balance.
3429 */
3430 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432}
3433
3434/*
3435 * active_load_balance is run by migration threads. It pushes running tasks
3436 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3437 * running on each physical CPU where possible, and avoids physical /
3438 * logical imbalances.
3439 *
3440 * Called with busiest_rq locked.
3441 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003442static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443{
Nick Piggin39507452005-06-25 14:57:09 -07003444 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003445 struct sched_domain *sd;
3446 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003447
Ingo Molnar48f24c42006-07-03 00:25:40 -07003448 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003449 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003450 return;
3451
3452 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
3454 /*
Nick Piggin39507452005-06-25 14:57:09 -07003455 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003456 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003457 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 */
Nick Piggin39507452005-06-25 14:57:09 -07003459 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Nick Piggin39507452005-06-25 14:57:09 -07003461 /* move a task from busiest_rq to target_rq */
3462 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003463 update_rq_clock(busiest_rq);
3464 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
Nick Piggin39507452005-06-25 14:57:09 -07003466 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003467 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003468 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003469 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003470 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Ingo Molnar48f24c42006-07-03 00:25:40 -07003473 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003474 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
Peter Williams43010652007-08-09 11:16:46 +02003476 if (move_one_task(target_rq, target_cpu, busiest_rq,
3477 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003478 schedstat_inc(sd, alb_pushed);
3479 else
3480 schedstat_inc(sd, alb_failed);
3481 }
Nick Piggin39507452005-06-25 14:57:09 -07003482 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483}
3484
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003485#ifdef CONFIG_NO_HZ
3486static struct {
3487 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003488 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003489} nohz ____cacheline_aligned = {
3490 .load_balancer = ATOMIC_INIT(-1),
3491 .cpu_mask = CPU_MASK_NONE,
3492};
3493
Christoph Lameter7835b982006-12-10 02:20:22 -08003494/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003495 * This routine will try to nominate the ilb (idle load balancing)
3496 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3497 * load balancing on behalf of all those cpus. If all the cpus in the system
3498 * go into this tickless mode, then there will be no ilb owner (as there is
3499 * no need for one) and all the cpus will sleep till the next wakeup event
3500 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003501 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003502 * For the ilb owner, tick is not stopped. And this tick will be used
3503 * for idle load balancing. ilb owner will still be part of
3504 * nohz.cpu_mask..
3505 *
3506 * While stopping the tick, this cpu will become the ilb owner if there
3507 * is no other owner. And will be the owner till that cpu becomes busy
3508 * or if all cpus in the system stop their ticks at which point
3509 * there is no need for ilb owner.
3510 *
3511 * When the ilb owner becomes busy, it nominates another owner, during the
3512 * next busy scheduler_tick()
3513 */
3514int select_nohz_load_balancer(int stop_tick)
3515{
3516 int cpu = smp_processor_id();
3517
3518 if (stop_tick) {
3519 cpu_set(cpu, nohz.cpu_mask);
3520 cpu_rq(cpu)->in_nohz_recently = 1;
3521
3522 /*
3523 * If we are going offline and still the leader, give up!
3524 */
3525 if (cpu_is_offline(cpu) &&
3526 atomic_read(&nohz.load_balancer) == cpu) {
3527 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3528 BUG();
3529 return 0;
3530 }
3531
3532 /* time for ilb owner also to sleep */
3533 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3534 if (atomic_read(&nohz.load_balancer) == cpu)
3535 atomic_set(&nohz.load_balancer, -1);
3536 return 0;
3537 }
3538
3539 if (atomic_read(&nohz.load_balancer) == -1) {
3540 /* make me the ilb owner */
3541 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3542 return 1;
3543 } else if (atomic_read(&nohz.load_balancer) == cpu)
3544 return 1;
3545 } else {
3546 if (!cpu_isset(cpu, nohz.cpu_mask))
3547 return 0;
3548
3549 cpu_clear(cpu, nohz.cpu_mask);
3550
3551 if (atomic_read(&nohz.load_balancer) == cpu)
3552 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3553 BUG();
3554 }
3555 return 0;
3556}
3557#endif
3558
3559static DEFINE_SPINLOCK(balancing);
3560
3561/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003562 * It checks each scheduling domain to see if it is due to be balanced,
3563 * and initiates a balancing operation if so.
3564 *
3565 * Balancing parameters are set up in arch_init_sched_domains.
3566 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003567static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003568{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003569 int balance = 1;
3570 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003571 unsigned long interval;
3572 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003573 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003574 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003575 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003576 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003578 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 if (!(sd->flags & SD_LOAD_BALANCE))
3580 continue;
3581
3582 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003583 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 interval *= sd->busy_factor;
3585
3586 /* scale ms to jiffies */
3587 interval = msecs_to_jiffies(interval);
3588 if (unlikely(!interval))
3589 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003590 if (interval > HZ*NR_CPUS/10)
3591 interval = HZ*NR_CPUS/10;
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
Christoph Lameter08c183f2006-12-10 02:20:29 -08003594 if (sd->flags & SD_SERIALIZE) {
3595 if (!spin_trylock(&balancing))
3596 goto out;
3597 }
3598
Christoph Lameterc9819f42006-12-10 02:20:25 -08003599 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003600 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003601 /*
3602 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003603 * longer idle, or one of our SMT siblings is
3604 * not idle.
3605 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003606 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003608 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003610 if (sd->flags & SD_SERIALIZE)
3611 spin_unlock(&balancing);
3612out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003613 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003614 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003615 update_next_balance = 1;
3616 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003617
3618 /*
3619 * Stop the load balance at this level. There is another
3620 * CPU in our sched group which is doing load balancing more
3621 * actively.
3622 */
3623 if (!balance)
3624 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003626
3627 /*
3628 * next_balance will be updated only when there is a need.
3629 * When the cpu is attached to null domain for ex, it will not be
3630 * updated.
3631 */
3632 if (likely(update_next_balance))
3633 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003634}
3635
3636/*
3637 * run_rebalance_domains is triggered when needed from the scheduler tick.
3638 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3639 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3640 */
3641static void run_rebalance_domains(struct softirq_action *h)
3642{
Ingo Molnardd41f592007-07-09 18:51:59 +02003643 int this_cpu = smp_processor_id();
3644 struct rq *this_rq = cpu_rq(this_cpu);
3645 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3646 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003647
Ingo Molnardd41f592007-07-09 18:51:59 +02003648 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003649
3650#ifdef CONFIG_NO_HZ
3651 /*
3652 * If this cpu is the owner for idle load balancing, then do the
3653 * balancing on behalf of the other idle cpus whose ticks are
3654 * stopped.
3655 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003656 if (this_rq->idle_at_tick &&
3657 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003658 cpumask_t cpus = nohz.cpu_mask;
3659 struct rq *rq;
3660 int balance_cpu;
3661
Ingo Molnardd41f592007-07-09 18:51:59 +02003662 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003663 for_each_cpu_mask(balance_cpu, cpus) {
3664 /*
3665 * If this cpu gets work to do, stop the load balancing
3666 * work being done for other cpus. Next load
3667 * balancing owner will pick it up.
3668 */
3669 if (need_resched())
3670 break;
3671
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003672 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003673
3674 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003675 if (time_after(this_rq->next_balance, rq->next_balance))
3676 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003677 }
3678 }
3679#endif
3680}
3681
3682/*
3683 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3684 *
3685 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3686 * idle load balancing owner or decide to stop the periodic load balancing,
3687 * if the whole system is idle.
3688 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003689static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003690{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003691#ifdef CONFIG_NO_HZ
3692 /*
3693 * If we were in the nohz mode recently and busy at the current
3694 * scheduler tick, then check if we need to nominate new idle
3695 * load balancer.
3696 */
3697 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3698 rq->in_nohz_recently = 0;
3699
3700 if (atomic_read(&nohz.load_balancer) == cpu) {
3701 cpu_clear(cpu, nohz.cpu_mask);
3702 atomic_set(&nohz.load_balancer, -1);
3703 }
3704
3705 if (atomic_read(&nohz.load_balancer) == -1) {
3706 /*
3707 * simple selection for now: Nominate the
3708 * first cpu in the nohz list to be the next
3709 * ilb owner.
3710 *
3711 * TBD: Traverse the sched domains and nominate
3712 * the nearest cpu in the nohz.cpu_mask.
3713 */
3714 int ilb = first_cpu(nohz.cpu_mask);
3715
Mike Travis434d53b2008-04-04 18:11:04 -07003716 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003717 resched_cpu(ilb);
3718 }
3719 }
3720
3721 /*
3722 * If this cpu is idle and doing idle load balancing for all the
3723 * cpus with ticks stopped, is it time for that to stop?
3724 */
3725 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3726 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3727 resched_cpu(cpu);
3728 return;
3729 }
3730
3731 /*
3732 * If this cpu is idle and the idle load balancing is done by
3733 * someone else, then no need raise the SCHED_SOFTIRQ
3734 */
3735 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3736 cpu_isset(cpu, nohz.cpu_mask))
3737 return;
3738#endif
3739 if (time_after_eq(jiffies, rq->next_balance))
3740 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741}
Ingo Molnardd41f592007-07-09 18:51:59 +02003742
3743#else /* CONFIG_SMP */
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745/*
3746 * on UP we do not need to balance between CPUs:
3747 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003748static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749{
3750}
Ingo Molnardd41f592007-07-09 18:51:59 +02003751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752#endif
3753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754DEFINE_PER_CPU(struct kernel_stat, kstat);
3755
3756EXPORT_PER_CPU_SYMBOL(kstat);
3757
3758/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003759 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3760 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003762unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003765 u64 ns, delta_exec;
3766 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003767
Ingo Molnar41b86e92007-07-09 18:51:58 +02003768 rq = task_rq_lock(p, &flags);
3769 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003770 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003771 update_rq_clock(rq);
3772 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003773 if ((s64)delta_exec > 0)
3774 ns += delta_exec;
3775 }
3776 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 return ns;
3779}
3780
3781/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 * Account user cpu time to a process.
3783 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 * @cputime: the cpu time spent in user space since the last update
3785 */
3786void account_user_time(struct task_struct *p, cputime_t cputime)
3787{
3788 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3789 cputime64_t tmp;
3790
3791 p->utime = cputime_add(p->utime, cputime);
3792
3793 /* Add user time to cpustat. */
3794 tmp = cputime_to_cputime64(cputime);
3795 if (TASK_NICE(p) > 0)
3796 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3797 else
3798 cpustat->user = cputime64_add(cpustat->user, tmp);
3799}
3800
3801/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003802 * Account guest cpu time to a process.
3803 * @p: the process that the cpu time gets accounted to
3804 * @cputime: the cpu time spent in virtual machine since the last update
3805 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003806static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003807{
3808 cputime64_t tmp;
3809 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3810
3811 tmp = cputime_to_cputime64(cputime);
3812
3813 p->utime = cputime_add(p->utime, cputime);
3814 p->gtime = cputime_add(p->gtime, cputime);
3815
3816 cpustat->user = cputime64_add(cpustat->user, tmp);
3817 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3818}
3819
3820/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003821 * Account scaled user cpu time to a process.
3822 * @p: the process that the cpu time gets accounted to
3823 * @cputime: the cpu time spent in user space since the last update
3824 */
3825void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3826{
3827 p->utimescaled = cputime_add(p->utimescaled, cputime);
3828}
3829
3830/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 * Account system cpu time to a process.
3832 * @p: the process that the cpu time gets accounted to
3833 * @hardirq_offset: the offset to subtract from hardirq_count()
3834 * @cputime: the cpu time spent in kernel space since the last update
3835 */
3836void account_system_time(struct task_struct *p, int hardirq_offset,
3837 cputime_t cputime)
3838{
3839 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003840 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 cputime64_t tmp;
3842
Christian Borntraeger97783852007-11-15 20:57:39 +01003843 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3844 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003845
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 p->stime = cputime_add(p->stime, cputime);
3847
3848 /* Add system time to cpustat. */
3849 tmp = cputime_to_cputime64(cputime);
3850 if (hardirq_count() - hardirq_offset)
3851 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3852 else if (softirq_count())
3853 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003854 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003856 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3858 else
3859 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3860 /* Account for system time used */
3861 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862}
3863
3864/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003865 * Account scaled system cpu time to a process.
3866 * @p: the process that the cpu time gets accounted to
3867 * @hardirq_offset: the offset to subtract from hardirq_count()
3868 * @cputime: the cpu time spent in kernel space since the last update
3869 */
3870void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3871{
3872 p->stimescaled = cputime_add(p->stimescaled, cputime);
3873}
3874
3875/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 * Account for involuntary wait time.
3877 * @p: the process from which the cpu time has been stolen
3878 * @steal: the cpu time spent in involuntary wait
3879 */
3880void account_steal_time(struct task_struct *p, cputime_t steal)
3881{
3882 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3883 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003884 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
3886 if (p == rq->idle) {
3887 p->stime = cputime_add(p->stime, steal);
3888 if (atomic_read(&rq->nr_iowait) > 0)
3889 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3890 else
3891 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003892 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3894}
3895
Christoph Lameter7835b982006-12-10 02:20:22 -08003896/*
3897 * This function gets called by the timer code, with HZ frequency.
3898 * We call it with interrupts disabled.
3899 *
3900 * It also gets called by the fork code, when changing the parent's
3901 * timeslices.
3902 */
3903void scheduler_tick(void)
3904{
Christoph Lameter7835b982006-12-10 02:20:22 -08003905 int cpu = smp_processor_id();
3906 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003907 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003908 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003909
Ingo Molnardd41f592007-07-09 18:51:59 +02003910 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003911 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003912 /*
3913 * Let rq->clock advance by at least TICK_NSEC:
3914 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003915 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003916 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003917 rq->clock_underflows++;
3918 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003919 rq->tick_timestamp = rq->clock;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02003920 update_last_tick_seen(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003921 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003922 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02003923 spin_unlock(&rq->lock);
3924
Christoph Lametere418e1c2006-12-10 02:20:23 -08003925#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003926 rq->idle_at_tick = idle_cpu(cpu);
3927 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003928#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929}
3930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3932
Srinivasa Ds43627582008-02-23 15:24:04 -08003933void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934{
3935 /*
3936 * Underflow?
3937 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003938 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3939 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 preempt_count() += val;
3941 /*
3942 * Spinlock count overflowing soon?
3943 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003944 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3945 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946}
3947EXPORT_SYMBOL(add_preempt_count);
3948
Srinivasa Ds43627582008-02-23 15:24:04 -08003949void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950{
3951 /*
3952 * Underflow?
3953 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003954 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3955 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 /*
3957 * Is the spinlock portion underflowing?
3958 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003959 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3960 !(preempt_count() & PREEMPT_MASK)))
3961 return;
3962
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 preempt_count() -= val;
3964}
3965EXPORT_SYMBOL(sub_preempt_count);
3966
3967#endif
3968
3969/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003970 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003972static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973{
Satyam Sharma838225b2007-10-24 18:23:50 +02003974 struct pt_regs *regs = get_irq_regs();
3975
3976 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3977 prev->comm, prev->pid, preempt_count());
3978
Ingo Molnardd41f592007-07-09 18:51:59 +02003979 debug_show_held_locks(prev);
3980 if (irqs_disabled())
3981 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003982
3983 if (regs)
3984 show_regs(regs);
3985 else
3986 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
Ingo Molnardd41f592007-07-09 18:51:59 +02003989/*
3990 * Various schedule()-time debugging checks and statistics:
3991 */
3992static inline void schedule_debug(struct task_struct *prev)
3993{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003995 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 * schedule() atomically, we ignore that path for now.
3997 * Otherwise, whine if we are scheduling when we should not be.
3998 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003999 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
4000 __schedule_bug(prev);
4001
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4003
Ingo Molnar2d723762007-10-15 17:00:12 +02004004 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004005#ifdef CONFIG_SCHEDSTATS
4006 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004007 schedstat_inc(this_rq(), bkl_count);
4008 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004009 }
4010#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004011}
4012
4013/*
4014 * Pick up the highest-prio task:
4015 */
4016static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004017pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004018{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004019 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004020 struct task_struct *p;
4021
4022 /*
4023 * Optimization: we know that if all tasks are in
4024 * the fair class we can call that function directly:
4025 */
4026 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004027 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004028 if (likely(p))
4029 return p;
4030 }
4031
4032 class = sched_class_highest;
4033 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004034 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004035 if (p)
4036 return p;
4037 /*
4038 * Will never be NULL as the idle class always
4039 * returns a non-NULL p:
4040 */
4041 class = class->next;
4042 }
4043}
4044
4045/*
4046 * schedule() is the main scheduler function.
4047 */
4048asmlinkage void __sched schedule(void)
4049{
4050 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004051 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004052 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004053 int cpu;
4054
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055need_resched:
4056 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004057 cpu = smp_processor_id();
4058 rq = cpu_rq(cpu);
4059 rcu_qsctr_inc(cpu);
4060 prev = rq->curr;
4061 switch_count = &prev->nivcsw;
4062
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 release_kernel_lock(prev);
4064need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
Ingo Molnardd41f592007-07-09 18:51:59 +02004066 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004068 hrtick_clear(rq);
4069
Ingo Molnar1e819952007-10-15 17:00:13 +02004070 /*
4071 * Do the rq-clock update outside the rq lock:
4072 */
4073 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02004074 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004075 spin_lock(&rq->lock);
4076 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Ingo Molnardd41f592007-07-09 18:51:59 +02004078 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4079 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004080 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004081 prev->state = TASK_RUNNING;
4082 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004083 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004084 }
4085 switch_count = &prev->nvcsw;
4086 }
4087
Steven Rostedt9a897c52008-01-25 21:08:22 +01004088#ifdef CONFIG_SMP
4089 if (prev->sched_class->pre_schedule)
4090 prev->sched_class->pre_schedule(rq, prev);
4091#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004092
Ingo Molnardd41f592007-07-09 18:51:59 +02004093 if (unlikely(!rq->nr_running))
4094 idle_balance(cpu, rq);
4095
Ingo Molnar31ee5292007-08-09 11:16:49 +02004096 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004097 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
4099 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02004100
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 rq->nr_switches++;
4103 rq->curr = next;
4104 ++*switch_count;
4105
Ingo Molnardd41f592007-07-09 18:51:59 +02004106 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004107 /*
4108 * the context switch might have flipped the stack from under
4109 * us, hence refresh the local variables.
4110 */
4111 cpu = smp_processor_id();
4112 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 } else
4114 spin_unlock_irq(&rq->lock);
4115
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004116 hrtick_set(rq);
4117
4118 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004120
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 preempt_enable_no_resched();
4122 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4123 goto need_resched;
4124}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125EXPORT_SYMBOL(schedule);
4126
4127#ifdef CONFIG_PREEMPT
4128/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004129 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004130 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 * occur there and call schedule directly.
4132 */
4133asmlinkage void __sched preempt_schedule(void)
4134{
4135 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 struct task_struct *task = current;
4137 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004138
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 /*
4140 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004141 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004143 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 return;
4145
Andi Kleen3a5c3592007-10-15 17:00:14 +02004146 do {
4147 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
Andi Kleen3a5c3592007-10-15 17:00:14 +02004149 /*
4150 * We keep the big kernel semaphore locked, but we
4151 * clear ->lock_depth so that schedule() doesnt
4152 * auto-release the semaphore:
4153 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004154 saved_lock_depth = task->lock_depth;
4155 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004156 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004157 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004158 sub_preempt_count(PREEMPT_ACTIVE);
4159
4160 /*
4161 * Check again in case we missed a preemption opportunity
4162 * between schedule and now.
4163 */
4164 barrier();
4165 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167EXPORT_SYMBOL(preempt_schedule);
4168
4169/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004170 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 * off of irq context.
4172 * Note, that this is called and return with irqs disabled. This will
4173 * protect us against recursive calling from irq.
4174 */
4175asmlinkage void __sched preempt_schedule_irq(void)
4176{
4177 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 struct task_struct *task = current;
4179 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004180
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004181 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 BUG_ON(ti->preempt_count || !irqs_disabled());
4183
Andi Kleen3a5c3592007-10-15 17:00:14 +02004184 do {
4185 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
Andi Kleen3a5c3592007-10-15 17:00:14 +02004187 /*
4188 * We keep the big kernel semaphore locked, but we
4189 * clear ->lock_depth so that schedule() doesnt
4190 * auto-release the semaphore:
4191 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004192 saved_lock_depth = task->lock_depth;
4193 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004194 local_irq_enable();
4195 schedule();
4196 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004197 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004198 sub_preempt_count(PREEMPT_ACTIVE);
4199
4200 /*
4201 * Check again in case we missed a preemption opportunity
4202 * between schedule and now.
4203 */
4204 barrier();
4205 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206}
4207
4208#endif /* CONFIG_PREEMPT */
4209
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004210int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4211 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004213 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215EXPORT_SYMBOL(default_wake_function);
4216
4217/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004218 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4219 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 * number) then we wake all the non-exclusive tasks and one exclusive task.
4221 *
4222 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004223 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4225 */
4226static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4227 int nr_exclusive, int sync, void *key)
4228{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004229 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004231 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004232 unsigned flags = curr->flags;
4233
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004235 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 break;
4237 }
4238}
4239
4240/**
4241 * __wake_up - wake up threads blocked on a waitqueue.
4242 * @q: the waitqueue
4243 * @mode: which threads
4244 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004245 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004247void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004248 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249{
4250 unsigned long flags;
4251
4252 spin_lock_irqsave(&q->lock, flags);
4253 __wake_up_common(q, mode, nr_exclusive, 0, key);
4254 spin_unlock_irqrestore(&q->lock, flags);
4255}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256EXPORT_SYMBOL(__wake_up);
4257
4258/*
4259 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4260 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004261void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262{
4263 __wake_up_common(q, mode, 1, 0, NULL);
4264}
4265
4266/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004267 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 * @q: the waitqueue
4269 * @mode: which threads
4270 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4271 *
4272 * The sync wakeup differs that the waker knows that it will schedule
4273 * away soon, so while the target thread will be woken up, it will not
4274 * be migrated to another CPU - ie. the two threads are 'synchronized'
4275 * with each other. This can prevent needless bouncing between CPUs.
4276 *
4277 * On UP it can prevent extra preemption.
4278 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004279void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004280__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281{
4282 unsigned long flags;
4283 int sync = 1;
4284
4285 if (unlikely(!q))
4286 return;
4287
4288 if (unlikely(!nr_exclusive))
4289 sync = 0;
4290
4291 spin_lock_irqsave(&q->lock, flags);
4292 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4293 spin_unlock_irqrestore(&q->lock, flags);
4294}
4295EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4296
Ingo Molnarb15136e2007-10-24 18:23:48 +02004297void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298{
4299 unsigned long flags;
4300
4301 spin_lock_irqsave(&x->wait.lock, flags);
4302 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004303 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 spin_unlock_irqrestore(&x->wait.lock, flags);
4305}
4306EXPORT_SYMBOL(complete);
4307
Ingo Molnarb15136e2007-10-24 18:23:48 +02004308void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309{
4310 unsigned long flags;
4311
4312 spin_lock_irqsave(&x->wait.lock, flags);
4313 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004314 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 spin_unlock_irqrestore(&x->wait.lock, flags);
4316}
4317EXPORT_SYMBOL(complete_all);
4318
Andi Kleen8cbbe862007-10-15 17:00:14 +02004319static inline long __sched
4320do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 if (!x->done) {
4323 DECLARE_WAITQUEUE(wait, current);
4324
4325 wait.flags |= WQ_FLAG_EXCLUSIVE;
4326 __add_wait_queue_tail(&x->wait, &wait);
4327 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004328 if ((state == TASK_INTERRUPTIBLE &&
4329 signal_pending(current)) ||
4330 (state == TASK_KILLABLE &&
4331 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004332 __remove_wait_queue(&x->wait, &wait);
4333 return -ERESTARTSYS;
4334 }
4335 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004337 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004339 if (!timeout) {
4340 __remove_wait_queue(&x->wait, &wait);
4341 return timeout;
4342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 } while (!x->done);
4344 __remove_wait_queue(&x->wait, &wait);
4345 }
4346 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004347 return timeout;
4348}
4349
4350static long __sched
4351wait_for_common(struct completion *x, long timeout, int state)
4352{
4353 might_sleep();
4354
4355 spin_lock_irq(&x->wait.lock);
4356 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004358 return timeout;
4359}
4360
Ingo Molnarb15136e2007-10-24 18:23:48 +02004361void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004362{
4363 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364}
4365EXPORT_SYMBOL(wait_for_completion);
4366
Ingo Molnarb15136e2007-10-24 18:23:48 +02004367unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4369{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004370 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371}
4372EXPORT_SYMBOL(wait_for_completion_timeout);
4373
Andi Kleen8cbbe862007-10-15 17:00:14 +02004374int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375{
Andi Kleen51e97992007-10-18 21:32:55 +02004376 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4377 if (t == -ERESTARTSYS)
4378 return t;
4379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380}
4381EXPORT_SYMBOL(wait_for_completion_interruptible);
4382
Ingo Molnarb15136e2007-10-24 18:23:48 +02004383unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384wait_for_completion_interruptible_timeout(struct completion *x,
4385 unsigned long timeout)
4386{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004387 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388}
4389EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4390
Matthew Wilcox009e5772007-12-06 12:29:54 -05004391int __sched wait_for_completion_killable(struct completion *x)
4392{
4393 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4394 if (t == -ERESTARTSYS)
4395 return t;
4396 return 0;
4397}
4398EXPORT_SYMBOL(wait_for_completion_killable);
4399
Andi Kleen8cbbe862007-10-15 17:00:14 +02004400static long __sched
4401sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004402{
4403 unsigned long flags;
4404 wait_queue_t wait;
4405
4406 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
Andi Kleen8cbbe862007-10-15 17:00:14 +02004408 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409
Andi Kleen8cbbe862007-10-15 17:00:14 +02004410 spin_lock_irqsave(&q->lock, flags);
4411 __add_wait_queue(q, &wait);
4412 spin_unlock(&q->lock);
4413 timeout = schedule_timeout(timeout);
4414 spin_lock_irq(&q->lock);
4415 __remove_wait_queue(q, &wait);
4416 spin_unlock_irqrestore(&q->lock, flags);
4417
4418 return timeout;
4419}
4420
4421void __sched interruptible_sleep_on(wait_queue_head_t *q)
4422{
4423 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425EXPORT_SYMBOL(interruptible_sleep_on);
4426
Ingo Molnar0fec1712007-07-09 18:52:01 +02004427long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004428interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004430 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4433
Ingo Molnar0fec1712007-07-09 18:52:01 +02004434void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004436 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438EXPORT_SYMBOL(sleep_on);
4439
Ingo Molnar0fec1712007-07-09 18:52:01 +02004440long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004442 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444EXPORT_SYMBOL(sleep_on_timeout);
4445
Ingo Molnarb29739f2006-06-27 02:54:51 -07004446#ifdef CONFIG_RT_MUTEXES
4447
4448/*
4449 * rt_mutex_setprio - set the current priority of a task
4450 * @p: task
4451 * @prio: prio value (kernel-internal form)
4452 *
4453 * This function changes the 'effective' priority of a task. It does
4454 * not touch ->normal_prio like __setscheduler().
4455 *
4456 * Used by the rt_mutex code to implement priority inheritance logic.
4457 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004458void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004459{
4460 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004461 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004462 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004463 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004464
4465 BUG_ON(prio < 0 || prio > MAX_PRIO);
4466
4467 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004468 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004469
Andrew Mortond5f9f942007-05-08 20:27:06 -07004470 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004471 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004472 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004473 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004474 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004475 if (running)
4476 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004477
4478 if (rt_prio(prio))
4479 p->sched_class = &rt_sched_class;
4480 else
4481 p->sched_class = &fair_sched_class;
4482
Ingo Molnarb29739f2006-06-27 02:54:51 -07004483 p->prio = prio;
4484
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004485 if (running)
4486 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004487 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004488 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004489
4490 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004491 }
4492 task_rq_unlock(rq, &flags);
4493}
4494
4495#endif
4496
Ingo Molnar36c8b582006-07-03 00:25:41 -07004497void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498{
Ingo Molnardd41f592007-07-09 18:51:59 +02004499 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004501 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
4503 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4504 return;
4505 /*
4506 * We have to be careful, if called from sys_setpriority(),
4507 * the task might be in the middle of scheduling on another CPU.
4508 */
4509 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004510 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 /*
4512 * The RT priorities are set via sched_setscheduler(), but we still
4513 * allow the 'normal' nice value to be set - but as expected
4514 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004515 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004517 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 p->static_prio = NICE_TO_PRIO(nice);
4519 goto out_unlock;
4520 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004521 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004522 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004523 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004524 dec_load(rq, p);
4525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004528 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004529 old_prio = p->prio;
4530 p->prio = effective_prio(p);
4531 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
Ingo Molnardd41f592007-07-09 18:51:59 +02004533 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004534 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004535 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004537 * If the task increased its priority or is running and
4538 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004540 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 resched_task(rq->curr);
4542 }
4543out_unlock:
4544 task_rq_unlock(rq, &flags);
4545}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546EXPORT_SYMBOL(set_user_nice);
4547
Matt Mackalle43379f2005-05-01 08:59:00 -07004548/*
4549 * can_nice - check if a task can reduce its nice value
4550 * @p: task
4551 * @nice: nice value
4552 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004553int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004554{
Matt Mackall024f4742005-08-18 11:24:19 -07004555 /* convert nice value [19,-20] to rlimit style value [1,40] */
4556 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004557
Matt Mackalle43379f2005-05-01 08:59:00 -07004558 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4559 capable(CAP_SYS_NICE));
4560}
4561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562#ifdef __ARCH_WANT_SYS_NICE
4563
4564/*
4565 * sys_nice - change the priority of the current process.
4566 * @increment: priority increment
4567 *
4568 * sys_setpriority is a more generic, but much slower function that
4569 * does similar things.
4570 */
4571asmlinkage long sys_nice(int increment)
4572{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004573 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574
4575 /*
4576 * Setpriority might change our priority at the same moment.
4577 * We don't have to worry. Conceptually one call occurs first
4578 * and we have a single winner.
4579 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004580 if (increment < -40)
4581 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 if (increment > 40)
4583 increment = 40;
4584
4585 nice = PRIO_TO_NICE(current->static_prio) + increment;
4586 if (nice < -20)
4587 nice = -20;
4588 if (nice > 19)
4589 nice = 19;
4590
Matt Mackalle43379f2005-05-01 08:59:00 -07004591 if (increment < 0 && !can_nice(current, nice))
4592 return -EPERM;
4593
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 retval = security_task_setnice(current, nice);
4595 if (retval)
4596 return retval;
4597
4598 set_user_nice(current, nice);
4599 return 0;
4600}
4601
4602#endif
4603
4604/**
4605 * task_prio - return the priority value of a given task.
4606 * @p: the task in question.
4607 *
4608 * This is the priority value as seen by users in /proc.
4609 * RT tasks are offset by -200. Normal tasks are centered
4610 * around 0, value goes from -16 to +15.
4611 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004612int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613{
4614 return p->prio - MAX_RT_PRIO;
4615}
4616
4617/**
4618 * task_nice - return the nice value of a given task.
4619 * @p: the task in question.
4620 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004621int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622{
4623 return TASK_NICE(p);
4624}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004625EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
4627/**
4628 * idle_cpu - is a given cpu idle currently?
4629 * @cpu: the processor in question.
4630 */
4631int idle_cpu(int cpu)
4632{
4633 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4634}
4635
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636/**
4637 * idle_task - return the idle task for a given cpu.
4638 * @cpu: the processor in question.
4639 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004640struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641{
4642 return cpu_rq(cpu)->idle;
4643}
4644
4645/**
4646 * find_process_by_pid - find a process with a matching PID value.
4647 * @pid: the pid in question.
4648 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004649static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004651 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652}
4653
4654/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004655static void
4656__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657{
Ingo Molnardd41f592007-07-09 18:51:59 +02004658 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004659
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004661 switch (p->policy) {
4662 case SCHED_NORMAL:
4663 case SCHED_BATCH:
4664 case SCHED_IDLE:
4665 p->sched_class = &fair_sched_class;
4666 break;
4667 case SCHED_FIFO:
4668 case SCHED_RR:
4669 p->sched_class = &rt_sched_class;
4670 break;
4671 }
4672
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004674 p->normal_prio = normal_prio(p);
4675 /* we are holding p->pi_lock already */
4676 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004677 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678}
4679
4680/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004681 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 * @p: the task in question.
4683 * @policy: new policy.
4684 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004685 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004686 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004688int sched_setscheduler(struct task_struct *p, int policy,
4689 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004691 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004693 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004694 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
Steven Rostedt66e53932006-06-27 02:54:44 -07004696 /* may grab non-irq protected spin_locks */
4697 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698recheck:
4699 /* double check policy once rq lock held */
4700 if (policy < 0)
4701 policy = oldpolicy = p->policy;
4702 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004703 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4704 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004705 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 /*
4707 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004708 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4709 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 */
4711 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004712 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004713 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004715 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 return -EINVAL;
4717
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004718 /*
4719 * Allow unprivileged RT tasks to decrease priority:
4720 */
4721 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004722 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004723 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004724
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004725 if (!lock_task_sighand(p, &flags))
4726 return -ESRCH;
4727 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4728 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004729
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004730 /* can't set/change the rt policy */
4731 if (policy != p->policy && !rlim_rtprio)
4732 return -EPERM;
4733
4734 /* can't increase priority */
4735 if (param->sched_priority > p->rt_priority &&
4736 param->sched_priority > rlim_rtprio)
4737 return -EPERM;
4738 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004739 /*
4740 * Like positive nice levels, dont allow tasks to
4741 * move out of SCHED_IDLE either:
4742 */
4743 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4744 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004745
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004746 /* can't change other user's priorities */
4747 if ((current->euid != p->euid) &&
4748 (current->euid != p->uid))
4749 return -EPERM;
4750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004752#ifdef CONFIG_RT_GROUP_SCHED
4753 /*
4754 * Do not allow realtime tasks into groups that have no runtime
4755 * assigned.
4756 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02004757 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004758 return -EPERM;
4759#endif
4760
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 retval = security_task_setscheduler(p, policy, param);
4762 if (retval)
4763 return retval;
4764 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004765 * make sure no PI-waiters arrive (or leave) while we are
4766 * changing the priority of the task:
4767 */
4768 spin_lock_irqsave(&p->pi_lock, flags);
4769 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 * To be able to change p->policy safely, the apropriate
4771 * runqueue lock must be held.
4772 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004773 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 /* recheck policy now with rq lock held */
4775 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4776 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004777 __task_rq_unlock(rq);
4778 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 goto recheck;
4780 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004781 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004782 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004783 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004784 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004785 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004786 if (running)
4787 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004788
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004790 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004791
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004792 if (running)
4793 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004794 if (on_rq) {
4795 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004796
4797 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004799 __task_rq_unlock(rq);
4800 spin_unlock_irqrestore(&p->pi_lock, flags);
4801
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004802 rt_mutex_adjust_pi(p);
4803
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 return 0;
4805}
4806EXPORT_SYMBOL_GPL(sched_setscheduler);
4807
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004808static int
4809do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 struct sched_param lparam;
4812 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004813 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
4815 if (!param || pid < 0)
4816 return -EINVAL;
4817 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4818 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004819
4820 rcu_read_lock();
4821 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004823 if (p != NULL)
4824 retval = sched_setscheduler(p, policy, &lparam);
4825 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004826
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 return retval;
4828}
4829
4830/**
4831 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4832 * @pid: the pid in question.
4833 * @policy: new policy.
4834 * @param: structure containing the new RT priority.
4835 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004836asmlinkage long
4837sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838{
Jason Baronc21761f2006-01-18 17:43:03 -08004839 /* negative values for policy are not valid */
4840 if (policy < 0)
4841 return -EINVAL;
4842
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 return do_sched_setscheduler(pid, policy, param);
4844}
4845
4846/**
4847 * sys_sched_setparam - set/change the RT priority of a thread
4848 * @pid: the pid in question.
4849 * @param: structure containing the new RT priority.
4850 */
4851asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4852{
4853 return do_sched_setscheduler(pid, -1, param);
4854}
4855
4856/**
4857 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4858 * @pid: the pid in question.
4859 */
4860asmlinkage long sys_sched_getscheduler(pid_t pid)
4861{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004862 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004863 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
4865 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004866 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
4868 retval = -ESRCH;
4869 read_lock(&tasklist_lock);
4870 p = find_process_by_pid(pid);
4871 if (p) {
4872 retval = security_task_getscheduler(p);
4873 if (!retval)
4874 retval = p->policy;
4875 }
4876 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 return retval;
4878}
4879
4880/**
4881 * sys_sched_getscheduler - get the RT priority of a thread
4882 * @pid: the pid in question.
4883 * @param: structure containing the RT priority.
4884 */
4885asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4886{
4887 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004888 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004889 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
4891 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004892 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
4894 read_lock(&tasklist_lock);
4895 p = find_process_by_pid(pid);
4896 retval = -ESRCH;
4897 if (!p)
4898 goto out_unlock;
4899
4900 retval = security_task_getscheduler(p);
4901 if (retval)
4902 goto out_unlock;
4903
4904 lp.sched_priority = p->rt_priority;
4905 read_unlock(&tasklist_lock);
4906
4907 /*
4908 * This one might sleep, we cannot do it with a spinlock held ...
4909 */
4910 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4911
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 return retval;
4913
4914out_unlock:
4915 read_unlock(&tasklist_lock);
4916 return retval;
4917}
4918
Mike Travisb53e9212008-04-04 18:11:08 -07004919long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07004922 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004923 struct task_struct *p;
4924 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004926 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 read_lock(&tasklist_lock);
4928
4929 p = find_process_by_pid(pid);
4930 if (!p) {
4931 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004932 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 return -ESRCH;
4934 }
4935
4936 /*
4937 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004938 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 * usage count and then drop tasklist_lock.
4940 */
4941 get_task_struct(p);
4942 read_unlock(&tasklist_lock);
4943
4944 retval = -EPERM;
4945 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4946 !capable(CAP_SYS_NICE))
4947 goto out_unlock;
4948
David Quigleye7834f82006-06-23 02:03:59 -07004949 retval = security_task_setscheduler(p, 0, NULL);
4950 if (retval)
4951 goto out_unlock;
4952
Mike Travisf9a86fc2008-04-04 18:11:07 -07004953 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004955 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07004956 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957
Paul Menage8707d8b2007-10-18 23:40:22 -07004958 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07004959 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004960 if (!cpus_subset(new_mask, cpus_allowed)) {
4961 /*
4962 * We must have raced with a concurrent cpuset
4963 * update. Just reset the cpus_allowed to the
4964 * cpuset's cpus_allowed
4965 */
4966 new_mask = cpus_allowed;
4967 goto again;
4968 }
4969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970out_unlock:
4971 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004972 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 return retval;
4974}
4975
4976static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4977 cpumask_t *new_mask)
4978{
4979 if (len < sizeof(cpumask_t)) {
4980 memset(new_mask, 0, sizeof(cpumask_t));
4981 } else if (len > sizeof(cpumask_t)) {
4982 len = sizeof(cpumask_t);
4983 }
4984 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4985}
4986
4987/**
4988 * sys_sched_setaffinity - set the cpu affinity of a process
4989 * @pid: pid of the process
4990 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4991 * @user_mask_ptr: user-space pointer to the new cpu mask
4992 */
4993asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4994 unsigned long __user *user_mask_ptr)
4995{
4996 cpumask_t new_mask;
4997 int retval;
4998
4999 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5000 if (retval)
5001 return retval;
5002
Mike Travisb53e9212008-04-04 18:11:08 -07005003 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004}
5005
5006/*
5007 * Represents all cpu's present in the system
5008 * In systems capable of hotplug, this map could dynamically grow
5009 * as new cpu's are detected in the system via any platform specific
5010 * method, such as ACPI for e.g.
5011 */
5012
Andi Kleen4cef0c62006-01-11 22:44:57 +01005013cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014EXPORT_SYMBOL(cpu_present_map);
5015
5016#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005017cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005018EXPORT_SYMBOL(cpu_online_map);
5019
Andi Kleen4cef0c62006-01-11 22:44:57 +01005020cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005021EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022#endif
5023
5024long sched_getaffinity(pid_t pid, cpumask_t *mask)
5025{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005026 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005029 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 read_lock(&tasklist_lock);
5031
5032 retval = -ESRCH;
5033 p = find_process_by_pid(pid);
5034 if (!p)
5035 goto out_unlock;
5036
David Quigleye7834f82006-06-23 02:03:59 -07005037 retval = security_task_getscheduler(p);
5038 if (retval)
5039 goto out_unlock;
5040
Jack Steiner2f7016d2006-02-01 03:05:18 -08005041 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042
5043out_unlock:
5044 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005045 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
Ulrich Drepper9531b622007-08-09 11:16:46 +02005047 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048}
5049
5050/**
5051 * sys_sched_getaffinity - get the cpu affinity of a process
5052 * @pid: pid of the process
5053 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5054 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5055 */
5056asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5057 unsigned long __user *user_mask_ptr)
5058{
5059 int ret;
5060 cpumask_t mask;
5061
5062 if (len < sizeof(cpumask_t))
5063 return -EINVAL;
5064
5065 ret = sched_getaffinity(pid, &mask);
5066 if (ret < 0)
5067 return ret;
5068
5069 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5070 return -EFAULT;
5071
5072 return sizeof(cpumask_t);
5073}
5074
5075/**
5076 * sys_sched_yield - yield the current processor to other threads.
5077 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005078 * This function yields the current CPU to other tasks. If there are no
5079 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 */
5081asmlinkage long sys_sched_yield(void)
5082{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005083 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
Ingo Molnar2d723762007-10-15 17:00:12 +02005085 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005086 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
5088 /*
5089 * Since we are going to call schedule() anyway, there's
5090 * no need to preempt or enable interrupts:
5091 */
5092 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005093 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094 _raw_spin_unlock(&rq->lock);
5095 preempt_enable_no_resched();
5096
5097 schedule();
5098
5099 return 0;
5100}
5101
Andrew Mortone7b38402006-06-30 01:56:00 -07005102static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005104#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5105 __might_sleep(__FILE__, __LINE__);
5106#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005107 /*
5108 * The BKS might be reacquired before we have dropped
5109 * PREEMPT_ACTIVE, which could trigger a second
5110 * cond_resched() call.
5111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 do {
5113 add_preempt_count(PREEMPT_ACTIVE);
5114 schedule();
5115 sub_preempt_count(PREEMPT_ACTIVE);
5116 } while (need_resched());
5117}
5118
Herbert Xu02b67cc2008-01-25 21:08:28 +01005119#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
5120int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121{
Ingo Molnar94142322006-12-29 16:48:13 -08005122 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5123 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 __cond_resched();
5125 return 1;
5126 }
5127 return 0;
5128}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005129EXPORT_SYMBOL(_cond_resched);
5130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
5132/*
5133 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5134 * call schedule, and on return reacquire the lock.
5135 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005136 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 * operations here to prevent schedule() from being called twice (once via
5138 * spin_unlock(), once by hand).
5139 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005140int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141{
Nick Piggin95c354f2008-01-30 13:31:20 +01005142 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005143 int ret = 0;
5144
Nick Piggin95c354f2008-01-30 13:31:20 +01005145 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005147 if (resched && need_resched())
5148 __cond_resched();
5149 else
5150 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005151 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005154 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156EXPORT_SYMBOL(cond_resched_lock);
5157
5158int __sched cond_resched_softirq(void)
5159{
5160 BUG_ON(!in_softirq());
5161
Ingo Molnar94142322006-12-29 16:48:13 -08005162 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07005163 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 __cond_resched();
5165 local_bh_disable();
5166 return 1;
5167 }
5168 return 0;
5169}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170EXPORT_SYMBOL(cond_resched_softirq);
5171
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172/**
5173 * yield - yield the current processor to other threads.
5174 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005175 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 * thread runnable and calls sys_sched_yield().
5177 */
5178void __sched yield(void)
5179{
5180 set_current_state(TASK_RUNNING);
5181 sys_sched_yield();
5182}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183EXPORT_SYMBOL(yield);
5184
5185/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005186 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 * that process accounting knows that this is a task in IO wait state.
5188 *
5189 * But don't do that if it is a deliberate, throttling IO wait (this task
5190 * has set its backing_dev_info: the queue against which it should throttle)
5191 */
5192void __sched io_schedule(void)
5193{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005194 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005196 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 atomic_inc(&rq->nr_iowait);
5198 schedule();
5199 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005200 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202EXPORT_SYMBOL(io_schedule);
5203
5204long __sched io_schedule_timeout(long timeout)
5205{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005206 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 long ret;
5208
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005209 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 atomic_inc(&rq->nr_iowait);
5211 ret = schedule_timeout(timeout);
5212 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005213 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 return ret;
5215}
5216
5217/**
5218 * sys_sched_get_priority_max - return maximum RT priority.
5219 * @policy: scheduling class.
5220 *
5221 * this syscall returns the maximum rt_priority that can be used
5222 * by a given scheduling class.
5223 */
5224asmlinkage long sys_sched_get_priority_max(int policy)
5225{
5226 int ret = -EINVAL;
5227
5228 switch (policy) {
5229 case SCHED_FIFO:
5230 case SCHED_RR:
5231 ret = MAX_USER_RT_PRIO-1;
5232 break;
5233 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005234 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005235 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 ret = 0;
5237 break;
5238 }
5239 return ret;
5240}
5241
5242/**
5243 * sys_sched_get_priority_min - return minimum RT priority.
5244 * @policy: scheduling class.
5245 *
5246 * this syscall returns the minimum rt_priority that can be used
5247 * by a given scheduling class.
5248 */
5249asmlinkage long sys_sched_get_priority_min(int policy)
5250{
5251 int ret = -EINVAL;
5252
5253 switch (policy) {
5254 case SCHED_FIFO:
5255 case SCHED_RR:
5256 ret = 1;
5257 break;
5258 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005259 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005260 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 ret = 0;
5262 }
5263 return ret;
5264}
5265
5266/**
5267 * sys_sched_rr_get_interval - return the default timeslice of a process.
5268 * @pid: pid of the process.
5269 * @interval: userspace pointer to the timeslice value.
5270 *
5271 * this syscall writes the default timeslice value of a given process
5272 * into the user-space timespec buffer. A value of '0' means infinity.
5273 */
5274asmlinkage
5275long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5276{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005277 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005278 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005279 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
5282 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005283 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
5285 retval = -ESRCH;
5286 read_lock(&tasklist_lock);
5287 p = find_process_by_pid(pid);
5288 if (!p)
5289 goto out_unlock;
5290
5291 retval = security_task_getscheduler(p);
5292 if (retval)
5293 goto out_unlock;
5294
Ingo Molnar77034932007-12-04 17:04:39 +01005295 /*
5296 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5297 * tasks that are on an otherwise idle runqueue:
5298 */
5299 time_slice = 0;
5300 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005301 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005302 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005303 struct sched_entity *se = &p->se;
5304 unsigned long flags;
5305 struct rq *rq;
5306
5307 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005308 if (rq->cfs.load.weight)
5309 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005310 task_rq_unlock(rq, &flags);
5311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005313 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005316
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317out_unlock:
5318 read_unlock(&tasklist_lock);
5319 return retval;
5320}
5321
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005322static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005323
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005324void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005327 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005330 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005331 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005332#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005334 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005336 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337#else
5338 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005339 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005341 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342#endif
5343#ifdef CONFIG_DEBUG_STACK_USAGE
5344 {
Al Viro10ebffd2005-11-13 16:06:56 -08005345 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346 while (!*n)
5347 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005348 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 }
5350#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005351 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005352 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005354 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355}
5356
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005357void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005359 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
Ingo Molnar4bd77322007-07-11 21:21:47 +02005361#if BITS_PER_LONG == 32
5362 printk(KERN_INFO
5363 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005365 printk(KERN_INFO
5366 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367#endif
5368 read_lock(&tasklist_lock);
5369 do_each_thread(g, p) {
5370 /*
5371 * reset the NMI-timeout, listing all files on a slow
5372 * console might take alot of time:
5373 */
5374 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005375 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005376 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 } while_each_thread(g, p);
5378
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005379 touch_all_softlockup_watchdogs();
5380
Ingo Molnardd41f592007-07-09 18:51:59 +02005381#ifdef CONFIG_SCHED_DEBUG
5382 sysrq_sched_debug_show();
5383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005385 /*
5386 * Only show locks if all tasks are dumped:
5387 */
5388 if (state_filter == -1)
5389 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390}
5391
Ingo Molnar1df21052007-07-09 18:51:58 +02005392void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5393{
Ingo Molnardd41f592007-07-09 18:51:59 +02005394 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005395}
5396
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005397/**
5398 * init_idle - set up an idle thread for a given CPU
5399 * @idle: task in question
5400 * @cpu: cpu the idle task belongs to
5401 *
5402 * NOTE: this function does not set the idle thread's NEED_RESCHED
5403 * flag, to make booting more robust.
5404 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005405void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005407 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 unsigned long flags;
5409
Ingo Molnardd41f592007-07-09 18:51:59 +02005410 __sched_fork(idle);
5411 idle->se.exec_start = sched_clock();
5412
Ingo Molnarb29739f2006-06-27 02:54:51 -07005413 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005415 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
5417 spin_lock_irqsave(&rq->lock, flags);
5418 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005419#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5420 idle->oncpu = 1;
5421#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422 spin_unlock_irqrestore(&rq->lock, flags);
5423
5424 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08005425 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005426
Ingo Molnardd41f592007-07-09 18:51:59 +02005427 /*
5428 * The idle tasks have their own, simple scheduling class:
5429 */
5430 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431}
5432
5433/*
5434 * In a system that switches off the HZ timer nohz_cpu_mask
5435 * indicates which cpus entered this state. This is used
5436 * in the rcu update to wait only for active cpus. For system
5437 * which do not switch off the HZ timer nohz_cpu_mask should
5438 * always be CPU_MASK_NONE.
5439 */
5440cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5441
Ingo Molnar19978ca2007-11-09 22:39:38 +01005442/*
5443 * Increase the granularity value when there are more CPUs,
5444 * because with more CPUs the 'effective latency' as visible
5445 * to users decreases. But the relationship is not linear,
5446 * so pick a second-best guess by going with the log2 of the
5447 * number of CPUs.
5448 *
5449 * This idea comes from the SD scheduler of Con Kolivas:
5450 */
5451static inline void sched_init_granularity(void)
5452{
5453 unsigned int factor = 1 + ilog2(num_online_cpus());
5454 const unsigned long limit = 200000000;
5455
5456 sysctl_sched_min_granularity *= factor;
5457 if (sysctl_sched_min_granularity > limit)
5458 sysctl_sched_min_granularity = limit;
5459
5460 sysctl_sched_latency *= factor;
5461 if (sysctl_sched_latency > limit)
5462 sysctl_sched_latency = limit;
5463
5464 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005465}
5466
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467#ifdef CONFIG_SMP
5468/*
5469 * This is how migration works:
5470 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005471 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 * runqueue and wake up that CPU's migration thread.
5473 * 2) we down() the locked semaphore => thread blocks.
5474 * 3) migration thread wakes up (implicitly it forces the migrated
5475 * thread off the CPU)
5476 * 4) it gets the migration request and checks whether the migrated
5477 * task is still in the wrong runqueue.
5478 * 5) if it's in the wrong runqueue then the migration thread removes
5479 * it and puts it into the right queue.
5480 * 6) migration thread up()s the semaphore.
5481 * 7) we wake up and the migration is done.
5482 */
5483
5484/*
5485 * Change a given task's CPU affinity. Migrate the thread to a
5486 * proper CPU and schedule it away if the CPU it's executing on
5487 * is removed from the allowed bitmask.
5488 *
5489 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005490 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 * call is not atomic; no spinlocks may be held.
5492 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005493int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005495 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005497 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005498 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
5500 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005501 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502 ret = -EINVAL;
5503 goto out;
5504 }
5505
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005506 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005507 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005508 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005509 p->cpus_allowed = *new_mask;
5510 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005511 }
5512
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005514 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515 goto out;
5516
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005517 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518 /* Need help from migration thread: drop lock and wait. */
5519 task_rq_unlock(rq, &flags);
5520 wake_up_process(rq->migration_thread);
5521 wait_for_completion(&req.done);
5522 tlb_migrate_finish(p->mm);
5523 return 0;
5524 }
5525out:
5526 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005527
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528 return ret;
5529}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005530EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531
5532/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005533 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534 * this because either it can't run here any more (set_cpus_allowed()
5535 * away from this CPU, or CPU going down), or because we're
5536 * attempting to rebalance this task on exec (sched_exec).
5537 *
5538 * So we race with normal scheduler movements, but that's OK, as long
5539 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005540 *
5541 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005543static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005545 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005546 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
5548 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005549 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550
5551 rq_src = cpu_rq(src_cpu);
5552 rq_dest = cpu_rq(dest_cpu);
5553
5554 double_rq_lock(rq_src, rq_dest);
5555 /* Already moved. */
5556 if (task_cpu(p) != src_cpu)
5557 goto out;
5558 /* Affinity changed (again). */
5559 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5560 goto out;
5561
Ingo Molnardd41f592007-07-09 18:51:59 +02005562 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005563 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005564 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005565
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005567 if (on_rq) {
5568 activate_task(rq_dest, p, 0);
5569 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005571 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572out:
5573 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005574 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575}
5576
5577/*
5578 * migration_thread - this is a highprio system thread that performs
5579 * thread migration by bumping thread off CPU then 'pushing' onto
5580 * another runqueue.
5581 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005582static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005585 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
5587 rq = cpu_rq(cpu);
5588 BUG_ON(rq->migration_thread != current);
5589
5590 set_current_state(TASK_INTERRUPTIBLE);
5591 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005592 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 spin_lock_irq(&rq->lock);
5596
5597 if (cpu_is_offline(cpu)) {
5598 spin_unlock_irq(&rq->lock);
5599 goto wait_to_die;
5600 }
5601
5602 if (rq->active_balance) {
5603 active_load_balance(rq, cpu);
5604 rq->active_balance = 0;
5605 }
5606
5607 head = &rq->migration_queue;
5608
5609 if (list_empty(head)) {
5610 spin_unlock_irq(&rq->lock);
5611 schedule();
5612 set_current_state(TASK_INTERRUPTIBLE);
5613 continue;
5614 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005615 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616 list_del_init(head->next);
5617
Nick Piggin674311d2005-06-25 14:57:27 -07005618 spin_unlock(&rq->lock);
5619 __migrate_task(req->task, cpu, req->dest_cpu);
5620 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
5622 complete(&req->done);
5623 }
5624 __set_current_state(TASK_RUNNING);
5625 return 0;
5626
5627wait_to_die:
5628 /* Wait for kthread_stop */
5629 set_current_state(TASK_INTERRUPTIBLE);
5630 while (!kthread_should_stop()) {
5631 schedule();
5632 set_current_state(TASK_INTERRUPTIBLE);
5633 }
5634 __set_current_state(TASK_RUNNING);
5635 return 0;
5636}
5637
5638#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005639
5640static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5641{
5642 int ret;
5643
5644 local_irq_disable();
5645 ret = __migrate_task(p, src_cpu, dest_cpu);
5646 local_irq_enable();
5647 return ret;
5648}
5649
Kirill Korotaev054b9102006-12-10 02:20:11 -08005650/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005651 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005652 * NOTE: interrupts should be disabled by the caller
5653 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005654static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005656 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005658 struct rq *rq;
5659 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
Andi Kleen3a5c3592007-10-15 17:00:14 +02005661 do {
5662 /* On same node? */
5663 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5664 cpus_and(mask, mask, p->cpus_allowed);
5665 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666
Andi Kleen3a5c3592007-10-15 17:00:14 +02005667 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07005668 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005669 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670
Andi Kleen3a5c3592007-10-15 17:00:14 +02005671 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07005672 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005673 cpumask_t cpus_allowed;
5674
5675 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07005676 /*
5677 * Try to stay on the same cpuset, where the
5678 * current cpuset may be a subset of all cpus.
5679 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005680 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005681 * called within calls to cpuset_lock/cpuset_unlock.
5682 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005683 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005684 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005685 dest_cpu = any_online_cpu(p->cpus_allowed);
5686 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687
Andi Kleen3a5c3592007-10-15 17:00:14 +02005688 /*
5689 * Don't tell them about moving exiting tasks or
5690 * kernel threads (both mm NULL), since they never
5691 * leave kernel.
5692 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005693 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005694 printk(KERN_INFO "process %d (%s) no "
5695 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005696 task_pid_nr(p), p->comm, dead_cpu);
5697 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005698 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005699 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700}
5701
5702/*
5703 * While a dead CPU has no uninterruptible tasks queued at this point,
5704 * it might still have a nonzero ->nr_uninterruptible counter, because
5705 * for performance reasons the counter is not stricly tracking tasks to
5706 * their home CPUs. So we just add the counter to another CPU's counter,
5707 * to keep the global sum constant after CPU-down:
5708 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005709static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710{
Mike Travis7c16ec52008-04-04 18:11:11 -07005711 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712 unsigned long flags;
5713
5714 local_irq_save(flags);
5715 double_rq_lock(rq_src, rq_dest);
5716 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5717 rq_src->nr_uninterruptible = 0;
5718 double_rq_unlock(rq_src, rq_dest);
5719 local_irq_restore(flags);
5720}
5721
5722/* Run through task list and migrate tasks from the dead cpu. */
5723static void migrate_live_tasks(int src_cpu)
5724{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005725 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005727 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728
Ingo Molnar48f24c42006-07-03 00:25:40 -07005729 do_each_thread(t, p) {
5730 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731 continue;
5732
Ingo Molnar48f24c42006-07-03 00:25:40 -07005733 if (task_cpu(p) == src_cpu)
5734 move_task_off_dead_cpu(src_cpu, p);
5735 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005737 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738}
5739
Ingo Molnardd41f592007-07-09 18:51:59 +02005740/*
5741 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005742 * It does so by boosting its priority to highest possible.
5743 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744 */
5745void sched_idle_next(void)
5746{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005747 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005748 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749 struct task_struct *p = rq->idle;
5750 unsigned long flags;
5751
5752 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005753 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
Ingo Molnar48f24c42006-07-03 00:25:40 -07005755 /*
5756 * Strictly not necessary since rest of the CPUs are stopped by now
5757 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758 */
5759 spin_lock_irqsave(&rq->lock, flags);
5760
Ingo Molnardd41f592007-07-09 18:51:59 +02005761 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005762
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005763 update_rq_clock(rq);
5764 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
5766 spin_unlock_irqrestore(&rq->lock, flags);
5767}
5768
Ingo Molnar48f24c42006-07-03 00:25:40 -07005769/*
5770 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771 * offline.
5772 */
5773void idle_task_exit(void)
5774{
5775 struct mm_struct *mm = current->active_mm;
5776
5777 BUG_ON(cpu_online(smp_processor_id()));
5778
5779 if (mm != &init_mm)
5780 switch_mm(mm, &init_mm, current);
5781 mmdrop(mm);
5782}
5783
Kirill Korotaev054b9102006-12-10 02:20:11 -08005784/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005785static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005787 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
5789 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005790 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
5792 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005793 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
Ingo Molnar48f24c42006-07-03 00:25:40 -07005795 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796
5797 /*
5798 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005799 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800 * fine.
5801 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005802 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005803 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005804 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805
Ingo Molnar48f24c42006-07-03 00:25:40 -07005806 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807}
5808
5809/* release_task() removes task from tasklist, so we won't find dead tasks. */
5810static void migrate_dead_tasks(unsigned int dead_cpu)
5811{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005812 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005813 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Ingo Molnardd41f592007-07-09 18:51:59 +02005815 for ( ; ; ) {
5816 if (!rq->nr_running)
5817 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005818 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005819 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005820 if (!next)
5821 break;
5822 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005823
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 }
5825}
5826#endif /* CONFIG_HOTPLUG_CPU */
5827
Nick Piggine692ab52007-07-26 13:40:43 +02005828#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5829
5830static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005831 {
5832 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005833 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005834 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005835 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005836};
5837
5838static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005839 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005840 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005841 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005842 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005843 .child = sd_ctl_dir,
5844 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005845 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005846};
5847
5848static struct ctl_table *sd_alloc_ctl_entry(int n)
5849{
5850 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005851 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005852
Nick Piggine692ab52007-07-26 13:40:43 +02005853 return entry;
5854}
5855
Milton Miller6382bc92007-10-15 17:00:19 +02005856static void sd_free_ctl_entry(struct ctl_table **tablep)
5857{
Milton Millercd790072007-10-17 16:55:11 +02005858 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005859
Milton Millercd790072007-10-17 16:55:11 +02005860 /*
5861 * In the intermediate directories, both the child directory and
5862 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005863 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02005864 * static strings and all have proc handlers.
5865 */
5866 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005867 if (entry->child)
5868 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02005869 if (entry->proc_handler == NULL)
5870 kfree(entry->procname);
5871 }
Milton Miller6382bc92007-10-15 17:00:19 +02005872
5873 kfree(*tablep);
5874 *tablep = NULL;
5875}
5876
Nick Piggine692ab52007-07-26 13:40:43 +02005877static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005878set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005879 const char *procname, void *data, int maxlen,
5880 mode_t mode, proc_handler *proc_handler)
5881{
Nick Piggine692ab52007-07-26 13:40:43 +02005882 entry->procname = procname;
5883 entry->data = data;
5884 entry->maxlen = maxlen;
5885 entry->mode = mode;
5886 entry->proc_handler = proc_handler;
5887}
5888
5889static struct ctl_table *
5890sd_alloc_ctl_domain_table(struct sched_domain *sd)
5891{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005892 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005893
Milton Millerad1cdc12007-10-15 17:00:19 +02005894 if (table == NULL)
5895 return NULL;
5896
Alexey Dobriyane0361852007-08-09 11:16:46 +02005897 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005898 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005899 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005900 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005901 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005902 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005903 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005904 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005905 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005906 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005907 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005908 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005909 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005910 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005911 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005912 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005913 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005914 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005915 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005916 &sd->cache_nice_tries,
5917 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005918 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005919 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005920 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005921
5922 return table;
5923}
5924
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005925static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005926{
5927 struct ctl_table *entry, *table;
5928 struct sched_domain *sd;
5929 int domain_num = 0, i;
5930 char buf[32];
5931
5932 for_each_domain(cpu, sd)
5933 domain_num++;
5934 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005935 if (table == NULL)
5936 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005937
5938 i = 0;
5939 for_each_domain(cpu, sd) {
5940 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005941 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005942 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005943 entry->child = sd_alloc_ctl_domain_table(sd);
5944 entry++;
5945 i++;
5946 }
5947 return table;
5948}
5949
5950static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005951static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005952{
5953 int i, cpu_num = num_online_cpus();
5954 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5955 char buf[32];
5956
Milton Miller73785472007-10-24 18:23:48 +02005957 WARN_ON(sd_ctl_dir[0].child);
5958 sd_ctl_dir[0].child = entry;
5959
Milton Millerad1cdc12007-10-15 17:00:19 +02005960 if (entry == NULL)
5961 return;
5962
Milton Miller97b6ea72007-10-15 17:00:19 +02005963 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005964 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005965 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005966 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005967 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005968 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005969 }
Milton Miller73785472007-10-24 18:23:48 +02005970
5971 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005972 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5973}
Milton Miller6382bc92007-10-15 17:00:19 +02005974
Milton Miller73785472007-10-24 18:23:48 +02005975/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005976static void unregister_sched_domain_sysctl(void)
5977{
Milton Miller73785472007-10-24 18:23:48 +02005978 if (sd_sysctl_header)
5979 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005980 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005981 if (sd_ctl_dir[0].child)
5982 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005983}
Nick Piggine692ab52007-07-26 13:40:43 +02005984#else
Milton Miller6382bc92007-10-15 17:00:19 +02005985static void register_sched_domain_sysctl(void)
5986{
5987}
5988static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005989{
5990}
5991#endif
5992
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993/*
5994 * migration_call - callback that gets triggered when a CPU is added.
5995 * Here we can start up the necessary migration thread for the new CPU.
5996 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005997static int __cpuinit
5998migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006001 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006003 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
6005 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006006
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006008 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006009 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 if (IS_ERR(p))
6011 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 kthread_bind(p, cpu);
6013 /* Must be high prio: stop_machine expects to yield to it. */
6014 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006015 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 task_rq_unlock(rq, &flags);
6017 cpu_rq(cpu)->migration_thread = p;
6018 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006019
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006021 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006022 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006024
6025 /* Update our root-domain */
6026 rq = cpu_rq(cpu);
6027 spin_lock_irqsave(&rq->lock, flags);
6028 if (rq->rd) {
6029 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6030 cpu_set(cpu, rq->rd->online);
6031 }
6032 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035#ifdef CONFIG_HOTPLUG_CPU
6036 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006037 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006038 if (!cpu_rq(cpu)->migration_thread)
6039 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006040 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006041 kthread_bind(cpu_rq(cpu)->migration_thread,
6042 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043 kthread_stop(cpu_rq(cpu)->migration_thread);
6044 cpu_rq(cpu)->migration_thread = NULL;
6045 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006048 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006049 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050 migrate_live_tasks(cpu);
6051 rq = cpu_rq(cpu);
6052 kthread_stop(rq->migration_thread);
6053 rq->migration_thread = NULL;
6054 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006055 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006056 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006057 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006059 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6060 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006062 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006063 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064 migrate_nr_uninterruptible(rq);
6065 BUG_ON(rq->nr_running != 0);
6066
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006067 /*
6068 * No need to migrate the tasks: it was best-effort if
6069 * they didn't take sched_hotcpu_mutex. Just wake up
6070 * the requestors.
6071 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072 spin_lock_irq(&rq->lock);
6073 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006074 struct migration_req *req;
6075
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006077 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 list_del_init(&req->list);
6079 complete(&req->done);
6080 }
6081 spin_unlock_irq(&rq->lock);
6082 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006083
Gregory Haskins08f503b2008-03-10 17:59:11 -04006084 case CPU_DYING:
6085 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006086 /* Update our root-domain */
6087 rq = cpu_rq(cpu);
6088 spin_lock_irqsave(&rq->lock, flags);
6089 if (rq->rd) {
6090 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6091 cpu_clear(cpu, rq->rd->online);
6092 }
6093 spin_unlock_irqrestore(&rq->lock, flags);
6094 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095#endif
6096 }
6097 return NOTIFY_OK;
6098}
6099
6100/* Register at highest priority so that task migration (migrate_all_tasks)
6101 * happens before everything else.
6102 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006103static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 .notifier_call = migration_call,
6105 .priority = 10
6106};
6107
Adrian Bunke6fe6642007-11-09 22:39:39 +01006108void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109{
6110 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006111 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006112
6113 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006114 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6115 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6117 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118}
6119#endif
6120
6121#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006122
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006123#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006124
Mike Travis7c16ec52008-04-04 18:11:11 -07006125static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6126 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006127{
6128 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006129 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006130
Mike Travis434d53b2008-04-04 18:11:04 -07006131 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006132 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006133
6134 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6135
6136 if (!(sd->flags & SD_LOAD_BALANCE)) {
6137 printk("does not load-balance\n");
6138 if (sd->parent)
6139 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6140 " has parent");
6141 return -1;
6142 }
6143
6144 printk(KERN_CONT "span %s\n", str);
6145
6146 if (!cpu_isset(cpu, sd->span)) {
6147 printk(KERN_ERR "ERROR: domain->span does not contain "
6148 "CPU%d\n", cpu);
6149 }
6150 if (!cpu_isset(cpu, group->cpumask)) {
6151 printk(KERN_ERR "ERROR: domain->groups does not contain"
6152 " CPU%d\n", cpu);
6153 }
6154
6155 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6156 do {
6157 if (!group) {
6158 printk("\n");
6159 printk(KERN_ERR "ERROR: group is NULL\n");
6160 break;
6161 }
6162
6163 if (!group->__cpu_power) {
6164 printk(KERN_CONT "\n");
6165 printk(KERN_ERR "ERROR: domain->cpu_power not "
6166 "set\n");
6167 break;
6168 }
6169
6170 if (!cpus_weight(group->cpumask)) {
6171 printk(KERN_CONT "\n");
6172 printk(KERN_ERR "ERROR: empty group\n");
6173 break;
6174 }
6175
Mike Travis7c16ec52008-04-04 18:11:11 -07006176 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006177 printk(KERN_CONT "\n");
6178 printk(KERN_ERR "ERROR: repeated CPUs\n");
6179 break;
6180 }
6181
Mike Travis7c16ec52008-04-04 18:11:11 -07006182 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006183
Mike Travis434d53b2008-04-04 18:11:04 -07006184 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006185 printk(KERN_CONT " %s", str);
6186
6187 group = group->next;
6188 } while (group != sd->groups);
6189 printk(KERN_CONT "\n");
6190
Mike Travis7c16ec52008-04-04 18:11:11 -07006191 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006192 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6193
Mike Travis7c16ec52008-04-04 18:11:11 -07006194 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006195 printk(KERN_ERR "ERROR: parent span is not a superset "
6196 "of domain->span\n");
6197 return 0;
6198}
6199
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200static void sched_domain_debug(struct sched_domain *sd, int cpu)
6201{
Mike Travis7c16ec52008-04-04 18:11:11 -07006202 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203 int level = 0;
6204
Nick Piggin41c7ce92005-06-25 14:57:24 -07006205 if (!sd) {
6206 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6207 return;
6208 }
6209
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6211
Mike Travis7c16ec52008-04-04 18:11:11 -07006212 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6213 if (!groupmask) {
6214 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6215 return;
6216 }
6217
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006218 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006219 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221 level++;
6222 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006223 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006224 break;
6225 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006226 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227}
6228#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006229# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230#endif
6231
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006232static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006233{
6234 if (cpus_weight(sd->span) == 1)
6235 return 1;
6236
6237 /* Following flags need at least 2 groups */
6238 if (sd->flags & (SD_LOAD_BALANCE |
6239 SD_BALANCE_NEWIDLE |
6240 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006241 SD_BALANCE_EXEC |
6242 SD_SHARE_CPUPOWER |
6243 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006244 if (sd->groups != sd->groups->next)
6245 return 0;
6246 }
6247
6248 /* Following flags don't use groups */
6249 if (sd->flags & (SD_WAKE_IDLE |
6250 SD_WAKE_AFFINE |
6251 SD_WAKE_BALANCE))
6252 return 0;
6253
6254 return 1;
6255}
6256
Ingo Molnar48f24c42006-07-03 00:25:40 -07006257static int
6258sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006259{
6260 unsigned long cflags = sd->flags, pflags = parent->flags;
6261
6262 if (sd_degenerate(parent))
6263 return 1;
6264
6265 if (!cpus_equal(sd->span, parent->span))
6266 return 0;
6267
6268 /* Does parent contain flags not in child? */
6269 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6270 if (cflags & SD_WAKE_AFFINE)
6271 pflags &= ~SD_WAKE_BALANCE;
6272 /* Flags needing groups don't count if only 1 group in parent */
6273 if (parent->groups == parent->groups->next) {
6274 pflags &= ~(SD_LOAD_BALANCE |
6275 SD_BALANCE_NEWIDLE |
6276 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006277 SD_BALANCE_EXEC |
6278 SD_SHARE_CPUPOWER |
6279 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006280 }
6281 if (~cflags & pflags)
6282 return 0;
6283
6284 return 1;
6285}
6286
Gregory Haskins57d885f2008-01-25 21:08:18 +01006287static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6288{
6289 unsigned long flags;
6290 const struct sched_class *class;
6291
6292 spin_lock_irqsave(&rq->lock, flags);
6293
6294 if (rq->rd) {
6295 struct root_domain *old_rd = rq->rd;
6296
Ingo Molnar0eab9142008-01-25 21:08:19 +01006297 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006298 if (class->leave_domain)
6299 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006300 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006301
Gregory Haskinsdc938522008-01-25 21:08:26 +01006302 cpu_clear(rq->cpu, old_rd->span);
6303 cpu_clear(rq->cpu, old_rd->online);
6304
Gregory Haskins57d885f2008-01-25 21:08:18 +01006305 if (atomic_dec_and_test(&old_rd->refcount))
6306 kfree(old_rd);
6307 }
6308
6309 atomic_inc(&rd->refcount);
6310 rq->rd = rd;
6311
Gregory Haskinsdc938522008-01-25 21:08:26 +01006312 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006313 if (cpu_isset(rq->cpu, cpu_online_map))
6314 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006315
Ingo Molnar0eab9142008-01-25 21:08:19 +01006316 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006317 if (class->join_domain)
6318 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006319 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006320
6321 spin_unlock_irqrestore(&rq->lock, flags);
6322}
6323
Gregory Haskinsdc938522008-01-25 21:08:26 +01006324static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006325{
6326 memset(rd, 0, sizeof(*rd));
6327
Gregory Haskinsdc938522008-01-25 21:08:26 +01006328 cpus_clear(rd->span);
6329 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006330}
6331
6332static void init_defrootdomain(void)
6333{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006334 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006335 atomic_set(&def_root_domain.refcount, 1);
6336}
6337
Gregory Haskinsdc938522008-01-25 21:08:26 +01006338static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006339{
6340 struct root_domain *rd;
6341
6342 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6343 if (!rd)
6344 return NULL;
6345
Gregory Haskinsdc938522008-01-25 21:08:26 +01006346 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006347
6348 return rd;
6349}
6350
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006352 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353 * hold the hotplug lock.
6354 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006355static void
6356cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006358 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006359 struct sched_domain *tmp;
6360
6361 /* Remove the sched domains which do not contribute to scheduling. */
6362 for (tmp = sd; tmp; tmp = tmp->parent) {
6363 struct sched_domain *parent = tmp->parent;
6364 if (!parent)
6365 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006366 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006367 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006368 if (parent->parent)
6369 parent->parent->child = tmp;
6370 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006371 }
6372
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006373 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006374 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006375 if (sd)
6376 sd->child = NULL;
6377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378
6379 sched_domain_debug(sd, cpu);
6380
Gregory Haskins57d885f2008-01-25 21:08:18 +01006381 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006382 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383}
6384
6385/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006386static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387
6388/* Setup the mask of cpus configured for isolated domains */
6389static int __init isolated_cpu_setup(char *str)
6390{
6391 int ints[NR_CPUS], i;
6392
6393 str = get_options(str, ARRAY_SIZE(ints), ints);
6394 cpus_clear(cpu_isolated_map);
6395 for (i = 1; i <= ints[0]; i++)
6396 if (ints[i] < NR_CPUS)
6397 cpu_set(ints[i], cpu_isolated_map);
6398 return 1;
6399}
6400
Ingo Molnar8927f492007-10-15 17:00:13 +02006401__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402
6403/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006404 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6405 * to a function which identifies what group(along with sched group) a CPU
6406 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6407 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408 *
6409 * init_sched_build_groups will build a circular linked list of the groups
6410 * covered by the given span, and will set each group's ->cpumask correctly,
6411 * and ->cpu_power to 0.
6412 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006413static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006414init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006415 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006416 struct sched_group **sg,
6417 cpumask_t *tmpmask),
6418 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419{
6420 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 int i;
6422
Mike Travis7c16ec52008-04-04 18:11:11 -07006423 cpus_clear(*covered);
6424
6425 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006426 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006427 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428 int j;
6429
Mike Travis7c16ec52008-04-04 18:11:11 -07006430 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431 continue;
6432
Mike Travis7c16ec52008-04-04 18:11:11 -07006433 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006434 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
Mike Travis7c16ec52008-04-04 18:11:11 -07006436 for_each_cpu_mask(j, *span) {
6437 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438 continue;
6439
Mike Travis7c16ec52008-04-04 18:11:11 -07006440 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 cpu_set(j, sg->cpumask);
6442 }
6443 if (!first)
6444 first = sg;
6445 if (last)
6446 last->next = sg;
6447 last = sg;
6448 }
6449 last->next = first;
6450}
6451
John Hawkes9c1cfda2005-09-06 15:18:14 -07006452#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453
John Hawkes9c1cfda2005-09-06 15:18:14 -07006454#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006455
John Hawkes9c1cfda2005-09-06 15:18:14 -07006456/**
6457 * find_next_best_node - find the next node to include in a sched_domain
6458 * @node: node whose sched_domain we're building
6459 * @used_nodes: nodes already in the sched_domain
6460 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006461 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006462 * finds the closest node not already in the @used_nodes map.
6463 *
6464 * Should use nodemask_t.
6465 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006466static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006467{
6468 int i, n, val, min_val, best_node = 0;
6469
6470 min_val = INT_MAX;
6471
6472 for (i = 0; i < MAX_NUMNODES; i++) {
6473 /* Start at @node */
6474 n = (node + i) % MAX_NUMNODES;
6475
6476 if (!nr_cpus_node(n))
6477 continue;
6478
6479 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006480 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006481 continue;
6482
6483 /* Simple min distance search */
6484 val = node_distance(node, n);
6485
6486 if (val < min_val) {
6487 min_val = val;
6488 best_node = n;
6489 }
6490 }
6491
Mike Travisc5f59f02008-04-04 18:11:10 -07006492 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006493 return best_node;
6494}
6495
6496/**
6497 * sched_domain_node_span - get a cpumask for a node's sched_domain
6498 * @node: node whose cpumask we're constructing
John Hawkes9c1cfda2005-09-06 15:18:14 -07006499 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006500 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006501 * should be one that prevents unnecessary balancing, but also spreads tasks
6502 * out optimally.
6503 */
Mike Travis4bdbaad2008-04-15 16:35:52 -07006504static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006505{
Mike Travisc5f59f02008-04-04 18:11:10 -07006506 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006507 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006508 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006509
Mike Travis4bdbaad2008-04-15 16:35:52 -07006510 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006511 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006512
Mike Travis4bdbaad2008-04-15 16:35:52 -07006513 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006514 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006515
6516 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006517 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006518
Mike Travisc5f59f02008-04-04 18:11:10 -07006519 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad2008-04-15 16:35:52 -07006520 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006521 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006522}
6523#endif
6524
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006525int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006526
John Hawkes9c1cfda2005-09-06 15:18:14 -07006527/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006528 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006529 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530#ifdef CONFIG_SCHED_SMT
6531static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006532static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006533
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006534static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006535cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6536 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006538 if (sg)
6539 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540 return cpu;
6541}
6542#endif
6543
Ingo Molnar48f24c42006-07-03 00:25:40 -07006544/*
6545 * multi-core sched-domains:
6546 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006547#ifdef CONFIG_SCHED_MC
6548static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006549static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006550#endif
6551
6552#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006553static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006554cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6555 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006556{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006557 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006558
6559 *mask = per_cpu(cpu_sibling_map, cpu);
6560 cpus_and(*mask, *mask, *cpu_map);
6561 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006562 if (sg)
6563 *sg = &per_cpu(sched_group_core, group);
6564 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006565}
6566#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006567static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006568cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6569 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006570{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006571 if (sg)
6572 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006573 return cpu;
6574}
6575#endif
6576
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006578static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006579
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006580static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006581cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6582 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006584 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006585#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006586 *mask = cpu_coregroup_map(cpu);
6587 cpus_and(*mask, *mask, *cpu_map);
6588 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006589#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006590 *mask = per_cpu(cpu_sibling_map, cpu);
6591 cpus_and(*mask, *mask, *cpu_map);
6592 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006594 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006596 if (sg)
6597 *sg = &per_cpu(sched_group_phys, group);
6598 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599}
6600
6601#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006602/*
6603 * The init_sched_build_groups can't handle what we want to do with node
6604 * groups, so roll our own. Now each node has its own list of groups which
6605 * gets dynamically allocated.
6606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07006608static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006609
6610static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006611static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006612
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006613static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006614 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006616 int group;
6617
Mike Travis7c16ec52008-04-04 18:11:11 -07006618 *nodemask = node_to_cpumask(cpu_to_node(cpu));
6619 cpus_and(*nodemask, *nodemask, *cpu_map);
6620 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006621
6622 if (sg)
6623 *sg = &per_cpu(sched_group_allnodes, group);
6624 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006626
Siddha, Suresh B08069032006-03-27 01:15:23 -08006627static void init_numa_sched_groups_power(struct sched_group *group_head)
6628{
6629 struct sched_group *sg = group_head;
6630 int j;
6631
6632 if (!sg)
6633 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006634 do {
6635 for_each_cpu_mask(j, sg->cpumask) {
6636 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006637
Andi Kleen3a5c3592007-10-15 17:00:14 +02006638 sd = &per_cpu(phys_domains, j);
6639 if (j != first_cpu(sd->groups->cpumask)) {
6640 /*
6641 * Only add "power" once for each
6642 * physical package.
6643 */
6644 continue;
6645 }
6646
6647 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006648 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006649 sg = sg->next;
6650 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006651}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652#endif
6653
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006654#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006655/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07006656static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006657{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006658 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006659
6660 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006661 struct sched_group **sched_group_nodes
6662 = sched_group_nodes_bycpu[cpu];
6663
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006664 if (!sched_group_nodes)
6665 continue;
6666
6667 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006668 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6669
Mike Travis7c16ec52008-04-04 18:11:11 -07006670 *nodemask = node_to_cpumask(i);
6671 cpus_and(*nodemask, *nodemask, *cpu_map);
6672 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006673 continue;
6674
6675 if (sg == NULL)
6676 continue;
6677 sg = sg->next;
6678next_sg:
6679 oldsg = sg;
6680 sg = sg->next;
6681 kfree(oldsg);
6682 if (oldsg != sched_group_nodes[i])
6683 goto next_sg;
6684 }
6685 kfree(sched_group_nodes);
6686 sched_group_nodes_bycpu[cpu] = NULL;
6687 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006688}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006689#else
Mike Travis7c16ec52008-04-04 18:11:11 -07006690static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006691{
6692}
6693#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006694
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006696 * Initialize sched groups cpu_power.
6697 *
6698 * cpu_power indicates the capacity of sched group, which is used while
6699 * distributing the load between different sched groups in a sched domain.
6700 * Typically cpu_power for all the groups in a sched domain will be same unless
6701 * there are asymmetries in the topology. If there are asymmetries, group
6702 * having more cpu_power will pickup more load compared to the group having
6703 * less cpu_power.
6704 *
6705 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6706 * the maximum number of tasks a group can handle in the presence of other idle
6707 * or lightly loaded groups in the same sched domain.
6708 */
6709static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6710{
6711 struct sched_domain *child;
6712 struct sched_group *group;
6713
6714 WARN_ON(!sd || !sd->groups);
6715
6716 if (cpu != first_cpu(sd->groups->cpumask))
6717 return;
6718
6719 child = sd->child;
6720
Eric Dumazet5517d862007-05-08 00:32:57 -07006721 sd->groups->__cpu_power = 0;
6722
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006723 /*
6724 * For perf policy, if the groups in child domain share resources
6725 * (for example cores sharing some portions of the cache hierarchy
6726 * or SMT), then set this domain groups cpu_power such that each group
6727 * can handle only one task, when there are other idle groups in the
6728 * same sched domain.
6729 */
6730 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6731 (child->flags &
6732 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006733 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006734 return;
6735 }
6736
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006737 /*
6738 * add cpu_power of each child group to this groups cpu_power
6739 */
6740 group = child->groups;
6741 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006742 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006743 group = group->next;
6744 } while (group != child->groups);
6745}
6746
6747/*
Mike Travis7c16ec52008-04-04 18:11:11 -07006748 * Initializers for schedule domains
6749 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
6750 */
6751
6752#define SD_INIT(sd, type) sd_init_##type(sd)
6753#define SD_INIT_FUNC(type) \
6754static noinline void sd_init_##type(struct sched_domain *sd) \
6755{ \
6756 memset(sd, 0, sizeof(*sd)); \
6757 *sd = SD_##type##_INIT; \
6758}
6759
6760SD_INIT_FUNC(CPU)
6761#ifdef CONFIG_NUMA
6762 SD_INIT_FUNC(ALLNODES)
6763 SD_INIT_FUNC(NODE)
6764#endif
6765#ifdef CONFIG_SCHED_SMT
6766 SD_INIT_FUNC(SIBLING)
6767#endif
6768#ifdef CONFIG_SCHED_MC
6769 SD_INIT_FUNC(MC)
6770#endif
6771
6772/*
6773 * To minimize stack usage kmalloc room for cpumasks and share the
6774 * space as the usage in build_sched_domains() dictates. Used only
6775 * if the amount of space is significant.
6776 */
6777struct allmasks {
6778 cpumask_t tmpmask; /* make this one first */
6779 union {
6780 cpumask_t nodemask;
6781 cpumask_t this_sibling_map;
6782 cpumask_t this_core_map;
6783 };
6784 cpumask_t send_covered;
6785
6786#ifdef CONFIG_NUMA
6787 cpumask_t domainspan;
6788 cpumask_t covered;
6789 cpumask_t notcovered;
6790#endif
6791};
6792
6793#if NR_CPUS > 128
6794#define SCHED_CPUMASK_ALLOC 1
6795#define SCHED_CPUMASK_FREE(v) kfree(v)
6796#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
6797#else
6798#define SCHED_CPUMASK_ALLOC 0
6799#define SCHED_CPUMASK_FREE(v)
6800#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
6801#endif
6802
6803#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
6804 ((unsigned long)(a) + offsetof(struct allmasks, v))
6805
6806/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006807 * Build sched domains for a given set of cpus and attach the sched domains
6808 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006810static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811{
6812 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006813 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006814 SCHED_CPUMASK_DECLARE(allmasks);
6815 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07006816#ifdef CONFIG_NUMA
6817 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006818 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006819
6820 /*
6821 * Allocate the per-node list of sched groups
6822 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006823 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006824 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006825 if (!sched_group_nodes) {
6826 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006827 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006828 }
John Hawkesd1b55132005-09-06 15:18:14 -07006829#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006830
Gregory Haskinsdc938522008-01-25 21:08:26 +01006831 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006832 if (!rd) {
6833 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07006834#ifdef CONFIG_NUMA
6835 kfree(sched_group_nodes);
6836#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006837 return -ENOMEM;
6838 }
6839
Mike Travis7c16ec52008-04-04 18:11:11 -07006840#if SCHED_CPUMASK_ALLOC
6841 /* get space for all scratch cpumask variables */
6842 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
6843 if (!allmasks) {
6844 printk(KERN_WARNING "Cannot alloc cpumask array\n");
6845 kfree(rd);
6846#ifdef CONFIG_NUMA
6847 kfree(sched_group_nodes);
6848#endif
6849 return -ENOMEM;
6850 }
6851#endif
6852 tmpmask = (cpumask_t *)allmasks;
6853
6854
6855#ifdef CONFIG_NUMA
6856 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6857#endif
6858
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006860 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006862 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07006864 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006865
Mike Travis7c16ec52008-04-04 18:11:11 -07006866 *nodemask = node_to_cpumask(cpu_to_node(i));
6867 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868
6869#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006870 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07006871 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006872 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006873 SD_INIT(sd, ALLNODES);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006874 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07006875 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006876 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006877 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006878 } else
6879 p = NULL;
6880
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006882 SD_INIT(sd, NODE);
Mike Travis4bdbaad2008-04-15 16:35:52 -07006883 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006884 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006885 if (p)
6886 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006887 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888#endif
6889
6890 p = sd;
6891 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006892 SD_INIT(sd, CPU);
6893 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006895 if (p)
6896 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006897 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006899#ifdef CONFIG_SCHED_MC
6900 p = sd;
6901 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006902 SD_INIT(sd, MC);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006903 sd->span = cpu_coregroup_map(i);
6904 cpus_and(sd->span, sd->span, *cpu_map);
6905 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006906 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006907 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006908#endif
6909
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910#ifdef CONFIG_SCHED_SMT
6911 p = sd;
6912 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006913 SD_INIT(sd, SIBLING);
Mike Travisd5a74302007-10-16 01:24:05 -07006914 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006915 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006917 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006918 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919#endif
6920 }
6921
6922#ifdef CONFIG_SCHED_SMT
6923 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006924 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006925 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
6926 SCHED_CPUMASK_VAR(send_covered, allmasks);
6927
6928 *this_sibling_map = per_cpu(cpu_sibling_map, i);
6929 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
6930 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931 continue;
6932
Ingo Molnardd41f592007-07-09 18:51:59 +02006933 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006934 &cpu_to_cpu_group,
6935 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936 }
6937#endif
6938
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006939#ifdef CONFIG_SCHED_MC
6940 /* Set up multi-core groups */
6941 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006942 SCHED_CPUMASK_VAR(this_core_map, allmasks);
6943 SCHED_CPUMASK_VAR(send_covered, allmasks);
6944
6945 *this_core_map = cpu_coregroup_map(i);
6946 cpus_and(*this_core_map, *this_core_map, *cpu_map);
6947 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006948 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07006949
Ingo Molnardd41f592007-07-09 18:51:59 +02006950 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006951 &cpu_to_core_group,
6952 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006953 }
6954#endif
6955
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956 /* Set up physical groups */
6957 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006958 SCHED_CPUMASK_VAR(nodemask, allmasks);
6959 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960
Mike Travis7c16ec52008-04-04 18:11:11 -07006961 *nodemask = node_to_cpumask(i);
6962 cpus_and(*nodemask, *nodemask, *cpu_map);
6963 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964 continue;
6965
Mike Travis7c16ec52008-04-04 18:11:11 -07006966 init_sched_build_groups(nodemask, cpu_map,
6967 &cpu_to_phys_group,
6968 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969 }
6970
6971#ifdef CONFIG_NUMA
6972 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07006973 if (sd_allnodes) {
6974 SCHED_CPUMASK_VAR(send_covered, allmasks);
6975
6976 init_sched_build_groups(cpu_map, cpu_map,
6977 &cpu_to_allnodes_group,
6978 send_covered, tmpmask);
6979 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006980
6981 for (i = 0; i < MAX_NUMNODES; i++) {
6982 /* Set up node groups */
6983 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07006984 SCHED_CPUMASK_VAR(nodemask, allmasks);
6985 SCHED_CPUMASK_VAR(domainspan, allmasks);
6986 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006987 int j;
6988
Mike Travis7c16ec52008-04-04 18:11:11 -07006989 *nodemask = node_to_cpumask(i);
6990 cpus_clear(*covered);
6991
6992 cpus_and(*nodemask, *nodemask, *cpu_map);
6993 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07006994 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006995 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006996 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006997
Mike Travis4bdbaad2008-04-15 16:35:52 -07006998 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07006999 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007000
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007001 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007002 if (!sg) {
7003 printk(KERN_WARNING "Can not alloc domain group for "
7004 "node %d\n", i);
7005 goto error;
7006 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007007 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007008 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007009 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007010
John Hawkes9c1cfda2005-09-06 15:18:14 -07007011 sd = &per_cpu(node_domains, j);
7012 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007013 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007014 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007015 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007016 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007017 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007018 prev = sg;
7019
7020 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007021 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007022 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007023 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007024
Mike Travis7c16ec52008-04-04 18:11:11 -07007025 cpus_complement(*notcovered, *covered);
7026 cpus_and(*tmpmask, *notcovered, *cpu_map);
7027 cpus_and(*tmpmask, *tmpmask, *domainspan);
7028 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007029 break;
7030
Mike Travis7c16ec52008-04-04 18:11:11 -07007031 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7032 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007033 continue;
7034
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007035 sg = kmalloc_node(sizeof(struct sched_group),
7036 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007037 if (!sg) {
7038 printk(KERN_WARNING
7039 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007040 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007041 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007042 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007043 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007044 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007045 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007046 prev->next = sg;
7047 prev = sg;
7048 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050#endif
7051
7052 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007053#ifdef CONFIG_SCHED_SMT
7054 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007055 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7056
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007057 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007058 }
7059#endif
7060#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007061 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007062 struct sched_domain *sd = &per_cpu(core_domains, i);
7063
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007064 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007065 }
7066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007068 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007069 struct sched_domain *sd = &per_cpu(phys_domains, i);
7070
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007071 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072 }
7073
John Hawkes9c1cfda2005-09-06 15:18:14 -07007074#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007075 for (i = 0; i < MAX_NUMNODES; i++)
7076 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007077
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007078 if (sd_allnodes) {
7079 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007080
Mike Travis7c16ec52008-04-04 18:11:11 -07007081 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7082 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007083 init_numa_sched_groups_power(sg);
7084 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007085#endif
7086
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007088 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089 struct sched_domain *sd;
7090#ifdef CONFIG_SCHED_SMT
7091 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007092#elif defined(CONFIG_SCHED_MC)
7093 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007094#else
7095 sd = &per_cpu(phys_domains, i);
7096#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007097 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007099
Mike Travis7c16ec52008-04-04 18:11:11 -07007100 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007101 return 0;
7102
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007103#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007104error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007105 free_sched_groups(cpu_map, tmpmask);
7106 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007107 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007108#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109}
Paul Jackson029190c2007-10-18 23:40:20 -07007110
7111static cpumask_t *doms_cur; /* current sched domains */
7112static int ndoms_cur; /* number of sched domains in 'doms_cur' */
7113
7114/*
7115 * Special case: If a kmalloc of a doms_cur partition (array of
7116 * cpumask_t) fails, then fallback to a single sched domain,
7117 * as determined by the single cpumask_t fallback_doms.
7118 */
7119static cpumask_t fallback_doms;
7120
Heiko Carstens22e52b02008-03-12 18:31:59 +01007121void __attribute__((weak)) arch_update_cpu_topology(void)
7122{
7123}
7124
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007125/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007126 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007127 * For now this just excludes isolated cpus, but could be used to
7128 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007129 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007130static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007131{
Milton Miller73785472007-10-24 18:23:48 +02007132 int err;
7133
Heiko Carstens22e52b02008-03-12 18:31:59 +01007134 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007135 ndoms_cur = 1;
7136 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7137 if (!doms_cur)
7138 doms_cur = &fallback_doms;
7139 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02007140 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007141 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007142
7143 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007144}
7145
Mike Travis7c16ec52008-04-04 18:11:11 -07007146static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7147 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007148{
Mike Travis7c16ec52008-04-04 18:11:11 -07007149 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007150}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007152/*
7153 * Detach sched domains from a group of cpus specified in cpu_map
7154 * These cpus will now be attached to the NULL domain
7155 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007156static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007157{
Mike Travis7c16ec52008-04-04 18:11:11 -07007158 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007159 int i;
7160
Milton Miller6382bc92007-10-15 17:00:19 +02007161 unregister_sched_domain_sysctl();
7162
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007163 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007164 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007165 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007166 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007167}
7168
Paul Jackson029190c2007-10-18 23:40:20 -07007169/*
7170 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007171 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007172 * doms_new[] to the current sched domain partitioning, doms_cur[].
7173 * It destroys each deleted domain and builds each new domain.
7174 *
7175 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007176 * The masks don't intersect (don't overlap.) We should setup one
7177 * sched domain for each mask. CPUs not in any of the cpumasks will
7178 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007179 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7180 * it as it is.
7181 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007182 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7183 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007184 * failed the kmalloc call, then it can pass in doms_new == NULL,
7185 * and partition_sched_domains() will fallback to the single partition
7186 * 'fallback_doms'.
7187 *
7188 * Call with hotplug lock held
7189 */
7190void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
7191{
7192 int i, j;
7193
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007194 lock_doms_cur();
7195
Milton Miller73785472007-10-24 18:23:48 +02007196 /* always unregister in case we don't destroy any domains */
7197 unregister_sched_domain_sysctl();
7198
Paul Jackson029190c2007-10-18 23:40:20 -07007199 if (doms_new == NULL) {
7200 ndoms_new = 1;
7201 doms_new = &fallback_doms;
7202 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7203 }
7204
7205 /* Destroy deleted domains */
7206 for (i = 0; i < ndoms_cur; i++) {
7207 for (j = 0; j < ndoms_new; j++) {
7208 if (cpus_equal(doms_cur[i], doms_new[j]))
7209 goto match1;
7210 }
7211 /* no match - a current sched domain not in new doms_new[] */
7212 detach_destroy_domains(doms_cur + i);
7213match1:
7214 ;
7215 }
7216
7217 /* Build new domains */
7218 for (i = 0; i < ndoms_new; i++) {
7219 for (j = 0; j < ndoms_cur; j++) {
7220 if (cpus_equal(doms_new[i], doms_cur[j]))
7221 goto match2;
7222 }
7223 /* no match - add a new doms_new */
7224 build_sched_domains(doms_new + i);
7225match2:
7226 ;
7227 }
7228
7229 /* Remember the new sched domains */
7230 if (doms_cur != &fallback_doms)
7231 kfree(doms_cur);
7232 doms_cur = doms_new;
7233 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007234
7235 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007236
7237 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07007238}
7239
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007240#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007241int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007242{
7243 int err;
7244
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007245 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007246 detach_destroy_domains(&cpu_online_map);
7247 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007248 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007249
7250 return err;
7251}
7252
7253static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7254{
7255 int ret;
7256
7257 if (buf[0] != '0' && buf[0] != '1')
7258 return -EINVAL;
7259
7260 if (smt)
7261 sched_smt_power_savings = (buf[0] == '1');
7262 else
7263 sched_mc_power_savings = (buf[0] == '1');
7264
7265 ret = arch_reinit_sched_domains();
7266
7267 return ret ? ret : count;
7268}
7269
Adrian Bunk6707de002007-08-12 18:08:19 +02007270#ifdef CONFIG_SCHED_MC
7271static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7272{
7273 return sprintf(page, "%u\n", sched_mc_power_savings);
7274}
7275static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7276 const char *buf, size_t count)
7277{
7278 return sched_power_savings_store(buf, count, 0);
7279}
7280static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7281 sched_mc_power_savings_store);
7282#endif
7283
7284#ifdef CONFIG_SCHED_SMT
7285static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7286{
7287 return sprintf(page, "%u\n", sched_smt_power_savings);
7288}
7289static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7290 const char *buf, size_t count)
7291{
7292 return sched_power_savings_store(buf, count, 1);
7293}
7294static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7295 sched_smt_power_savings_store);
7296#endif
7297
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007298int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7299{
7300 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007301
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007302#ifdef CONFIG_SCHED_SMT
7303 if (smt_capable())
7304 err = sysfs_create_file(&cls->kset.kobj,
7305 &attr_sched_smt_power_savings.attr);
7306#endif
7307#ifdef CONFIG_SCHED_MC
7308 if (!err && mc_capable())
7309 err = sysfs_create_file(&cls->kset.kobj,
7310 &attr_sched_mc_power_savings.attr);
7311#endif
7312 return err;
7313}
7314#endif
7315
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007317 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007319 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320 * which will prevent rebalancing while the sched domains are recalculated.
7321 */
7322static int update_sched_domains(struct notifier_block *nfb,
7323 unsigned long action, void *hcpu)
7324{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325 switch (action) {
7326 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007327 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007329 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007330 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331 return NOTIFY_OK;
7332
7333 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007334 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007336 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007338 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007340 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341 /*
7342 * Fall through and re-initialise the domains.
7343 */
7344 break;
7345 default:
7346 return NOTIFY_DONE;
7347 }
7348
7349 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007350 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351
7352 return NOTIFY_OK;
7353}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354
7355void __init sched_init_smp(void)
7356{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007357 cpumask_t non_isolated_cpus;
7358
Mike Travis434d53b2008-04-04 18:11:04 -07007359#if defined(CONFIG_NUMA)
7360 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7361 GFP_KERNEL);
7362 BUG_ON(sched_group_nodes_bycpu == NULL);
7363#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007364 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007365 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007366 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007367 if (cpus_empty(non_isolated_cpus))
7368 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007369 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370 /* XXX: Theoretical race here - CPU may be hotplugged now */
7371 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007372
7373 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007374 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007375 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007376 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377}
7378#else
7379void __init sched_init_smp(void)
7380{
Mike Travis434d53b2008-04-04 18:11:04 -07007381#if defined(CONFIG_NUMA)
7382 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7383 GFP_KERNEL);
7384 BUG_ON(sched_group_nodes_bycpu == NULL);
7385#endif
Ingo Molnar19978ca2007-11-09 22:39:38 +01007386 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387}
7388#endif /* CONFIG_SMP */
7389
7390int in_sched_functions(unsigned long addr)
7391{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392 return in_lock_functions(addr) ||
7393 (addr >= (unsigned long)__sched_text_start
7394 && addr < (unsigned long)__sched_text_end);
7395}
7396
Alexey Dobriyana9957442007-10-15 17:00:13 +02007397static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007398{
7399 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007400#ifdef CONFIG_FAIR_GROUP_SCHED
7401 cfs_rq->rq = rq;
7402#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007403 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007404}
7405
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007406static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7407{
7408 struct rt_prio_array *array;
7409 int i;
7410
7411 array = &rt_rq->active;
7412 for (i = 0; i < MAX_RT_PRIO; i++) {
7413 INIT_LIST_HEAD(array->queue + i);
7414 __clear_bit(i, array->bitmap);
7415 }
7416 /* delimiter for bitsearch: */
7417 __set_bit(MAX_RT_PRIO, array->bitmap);
7418
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007419#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007420 rt_rq->highest_prio = MAX_RT_PRIO;
7421#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007422#ifdef CONFIG_SMP
7423 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007424 rt_rq->overloaded = 0;
7425#endif
7426
7427 rt_rq->rt_time = 0;
7428 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007429 rt_rq->rt_runtime = 0;
7430 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007431
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007432#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007433 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007434 rt_rq->rq = rq;
7435#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007436}
7437
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007438#ifdef CONFIG_FAIR_GROUP_SCHED
7439static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg,
7440 struct cfs_rq *cfs_rq, struct sched_entity *se,
7441 int cpu, int add)
7442{
7443 tg->cfs_rq[cpu] = cfs_rq;
7444 init_cfs_rq(cfs_rq, rq);
7445 cfs_rq->tg = tg;
7446 if (add)
7447 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7448
7449 tg->se[cpu] = se;
7450 se->cfs_rq = &rq->cfs;
7451 se->my_q = cfs_rq;
7452 se->load.weight = tg->shares;
7453 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
7454 se->parent = NULL;
7455}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007456#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007457
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007458#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007459static void init_tg_rt_entry(struct rq *rq, struct task_group *tg,
7460 struct rt_rq *rt_rq, struct sched_rt_entity *rt_se,
7461 int cpu, int add)
7462{
7463 tg->rt_rq[cpu] = rt_rq;
7464 init_rt_rq(rt_rq, rq);
7465 rt_rq->tg = tg;
7466 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007467 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007468 if (add)
7469 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7470
7471 tg->rt_se[cpu] = rt_se;
7472 rt_se->rt_rq = &rq->rt;
7473 rt_se->my_q = rt_rq;
7474 rt_se->parent = NULL;
7475 INIT_LIST_HEAD(&rt_se->run_list);
7476}
7477#endif
7478
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479void __init sched_init(void)
7480{
Ingo Molnardd41f592007-07-09 18:51:59 +02007481 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07007482 unsigned long alloc_size = 0, ptr;
7483
7484#ifdef CONFIG_FAIR_GROUP_SCHED
7485 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7486#endif
7487#ifdef CONFIG_RT_GROUP_SCHED
7488 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7489#endif
7490 /*
7491 * As sched_init() is called before page_alloc is setup,
7492 * we use alloc_bootmem().
7493 */
7494 if (alloc_size) {
7495 ptr = (unsigned long)alloc_bootmem_low(alloc_size);
7496
7497#ifdef CONFIG_FAIR_GROUP_SCHED
7498 init_task_group.se = (struct sched_entity **)ptr;
7499 ptr += nr_cpu_ids * sizeof(void **);
7500
7501 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
7502 ptr += nr_cpu_ids * sizeof(void **);
7503#endif
7504#ifdef CONFIG_RT_GROUP_SCHED
7505 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
7506 ptr += nr_cpu_ids * sizeof(void **);
7507
7508 init_task_group.rt_rq = (struct rt_rq **)ptr;
7509#endif
7510 }
Ingo Molnardd41f592007-07-09 18:51:59 +02007511
Gregory Haskins57d885f2008-01-25 21:08:18 +01007512#ifdef CONFIG_SMP
7513 init_defrootdomain();
7514#endif
7515
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007516 init_rt_bandwidth(&def_rt_bandwidth,
7517 global_rt_period(), global_rt_runtime());
7518
7519#ifdef CONFIG_RT_GROUP_SCHED
7520 init_rt_bandwidth(&init_task_group.rt_bandwidth,
7521 global_rt_period(), global_rt_runtime());
7522#endif
7523
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007524#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007525 list_add(&init_task_group.list, &task_groups);
7526#endif
7527
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007528 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007529 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530
7531 rq = cpu_rq(i);
7532 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007533 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007534 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007535 rq->clock = 1;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02007536 update_last_tick_seen(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02007537 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007538 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007539#ifdef CONFIG_FAIR_GROUP_SCHED
7540 init_task_group.shares = init_task_group_load;
7541 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
7542 init_tg_cfs_entry(rq, &init_task_group,
7543 &per_cpu(init_cfs_rq, i),
7544 &per_cpu(init_sched_entity, i), i, 1);
7545
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007546#endif
7547#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007548 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
7549 init_tg_rt_entry(rq, &init_task_group,
7550 &per_cpu(init_rt_rq, i),
7551 &per_cpu(init_sched_rt_entity, i), i, 1);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007552#else
7553 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007554#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555
Ingo Molnardd41f592007-07-09 18:51:59 +02007556 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7557 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007559 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007560 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007562 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007564 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565 rq->migration_thread = NULL;
7566 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007567 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007569 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571 }
7572
Peter Williams2dd73a42006-06-27 02:54:34 -07007573 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007574
Avi Kivitye107be32007-07-26 13:40:43 +02007575#ifdef CONFIG_PREEMPT_NOTIFIERS
7576 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7577#endif
7578
Christoph Lameterc9819f42006-12-10 02:20:25 -08007579#ifdef CONFIG_SMP
7580 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7581#endif
7582
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007583#ifdef CONFIG_RT_MUTEXES
7584 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7585#endif
7586
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587 /*
7588 * The boot idle thread does lazy MMU switching as well:
7589 */
7590 atomic_inc(&init_mm.mm_count);
7591 enter_lazy_tlb(&init_mm, current);
7592
7593 /*
7594 * Make us the idle thread. Technically, schedule() should not be
7595 * called from this thread, however somewhere below it might be,
7596 * but because we are the idle thread, we just pick up running again
7597 * when this runqueue becomes "idle".
7598 */
7599 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007600 /*
7601 * During early bootup we pretend to be a normal task:
7602 */
7603 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007604
7605 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606}
7607
7608#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7609void __might_sleep(char *file, int line)
7610{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007611#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612 static unsigned long prev_jiffy; /* ratelimiting */
7613
7614 if ((in_atomic() || irqs_disabled()) &&
7615 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7616 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7617 return;
7618 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007619 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620 " context at %s:%d\n", file, line);
7621 printk("in_atomic():%d, irqs_disabled():%d\n",
7622 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007623 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007624 if (irqs_disabled())
7625 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626 dump_stack();
7627 }
7628#endif
7629}
7630EXPORT_SYMBOL(__might_sleep);
7631#endif
7632
7633#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007634static void normalize_task(struct rq *rq, struct task_struct *p)
7635{
7636 int on_rq;
7637 update_rq_clock(rq);
7638 on_rq = p->se.on_rq;
7639 if (on_rq)
7640 deactivate_task(rq, p, 0);
7641 __setscheduler(rq, p, SCHED_NORMAL, 0);
7642 if (on_rq) {
7643 activate_task(rq, p, 0);
7644 resched_task(rq->curr);
7645 }
7646}
7647
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648void normalize_rt_tasks(void)
7649{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007650 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007652 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007654 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007655 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007656 /*
7657 * Only normalize user tasks:
7658 */
7659 if (!p->mm)
7660 continue;
7661
Ingo Molnardd41f592007-07-09 18:51:59 +02007662 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007663#ifdef CONFIG_SCHEDSTATS
7664 p->se.wait_start = 0;
7665 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007666 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007667#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007668 task_rq(p)->clock = 0;
7669
7670 if (!rt_task(p)) {
7671 /*
7672 * Renice negative nice level userspace
7673 * tasks back to 0:
7674 */
7675 if (TASK_NICE(p) < 0 && p->mm)
7676 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007680 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007681 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682
Ingo Molnar178be792007-10-15 17:00:18 +02007683 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007684
Ingo Molnarb29739f2006-06-27 02:54:51 -07007685 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007686 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007687 } while_each_thread(g, p);
7688
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007689 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690}
7691
7692#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007693
7694#ifdef CONFIG_IA64
7695/*
7696 * These functions are only useful for the IA64 MCA handling.
7697 *
7698 * They can only be called when the whole system has been
7699 * stopped - every CPU needs to be quiescent, and no scheduling
7700 * activity can take place. Using them for anything else would
7701 * be a serious bug, and as a result, they aren't even visible
7702 * under any other configuration.
7703 */
7704
7705/**
7706 * curr_task - return the current task for a given cpu.
7707 * @cpu: the processor in question.
7708 *
7709 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7710 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007711struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007712{
7713 return cpu_curr(cpu);
7714}
7715
7716/**
7717 * set_curr_task - set the current task for a given cpu.
7718 * @cpu: the processor in question.
7719 * @p: the task pointer to set.
7720 *
7721 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007722 * are serviced on a separate stack. It allows the architecture to switch the
7723 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007724 * must be called with all CPU's synchronized, and interrupts disabled, the
7725 * and caller must save the original value of the current task (see
7726 * curr_task() above) and restore that value before reenabling interrupts and
7727 * re-starting the system.
7728 *
7729 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7730 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007731void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007732{
7733 cpu_curr(cpu) = p;
7734}
7735
7736#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007737
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007738#ifdef CONFIG_FAIR_GROUP_SCHED
7739static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007740{
7741 int i;
7742
7743 for_each_possible_cpu(i) {
7744 if (tg->cfs_rq)
7745 kfree(tg->cfs_rq[i]);
7746 if (tg->se)
7747 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007748 }
7749
7750 kfree(tg->cfs_rq);
7751 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007752}
7753
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007754static int alloc_fair_sched_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007755{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007756 struct cfs_rq *cfs_rq;
7757 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007758 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007759 int i;
7760
Mike Travis434d53b2008-04-04 18:11:04 -07007761 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007762 if (!tg->cfs_rq)
7763 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07007764 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007765 if (!tg->se)
7766 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007767
7768 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007769
7770 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007771 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007772
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007773 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7774 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007775 if (!cfs_rq)
7776 goto err;
7777
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007778 se = kmalloc_node(sizeof(struct sched_entity),
7779 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007780 if (!se)
7781 goto err;
7782
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007783 init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007784 }
7785
7786 return 1;
7787
7788 err:
7789 return 0;
7790}
7791
7792static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7793{
7794 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7795 &cpu_rq(cpu)->leaf_cfs_rq_list);
7796}
7797
7798static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7799{
7800 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7801}
7802#else
7803static inline void free_fair_sched_group(struct task_group *tg)
7804{
7805}
7806
7807static inline int alloc_fair_sched_group(struct task_group *tg)
7808{
7809 return 1;
7810}
7811
7812static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7813{
7814}
7815
7816static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7817{
7818}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007819#endif
7820
7821#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007822static void free_rt_sched_group(struct task_group *tg)
7823{
7824 int i;
7825
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007826 destroy_rt_bandwidth(&tg->rt_bandwidth);
7827
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007828 for_each_possible_cpu(i) {
7829 if (tg->rt_rq)
7830 kfree(tg->rt_rq[i]);
7831 if (tg->rt_se)
7832 kfree(tg->rt_se[i]);
7833 }
7834
7835 kfree(tg->rt_rq);
7836 kfree(tg->rt_se);
7837}
7838
7839static int alloc_rt_sched_group(struct task_group *tg)
7840{
7841 struct rt_rq *rt_rq;
7842 struct sched_rt_entity *rt_se;
7843 struct rq *rq;
7844 int i;
7845
Mike Travis434d53b2008-04-04 18:11:04 -07007846 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007847 if (!tg->rt_rq)
7848 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07007849 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007850 if (!tg->rt_se)
7851 goto err;
7852
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007853 init_rt_bandwidth(&tg->rt_bandwidth,
7854 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007855
7856 for_each_possible_cpu(i) {
7857 rq = cpu_rq(i);
7858
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007859 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7860 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7861 if (!rt_rq)
7862 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007863
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007864 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7865 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7866 if (!rt_se)
7867 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007868
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007869 init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007870 }
7871
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007872 return 1;
7873
7874 err:
7875 return 0;
7876}
7877
7878static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7879{
7880 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7881 &cpu_rq(cpu)->leaf_rt_rq_list);
7882}
7883
7884static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7885{
7886 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7887}
7888#else
7889static inline void free_rt_sched_group(struct task_group *tg)
7890{
7891}
7892
7893static inline int alloc_rt_sched_group(struct task_group *tg)
7894{
7895 return 1;
7896}
7897
7898static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7899{
7900}
7901
7902static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7903{
7904}
7905#endif
7906
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007907#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007908static void free_sched_group(struct task_group *tg)
7909{
7910 free_fair_sched_group(tg);
7911 free_rt_sched_group(tg);
7912 kfree(tg);
7913}
7914
7915/* allocate runqueue etc for a new task group */
7916struct task_group *sched_create_group(void)
7917{
7918 struct task_group *tg;
7919 unsigned long flags;
7920 int i;
7921
7922 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
7923 if (!tg)
7924 return ERR_PTR(-ENOMEM);
7925
7926 if (!alloc_fair_sched_group(tg))
7927 goto err;
7928
7929 if (!alloc_rt_sched_group(tg))
7930 goto err;
7931
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007932 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007933 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007934 register_fair_sched_group(tg, i);
7935 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007936 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007937 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007938 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007939
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007940 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007941
7942err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007943 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007944 return ERR_PTR(-ENOMEM);
7945}
7946
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007947/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007948static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007949{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007950 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007951 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007952}
7953
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007954/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02007955void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007956{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007957 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007958 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007959
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007960 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007961 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007962 unregister_fair_sched_group(tg, i);
7963 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007964 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007965 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01007966 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007967
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007968 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007969 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007970}
7971
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007972/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02007973 * The caller of this function should have put the task in its new group
7974 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
7975 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007976 */
7977void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007978{
7979 int on_rq, running;
7980 unsigned long flags;
7981 struct rq *rq;
7982
7983 rq = task_rq_lock(tsk, &flags);
7984
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007985 update_rq_clock(rq);
7986
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01007987 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007988 on_rq = tsk->se.on_rq;
7989
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007990 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007991 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07007992 if (unlikely(running))
7993 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007994
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007995 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007996
Peter Zijlstra810b3812008-02-29 15:21:01 -05007997#ifdef CONFIG_FAIR_GROUP_SCHED
7998 if (tsk->sched_class->moved_group)
7999 tsk->sched_class->moved_group(tsk);
8000#endif
8001
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008002 if (unlikely(running))
8003 tsk->sched_class->set_curr_task(rq);
8004 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008005 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008006
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008007 task_rq_unlock(rq, &flags);
8008}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008009#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008010
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008011#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008012static void set_se_shares(struct sched_entity *se, unsigned long shares)
8013{
8014 struct cfs_rq *cfs_rq = se->cfs_rq;
8015 struct rq *rq = cfs_rq->rq;
8016 int on_rq;
8017
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008018 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008019
8020 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008021 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008022 dequeue_entity(cfs_rq, se, 0);
8023
8024 se->load.weight = shares;
8025 se->load.inv_weight = div64_64((1ULL<<32), shares);
8026
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008027 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008028 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008029
8030 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008031}
8032
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008033static DEFINE_MUTEX(shares_mutex);
8034
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008035int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008036{
8037 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008038 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008039
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008040 /*
8041 * A weight of 0 or 1 can cause arithmetics problems.
8042 * (The default weight is 1024 - so there's no practical
8043 * limitation from this.)
8044 */
8045 if (shares < 2)
8046 shares = 2;
8047
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008048 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008049 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008050 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008051
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008052 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008053 for_each_possible_cpu(i)
8054 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008055 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008056
8057 /* wait for any ongoing reference to this group to finish */
8058 synchronize_sched();
8059
8060 /*
8061 * Now we are free to modify the group's share on each cpu
8062 * w/o tripping rebalance_share or load_balance_fair.
8063 */
8064 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008065 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008066 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008067
8068 /*
8069 * Enable load balance activity on this group, by inserting it back on
8070 * each cpu's rq->leaf_cfs_rq_list.
8071 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008072 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008073 for_each_possible_cpu(i)
8074 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008075 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008076done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008077 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008078 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008079}
8080
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008081unsigned long sched_group_shares(struct task_group *tg)
8082{
8083 return tg->shares;
8084}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008085#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008086
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008087#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008088/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008089 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008090 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008091static DEFINE_MUTEX(rt_constraints_mutex);
8092
8093static unsigned long to_ratio(u64 period, u64 runtime)
8094{
8095 if (runtime == RUNTIME_INF)
8096 return 1ULL << 16;
8097
Peter Zijlstra2692a242008-02-27 12:00:46 +01008098 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008099}
8100
8101static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008102{
8103 struct task_group *tgi;
8104 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008105 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008106 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008107
8108 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008109 list_for_each_entry_rcu(tgi, &task_groups, list) {
8110 if (tgi == tg)
8111 continue;
8112
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008113 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8114 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008115 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008116 rcu_read_unlock();
8117
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008118 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008119}
8120
Dhaval Giani521f1a242008-02-28 15:21:56 +05308121/* Must be called with tasklist_lock held */
8122static inline int tg_has_rt_tasks(struct task_group *tg)
8123{
8124 struct task_struct *g, *p;
8125 do_each_thread(g, p) {
8126 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8127 return 1;
8128 } while_each_thread(g, p);
8129 return 0;
8130}
8131
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008132static int tg_set_bandwidth(struct task_group *tg,
8133 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008134{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008135 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008136
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008137 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308138 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008139 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308140 err = -EBUSY;
8141 goto unlock;
8142 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008143 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8144 err = -EINVAL;
8145 goto unlock;
8146 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008147
8148 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008149 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8150 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008151
8152 for_each_possible_cpu(i) {
8153 struct rt_rq *rt_rq = tg->rt_rq[i];
8154
8155 spin_lock(&rt_rq->rt_runtime_lock);
8156 rt_rq->rt_runtime = rt_runtime;
8157 spin_unlock(&rt_rq->rt_runtime_lock);
8158 }
8159 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008160 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308161 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008162 mutex_unlock(&rt_constraints_mutex);
8163
8164 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008165}
8166
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008167int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8168{
8169 u64 rt_runtime, rt_period;
8170
8171 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8172 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8173 if (rt_runtime_us < 0)
8174 rt_runtime = RUNTIME_INF;
8175
8176 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8177}
8178
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008179long sched_group_rt_runtime(struct task_group *tg)
8180{
8181 u64 rt_runtime_us;
8182
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008183 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008184 return -1;
8185
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008186 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008187 do_div(rt_runtime_us, NSEC_PER_USEC);
8188 return rt_runtime_us;
8189}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008190
8191int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8192{
8193 u64 rt_runtime, rt_period;
8194
8195 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8196 rt_runtime = tg->rt_bandwidth.rt_runtime;
8197
8198 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8199}
8200
8201long sched_group_rt_period(struct task_group *tg)
8202{
8203 u64 rt_period_us;
8204
8205 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8206 do_div(rt_period_us, NSEC_PER_USEC);
8207 return rt_period_us;
8208}
8209
8210static int sched_rt_global_constraints(void)
8211{
8212 int ret = 0;
8213
8214 mutex_lock(&rt_constraints_mutex);
8215 if (!__rt_schedulable(NULL, 1, 0))
8216 ret = -EINVAL;
8217 mutex_unlock(&rt_constraints_mutex);
8218
8219 return ret;
8220}
8221#else
8222static int sched_rt_global_constraints(void)
8223{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008224 unsigned long flags;
8225 int i;
8226
8227 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8228 for_each_possible_cpu(i) {
8229 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8230
8231 spin_lock(&rt_rq->rt_runtime_lock);
8232 rt_rq->rt_runtime = global_rt_runtime();
8233 spin_unlock(&rt_rq->rt_runtime_lock);
8234 }
8235 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8236
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008237 return 0;
8238}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008239#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008240
8241int sched_rt_handler(struct ctl_table *table, int write,
8242 struct file *filp, void __user *buffer, size_t *lenp,
8243 loff_t *ppos)
8244{
8245 int ret;
8246 int old_period, old_runtime;
8247 static DEFINE_MUTEX(mutex);
8248
8249 mutex_lock(&mutex);
8250 old_period = sysctl_sched_rt_period;
8251 old_runtime = sysctl_sched_rt_runtime;
8252
8253 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8254
8255 if (!ret && write) {
8256 ret = sched_rt_global_constraints();
8257 if (ret) {
8258 sysctl_sched_rt_period = old_period;
8259 sysctl_sched_rt_runtime = old_runtime;
8260 } else {
8261 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8262 def_rt_bandwidth.rt_period =
8263 ns_to_ktime(global_rt_period());
8264 }
8265 }
8266 mutex_unlock(&mutex);
8267
8268 return ret;
8269}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008270
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008271#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008272
8273/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008274static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008275{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008276 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8277 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008278}
8279
8280static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008281cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008282{
8283 struct task_group *tg;
8284
Paul Menage2b01dfe2007-10-24 18:23:50 +02008285 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008286 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008287 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008288 return &init_task_group.css;
8289 }
8290
8291 /* we support only 1-level deep hierarchical scheduler atm */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008292 if (cgrp->parent->parent)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008293 return ERR_PTR(-EINVAL);
8294
8295 tg = sched_create_group();
8296 if (IS_ERR(tg))
8297 return ERR_PTR(-ENOMEM);
8298
8299 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008300 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008301
8302 return &tg->css;
8303}
8304
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008305static void
8306cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008307{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008308 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008309
8310 sched_destroy_group(tg);
8311}
8312
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008313static int
8314cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8315 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008316{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008317#ifdef CONFIG_RT_GROUP_SCHED
8318 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008319 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008320 return -EINVAL;
8321#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008322 /* We don't support RT-tasks being in separate groups */
8323 if (tsk->sched_class != &fair_sched_class)
8324 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008325#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008326
8327 return 0;
8328}
8329
8330static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008331cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008332 struct cgroup *old_cont, struct task_struct *tsk)
8333{
8334 sched_move_task(tsk);
8335}
8336
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008337#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02008338static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8339 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008340{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008341 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008342}
8343
Paul Menage2b01dfe2007-10-24 18:23:50 +02008344static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008345{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008346 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008347
8348 return (u64) tg->shares;
8349}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008350#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008351
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008352#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008353static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008354 struct file *file,
8355 const char __user *userbuf,
8356 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008357{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008358 char buffer[64];
8359 int retval = 0;
8360 s64 val;
8361 char *end;
8362
8363 if (!nbytes)
8364 return -EINVAL;
8365 if (nbytes >= sizeof(buffer))
8366 return -E2BIG;
8367 if (copy_from_user(buffer, userbuf, nbytes))
8368 return -EFAULT;
8369
8370 buffer[nbytes] = 0; /* nul-terminate */
8371
8372 /* strip newline if necessary */
8373 if (nbytes && (buffer[nbytes-1] == '\n'))
8374 buffer[nbytes-1] = 0;
8375 val = simple_strtoll(buffer, &end, 0);
8376 if (*end)
8377 return -EINVAL;
8378
8379 /* Pass to subsystem */
8380 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
8381 if (!retval)
8382 retval = nbytes;
8383 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008384}
8385
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008386static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
8387 struct file *file,
8388 char __user *buf, size_t nbytes,
8389 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008390{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008391 char tmp[64];
8392 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
8393 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008394
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008395 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008396}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008397
8398static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8399 u64 rt_period_us)
8400{
8401 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
8402}
8403
8404static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
8405{
8406 return sched_group_rt_period(cgroup_tg(cgrp));
8407}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008408#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008409
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008410static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008411#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008412 {
8413 .name = "shares",
8414 .read_uint = cpu_shares_read_uint,
8415 .write_uint = cpu_shares_write_uint,
8416 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008417#endif
8418#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008419 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008420 .name = "rt_runtime_us",
8421 .read = cpu_rt_runtime_read,
8422 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008423 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008424 {
8425 .name = "rt_period_us",
8426 .read_uint = cpu_rt_period_read_uint,
8427 .write_uint = cpu_rt_period_write_uint,
8428 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008429#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008430};
8431
8432static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8433{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008434 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008435}
8436
8437struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01008438 .name = "cpu",
8439 .create = cpu_cgroup_create,
8440 .destroy = cpu_cgroup_destroy,
8441 .can_attach = cpu_cgroup_can_attach,
8442 .attach = cpu_cgroup_attach,
8443 .populate = cpu_cgroup_populate,
8444 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008445 .early_init = 1,
8446};
8447
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008448#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008449
8450#ifdef CONFIG_CGROUP_CPUACCT
8451
8452/*
8453 * CPU accounting code for task groups.
8454 *
8455 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
8456 * (balbir@in.ibm.com).
8457 */
8458
8459/* track cpu usage of a group of tasks */
8460struct cpuacct {
8461 struct cgroup_subsys_state css;
8462 /* cpuusage holds pointer to a u64-type object on every cpu */
8463 u64 *cpuusage;
8464};
8465
8466struct cgroup_subsys cpuacct_subsys;
8467
8468/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308469static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008470{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308471 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008472 struct cpuacct, css);
8473}
8474
8475/* return cpu accounting group to which this task belongs */
8476static inline struct cpuacct *task_ca(struct task_struct *tsk)
8477{
8478 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8479 struct cpuacct, css);
8480}
8481
8482/* create a new cpu accounting group */
8483static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05308484 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008485{
8486 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8487
8488 if (!ca)
8489 return ERR_PTR(-ENOMEM);
8490
8491 ca->cpuusage = alloc_percpu(u64);
8492 if (!ca->cpuusage) {
8493 kfree(ca);
8494 return ERR_PTR(-ENOMEM);
8495 }
8496
8497 return &ca->css;
8498}
8499
8500/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008501static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05308502cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008503{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308504 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008505
8506 free_percpu(ca->cpuusage);
8507 kfree(ca);
8508}
8509
8510/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308511static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008512{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308513 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008514 u64 totalcpuusage = 0;
8515 int i;
8516
8517 for_each_possible_cpu(i) {
8518 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8519
8520 /*
8521 * Take rq->lock to make 64-bit addition safe on 32-bit
8522 * platforms.
8523 */
8524 spin_lock_irq(&cpu_rq(i)->lock);
8525 totalcpuusage += *cpuusage;
8526 spin_unlock_irq(&cpu_rq(i)->lock);
8527 }
8528
8529 return totalcpuusage;
8530}
8531
Dhaval Giani0297b802008-02-29 10:02:44 +05308532static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
8533 u64 reset)
8534{
8535 struct cpuacct *ca = cgroup_ca(cgrp);
8536 int err = 0;
8537 int i;
8538
8539 if (reset) {
8540 err = -EINVAL;
8541 goto out;
8542 }
8543
8544 for_each_possible_cpu(i) {
8545 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8546
8547 spin_lock_irq(&cpu_rq(i)->lock);
8548 *cpuusage = 0;
8549 spin_unlock_irq(&cpu_rq(i)->lock);
8550 }
8551out:
8552 return err;
8553}
8554
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008555static struct cftype files[] = {
8556 {
8557 .name = "usage",
8558 .read_uint = cpuusage_read,
Dhaval Giani0297b802008-02-29 10:02:44 +05308559 .write_uint = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008560 },
8561};
8562
Dhaval Giani32cd7562008-02-29 10:02:43 +05308563static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008564{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308565 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008566}
8567
8568/*
8569 * charge this task's execution time to its accounting group.
8570 *
8571 * called with rq->lock held.
8572 */
8573static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8574{
8575 struct cpuacct *ca;
8576
8577 if (!cpuacct_subsys.active)
8578 return;
8579
8580 ca = task_ca(tsk);
8581 if (ca) {
8582 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8583
8584 *cpuusage += cputime;
8585 }
8586}
8587
8588struct cgroup_subsys cpuacct_subsys = {
8589 .name = "cpuacct",
8590 .create = cpuacct_create,
8591 .destroy = cpuacct_destroy,
8592 .populate = cpuacct_populate,
8593 .subsys_id = cpuacct_subsys_id,
8594};
8595#endif /* CONFIG_CGROUP_CPUACCT */