blob: e03b45ccf789772c946562582cc4876dd7dc1da1 [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
Dhaval Giani354d60c2008-04-19 19:44:59 +0200276#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200277
278/*
279 * Root task group.
280 * Every UID task group (including init_task_group aka UID-0) will
281 * be a child to this group.
282 */
283struct task_group root_task_group;
284
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100285#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200286/* Default task group's sched entity on each cpu */
287static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
288/* Default task group's cfs_rq on each cpu */
289static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100290#endif
291
292#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100293static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
294static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100295#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200296#else
297#define root_task_group init_task_group
Dhaval Giani354d60c2008-04-19 19:44:59 +0200298#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100299
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100300/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100301 * a task group's cpu shares.
302 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100303static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100304
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100305/* doms_cur_mutex serializes access to doms_cur[] array */
306static DEFINE_MUTEX(doms_cur_mutex);
307
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100308#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100309#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100310# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200311#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100312# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200313#endif
314
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100315static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100316#endif
317
318/* Default task group.
319 * Every task in system belong to this group at bootup.
320 */
Mike Travis434d53b2008-04-04 18:11:04 -0700321struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200322
323/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200324static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200325{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200326 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200327
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100328#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200329 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100330#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700331 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
332 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200333#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100334 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200335#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200336 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200337}
338
339/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100340static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200341{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100342#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100343 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
344 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100345#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100346
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100347#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100348 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
349 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100350#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200351}
352
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100353static inline void lock_doms_cur(void)
354{
355 mutex_lock(&doms_cur_mutex);
356}
357
358static inline void unlock_doms_cur(void)
359{
360 mutex_unlock(&doms_cur_mutex);
361}
362
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200363#else
364
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100365static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100366static inline void lock_doms_cur(void) { }
367static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200368
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100369#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200370
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200371/* CFS-related fields in a runqueue */
372struct cfs_rq {
373 struct load_weight load;
374 unsigned long nr_running;
375
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200376 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200377 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200378
379 struct rb_root tasks_timeline;
380 struct rb_node *rb_leftmost;
381 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200382 /* 'curr' points to currently running entity on this cfs_rq.
383 * It is set to NULL otherwise (i.e when none are currently running).
384 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100385 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200386
387 unsigned long nr_spread_over;
388
Ingo Molnar62160e3f2007-10-15 17:00:03 +0200389#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200390 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
391
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100392 /*
393 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200394 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
395 * (like users, containers etc.)
396 *
397 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
398 * list is used during load balance.
399 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100400 struct list_head leaf_cfs_rq_list;
401 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200402#endif
403};
404
405/* Real-Time classes' related field in a runqueue: */
406struct rt_rq {
407 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100408 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100409#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100410 int highest_prio; /* highest queued rt task prio */
411#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100412#ifdef CONFIG_SMP
Gregory Haskins73fe6aae2008-01-25 21:08:07 +0100413 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc12008-01-25 21:08:12 +0100414 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100415#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100416 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100417 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200418 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100419 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200420 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100421
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100422#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100423 unsigned long rt_nr_boosted;
424
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100425 struct rq *rq;
426 struct list_head leaf_rt_rq_list;
427 struct task_group *tg;
428 struct sched_rt_entity *rt_se;
429#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200430};
431
Gregory Haskins57d885f2008-01-25 21:08:18 +0100432#ifdef CONFIG_SMP
433
434/*
435 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100436 * variables. Each exclusive cpuset essentially defines an island domain by
437 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100438 * exclusive cpuset is created, we also create and attach a new root-domain
439 * object.
440 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100441 */
442struct root_domain {
443 atomic_t refcount;
444 cpumask_t span;
445 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100446
Ingo Molnar0eab9142008-01-25 21:08:19 +0100447 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100448 * The "RT overload" flag: it gets set if a CPU has more than
449 * one runnable RT task.
450 */
451 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100452 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100453};
454
Gregory Haskinsdc938522008-01-25 21:08:26 +0100455/*
456 * By default the system creates a single root-domain with all cpus as
457 * members (mimicking the global state we have today).
458 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100459static struct root_domain def_root_domain;
460
461#endif
462
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200463/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * This is the main, per-CPU runqueue data structure.
465 *
466 * Locking rule: those places that want to lock multiple runqueues
467 * (such as the load balancing or the thread migration code), lock
468 * acquire operations must be ordered by ascending &runqueue.
469 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700470struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200471 /* runqueue lock: */
472 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 /*
475 * nr_running and cpu_load should be in the same cacheline because
476 * remote CPUs use both these fields when doing load calculation.
477 */
478 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200479 #define CPU_LOAD_IDX_MAX 5
480 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700481 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700482#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200483 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700484 unsigned char in_nohz_recently;
485#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200486 /* capture load from *all* tasks on this cpu: */
487 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200488 unsigned long nr_load_updates;
489 u64 nr_switches;
490
491 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100492 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100493
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200494#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200495 /* list of leaf cfs_rq on this cpu: */
496 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100497#endif
498#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100499 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 /*
503 * This is part of a global counter where only the total sum
504 * over all CPUs matters. A task can increase this counter on
505 * one CPU and if it got migrated afterwards it may decrease
506 * it on another CPU. Always updated under the runqueue lock:
507 */
508 unsigned long nr_uninterruptible;
509
Ingo Molnar36c8b582006-07-03 00:25:41 -0700510 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800511 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200513
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200514 u64 clock, prev_clock_raw;
515 s64 clock_max_delta;
516
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100517 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200518 u64 idle_clock;
519 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200520 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 atomic_t nr_iowait;
523
524#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100525 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 struct sched_domain *sd;
527
528 /* For active balancing */
529 int active_balance;
530 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200531 /* cpu of this runqueue: */
532 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Ingo Molnar36c8b582006-07-03 00:25:41 -0700534 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct list_head migration_queue;
536#endif
537
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100538#ifdef CONFIG_SCHED_HRTICK
539 unsigned long hrtick_flags;
540 ktime_t hrtick_expire;
541 struct hrtimer hrtick_timer;
542#endif
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544#ifdef CONFIG_SCHEDSTATS
545 /* latency stats */
546 struct sched_info rq_sched_info;
547
548 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200549 unsigned int yld_exp_empty;
550 unsigned int yld_act_empty;
551 unsigned int yld_both_empty;
552 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200555 unsigned int sched_switch;
556 unsigned int sched_count;
557 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200560 unsigned int ttwu_count;
561 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200562
563 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200564 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700566 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567};
568
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700569static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Ingo Molnardd41f592007-07-09 18:51:59 +0200571static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
572{
573 rq->curr->sched_class->check_preempt_curr(rq, p);
574}
575
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700576static inline int cpu_of(struct rq *rq)
577{
578#ifdef CONFIG_SMP
579 return rq->cpu;
580#else
581 return 0;
582#endif
583}
584
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200585#ifdef CONFIG_NO_HZ
586static inline bool nohz_on(int cpu)
587{
588 return tick_get_tick_sched(cpu)->nohz_mode != NOHZ_MODE_INACTIVE;
589}
590
591static inline u64 max_skipped_ticks(struct rq *rq)
592{
593 return nohz_on(cpu_of(rq)) ? jiffies - rq->last_tick_seen + 2 : 1;
594}
595
596static inline void update_last_tick_seen(struct rq *rq)
597{
598 rq->last_tick_seen = jiffies;
599}
600#else
601static inline u64 max_skipped_ticks(struct rq *rq)
602{
603 return 1;
604}
605
606static inline void update_last_tick_seen(struct rq *rq)
607{
608}
609#endif
610
Nick Piggin674311d2005-06-25 14:57:27 -0700611/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200612 * Update the per-runqueue clock, as finegrained as the platform can give
613 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200614 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200615static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200616{
617 u64 prev_raw = rq->prev_clock_raw;
618 u64 now = sched_clock();
619 s64 delta = now - prev_raw;
620 u64 clock = rq->clock;
621
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200622#ifdef CONFIG_SCHED_DEBUG
623 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
624#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200625 /*
626 * Protect against sched_clock() occasionally going backwards:
627 */
628 if (unlikely(delta < 0)) {
629 clock++;
630 rq->clock_warps++;
631 } else {
632 /*
633 * Catch too large forward jumps too:
634 */
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200635 u64 max_jump = max_skipped_ticks(rq) * TICK_NSEC;
636 u64 max_time = rq->tick_timestamp + max_jump;
637
638 if (unlikely(clock + delta > max_time)) {
639 if (clock < max_time)
640 clock = max_time;
Ingo Molnar529c7722007-08-10 23:05:11 +0200641 else
642 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200643 rq->clock_overflows++;
644 } else {
645 if (unlikely(delta > rq->clock_max_delta))
646 rq->clock_max_delta = delta;
647 clock += delta;
648 }
649 }
650
651 rq->prev_clock_raw = now;
652 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200653}
654
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200655static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200656{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200657 if (likely(smp_processor_id() == cpu_of(rq)))
658 __update_rq_clock(rq);
659}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200660
Ingo Molnar20d315d2007-07-09 18:51:58 +0200661/*
Nick Piggin674311d2005-06-25 14:57:27 -0700662 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700663 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700664 *
665 * The domain tree of any CPU may only be accessed from within
666 * preempt-disabled sections.
667 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700668#define for_each_domain(cpu, __sd) \
669 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
672#define this_rq() (&__get_cpu_var(runqueues))
673#define task_rq(p) cpu_rq(task_cpu(p))
674#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
675
Ingo Molnare436d802007-07-19 21:28:35 +0200676/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200677 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
678 */
679#ifdef CONFIG_SCHED_DEBUG
680# define const_debug __read_mostly
681#else
682# define const_debug static const
683#endif
684
685/*
686 * Debugging: various feature bits
687 */
688enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200689 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
Ingo Molnar96126332007-11-15 20:57:40 +0100690 SCHED_FEAT_WAKEUP_PREEMPT = 2,
691 SCHED_FEAT_START_DEBIT = 4,
Ingo Molnard25ce4c2008-03-17 09:36:53 +0100692 SCHED_FEAT_AFFINE_WAKEUPS = 8,
693 SCHED_FEAT_CACHE_HOT_BUDDY = 16,
Ingo Molnar02e2b832008-03-19 01:37:10 +0100694 SCHED_FEAT_SYNC_WAKEUPS = 32,
695 SCHED_FEAT_HRTICK = 64,
696 SCHED_FEAT_DOUBLE_TICK = 128,
Peter Zijlstra112f53f2008-03-19 11:43:36 +0100697 SCHED_FEAT_NORMALIZED_SLEEPER = 256,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200698};
699
700const_debug unsigned int sysctl_sched_features =
Ingo Molnar8401f772007-10-18 21:32:55 +0200701 SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 |
Ingo Molnar96126332007-11-15 20:57:40 +0100702 SCHED_FEAT_WAKEUP_PREEMPT * 1 |
Ingo Molnar8401f772007-10-18 21:32:55 +0200703 SCHED_FEAT_START_DEBIT * 1 |
Ingo Molnard25ce4c2008-03-17 09:36:53 +0100704 SCHED_FEAT_AFFINE_WAKEUPS * 1 |
705 SCHED_FEAT_CACHE_HOT_BUDDY * 1 |
Ingo Molnar02e2b832008-03-19 01:37:10 +0100706 SCHED_FEAT_SYNC_WAKEUPS * 1 |
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100707 SCHED_FEAT_HRTICK * 1 |
Peter Zijlstra112f53f2008-03-19 11:43:36 +0100708 SCHED_FEAT_DOUBLE_TICK * 0 |
709 SCHED_FEAT_NORMALIZED_SLEEPER * 1;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200710
711#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
712
713/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100714 * Number of tasks to iterate in a single balance run.
715 * Limited because this is done with IRQs disabled.
716 */
717const_debug unsigned int sysctl_sched_nr_migrate = 32;
718
719/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100720 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100721 * default: 1s
722 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100723unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100724
Ingo Molnar6892b752008-02-13 14:02:36 +0100725static __read_mostly int scheduler_running;
726
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100727/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100728 * part of the period that we allow rt tasks to run in us.
729 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100730 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100731int sysctl_sched_rt_runtime = 950000;
732
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200733static inline u64 global_rt_period(void)
734{
735 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
736}
737
738static inline u64 global_rt_runtime(void)
739{
740 if (sysctl_sched_rt_period < 0)
741 return RUNTIME_INF;
742
743 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
744}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100745
Ingo Molnar27ec4402008-02-28 21:00:21 +0100746static const unsigned long long time_sync_thresh = 100000;
747
748static DEFINE_PER_CPU(unsigned long long, time_offset);
749static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
750
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100751/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100752 * Global lock which we take every now and then to synchronize
753 * the CPUs time. This method is not warp-safe, but it's good
754 * enough to synchronize slowly diverging time sources and thus
755 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200756 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100757static DEFINE_SPINLOCK(time_sync_lock);
758static unsigned long long prev_global_time;
759
760static unsigned long long __sync_cpu_clock(cycles_t time, int cpu)
761{
762 unsigned long flags;
763
764 spin_lock_irqsave(&time_sync_lock, flags);
765
766 if (time < prev_global_time) {
767 per_cpu(time_offset, cpu) += prev_global_time - time;
768 time = prev_global_time;
769 } else {
770 prev_global_time = time;
771 }
772
773 spin_unlock_irqrestore(&time_sync_lock, flags);
774
775 return time;
776}
777
778static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200779{
Ingo Molnare436d802007-07-19 21:28:35 +0200780 unsigned long long now;
781 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200782 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200783
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100784 /*
785 * Only call sched_clock() if the scheduler has already been
786 * initialized (some code might call cpu_clock() very early):
787 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100788 if (unlikely(!scheduler_running))
789 return 0;
790
791 local_irq_save(flags);
792 rq = cpu_rq(cpu);
793 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200794 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200795 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200796
797 return now;
798}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100799
800/*
801 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
802 * clock constructed from sched_clock():
803 */
804unsigned long long cpu_clock(int cpu)
805{
806 unsigned long long prev_cpu_time, time, delta_time;
807
808 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
809 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
810 delta_time = time-prev_cpu_time;
811
812 if (unlikely(delta_time > time_sync_thresh))
813 time = __sync_cpu_clock(time, cpu);
814
815 return time;
816}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200817EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700820# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700822#ifndef finish_arch_switch
823# define finish_arch_switch(prev) do { } while (0)
824#endif
825
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100826static inline int task_current(struct rq *rq, struct task_struct *p)
827{
828 return rq->curr == p;
829}
830
Nick Piggin4866cde2005-06-25 14:57:23 -0700831#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700832static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700833{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100834 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700835}
836
Ingo Molnar70b97a72006-07-03 00:25:42 -0700837static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700838{
839}
840
Ingo Molnar70b97a72006-07-03 00:25:42 -0700841static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700842{
Ingo Molnarda04c032005-09-13 11:17:59 +0200843#ifdef CONFIG_DEBUG_SPINLOCK
844 /* this is a valid case when another task releases the spinlock */
845 rq->lock.owner = current;
846#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700847 /*
848 * If we are tracking spinlock dependencies then we have to
849 * fix up the runqueue lock - which gets 'carried over' from
850 * prev into current:
851 */
852 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
853
Nick Piggin4866cde2005-06-25 14:57:23 -0700854 spin_unlock_irq(&rq->lock);
855}
856
857#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700858static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700859{
860#ifdef CONFIG_SMP
861 return p->oncpu;
862#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100863 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700864#endif
865}
866
Ingo Molnar70b97a72006-07-03 00:25:42 -0700867static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700868{
869#ifdef CONFIG_SMP
870 /*
871 * We can optimise this out completely for !SMP, because the
872 * SMP rebalancing from interrupt is the only thing that cares
873 * here.
874 */
875 next->oncpu = 1;
876#endif
877#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
878 spin_unlock_irq(&rq->lock);
879#else
880 spin_unlock(&rq->lock);
881#endif
882}
883
Ingo Molnar70b97a72006-07-03 00:25:42 -0700884static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700885{
886#ifdef CONFIG_SMP
887 /*
888 * After ->oncpu is cleared, the task can be moved to a different CPU.
889 * We must ensure this doesn't happen until the switch is completely
890 * finished.
891 */
892 smp_wmb();
893 prev->oncpu = 0;
894#endif
895#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
896 local_irq_enable();
897#endif
898}
899#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700902 * __task_rq_lock - lock the runqueue a given task resides on.
903 * Must be called interrupts disabled.
904 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700905static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700906 __acquires(rq->lock)
907{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200908 for (;;) {
909 struct rq *rq = task_rq(p);
910 spin_lock(&rq->lock);
911 if (likely(rq == task_rq(p)))
912 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700913 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700914 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700915}
916
917/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100919 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 * explicitly disabling preemption.
921 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700922static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 __acquires(rq->lock)
924{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700925 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Andi Kleen3a5c3592007-10-15 17:00:14 +0200927 for (;;) {
928 local_irq_save(*flags);
929 rq = task_rq(p);
930 spin_lock(&rq->lock);
931 if (likely(rq == task_rq(p)))
932 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Alexey Dobriyana9957442007-10-15 17:00:13 +0200937static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700938 __releases(rq->lock)
939{
940 spin_unlock(&rq->lock);
941}
942
Ingo Molnar70b97a72006-07-03 00:25:42 -0700943static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 __releases(rq->lock)
945{
946 spin_unlock_irqrestore(&rq->lock, *flags);
947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800950 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200952static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 __acquires(rq->lock)
954{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700955 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 local_irq_disable();
958 rq = this_rq();
959 spin_lock(&rq->lock);
960
961 return rq;
962}
963
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200964/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200965 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200966 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200967void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200968{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200969 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200970
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200971 spin_lock(&rq->lock);
972 __update_rq_clock(rq);
973 spin_unlock(&rq->lock);
974 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200975}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200976EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
977
978/*
979 * We just idled delta nanoseconds (called with irqs disabled):
980 */
981void sched_clock_idle_wakeup_event(u64 delta_ns)
982{
983 struct rq *rq = cpu_rq(smp_processor_id());
984 u64 now = sched_clock();
985
986 rq->idle_clock += delta_ns;
987 /*
988 * Override the previous timestamp and ignore all
989 * sched_clock() deltas that occured while we idled,
990 * and use the PM-provided delta_ns to advance the
991 * rq clock:
992 */
993 spin_lock(&rq->lock);
994 rq->prev_clock_raw = now;
995 rq->clock += delta_ns;
996 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +0100997 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200998}
999EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001000
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001001static void __resched_task(struct task_struct *p, int tif_bit);
1002
1003static inline void resched_task(struct task_struct *p)
1004{
1005 __resched_task(p, TIF_NEED_RESCHED);
1006}
1007
1008#ifdef CONFIG_SCHED_HRTICK
1009/*
1010 * Use HR-timers to deliver accurate preemption points.
1011 *
1012 * Its all a bit involved since we cannot program an hrt while holding the
1013 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1014 * reschedule event.
1015 *
1016 * When we get rescheduled we reprogram the hrtick_timer outside of the
1017 * rq->lock.
1018 */
1019static inline void resched_hrt(struct task_struct *p)
1020{
1021 __resched_task(p, TIF_HRTICK_RESCHED);
1022}
1023
1024static inline void resched_rq(struct rq *rq)
1025{
1026 unsigned long flags;
1027
1028 spin_lock_irqsave(&rq->lock, flags);
1029 resched_task(rq->curr);
1030 spin_unlock_irqrestore(&rq->lock, flags);
1031}
1032
1033enum {
1034 HRTICK_SET, /* re-programm hrtick_timer */
1035 HRTICK_RESET, /* not a new slice */
1036};
1037
1038/*
1039 * Use hrtick when:
1040 * - enabled by features
1041 * - hrtimer is actually high res
1042 */
1043static inline int hrtick_enabled(struct rq *rq)
1044{
1045 if (!sched_feat(HRTICK))
1046 return 0;
1047 return hrtimer_is_hres_active(&rq->hrtick_timer);
1048}
1049
1050/*
1051 * Called to set the hrtick timer state.
1052 *
1053 * called with rq->lock held and irqs disabled
1054 */
1055static void hrtick_start(struct rq *rq, u64 delay, int reset)
1056{
1057 assert_spin_locked(&rq->lock);
1058
1059 /*
1060 * preempt at: now + delay
1061 */
1062 rq->hrtick_expire =
1063 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1064 /*
1065 * indicate we need to program the timer
1066 */
1067 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1068 if (reset)
1069 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1070
1071 /*
1072 * New slices are called from the schedule path and don't need a
1073 * forced reschedule.
1074 */
1075 if (reset)
1076 resched_hrt(rq->curr);
1077}
1078
1079static void hrtick_clear(struct rq *rq)
1080{
1081 if (hrtimer_active(&rq->hrtick_timer))
1082 hrtimer_cancel(&rq->hrtick_timer);
1083}
1084
1085/*
1086 * Update the timer from the possible pending state.
1087 */
1088static void hrtick_set(struct rq *rq)
1089{
1090 ktime_t time;
1091 int set, reset;
1092 unsigned long flags;
1093
1094 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1095
1096 spin_lock_irqsave(&rq->lock, flags);
1097 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1098 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1099 time = rq->hrtick_expire;
1100 clear_thread_flag(TIF_HRTICK_RESCHED);
1101 spin_unlock_irqrestore(&rq->lock, flags);
1102
1103 if (set) {
1104 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1105 if (reset && !hrtimer_active(&rq->hrtick_timer))
1106 resched_rq(rq);
1107 } else
1108 hrtick_clear(rq);
1109}
1110
1111/*
1112 * High-resolution timer tick.
1113 * Runs from hardirq context with interrupts disabled.
1114 */
1115static enum hrtimer_restart hrtick(struct hrtimer *timer)
1116{
1117 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1118
1119 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1120
1121 spin_lock(&rq->lock);
1122 __update_rq_clock(rq);
1123 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1124 spin_unlock(&rq->lock);
1125
1126 return HRTIMER_NORESTART;
1127}
1128
1129static inline void init_rq_hrtick(struct rq *rq)
1130{
1131 rq->hrtick_flags = 0;
1132 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1133 rq->hrtick_timer.function = hrtick;
1134 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1135}
1136
1137void hrtick_resched(void)
1138{
1139 struct rq *rq;
1140 unsigned long flags;
1141
1142 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1143 return;
1144
1145 local_irq_save(flags);
1146 rq = cpu_rq(smp_processor_id());
1147 hrtick_set(rq);
1148 local_irq_restore(flags);
1149}
1150#else
1151static inline void hrtick_clear(struct rq *rq)
1152{
1153}
1154
1155static inline void hrtick_set(struct rq *rq)
1156{
1157}
1158
1159static inline void init_rq_hrtick(struct rq *rq)
1160{
1161}
1162
1163void hrtick_resched(void)
1164{
1165}
1166#endif
1167
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001168/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001169 * resched_task - mark a task 'to be rescheduled now'.
1170 *
1171 * On UP this means the setting of the need_resched flag, on SMP it
1172 * might also involve a cross-CPU call to trigger the scheduler on
1173 * the target CPU.
1174 */
1175#ifdef CONFIG_SMP
1176
1177#ifndef tsk_is_polling
1178#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1179#endif
1180
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001181static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001182{
1183 int cpu;
1184
1185 assert_spin_locked(&task_rq(p)->lock);
1186
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001187 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001188 return;
1189
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001190 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001191
1192 cpu = task_cpu(p);
1193 if (cpu == smp_processor_id())
1194 return;
1195
1196 /* NEED_RESCHED must be visible before we test polling */
1197 smp_mb();
1198 if (!tsk_is_polling(p))
1199 smp_send_reschedule(cpu);
1200}
1201
1202static void resched_cpu(int cpu)
1203{
1204 struct rq *rq = cpu_rq(cpu);
1205 unsigned long flags;
1206
1207 if (!spin_trylock_irqsave(&rq->lock, flags))
1208 return;
1209 resched_task(cpu_curr(cpu));
1210 spin_unlock_irqrestore(&rq->lock, flags);
1211}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001212
1213#ifdef CONFIG_NO_HZ
1214/*
1215 * When add_timer_on() enqueues a timer into the timer wheel of an
1216 * idle CPU then this timer might expire before the next timer event
1217 * which is scheduled to wake up that CPU. In case of a completely
1218 * idle system the next event might even be infinite time into the
1219 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1220 * leaves the inner idle loop so the newly added timer is taken into
1221 * account when the CPU goes back to idle and evaluates the timer
1222 * wheel for the next timer event.
1223 */
1224void wake_up_idle_cpu(int cpu)
1225{
1226 struct rq *rq = cpu_rq(cpu);
1227
1228 if (cpu == smp_processor_id())
1229 return;
1230
1231 /*
1232 * This is safe, as this function is called with the timer
1233 * wheel base lock of (cpu) held. When the CPU is on the way
1234 * to idle and has not yet set rq->curr to idle then it will
1235 * be serialized on the timer wheel base lock and take the new
1236 * timer into account automatically.
1237 */
1238 if (rq->curr != rq->idle)
1239 return;
1240
1241 /*
1242 * We can set TIF_RESCHED on the idle task of the other CPU
1243 * lockless. The worst case is that the other CPU runs the
1244 * idle task through an additional NOOP schedule()
1245 */
1246 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1247
1248 /* NEED_RESCHED must be visible before we test polling */
1249 smp_mb();
1250 if (!tsk_is_polling(rq->idle))
1251 smp_send_reschedule(cpu);
1252}
1253#endif
1254
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001255#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001256static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001257{
1258 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001259 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001260}
1261#endif
1262
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001263#if BITS_PER_LONG == 32
1264# define WMULT_CONST (~0UL)
1265#else
1266# define WMULT_CONST (1UL << 32)
1267#endif
1268
1269#define WMULT_SHIFT 32
1270
Ingo Molnar194081e2007-08-09 11:16:51 +02001271/*
1272 * Shift right and round:
1273 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001274#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001275
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001276static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001277calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1278 struct load_weight *lw)
1279{
1280 u64 tmp;
1281
1282 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001283 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001284
1285 tmp = (u64)delta_exec * weight;
1286 /*
1287 * Check whether we'd overflow the 64-bit multiplication:
1288 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001289 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001290 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001291 WMULT_SHIFT/2);
1292 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001293 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001294
Ingo Molnarecf691d2007-08-02 17:41:40 +02001295 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001296}
1297
1298static inline unsigned long
1299calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1300{
1301 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1302}
1303
Ingo Molnar10919852007-10-15 17:00:04 +02001304static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001305{
1306 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001307 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001308}
1309
Ingo Molnar10919852007-10-15 17:00:04 +02001310static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001311{
1312 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001313 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001317 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1318 * of tasks with abnormal "nice" values across CPUs the contribution that
1319 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001320 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001321 * scaled version of the new time slice allocation that they receive on time
1322 * slice expiry etc.
1323 */
1324
Ingo Molnardd41f592007-07-09 18:51:59 +02001325#define WEIGHT_IDLEPRIO 2
1326#define WMULT_IDLEPRIO (1 << 31)
1327
1328/*
1329 * Nice levels are multiplicative, with a gentle 10% change for every
1330 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1331 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1332 * that remained on nice 0.
1333 *
1334 * The "10% effect" is relative and cumulative: from _any_ nice level,
1335 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee62007-07-16 09:46:30 +02001336 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1337 * If a task goes up by ~10% and another task goes down by ~10% then
1338 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001339 */
1340static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001341 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1342 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1343 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1344 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1345 /* 0 */ 1024, 820, 655, 526, 423,
1346 /* 5 */ 335, 272, 215, 172, 137,
1347 /* 10 */ 110, 87, 70, 56, 45,
1348 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001349};
1350
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001351/*
1352 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1353 *
1354 * In cases where the weight does not change often, we can use the
1355 * precalculated inverse to speed up arithmetics by turning divisions
1356 * into multiplications:
1357 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001358static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001359 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1360 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1361 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1362 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1363 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1364 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1365 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1366 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001367};
Peter Williams2dd73a42006-06-27 02:54:34 -07001368
Ingo Molnardd41f592007-07-09 18:51:59 +02001369static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1370
1371/*
1372 * runqueue iterator, to support SMP load-balancing between different
1373 * scheduling classes, without having to expose their internal data
1374 * structures to the load-balancing proper:
1375 */
1376struct rq_iterator {
1377 void *arg;
1378 struct task_struct *(*start)(void *);
1379 struct task_struct *(*next)(void *);
1380};
1381
Peter Williamse1d14842007-10-24 18:23:51 +02001382#ifdef CONFIG_SMP
1383static unsigned long
1384balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1385 unsigned long max_load_move, struct sched_domain *sd,
1386 enum cpu_idle_type idle, int *all_pinned,
1387 int *this_best_prio, struct rq_iterator *iterator);
1388
1389static int
1390iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1391 struct sched_domain *sd, enum cpu_idle_type idle,
1392 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001393#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001394
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001395#ifdef CONFIG_CGROUP_CPUACCT
1396static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1397#else
1398static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1399#endif
1400
Gregory Haskinse7693a32008-01-25 21:08:09 +01001401#ifdef CONFIG_SMP
1402static unsigned long source_load(int cpu, int type);
1403static unsigned long target_load(int cpu, int type);
1404static unsigned long cpu_avg_load_per_task(int cpu);
1405static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
1406#endif /* CONFIG_SMP */
1407
Ingo Molnardd41f592007-07-09 18:51:59 +02001408#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001409#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001410#include "sched_fair.c"
1411#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001412#ifdef CONFIG_SCHED_DEBUG
1413# include "sched_debug.c"
1414#endif
1415
1416#define sched_class_highest (&rt_sched_class)
1417
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001418static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +02001419{
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001420 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +02001421}
1422
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001423static inline void dec_load(struct rq *rq, const struct task_struct *p)
1424{
1425 update_load_sub(&rq->load, p->se.load.weight);
1426}
1427
1428static void inc_nr_running(struct task_struct *p, struct rq *rq)
1429{
1430 rq->nr_running++;
1431 inc_load(rq, p);
1432}
1433
1434static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001435{
1436 rq->nr_running--;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001437 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +02001438}
1439
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001440static void set_load_weight(struct task_struct *p)
1441{
1442 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001443 p->se.load.weight = prio_to_weight[0] * 2;
1444 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1445 return;
1446 }
1447
1448 /*
1449 * SCHED_IDLE tasks get minimal weight:
1450 */
1451 if (p->policy == SCHED_IDLE) {
1452 p->se.load.weight = WEIGHT_IDLEPRIO;
1453 p->se.load.inv_weight = WMULT_IDLEPRIO;
1454 return;
1455 }
1456
1457 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1458 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001459}
1460
Ingo Molnar8159f872007-08-09 11:16:49 +02001461static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001462{
1463 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001464 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001465 p->se.on_rq = 1;
1466}
1467
Ingo Molnar69be72c2007-08-09 11:16:49 +02001468static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001469{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001470 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001471 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001472}
1473
1474/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001475 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001476 */
Ingo Molnar14531182007-07-09 18:51:59 +02001477static inline int __normal_prio(struct task_struct *p)
1478{
Ingo Molnardd41f592007-07-09 18:51:59 +02001479 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001480}
1481
1482/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001483 * Calculate the expected normal priority: i.e. priority
1484 * without taking RT-inheritance into account. Might be
1485 * boosted by interactivity modifiers. Changes upon fork,
1486 * setprio syscalls, and whenever the interactivity
1487 * estimator recalculates.
1488 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001489static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001490{
1491 int prio;
1492
Ingo Molnare05606d2007-07-09 18:51:59 +02001493 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001494 prio = MAX_RT_PRIO-1 - p->rt_priority;
1495 else
1496 prio = __normal_prio(p);
1497 return prio;
1498}
1499
1500/*
1501 * Calculate the current priority, i.e. the priority
1502 * taken into account by the scheduler. This value might
1503 * be boosted by RT tasks, or might be boosted by
1504 * interactivity modifiers. Will be RT if the task got
1505 * RT-boosted. If not then it returns p->normal_prio.
1506 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001507static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001508{
1509 p->normal_prio = normal_prio(p);
1510 /*
1511 * If we are RT tasks or we were boosted to RT priority,
1512 * keep the priority unchanged. Otherwise, update priority
1513 * to the normal priority:
1514 */
1515 if (!rt_prio(p->prio))
1516 return p->normal_prio;
1517 return p->prio;
1518}
1519
1520/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001521 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001523static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
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 Molnar8159f872007-08-09 11:16:49 +02001528 enqueue_task(rq, p, wakeup);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001529 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
1532/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 * deactivate_task - remove a task from the runqueue.
1534 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001535static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001537 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001538 rq->nr_uninterruptible++;
1539
Ingo Molnar69be72c2007-08-09 11:16:49 +02001540 dequeue_task(rq, p, sleep);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001541 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544/**
1545 * task_curr - is this task currently executing on a CPU?
1546 * @p: the task in question.
1547 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001548inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 return cpu_curr(task_cpu(p)) == p;
1551}
1552
Peter Williams2dd73a42006-06-27 02:54:34 -07001553/* Used instead of source_load when we know the type == 0 */
1554unsigned long weighted_cpuload(const int cpu)
1555{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001556 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001557}
1558
1559static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1560{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001561 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001562#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001563 /*
1564 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1565 * successfuly executed on another CPU. We must ensure that updates of
1566 * per-task data have been completed by this moment.
1567 */
1568 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001569 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001570#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001571}
1572
Steven Rostedtcb469842008-01-25 21:08:22 +01001573static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1574 const struct sched_class *prev_class,
1575 int oldprio, int running)
1576{
1577 if (prev_class != p->sched_class) {
1578 if (prev_class->switched_from)
1579 prev_class->switched_from(rq, p, running);
1580 p->sched_class->switched_to(rq, p, running);
1581 } else
1582 p->sched_class->prio_changed(rq, p, oldprio, running);
1583}
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001586
Ingo Molnarcc367732007-10-15 17:00:18 +02001587/*
1588 * Is this task likely cache-hot:
1589 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001590static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001591task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1592{
1593 s64 delta;
1594
Ingo Molnarf540a602008-03-15 17:10:34 +01001595 /*
1596 * Buddy candidates are cache hot:
1597 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01001598 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01001599 return 1;
1600
Ingo Molnarcc367732007-10-15 17:00:18 +02001601 if (p->sched_class != &fair_sched_class)
1602 return 0;
1603
Ingo Molnar6bc16652007-10-15 17:00:18 +02001604 if (sysctl_sched_migration_cost == -1)
1605 return 1;
1606 if (sysctl_sched_migration_cost == 0)
1607 return 0;
1608
Ingo Molnarcc367732007-10-15 17:00:18 +02001609 delta = now - p->se.exec_start;
1610
1611 return delta < (s64)sysctl_sched_migration_cost;
1612}
1613
1614
Ingo Molnardd41f592007-07-09 18:51:59 +02001615void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001616{
Ingo Molnardd41f592007-07-09 18:51:59 +02001617 int old_cpu = task_cpu(p);
1618 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001619 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1620 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001621 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001622
1623 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001624
1625#ifdef CONFIG_SCHEDSTATS
1626 if (p->se.wait_start)
1627 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001628 if (p->se.sleep_start)
1629 p->se.sleep_start -= clock_offset;
1630 if (p->se.block_start)
1631 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001632 if (old_cpu != new_cpu) {
1633 schedstat_inc(p, se.nr_migrations);
1634 if (task_hot(p, old_rq->clock, NULL))
1635 schedstat_inc(p, se.nr_forced2_migrations);
1636 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001637#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001638 p->se.vruntime -= old_cfsrq->min_vruntime -
1639 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001640
1641 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001642}
1643
Ingo Molnar70b97a72006-07-03 00:25:42 -07001644struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Ingo Molnar36c8b582006-07-03 00:25:41 -07001647 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 int dest_cpu;
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001651};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653/*
1654 * The task's runqueue lock must be held.
1655 * Returns true if you have to wait for migration thread.
1656 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001657static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001658migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001660 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 /*
1663 * If the task is not on a runqueue (and not running), then
1664 * it is sufficient to simply update the task's cpu field.
1665 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001666 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 set_task_cpu(p, dest_cpu);
1668 return 0;
1669 }
1670
1671 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 req->task = p;
1673 req->dest_cpu = dest_cpu;
1674 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return 1;
1677}
1678
1679/*
1680 * wait_task_inactive - wait for a thread to unschedule.
1681 *
1682 * The caller must ensure that the task *will* unschedule sometime soon,
1683 * else this function might spin for a *long* time. This function can't
1684 * be called with interrupts off, or it may introduce deadlock with
1685 * smp_call_function() if an IPI is sent by the same process we are
1686 * waiting to become inactive.
1687 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001688void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
1690 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001691 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001692 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Andi Kleen3a5c3592007-10-15 17:00:14 +02001694 for (;;) {
1695 /*
1696 * We do the initial early heuristics without holding
1697 * any task-queue locks at all. We'll only try to get
1698 * the runqueue lock when things look like they will
1699 * work out!
1700 */
1701 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001702
Andi Kleen3a5c3592007-10-15 17:00:14 +02001703 /*
1704 * If the task is actively running on another CPU
1705 * still, just relax and busy-wait without holding
1706 * any locks.
1707 *
1708 * NOTE! Since we don't hold any locks, it's not
1709 * even sure that "rq" stays as the right runqueue!
1710 * But we don't care, since "task_running()" will
1711 * return false if the runqueue has changed and p
1712 * is actually now running somewhere else!
1713 */
1714 while (task_running(rq, p))
1715 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001716
Andi Kleen3a5c3592007-10-15 17:00:14 +02001717 /*
1718 * Ok, time to look more closely! We need the rq
1719 * lock now, to be *sure*. If we're wrong, we'll
1720 * just go back and repeat.
1721 */
1722 rq = task_rq_lock(p, &flags);
1723 running = task_running(rq, p);
1724 on_rq = p->se.on_rq;
1725 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001726
Andi Kleen3a5c3592007-10-15 17:00:14 +02001727 /*
1728 * Was it really running after all now that we
1729 * checked with the proper locks actually held?
1730 *
1731 * Oops. Go back and try again..
1732 */
1733 if (unlikely(running)) {
1734 cpu_relax();
1735 continue;
1736 }
1737
1738 /*
1739 * It's not enough that it's not actively running,
1740 * it must be off the runqueue _entirely_, and not
1741 * preempted!
1742 *
1743 * So if it wa still runnable (but just not actively
1744 * running right now), it's preempted, and we should
1745 * yield - it could be a while.
1746 */
1747 if (unlikely(on_rq)) {
1748 schedule_timeout_uninterruptible(1);
1749 continue;
1750 }
1751
1752 /*
1753 * Ahh, all good. It wasn't running, and it wasn't
1754 * runnable, which means that it will never become
1755 * running in the future either. We're all done!
1756 */
1757 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
1761/***
1762 * kick_process - kick a running thread to enter/exit the kernel
1763 * @p: the to-be-kicked thread
1764 *
1765 * Cause a process which is running on another CPU to enter
1766 * kernel-mode, without any delay. (to get signals handled.)
1767 *
1768 * NOTE: this function doesnt have to take the runqueue lock,
1769 * because all it wants to ensure is that the remote task enters
1770 * the kernel. If the IPI races and the task has been migrated
1771 * to another CPU then no harm is done and the purpose has been
1772 * achieved as well.
1773 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001774void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 int cpu;
1777
1778 preempt_disable();
1779 cpu = task_cpu(p);
1780 if ((cpu != smp_processor_id()) && task_curr(p))
1781 smp_send_reschedule(cpu);
1782 preempt_enable();
1783}
1784
1785/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001786 * Return a low guess at the load of a migration-source cpu weighted
1787 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 *
1789 * We want to under-estimate the load of migration sources, to
1790 * balance conservatively.
1791 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001792static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001793{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001794 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001795 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001796
Peter Williams2dd73a42006-06-27 02:54:34 -07001797 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001798 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001799
Ingo Molnardd41f592007-07-09 18:51:59 +02001800 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
1803/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001804 * Return a high guess at the load of a migration-target cpu weighted
1805 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001807static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001808{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001809 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001810 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001811
Peter Williams2dd73a42006-06-27 02:54:34 -07001812 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001813 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001814
Ingo Molnardd41f592007-07-09 18:51:59 +02001815 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001816}
1817
1818/*
1819 * Return the average load per task on the cpu's run queue
1820 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001821static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001822{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001823 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001824 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001825 unsigned long n = rq->nr_running;
1826
Ingo Molnardd41f592007-07-09 18:51:59 +02001827 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828}
1829
Nick Piggin147cbb42005-06-25 14:57:19 -07001830/*
1831 * find_idlest_group finds and returns the least busy CPU group within the
1832 * domain.
1833 */
1834static struct sched_group *
1835find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1836{
1837 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1838 unsigned long min_load = ULONG_MAX, this_load = 0;
1839 int load_idx = sd->forkexec_idx;
1840 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1841
1842 do {
1843 unsigned long load, avg_load;
1844 int local_group;
1845 int i;
1846
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001847 /* Skip over this group if it has no CPUs allowed */
1848 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001849 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001850
Nick Piggin147cbb42005-06-25 14:57:19 -07001851 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001852
1853 /* Tally up the load of all CPUs in the group */
1854 avg_load = 0;
1855
1856 for_each_cpu_mask(i, group->cpumask) {
1857 /* Bias balancing toward cpus of our domain */
1858 if (local_group)
1859 load = source_load(i, load_idx);
1860 else
1861 load = target_load(i, load_idx);
1862
1863 avg_load += load;
1864 }
1865
1866 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001867 avg_load = sg_div_cpu_power(group,
1868 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001869
1870 if (local_group) {
1871 this_load = avg_load;
1872 this = group;
1873 } else if (avg_load < min_load) {
1874 min_load = avg_load;
1875 idlest = group;
1876 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001877 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001878
1879 if (!idlest || 100*this_load < imbalance*min_load)
1880 return NULL;
1881 return idlest;
1882}
1883
1884/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001885 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001886 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001887static int
Mike Travis7c16ec52008-04-04 18:11:11 -07001888find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
1889 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07001890{
1891 unsigned long load, min_load = ULONG_MAX;
1892 int idlest = -1;
1893 int i;
1894
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001895 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07001896 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001897
Mike Travis7c16ec52008-04-04 18:11:11 -07001898 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001899 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001900
1901 if (load < min_load || (load == min_load && i == this_cpu)) {
1902 min_load = load;
1903 idlest = i;
1904 }
1905 }
1906
1907 return idlest;
1908}
1909
Nick Piggin476d1392005-06-25 14:57:29 -07001910/*
1911 * sched_balance_self: balance the current task (running on cpu) in domains
1912 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1913 * SD_BALANCE_EXEC.
1914 *
1915 * Balance, ie. select the least loaded group.
1916 *
1917 * Returns the target CPU number, or the same CPU if no balancing is needed.
1918 *
1919 * preempt must be disabled.
1920 */
1921static int sched_balance_self(int cpu, int flag)
1922{
1923 struct task_struct *t = current;
1924 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001925
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001926 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001927 /*
1928 * If power savings logic is enabled for a domain, stop there.
1929 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001930 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1931 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001932 if (tmp->flags & flag)
1933 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001934 }
Nick Piggin476d1392005-06-25 14:57:29 -07001935
1936 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07001937 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07001938 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001939 int new_cpu, weight;
1940
1941 if (!(sd->flags & flag)) {
1942 sd = sd->child;
1943 continue;
1944 }
Nick Piggin476d1392005-06-25 14:57:29 -07001945
1946 span = sd->span;
1947 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001948 if (!group) {
1949 sd = sd->child;
1950 continue;
1951 }
Nick Piggin476d1392005-06-25 14:57:29 -07001952
Mike Travis7c16ec52008-04-04 18:11:11 -07001953 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001954 if (new_cpu == -1 || new_cpu == cpu) {
1955 /* Now try balancing at a lower domain level of cpu */
1956 sd = sd->child;
1957 continue;
1958 }
Nick Piggin476d1392005-06-25 14:57:29 -07001959
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001960 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001961 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001962 sd = NULL;
1963 weight = cpus_weight(span);
1964 for_each_domain(cpu, tmp) {
1965 if (weight <= cpus_weight(tmp->span))
1966 break;
1967 if (tmp->flags & flag)
1968 sd = tmp;
1969 }
1970 /* while loop will break here if sd == NULL */
1971 }
1972
1973 return cpu;
1974}
1975
1976#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/***
1979 * try_to_wake_up - wake up a thread
1980 * @p: the to-be-woken-up thread
1981 * @state: the mask of task states that can be woken
1982 * @sync: do a synchronous wakeup?
1983 *
1984 * Put it on the run-queue if it's not already there. The "current"
1985 * thread is always on the run-queue (except when the actual
1986 * re-schedule is in progress), and as such you're allowed to do
1987 * the simpler "current->state = TASK_RUNNING" to mark yourself
1988 * runnable without the overhead of this.
1989 *
1990 * returns failure only if the task is already active.
1991 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001992static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
Ingo Molnarcc367732007-10-15 17:00:18 +02001994 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 unsigned long flags;
1996 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001997 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Ingo Molnarb85d0662008-03-16 20:03:22 +01001999 if (!sched_feat(SYNC_WAKEUPS))
2000 sync = 0;
2001
Linus Torvalds04e2f172008-02-23 18:05:03 -08002002 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 rq = task_rq_lock(p, &flags);
2004 old_state = p->state;
2005 if (!(old_state & state))
2006 goto out;
2007
Ingo Molnardd41f592007-07-09 18:51:59 +02002008 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 goto out_running;
2010
2011 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002012 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 this_cpu = smp_processor_id();
2014
2015#ifdef CONFIG_SMP
2016 if (unlikely(task_running(rq, p)))
2017 goto out_activate;
2018
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002019 cpu = p->sched_class->select_task_rq(p, sync);
2020 if (cpu != orig_cpu) {
2021 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 task_rq_unlock(rq, &flags);
2023 /* might preempt at this point */
2024 rq = task_rq_lock(p, &flags);
2025 old_state = p->state;
2026 if (!(old_state & state))
2027 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002028 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 goto out_running;
2030
2031 this_cpu = smp_processor_id();
2032 cpu = task_cpu(p);
2033 }
2034
Gregory Haskinse7693a32008-01-25 21:08:09 +01002035#ifdef CONFIG_SCHEDSTATS
2036 schedstat_inc(rq, ttwu_count);
2037 if (cpu == this_cpu)
2038 schedstat_inc(rq, ttwu_local);
2039 else {
2040 struct sched_domain *sd;
2041 for_each_domain(this_cpu, sd) {
2042 if (cpu_isset(cpu, sd->span)) {
2043 schedstat_inc(sd, ttwu_wake_remote);
2044 break;
2045 }
2046 }
2047 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002048#endif
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050out_activate:
2051#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002052 schedstat_inc(p, se.nr_wakeups);
2053 if (sync)
2054 schedstat_inc(p, se.nr_wakeups_sync);
2055 if (orig_cpu != cpu)
2056 schedstat_inc(p, se.nr_wakeups_migrate);
2057 if (cpu == this_cpu)
2058 schedstat_inc(p, se.nr_wakeups_local);
2059 else
2060 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002061 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002062 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 success = 1;
2064
2065out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002066 check_preempt_curr(rq, p);
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002069#ifdef CONFIG_SMP
2070 if (p->sched_class->task_wake_up)
2071 p->sched_class->task_wake_up(rq, p);
2072#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073out:
2074 task_rq_unlock(rq, &flags);
2075
2076 return success;
2077}
2078
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002079int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002081 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083EXPORT_SYMBOL(wake_up_process);
2084
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002085int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 return try_to_wake_up(p, state, 0);
2088}
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090/*
2091 * Perform scheduler related setup for a newly forked process p.
2092 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002093 *
2094 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002096static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Ingo Molnardd41f592007-07-09 18:51:59 +02002098 p->se.exec_start = 0;
2099 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002100 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002101 p->se.last_wakeup = 0;
2102 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002103
2104#ifdef CONFIG_SCHEDSTATS
2105 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002106 p->se.sum_sleep_runtime = 0;
2107 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002108 p->se.block_start = 0;
2109 p->se.sleep_max = 0;
2110 p->se.block_max = 0;
2111 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002112 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002113 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002114#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002115
Peter Zijlstrafa717062008-01-25 21:08:27 +01002116 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002117 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07002118
Avi Kivitye107be32007-07-26 13:40:43 +02002119#ifdef CONFIG_PREEMPT_NOTIFIERS
2120 INIT_HLIST_HEAD(&p->preempt_notifiers);
2121#endif
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 /*
2124 * We mark the process as running here, but have not actually
2125 * inserted it onto the runqueue yet. This guarantees that
2126 * nobody will actually run it, and a signal or other external
2127 * event cannot wake it up and insert it on the runqueue either.
2128 */
2129 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002130}
2131
2132/*
2133 * fork()/clone()-time setup:
2134 */
2135void sched_fork(struct task_struct *p, int clone_flags)
2136{
2137 int cpu = get_cpu();
2138
2139 __sched_fork(p);
2140
2141#ifdef CONFIG_SMP
2142 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2143#endif
Ingo Molnar02e4bac22007-10-15 17:00:11 +02002144 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002145
2146 /*
2147 * Make sure we do not leak PI boosting priority to the child:
2148 */
2149 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002150 if (!rt_prio(p->prio))
2151 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002152
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002153#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002154 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002155 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002157#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002158 p->oncpu = 0;
2159#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002161 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08002162 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002164 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165}
2166
2167/*
2168 * wake_up_new_task - wake up a newly created task for the first time.
2169 *
2170 * This function will do some initial scheduler statistics housekeeping
2171 * that must be done for every newly created context, then puts the task
2172 * on the runqueue and wakes it.
2173 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002174void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
2176 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002177 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002181 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183 p->prio = effective_prio(p);
2184
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002185 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002186 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002189 * Let the scheduling class do new task startup
2190 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002192 p->sched_class->task_new(rq, p);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01002193 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002195 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002196#ifdef CONFIG_SMP
2197 if (p->sched_class->task_wake_up)
2198 p->sched_class->task_wake_up(rq, p);
2199#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002200 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202
Avi Kivitye107be32007-07-26 13:40:43 +02002203#ifdef CONFIG_PREEMPT_NOTIFIERS
2204
2205/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002206 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2207 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002208 */
2209void preempt_notifier_register(struct preempt_notifier *notifier)
2210{
2211 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2212}
2213EXPORT_SYMBOL_GPL(preempt_notifier_register);
2214
2215/**
2216 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002217 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002218 *
2219 * This is safe to call from within a preemption notifier.
2220 */
2221void preempt_notifier_unregister(struct preempt_notifier *notifier)
2222{
2223 hlist_del(&notifier->link);
2224}
2225EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2226
2227static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2228{
2229 struct preempt_notifier *notifier;
2230 struct hlist_node *node;
2231
2232 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2233 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2234}
2235
2236static void
2237fire_sched_out_preempt_notifiers(struct task_struct *curr,
2238 struct task_struct *next)
2239{
2240 struct preempt_notifier *notifier;
2241 struct hlist_node *node;
2242
2243 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2244 notifier->ops->sched_out(notifier, next);
2245}
2246
2247#else
2248
2249static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2250{
2251}
2252
2253static void
2254fire_sched_out_preempt_notifiers(struct task_struct *curr,
2255 struct task_struct *next)
2256{
2257}
2258
2259#endif
2260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002262 * prepare_task_switch - prepare to switch tasks
2263 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002264 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002265 * @next: the task we are going to switch to.
2266 *
2267 * This is called with the rq lock held and interrupts off. It must
2268 * be paired with a subsequent finish_task_switch after the context
2269 * switch.
2270 *
2271 * prepare_task_switch sets up locking and calls architecture specific
2272 * hooks.
2273 */
Avi Kivitye107be32007-07-26 13:40:43 +02002274static inline void
2275prepare_task_switch(struct rq *rq, struct task_struct *prev,
2276 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002277{
Avi Kivitye107be32007-07-26 13:40:43 +02002278 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002279 prepare_lock_switch(rq, next);
2280 prepare_arch_switch(next);
2281}
2282
2283/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002285 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 * @prev: the thread we just switched away from.
2287 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002288 * finish_task_switch must be called after the context switch, paired
2289 * with a prepare_task_switch call before the context switch.
2290 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2291 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 *
2293 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002294 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 * with the lock held can cause deadlocks; see schedule() for
2296 * details.)
2297 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002298static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 __releases(rq->lock)
2300{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002302 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304 rq->prev_mm = NULL;
2305
2306 /*
2307 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002308 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002309 * schedule one last time. The schedule call will never return, and
2310 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002311 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 * still held, otherwise prev could be scheduled on another cpu, die
2313 * there before we look at prev->state, and then the reference would
2314 * be dropped twice.
2315 * Manfred Spraul <manfred@colorfullife.com>
2316 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002317 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002318 finish_arch_switch(prev);
2319 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002320#ifdef CONFIG_SMP
2321 if (current->sched_class->post_schedule)
2322 current->sched_class->post_schedule(rq);
2323#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002324
Avi Kivitye107be32007-07-26 13:40:43 +02002325 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (mm)
2327 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002328 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002329 /*
2330 * Remove function-return probe instances associated with this
2331 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002332 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002333 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
2338/**
2339 * schedule_tail - first thing a freshly forked thread must call.
2340 * @prev: the thread we just switched away from.
2341 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002342asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 __releases(rq->lock)
2344{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002345 struct rq *rq = this_rq();
2346
Nick Piggin4866cde2005-06-25 14:57:23 -07002347 finish_task_switch(rq, prev);
2348#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2349 /* In this case, finish_task_switch does not reenable preemption */
2350 preempt_enable();
2351#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002353 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
2356/*
2357 * context_switch - switch to the new MM and the new
2358 * thread's register state.
2359 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002360static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002361context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002362 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
Ingo Molnardd41f592007-07-09 18:51:59 +02002364 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Avi Kivitye107be32007-07-26 13:40:43 +02002366 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002367 mm = next->mm;
2368 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002369 /*
2370 * For paravirt, this is coupled with an exit in switch_to to
2371 * combine the page table reload and the switch backend into
2372 * one hypercall.
2373 */
2374 arch_enter_lazy_cpu_mode();
2375
Ingo Molnardd41f592007-07-09 18:51:59 +02002376 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 next->active_mm = oldmm;
2378 atomic_inc(&oldmm->mm_count);
2379 enter_lazy_tlb(oldmm, next);
2380 } else
2381 switch_mm(oldmm, mm, next);
2382
Ingo Molnardd41f592007-07-09 18:51:59 +02002383 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 rq->prev_mm = oldmm;
2386 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002387 /*
2388 * Since the runqueue lock will be released by the next
2389 * task (which is an invalid locking op but in the case
2390 * of the scheduler it's an obvious special-case), so we
2391 * do an early lockdep release here:
2392 */
2393#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002394 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002395#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397 /* Here we just switch the register state and the stack. */
2398 switch_to(prev, next, prev);
2399
Ingo Molnardd41f592007-07-09 18:51:59 +02002400 barrier();
2401 /*
2402 * this_rq must be evaluated again because prev may have moved
2403 * CPUs since it called schedule(), thus the 'rq' on its stack
2404 * frame will be invalid.
2405 */
2406 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
2408
2409/*
2410 * nr_running, nr_uninterruptible and nr_context_switches:
2411 *
2412 * externally visible scheduler statistics: current number of runnable
2413 * threads, current number of uninterruptible-sleeping threads, total
2414 * number of context switches performed since bootup.
2415 */
2416unsigned long nr_running(void)
2417{
2418 unsigned long i, sum = 0;
2419
2420 for_each_online_cpu(i)
2421 sum += cpu_rq(i)->nr_running;
2422
2423 return sum;
2424}
2425
2426unsigned long nr_uninterruptible(void)
2427{
2428 unsigned long i, sum = 0;
2429
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002430 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 sum += cpu_rq(i)->nr_uninterruptible;
2432
2433 /*
2434 * Since we read the counters lockless, it might be slightly
2435 * inaccurate. Do not allow it to go below zero though:
2436 */
2437 if (unlikely((long)sum < 0))
2438 sum = 0;
2439
2440 return sum;
2441}
2442
2443unsigned long long nr_context_switches(void)
2444{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002445 int i;
2446 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002448 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 sum += cpu_rq(i)->nr_switches;
2450
2451 return sum;
2452}
2453
2454unsigned long nr_iowait(void)
2455{
2456 unsigned long i, sum = 0;
2457
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002458 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2460
2461 return sum;
2462}
2463
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002464unsigned long nr_active(void)
2465{
2466 unsigned long i, running = 0, uninterruptible = 0;
2467
2468 for_each_online_cpu(i) {
2469 running += cpu_rq(i)->nr_running;
2470 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2471 }
2472
2473 if (unlikely((long)uninterruptible < 0))
2474 uninterruptible = 0;
2475
2476 return running + uninterruptible;
2477}
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002480 * Update rq->cpu_load[] statistics. This function is usually called every
2481 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002482 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002483static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002484{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002485 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002486 int i, scale;
2487
2488 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002489
2490 /* Update our load: */
2491 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2492 unsigned long old_load, new_load;
2493
2494 /* scale is effectively 1 << i now, and >> i divides by scale */
2495
2496 old_load = this_rq->cpu_load[i];
2497 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002498 /*
2499 * Round up the averaging division if load is increasing. This
2500 * prevents us from getting stuck on 9 if the load is 10, for
2501 * example.
2502 */
2503 if (new_load > old_load)
2504 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002505 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2506 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002507}
2508
Ingo Molnardd41f592007-07-09 18:51:59 +02002509#ifdef CONFIG_SMP
2510
Ingo Molnar48f24c42006-07-03 00:25:40 -07002511/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 * double_rq_lock - safely lock two runqueues
2513 *
2514 * Note this does not disable interrupts like task_rq_lock,
2515 * you need to do so manually before calling.
2516 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002517static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 __acquires(rq1->lock)
2519 __acquires(rq2->lock)
2520{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002521 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 if (rq1 == rq2) {
2523 spin_lock(&rq1->lock);
2524 __acquire(rq2->lock); /* Fake it out ;) */
2525 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002526 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 spin_lock(&rq1->lock);
2528 spin_lock(&rq2->lock);
2529 } else {
2530 spin_lock(&rq2->lock);
2531 spin_lock(&rq1->lock);
2532 }
2533 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002534 update_rq_clock(rq1);
2535 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536}
2537
2538/*
2539 * double_rq_unlock - safely unlock two runqueues
2540 *
2541 * Note this does not restore interrupts like task_rq_unlock,
2542 * you need to do so manually after calling.
2543 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002544static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 __releases(rq1->lock)
2546 __releases(rq2->lock)
2547{
2548 spin_unlock(&rq1->lock);
2549 if (rq1 != rq2)
2550 spin_unlock(&rq2->lock);
2551 else
2552 __release(rq2->lock);
2553}
2554
2555/*
2556 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2557 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002558static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 __releases(this_rq->lock)
2560 __acquires(busiest->lock)
2561 __acquires(this_rq->lock)
2562{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002563 int ret = 0;
2564
Kirill Korotaev054b9102006-12-10 02:20:11 -08002565 if (unlikely(!irqs_disabled())) {
2566 /* printk() doesn't work good under rq->lock */
2567 spin_unlock(&this_rq->lock);
2568 BUG_ON(1);
2569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002571 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 spin_unlock(&this_rq->lock);
2573 spin_lock(&busiest->lock);
2574 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002575 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 } else
2577 spin_lock(&busiest->lock);
2578 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002579 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580}
2581
2582/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 * If dest_cpu is allowed for this process, migrate the task to it.
2584 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002585 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 * the cpu_allowed mask is restored.
2587 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002588static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002590 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002592 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
2594 rq = task_rq_lock(p, &flags);
2595 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2596 || unlikely(cpu_is_offline(dest_cpu)))
2597 goto out;
2598
2599 /* force the process onto the specified CPU */
2600 if (migrate_task(p, dest_cpu, &req)) {
2601 /* Need to wait for migration thread (might exit: take ref). */
2602 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 get_task_struct(mt);
2605 task_rq_unlock(rq, &flags);
2606 wake_up_process(mt);
2607 put_task_struct(mt);
2608 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 return;
2611 }
2612out:
2613 task_rq_unlock(rq, &flags);
2614}
2615
2616/*
Nick Piggin476d1392005-06-25 14:57:29 -07002617 * sched_exec - execve() is a valuable balancing opportunity, because at
2618 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 */
2620void sched_exec(void)
2621{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002623 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002625 if (new_cpu != this_cpu)
2626 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627}
2628
2629/*
2630 * pull_task - move a task from a remote runqueue to the local runqueue.
2631 * Both runqueues must be locked.
2632 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002633static void pull_task(struct rq *src_rq, struct task_struct *p,
2634 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002636 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002638 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 /*
2640 * Note that idle threads have a prio of MAX_PRIO, for this test
2641 * to be always true for them.
2642 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002643 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644}
2645
2646/*
2647 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2648 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002649static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002650int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002651 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002652 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
2654 /*
2655 * We do not migrate tasks that are:
2656 * 1) running (obviously), or
2657 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2658 * 3) are cache-hot on their current CPU.
2659 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002660 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2661 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002663 }
Nick Piggin81026792005-06-25 14:57:07 -07002664 *all_pinned = 0;
2665
Ingo Molnarcc367732007-10-15 17:00:18 +02002666 if (task_running(rq, p)) {
2667 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002668 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Ingo Molnarda84d962007-10-15 17:00:18 +02002671 /*
2672 * Aggressive migration if:
2673 * 1) task is cache cold, or
2674 * 2) too many balance attempts have failed.
2675 */
2676
Ingo Molnar6bc16652007-10-15 17:00:18 +02002677 if (!task_hot(p, rq->clock, sd) ||
2678 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002679#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002680 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002681 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002682 schedstat_inc(p, se.nr_forced_migrations);
2683 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002684#endif
2685 return 1;
2686 }
2687
Ingo Molnarcc367732007-10-15 17:00:18 +02002688 if (task_hot(p, rq->clock, sd)) {
2689 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002690 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 return 1;
2693}
2694
Peter Williamse1d14842007-10-24 18:23:51 +02002695static unsigned long
2696balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2697 unsigned long max_load_move, struct sched_domain *sd,
2698 enum cpu_idle_type idle, int *all_pinned,
2699 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002700{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002701 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002702 struct task_struct *p;
2703 long rem_load_move = max_load_move;
2704
Peter Williamse1d14842007-10-24 18:23:51 +02002705 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002706 goto out;
2707
2708 pinned = 1;
2709
2710 /*
2711 * Start the load-balancing iterator:
2712 */
2713 p = iterator->start(iterator->arg);
2714next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002715 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002716 goto out;
2717 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002718 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002719 * skip a task if it will be the highest priority task (i.e. smallest
2720 * prio value) on its new queue regardless of its load weight
2721 */
2722 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2723 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002724 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002725 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002726 p = iterator->next(iterator->arg);
2727 goto next;
2728 }
2729
2730 pull_task(busiest, p, this_rq, this_cpu);
2731 pulled++;
2732 rem_load_move -= p->se.load.weight;
2733
2734 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002735 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002736 */
Peter Williamse1d14842007-10-24 18:23:51 +02002737 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002738 if (p->prio < *this_best_prio)
2739 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002740 p = iterator->next(iterator->arg);
2741 goto next;
2742 }
2743out:
2744 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002745 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002746 * so we can safely collect pull_task() stats here rather than
2747 * inside pull_task().
2748 */
2749 schedstat_add(sd, lb_gained[idle], pulled);
2750
2751 if (all_pinned)
2752 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002753
2754 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002755}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757/*
Peter Williams43010652007-08-09 11:16:46 +02002758 * move_tasks tries to move up to max_load_move weighted load from busiest to
2759 * this_rq, as part of a balancing operation within domain "sd".
2760 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 *
2762 * Called with both runqueues locked.
2763 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002764static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002765 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002766 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002767 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002769 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002770 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002771 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Ingo Molnardd41f592007-07-09 18:51:59 +02002773 do {
Peter Williams43010652007-08-09 11:16:46 +02002774 total_load_moved +=
2775 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002776 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002777 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002778 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002779 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Peter Williams43010652007-08-09 11:16:46 +02002781 return total_load_moved > 0;
2782}
2783
Peter Williamse1d14842007-10-24 18:23:51 +02002784static int
2785iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2786 struct sched_domain *sd, enum cpu_idle_type idle,
2787 struct rq_iterator *iterator)
2788{
2789 struct task_struct *p = iterator->start(iterator->arg);
2790 int pinned = 0;
2791
2792 while (p) {
2793 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2794 pull_task(busiest, p, this_rq, this_cpu);
2795 /*
2796 * Right now, this is only the second place pull_task()
2797 * is called, so we can safely collect pull_task()
2798 * stats here rather than inside pull_task().
2799 */
2800 schedstat_inc(sd, lb_gained[idle]);
2801
2802 return 1;
2803 }
2804 p = iterator->next(iterator->arg);
2805 }
2806
2807 return 0;
2808}
2809
Peter Williams43010652007-08-09 11:16:46 +02002810/*
2811 * move_one_task tries to move exactly one task from busiest to this_rq, as
2812 * part of active balancing operations within "domain".
2813 * Returns 1 if successful and 0 otherwise.
2814 *
2815 * Called with both runqueues locked.
2816 */
2817static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2818 struct sched_domain *sd, enum cpu_idle_type idle)
2819{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002820 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002821
2822 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002823 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002824 return 1;
2825
2826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
2829/*
2830 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002831 * domain. It calculates and returns the amount of weighted load which
2832 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 */
2834static struct sched_group *
2835find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002836 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07002837 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
2839 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2840 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002841 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002842 unsigned long busiest_load_per_task, busiest_nr_running;
2843 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002844 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002845#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2846 int power_savings_balance = 1;
2847 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2848 unsigned long min_nr_running = ULONG_MAX;
2849 struct sched_group *group_min = NULL, *group_leader = NULL;
2850#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002853 busiest_load_per_task = busiest_nr_running = 0;
2854 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002855 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002856 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002857 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002858 load_idx = sd->newidle_idx;
2859 else
2860 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002863 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 int local_group;
2865 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002866 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002867 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002868 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
2870 local_group = cpu_isset(this_cpu, group->cpumask);
2871
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002872 if (local_group)
2873 balance_cpu = first_cpu(group->cpumask);
2874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002876 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002877 max_cpu_load = 0;
2878 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
2880 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002881 struct rq *rq;
2882
2883 if (!cpu_isset(i, *cpus))
2884 continue;
2885
2886 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002887
Suresh Siddha9439aab2007-07-19 21:28:35 +02002888 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002889 *sd_idle = 0;
2890
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002892 if (local_group) {
2893 if (idle_cpu(i) && !first_idle_cpu) {
2894 first_idle_cpu = 1;
2895 balance_cpu = i;
2896 }
2897
Nick Piggina2000572006-02-10 01:51:02 -08002898 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002899 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002900 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002901 if (load > max_cpu_load)
2902 max_cpu_load = load;
2903 if (min_cpu_load > load)
2904 min_cpu_load = load;
2905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002908 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002909 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 }
2911
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002912 /*
2913 * First idle cpu or the first cpu(busiest) in this sched group
2914 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002915 * domains. In the newly idle case, we will allow all the cpu's
2916 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002917 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002918 if (idle != CPU_NEWLY_IDLE && local_group &&
2919 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002920 *balance = 0;
2921 goto ret;
2922 }
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002925 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
2927 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002928 avg_load = sg_div_cpu_power(group,
2929 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Ken Chen908a7c12007-10-17 16:55:11 +02002931 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
2932 __group_imb = 1;
2933
Eric Dumazet5517d862007-05-08 00:32:57 -07002934 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002935
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 if (local_group) {
2937 this_load = avg_load;
2938 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002939 this_nr_running = sum_nr_running;
2940 this_load_per_task = sum_weighted_load;
2941 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02002942 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 max_load = avg_load;
2944 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002945 busiest_nr_running = sum_nr_running;
2946 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02002947 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002949
2950#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2951 /*
2952 * Busy processors will not participate in power savings
2953 * balance.
2954 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002955 if (idle == CPU_NOT_IDLE ||
2956 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2957 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002958
2959 /*
2960 * If the local group is idle or completely loaded
2961 * no need to do power savings balance at this domain
2962 */
2963 if (local_group && (this_nr_running >= group_capacity ||
2964 !this_nr_running))
2965 power_savings_balance = 0;
2966
Ingo Molnardd41f592007-07-09 18:51:59 +02002967 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002968 * If a group is already running at full capacity or idle,
2969 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002970 */
2971 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002972 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002973 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002974
Ingo Molnardd41f592007-07-09 18:51:59 +02002975 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002976 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002977 * This is the group from where we need to pick up the load
2978 * for saving power
2979 */
2980 if ((sum_nr_running < min_nr_running) ||
2981 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002982 first_cpu(group->cpumask) <
2983 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002984 group_min = group;
2985 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002986 min_load_per_task = sum_weighted_load /
2987 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002988 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002989
Ingo Molnardd41f592007-07-09 18:51:59 +02002990 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002991 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002992 * capacity but still has some space to pick up some load
2993 * from other group and save more power
2994 */
2995 if (sum_nr_running <= group_capacity - 1) {
2996 if (sum_nr_running > leader_nr_running ||
2997 (sum_nr_running == leader_nr_running &&
2998 first_cpu(group->cpumask) >
2999 first_cpu(group_leader->cpumask))) {
3000 group_leader = group;
3001 leader_nr_running = sum_nr_running;
3002 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003003 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003004group_next:
3005#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 group = group->next;
3007 } while (group != sd->groups);
3008
Peter Williams2dd73a42006-06-27 02:54:34 -07003009 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 goto out_balanced;
3011
3012 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3013
3014 if (this_load >= avg_load ||
3015 100*max_load <= sd->imbalance_pct*this_load)
3016 goto out_balanced;
3017
Peter Williams2dd73a42006-06-27 02:54:34 -07003018 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003019 if (group_imb)
3020 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 /*
3023 * We're trying to get all the cpus to the average_load, so we don't
3024 * want to push ourselves above the average load, nor do we wish to
3025 * reduce the max loaded cpu below the average load, as either of these
3026 * actions would just result in more rebalancing later, and ping-pong
3027 * tasks around. Thus we look for the minimum possible imbalance.
3028 * Negative imbalances (*we* are more loaded than anyone else) will
3029 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003030 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 * appear as very large values with unsigned longs.
3032 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003033 if (max_load <= busiest_load_per_task)
3034 goto out_balanced;
3035
3036 /*
3037 * In the presence of smp nice balancing, certain scenarios can have
3038 * max load less than avg load(as we skip the groups at or below
3039 * its cpu_power, while calculating max_load..)
3040 */
3041 if (max_load < avg_load) {
3042 *imbalance = 0;
3043 goto small_imbalance;
3044 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003045
3046 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003047 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003050 *imbalance = min(max_pull * busiest->__cpu_power,
3051 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 / SCHED_LOAD_SCALE;
3053
Peter Williams2dd73a42006-06-27 02:54:34 -07003054 /*
3055 * if *imbalance is less than the average load per runnable task
3056 * there is no gaurantee that any tasks will be moved so we'll have
3057 * a think about bumping its value to force at least one task to be
3058 * moved
3059 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003060 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003061 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003062 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Peter Williams2dd73a42006-06-27 02:54:34 -07003064small_imbalance:
3065 pwr_move = pwr_now = 0;
3066 imbn = 2;
3067 if (this_nr_running) {
3068 this_load_per_task /= this_nr_running;
3069 if (busiest_load_per_task > this_load_per_task)
3070 imbn = 1;
3071 } else
3072 this_load_per_task = SCHED_LOAD_SCALE;
3073
Ingo Molnardd41f592007-07-09 18:51:59 +02003074 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3075 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003076 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 return busiest;
3078 }
3079
3080 /*
3081 * OK, we don't have enough imbalance to justify moving tasks,
3082 * however we may be able to increase total CPU power used by
3083 * moving them.
3084 */
3085
Eric Dumazet5517d862007-05-08 00:32:57 -07003086 pwr_now += busiest->__cpu_power *
3087 min(busiest_load_per_task, max_load);
3088 pwr_now += this->__cpu_power *
3089 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 pwr_now /= SCHED_LOAD_SCALE;
3091
3092 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003093 tmp = sg_div_cpu_power(busiest,
3094 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003096 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003097 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
3099 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003100 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003101 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003102 tmp = sg_div_cpu_power(this,
3103 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003105 tmp = sg_div_cpu_power(this,
3106 busiest_load_per_task * SCHED_LOAD_SCALE);
3107 pwr_move += this->__cpu_power *
3108 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 pwr_move /= SCHED_LOAD_SCALE;
3110
3111 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003112 if (pwr_move > pwr_now)
3113 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 }
3115
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 return busiest;
3117
3118out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003119#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003120 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003121 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003123 if (this == group_leader && group_leader != group_min) {
3124 *imbalance = min_load_per_task;
3125 return group_min;
3126 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003127#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003128ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 *imbalance = 0;
3130 return NULL;
3131}
3132
3133/*
3134 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3135 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003136static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003137find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003138 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003140 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003141 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 int i;
3143
3144 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003145 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003146
3147 if (!cpu_isset(i, *cpus))
3148 continue;
3149
Ingo Molnar48f24c42006-07-03 00:25:40 -07003150 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003151 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
Ingo Molnardd41f592007-07-09 18:51:59 +02003153 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003154 continue;
3155
Ingo Molnardd41f592007-07-09 18:51:59 +02003156 if (wl > max_load) {
3157 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003158 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 }
3160 }
3161
3162 return busiest;
3163}
3164
3165/*
Nick Piggin77391d72005-06-25 14:57:30 -07003166 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3167 * so long as it is large enough.
3168 */
3169#define MAX_PINNED_INTERVAL 512
3170
3171/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3173 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003175static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003176 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003177 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178{
Peter Williams43010652007-08-09 11:16:46 +02003179 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003182 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003183 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003184
Mike Travis7c16ec52008-04-04 18:11:11 -07003185 cpus_setall(*cpus);
3186
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003187 /*
3188 * When power savings policy is enabled for the parent domain, idle
3189 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003190 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003191 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003192 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003193 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003194 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003195 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Ingo Molnar2d723762007-10-15 17:00:12 +02003197 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003199redo:
3200 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003201 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003202
Chen, Kenneth W06066712006-12-10 02:20:35 -08003203 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003204 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 if (!group) {
3207 schedstat_inc(sd, lb_nobusyg[idle]);
3208 goto out_balanced;
3209 }
3210
Mike Travis7c16ec52008-04-04 18:11:11 -07003211 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 if (!busiest) {
3213 schedstat_inc(sd, lb_nobusyq[idle]);
3214 goto out_balanced;
3215 }
3216
Nick Piggindb935db2005-06-25 14:57:11 -07003217 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218
3219 schedstat_add(sd, lb_imbalance[idle], imbalance);
3220
Peter Williams43010652007-08-09 11:16:46 +02003221 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 if (busiest->nr_running > 1) {
3223 /*
3224 * Attempt to move tasks. If find_busiest_group has found
3225 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003226 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 * correctly treated as an imbalance.
3228 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003229 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003230 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003231 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003232 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003233 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003234 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003235
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003236 /*
3237 * some other cpu did the load balance for us.
3238 */
Peter Williams43010652007-08-09 11:16:46 +02003239 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003240 resched_cpu(this_cpu);
3241
Nick Piggin81026792005-06-25 14:57:07 -07003242 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003243 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003244 cpu_clear(cpu_of(busiest), *cpus);
3245 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003246 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003247 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 }
Nick Piggin81026792005-06-25 14:57:07 -07003250
Peter Williams43010652007-08-09 11:16:46 +02003251 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 schedstat_inc(sd, lb_failed[idle]);
3253 sd->nr_balance_failed++;
3254
3255 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003257 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003258
3259 /* don't kick the migration_thread, if the curr
3260 * task on busiest cpu can't be moved to this_cpu
3261 */
3262 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003263 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003264 all_pinned = 1;
3265 goto out_one_pinned;
3266 }
3267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 if (!busiest->active_balance) {
3269 busiest->active_balance = 1;
3270 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003271 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003273 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003274 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 wake_up_process(busiest->migration_thread);
3276
3277 /*
3278 * We've kicked active balancing, reset the failure
3279 * counter.
3280 */
Nick Piggin39507452005-06-25 14:57:09 -07003281 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 }
Nick Piggin81026792005-06-25 14:57:07 -07003283 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 sd->nr_balance_failed = 0;
3285
Nick Piggin81026792005-06-25 14:57:07 -07003286 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 /* We were unbalanced, so reset the balancing interval */
3288 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003289 } else {
3290 /*
3291 * If we've begun active balancing, start to back off. This
3292 * case may not be covered by the all_pinned logic if there
3293 * is only 1 task on the busy runqueue (because we don't call
3294 * move_tasks).
3295 */
3296 if (sd->balance_interval < sd->max_interval)
3297 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 }
3299
Peter Williams43010652007-08-09 11:16:46 +02003300 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003301 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003302 return -1;
Peter Williams43010652007-08-09 11:16:46 +02003303 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
3305out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 schedstat_inc(sd, lb_balanced[idle]);
3307
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003308 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003309
3310out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003312 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3313 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 sd->balance_interval *= 2;
3315
Ingo Molnar48f24c42006-07-03 00:25:40 -07003316 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003317 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003318 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 return 0;
3320}
3321
3322/*
3323 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3324 * tasks if there is an imbalance.
3325 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003326 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 * this_rq is locked.
3328 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003329static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003330load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3331 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332{
3333 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003334 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003336 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003337 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003338 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003339
3340 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003341
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003342 /*
3343 * When power savings policy is enabled for the parent domain, idle
3344 * sibling can pick up load irrespective of busy siblings. In this case,
3345 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003346 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003347 */
3348 if (sd->flags & SD_SHARE_CPUPOWER &&
3349 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003350 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
Ingo Molnar2d723762007-10-15 17:00:12 +02003352 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003353redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003354 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003355 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003357 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003358 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 }
3360
Mike Travis7c16ec52008-04-04 18:11:11 -07003361 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003362 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003363 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003364 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 }
3366
Nick Piggindb935db2005-06-25 14:57:11 -07003367 BUG_ON(busiest == this_rq);
3368
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003369 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003370
Peter Williams43010652007-08-09 11:16:46 +02003371 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003372 if (busiest->nr_running > 1) {
3373 /* Attempt to move tasks */
3374 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003375 /* this_rq->clock is already updated */
3376 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003377 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003378 imbalance, sd, CPU_NEWLY_IDLE,
3379 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003380 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003381
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003382 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003383 cpu_clear(cpu_of(busiest), *cpus);
3384 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003385 goto redo;
3386 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003387 }
3388
Peter Williams43010652007-08-09 11:16:46 +02003389 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003390 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003391 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3392 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003393 return -1;
3394 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003395 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Peter Williams43010652007-08-09 11:16:46 +02003397 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003398
3399out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003400 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003401 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003402 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003403 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003404 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003405
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003406 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407}
3408
3409/*
3410 * idle_balance is called by schedule() if this_cpu is about to become
3411 * idle. Attempts to pull tasks from other CPUs.
3412 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003413static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414{
3415 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003416 int pulled_task = -1;
3417 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003418 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
3420 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003421 unsigned long interval;
3422
3423 if (!(sd->flags & SD_LOAD_BALANCE))
3424 continue;
3425
3426 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003427 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003428 pulled_task = load_balance_newidle(this_cpu, this_rq,
3429 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003430
3431 interval = msecs_to_jiffies(sd->balance_interval);
3432 if (time_after(next_balance, sd->last_balance + interval))
3433 next_balance = sd->last_balance + interval;
3434 if (pulled_task)
3435 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003437 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003438 /*
3439 * We are going idle. next_balance may be set based on
3440 * a busy processor. So reset next_balance.
3441 */
3442 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444}
3445
3446/*
3447 * active_load_balance is run by migration threads. It pushes running tasks
3448 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3449 * running on each physical CPU where possible, and avoids physical /
3450 * logical imbalances.
3451 *
3452 * Called with busiest_rq locked.
3453 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003454static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455{
Nick Piggin39507452005-06-25 14:57:09 -07003456 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003457 struct sched_domain *sd;
3458 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003459
Ingo Molnar48f24c42006-07-03 00:25:40 -07003460 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003461 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003462 return;
3463
3464 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 /*
Nick Piggin39507452005-06-25 14:57:09 -07003467 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003468 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003469 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 */
Nick Piggin39507452005-06-25 14:57:09 -07003471 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Nick Piggin39507452005-06-25 14:57:09 -07003473 /* move a task from busiest_rq to target_rq */
3474 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003475 update_rq_clock(busiest_rq);
3476 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477
Nick Piggin39507452005-06-25 14:57:09 -07003478 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003479 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003480 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003481 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003482 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Ingo Molnar48f24c42006-07-03 00:25:40 -07003485 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003486 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
Peter Williams43010652007-08-09 11:16:46 +02003488 if (move_one_task(target_rq, target_cpu, busiest_rq,
3489 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003490 schedstat_inc(sd, alb_pushed);
3491 else
3492 schedstat_inc(sd, alb_failed);
3493 }
Nick Piggin39507452005-06-25 14:57:09 -07003494 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495}
3496
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003497#ifdef CONFIG_NO_HZ
3498static struct {
3499 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003500 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003501} nohz ____cacheline_aligned = {
3502 .load_balancer = ATOMIC_INIT(-1),
3503 .cpu_mask = CPU_MASK_NONE,
3504};
3505
Christoph Lameter7835b982006-12-10 02:20:22 -08003506/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003507 * This routine will try to nominate the ilb (idle load balancing)
3508 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3509 * load balancing on behalf of all those cpus. If all the cpus in the system
3510 * go into this tickless mode, then there will be no ilb owner (as there is
3511 * no need for one) and all the cpus will sleep till the next wakeup event
3512 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003513 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003514 * For the ilb owner, tick is not stopped. And this tick will be used
3515 * for idle load balancing. ilb owner will still be part of
3516 * nohz.cpu_mask..
3517 *
3518 * While stopping the tick, this cpu will become the ilb owner if there
3519 * is no other owner. And will be the owner till that cpu becomes busy
3520 * or if all cpus in the system stop their ticks at which point
3521 * there is no need for ilb owner.
3522 *
3523 * When the ilb owner becomes busy, it nominates another owner, during the
3524 * next busy scheduler_tick()
3525 */
3526int select_nohz_load_balancer(int stop_tick)
3527{
3528 int cpu = smp_processor_id();
3529
3530 if (stop_tick) {
3531 cpu_set(cpu, nohz.cpu_mask);
3532 cpu_rq(cpu)->in_nohz_recently = 1;
3533
3534 /*
3535 * If we are going offline and still the leader, give up!
3536 */
3537 if (cpu_is_offline(cpu) &&
3538 atomic_read(&nohz.load_balancer) == cpu) {
3539 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3540 BUG();
3541 return 0;
3542 }
3543
3544 /* time for ilb owner also to sleep */
3545 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3546 if (atomic_read(&nohz.load_balancer) == cpu)
3547 atomic_set(&nohz.load_balancer, -1);
3548 return 0;
3549 }
3550
3551 if (atomic_read(&nohz.load_balancer) == -1) {
3552 /* make me the ilb owner */
3553 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3554 return 1;
3555 } else if (atomic_read(&nohz.load_balancer) == cpu)
3556 return 1;
3557 } else {
3558 if (!cpu_isset(cpu, nohz.cpu_mask))
3559 return 0;
3560
3561 cpu_clear(cpu, nohz.cpu_mask);
3562
3563 if (atomic_read(&nohz.load_balancer) == cpu)
3564 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3565 BUG();
3566 }
3567 return 0;
3568}
3569#endif
3570
3571static DEFINE_SPINLOCK(balancing);
3572
3573/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003574 * It checks each scheduling domain to see if it is due to be balanced,
3575 * and initiates a balancing operation if so.
3576 *
3577 * Balancing parameters are set up in arch_init_sched_domains.
3578 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003579static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003580{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003581 int balance = 1;
3582 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003583 unsigned long interval;
3584 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003585 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003586 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003587 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003588 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003590 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 if (!(sd->flags & SD_LOAD_BALANCE))
3592 continue;
3593
3594 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003595 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 interval *= sd->busy_factor;
3597
3598 /* scale ms to jiffies */
3599 interval = msecs_to_jiffies(interval);
3600 if (unlikely(!interval))
3601 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003602 if (interval > HZ*NR_CPUS/10)
3603 interval = HZ*NR_CPUS/10;
3604
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Christoph Lameter08c183f2006-12-10 02:20:29 -08003606 if (sd->flags & SD_SERIALIZE) {
3607 if (!spin_trylock(&balancing))
3608 goto out;
3609 }
3610
Christoph Lameterc9819f42006-12-10 02:20:25 -08003611 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003612 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003613 /*
3614 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003615 * longer idle, or one of our SMT siblings is
3616 * not idle.
3617 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003618 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003620 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003622 if (sd->flags & SD_SERIALIZE)
3623 spin_unlock(&balancing);
3624out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003625 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003626 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003627 update_next_balance = 1;
3628 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003629
3630 /*
3631 * Stop the load balance at this level. There is another
3632 * CPU in our sched group which is doing load balancing more
3633 * actively.
3634 */
3635 if (!balance)
3636 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003638
3639 /*
3640 * next_balance will be updated only when there is a need.
3641 * When the cpu is attached to null domain for ex, it will not be
3642 * updated.
3643 */
3644 if (likely(update_next_balance))
3645 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003646}
3647
3648/*
3649 * run_rebalance_domains is triggered when needed from the scheduler tick.
3650 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3651 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3652 */
3653static void run_rebalance_domains(struct softirq_action *h)
3654{
Ingo Molnardd41f592007-07-09 18:51:59 +02003655 int this_cpu = smp_processor_id();
3656 struct rq *this_rq = cpu_rq(this_cpu);
3657 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3658 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003659
Ingo Molnardd41f592007-07-09 18:51:59 +02003660 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003661
3662#ifdef CONFIG_NO_HZ
3663 /*
3664 * If this cpu is the owner for idle load balancing, then do the
3665 * balancing on behalf of the other idle cpus whose ticks are
3666 * stopped.
3667 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003668 if (this_rq->idle_at_tick &&
3669 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003670 cpumask_t cpus = nohz.cpu_mask;
3671 struct rq *rq;
3672 int balance_cpu;
3673
Ingo Molnardd41f592007-07-09 18:51:59 +02003674 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003675 for_each_cpu_mask(balance_cpu, cpus) {
3676 /*
3677 * If this cpu gets work to do, stop the load balancing
3678 * work being done for other cpus. Next load
3679 * balancing owner will pick it up.
3680 */
3681 if (need_resched())
3682 break;
3683
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003684 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003685
3686 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003687 if (time_after(this_rq->next_balance, rq->next_balance))
3688 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003689 }
3690 }
3691#endif
3692}
3693
3694/*
3695 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3696 *
3697 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3698 * idle load balancing owner or decide to stop the periodic load balancing,
3699 * if the whole system is idle.
3700 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003701static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003702{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003703#ifdef CONFIG_NO_HZ
3704 /*
3705 * If we were in the nohz mode recently and busy at the current
3706 * scheduler tick, then check if we need to nominate new idle
3707 * load balancer.
3708 */
3709 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3710 rq->in_nohz_recently = 0;
3711
3712 if (atomic_read(&nohz.load_balancer) == cpu) {
3713 cpu_clear(cpu, nohz.cpu_mask);
3714 atomic_set(&nohz.load_balancer, -1);
3715 }
3716
3717 if (atomic_read(&nohz.load_balancer) == -1) {
3718 /*
3719 * simple selection for now: Nominate the
3720 * first cpu in the nohz list to be the next
3721 * ilb owner.
3722 *
3723 * TBD: Traverse the sched domains and nominate
3724 * the nearest cpu in the nohz.cpu_mask.
3725 */
3726 int ilb = first_cpu(nohz.cpu_mask);
3727
Mike Travis434d53b2008-04-04 18:11:04 -07003728 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003729 resched_cpu(ilb);
3730 }
3731 }
3732
3733 /*
3734 * If this cpu is idle and doing idle load balancing for all the
3735 * cpus with ticks stopped, is it time for that to stop?
3736 */
3737 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3738 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3739 resched_cpu(cpu);
3740 return;
3741 }
3742
3743 /*
3744 * If this cpu is idle and the idle load balancing is done by
3745 * someone else, then no need raise the SCHED_SOFTIRQ
3746 */
3747 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3748 cpu_isset(cpu, nohz.cpu_mask))
3749 return;
3750#endif
3751 if (time_after_eq(jiffies, rq->next_balance))
3752 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753}
Ingo Molnardd41f592007-07-09 18:51:59 +02003754
3755#else /* CONFIG_SMP */
3756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757/*
3758 * on UP we do not need to balance between CPUs:
3759 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003760static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761{
3762}
Ingo Molnardd41f592007-07-09 18:51:59 +02003763
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764#endif
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766DEFINE_PER_CPU(struct kernel_stat, kstat);
3767
3768EXPORT_PER_CPU_SYMBOL(kstat);
3769
3770/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003771 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3772 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003774unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003777 u64 ns, delta_exec;
3778 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003779
Ingo Molnar41b86e92007-07-09 18:51:58 +02003780 rq = task_rq_lock(p, &flags);
3781 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003782 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003783 update_rq_clock(rq);
3784 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003785 if ((s64)delta_exec > 0)
3786 ns += delta_exec;
3787 }
3788 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003789
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 return ns;
3791}
3792
3793/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 * Account user cpu time to a process.
3795 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 * @cputime: the cpu time spent in user space since the last update
3797 */
3798void account_user_time(struct task_struct *p, cputime_t cputime)
3799{
3800 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3801 cputime64_t tmp;
3802
3803 p->utime = cputime_add(p->utime, cputime);
3804
3805 /* Add user time to cpustat. */
3806 tmp = cputime_to_cputime64(cputime);
3807 if (TASK_NICE(p) > 0)
3808 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3809 else
3810 cpustat->user = cputime64_add(cpustat->user, tmp);
3811}
3812
3813/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003814 * Account guest cpu time to a process.
3815 * @p: the process that the cpu time gets accounted to
3816 * @cputime: the cpu time spent in virtual machine since the last update
3817 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003818static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003819{
3820 cputime64_t tmp;
3821 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3822
3823 tmp = cputime_to_cputime64(cputime);
3824
3825 p->utime = cputime_add(p->utime, cputime);
3826 p->gtime = cputime_add(p->gtime, cputime);
3827
3828 cpustat->user = cputime64_add(cpustat->user, tmp);
3829 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3830}
3831
3832/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003833 * Account scaled user cpu time to a process.
3834 * @p: the process that the cpu time gets accounted to
3835 * @cputime: the cpu time spent in user space since the last update
3836 */
3837void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3838{
3839 p->utimescaled = cputime_add(p->utimescaled, cputime);
3840}
3841
3842/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 * Account system cpu time to a process.
3844 * @p: the process that the cpu time gets accounted to
3845 * @hardirq_offset: the offset to subtract from hardirq_count()
3846 * @cputime: the cpu time spent in kernel space since the last update
3847 */
3848void account_system_time(struct task_struct *p, int hardirq_offset,
3849 cputime_t cputime)
3850{
3851 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003852 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 cputime64_t tmp;
3854
Christian Borntraeger97783852007-11-15 20:57:39 +01003855 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
3856 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003857
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 p->stime = cputime_add(p->stime, cputime);
3859
3860 /* Add system time to cpustat. */
3861 tmp = cputime_to_cputime64(cputime);
3862 if (hardirq_count() - hardirq_offset)
3863 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3864 else if (softirq_count())
3865 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003866 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003868 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3870 else
3871 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3872 /* Account for system time used */
3873 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874}
3875
3876/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003877 * Account scaled system cpu time to a process.
3878 * @p: the process that the cpu time gets accounted to
3879 * @hardirq_offset: the offset to subtract from hardirq_count()
3880 * @cputime: the cpu time spent in kernel space since the last update
3881 */
3882void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3883{
3884 p->stimescaled = cputime_add(p->stimescaled, cputime);
3885}
3886
3887/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 * Account for involuntary wait time.
3889 * @p: the process from which the cpu time has been stolen
3890 * @steal: the cpu time spent in involuntary wait
3891 */
3892void account_steal_time(struct task_struct *p, cputime_t steal)
3893{
3894 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3895 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003896 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
3898 if (p == rq->idle) {
3899 p->stime = cputime_add(p->stime, steal);
3900 if (atomic_read(&rq->nr_iowait) > 0)
3901 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3902 else
3903 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003904 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3906}
3907
Christoph Lameter7835b982006-12-10 02:20:22 -08003908/*
3909 * This function gets called by the timer code, with HZ frequency.
3910 * We call it with interrupts disabled.
3911 *
3912 * It also gets called by the fork code, when changing the parent's
3913 * timeslices.
3914 */
3915void scheduler_tick(void)
3916{
Christoph Lameter7835b982006-12-10 02:20:22 -08003917 int cpu = smp_processor_id();
3918 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003919 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003920 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003921
Ingo Molnardd41f592007-07-09 18:51:59 +02003922 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003923 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003924 /*
3925 * Let rq->clock advance by at least TICK_NSEC:
3926 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003927 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02003928 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01003929 rq->clock_underflows++;
3930 }
Ingo Molnar529c7722007-08-10 23:05:11 +02003931 rq->tick_timestamp = rq->clock;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02003932 update_last_tick_seen(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003933 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003934 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02003935 spin_unlock(&rq->lock);
3936
Christoph Lametere418e1c2006-12-10 02:20:23 -08003937#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003938 rq->idle_at_tick = idle_cpu(cpu);
3939 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003940#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941}
3942
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3944
Srinivasa Ds43627582008-02-23 15:24:04 -08003945void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946{
3947 /*
3948 * Underflow?
3949 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003950 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3951 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 preempt_count() += val;
3953 /*
3954 * Spinlock count overflowing soon?
3955 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003956 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3957 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958}
3959EXPORT_SYMBOL(add_preempt_count);
3960
Srinivasa Ds43627582008-02-23 15:24:04 -08003961void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962{
3963 /*
3964 * Underflow?
3965 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003966 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3967 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 /*
3969 * Is the spinlock portion underflowing?
3970 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003971 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3972 !(preempt_count() & PREEMPT_MASK)))
3973 return;
3974
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 preempt_count() -= val;
3976}
3977EXPORT_SYMBOL(sub_preempt_count);
3978
3979#endif
3980
3981/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003982 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003984static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985{
Satyam Sharma838225b2007-10-24 18:23:50 +02003986 struct pt_regs *regs = get_irq_regs();
3987
3988 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3989 prev->comm, prev->pid, preempt_count());
3990
Ingo Molnardd41f592007-07-09 18:51:59 +02003991 debug_show_held_locks(prev);
3992 if (irqs_disabled())
3993 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003994
3995 if (regs)
3996 show_regs(regs);
3997 else
3998 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Ingo Molnardd41f592007-07-09 18:51:59 +02004001/*
4002 * Various schedule()-time debugging checks and statistics:
4003 */
4004static inline void schedule_debug(struct task_struct *prev)
4005{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004007 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 * schedule() atomically, we ignore that path for now.
4009 * Otherwise, whine if we are scheduling when we should not be.
4010 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004011 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
4012 __schedule_bug(prev);
4013
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4015
Ingo Molnar2d723762007-10-15 17:00:12 +02004016 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004017#ifdef CONFIG_SCHEDSTATS
4018 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004019 schedstat_inc(this_rq(), bkl_count);
4020 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004021 }
4022#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004023}
4024
4025/*
4026 * Pick up the highest-prio task:
4027 */
4028static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004029pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004030{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004031 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004032 struct task_struct *p;
4033
4034 /*
4035 * Optimization: we know that if all tasks are in
4036 * the fair class we can call that function directly:
4037 */
4038 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004039 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004040 if (likely(p))
4041 return p;
4042 }
4043
4044 class = sched_class_highest;
4045 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004046 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004047 if (p)
4048 return p;
4049 /*
4050 * Will never be NULL as the idle class always
4051 * returns a non-NULL p:
4052 */
4053 class = class->next;
4054 }
4055}
4056
4057/*
4058 * schedule() is the main scheduler function.
4059 */
4060asmlinkage void __sched schedule(void)
4061{
4062 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004063 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004064 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004065 int cpu;
4066
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067need_resched:
4068 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004069 cpu = smp_processor_id();
4070 rq = cpu_rq(cpu);
4071 rcu_qsctr_inc(cpu);
4072 prev = rq->curr;
4073 switch_count = &prev->nivcsw;
4074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 release_kernel_lock(prev);
4076need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Ingo Molnardd41f592007-07-09 18:51:59 +02004078 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004080 hrtick_clear(rq);
4081
Ingo Molnar1e819952007-10-15 17:00:13 +02004082 /*
4083 * Do the rq-clock update outside the rq lock:
4084 */
4085 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02004086 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004087 spin_lock(&rq->lock);
4088 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Ingo Molnardd41f592007-07-09 18:51:59 +02004090 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4091 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004092 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004093 prev->state = TASK_RUNNING;
4094 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004095 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004096 }
4097 switch_count = &prev->nvcsw;
4098 }
4099
Steven Rostedt9a897c52008-01-25 21:08:22 +01004100#ifdef CONFIG_SMP
4101 if (prev->sched_class->pre_schedule)
4102 prev->sched_class->pre_schedule(rq, prev);
4103#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004104
Ingo Molnardd41f592007-07-09 18:51:59 +02004105 if (unlikely(!rq->nr_running))
4106 idle_balance(cpu, rq);
4107
Ingo Molnar31ee5292007-08-09 11:16:49 +02004108 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004109 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
4111 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02004112
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 rq->nr_switches++;
4115 rq->curr = next;
4116 ++*switch_count;
4117
Ingo Molnardd41f592007-07-09 18:51:59 +02004118 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004119 /*
4120 * the context switch might have flipped the stack from under
4121 * us, hence refresh the local variables.
4122 */
4123 cpu = smp_processor_id();
4124 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 } else
4126 spin_unlock_irq(&rq->lock);
4127
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004128 hrtick_set(rq);
4129
4130 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004132
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 preempt_enable_no_resched();
4134 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4135 goto need_resched;
4136}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137EXPORT_SYMBOL(schedule);
4138
4139#ifdef CONFIG_PREEMPT
4140/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004141 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004142 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 * occur there and call schedule directly.
4144 */
4145asmlinkage void __sched preempt_schedule(void)
4146{
4147 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 struct task_struct *task = current;
4149 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004150
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 /*
4152 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004153 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004155 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 return;
4157
Andi Kleen3a5c3592007-10-15 17:00:14 +02004158 do {
4159 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Andi Kleen3a5c3592007-10-15 17:00:14 +02004161 /*
4162 * We keep the big kernel semaphore locked, but we
4163 * clear ->lock_depth so that schedule() doesnt
4164 * auto-release the semaphore:
4165 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004166 saved_lock_depth = task->lock_depth;
4167 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004168 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004169 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004170 sub_preempt_count(PREEMPT_ACTIVE);
4171
4172 /*
4173 * Check again in case we missed a preemption opportunity
4174 * between schedule and now.
4175 */
4176 barrier();
4177 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179EXPORT_SYMBOL(preempt_schedule);
4180
4181/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004182 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 * off of irq context.
4184 * Note, that this is called and return with irqs disabled. This will
4185 * protect us against recursive calling from irq.
4186 */
4187asmlinkage void __sched preempt_schedule_irq(void)
4188{
4189 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 struct task_struct *task = current;
4191 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004192
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004193 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 BUG_ON(ti->preempt_count || !irqs_disabled());
4195
Andi Kleen3a5c3592007-10-15 17:00:14 +02004196 do {
4197 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Andi Kleen3a5c3592007-10-15 17:00:14 +02004199 /*
4200 * We keep the big kernel semaphore locked, but we
4201 * clear ->lock_depth so that schedule() doesnt
4202 * auto-release the semaphore:
4203 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004204 saved_lock_depth = task->lock_depth;
4205 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004206 local_irq_enable();
4207 schedule();
4208 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004209 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004210 sub_preempt_count(PREEMPT_ACTIVE);
4211
4212 /*
4213 * Check again in case we missed a preemption opportunity
4214 * between schedule and now.
4215 */
4216 barrier();
4217 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218}
4219
4220#endif /* CONFIG_PREEMPT */
4221
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004222int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4223 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004225 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227EXPORT_SYMBOL(default_wake_function);
4228
4229/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004230 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4231 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 * number) then we wake all the non-exclusive tasks and one exclusive task.
4233 *
4234 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004235 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4237 */
4238static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4239 int nr_exclusive, int sync, void *key)
4240{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004241 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004243 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004244 unsigned flags = curr->flags;
4245
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004247 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 break;
4249 }
4250}
4251
4252/**
4253 * __wake_up - wake up threads blocked on a waitqueue.
4254 * @q: the waitqueue
4255 * @mode: which threads
4256 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004257 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004259void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004260 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261{
4262 unsigned long flags;
4263
4264 spin_lock_irqsave(&q->lock, flags);
4265 __wake_up_common(q, mode, nr_exclusive, 0, key);
4266 spin_unlock_irqrestore(&q->lock, flags);
4267}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268EXPORT_SYMBOL(__wake_up);
4269
4270/*
4271 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4272 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004273void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274{
4275 __wake_up_common(q, mode, 1, 0, NULL);
4276}
4277
4278/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004279 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 * @q: the waitqueue
4281 * @mode: which threads
4282 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4283 *
4284 * The sync wakeup differs that the waker knows that it will schedule
4285 * away soon, so while the target thread will be woken up, it will not
4286 * be migrated to another CPU - ie. the two threads are 'synchronized'
4287 * with each other. This can prevent needless bouncing between CPUs.
4288 *
4289 * On UP it can prevent extra preemption.
4290 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004291void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004292__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293{
4294 unsigned long flags;
4295 int sync = 1;
4296
4297 if (unlikely(!q))
4298 return;
4299
4300 if (unlikely(!nr_exclusive))
4301 sync = 0;
4302
4303 spin_lock_irqsave(&q->lock, flags);
4304 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4305 spin_unlock_irqrestore(&q->lock, flags);
4306}
4307EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4308
Ingo Molnarb15136e2007-10-24 18:23:48 +02004309void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310{
4311 unsigned long flags;
4312
4313 spin_lock_irqsave(&x->wait.lock, flags);
4314 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004315 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 spin_unlock_irqrestore(&x->wait.lock, flags);
4317}
4318EXPORT_SYMBOL(complete);
4319
Ingo Molnarb15136e2007-10-24 18:23:48 +02004320void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321{
4322 unsigned long flags;
4323
4324 spin_lock_irqsave(&x->wait.lock, flags);
4325 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004326 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 spin_unlock_irqrestore(&x->wait.lock, flags);
4328}
4329EXPORT_SYMBOL(complete_all);
4330
Andi Kleen8cbbe862007-10-15 17:00:14 +02004331static inline long __sched
4332do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 if (!x->done) {
4335 DECLARE_WAITQUEUE(wait, current);
4336
4337 wait.flags |= WQ_FLAG_EXCLUSIVE;
4338 __add_wait_queue_tail(&x->wait, &wait);
4339 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004340 if ((state == TASK_INTERRUPTIBLE &&
4341 signal_pending(current)) ||
4342 (state == TASK_KILLABLE &&
4343 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004344 __remove_wait_queue(&x->wait, &wait);
4345 return -ERESTARTSYS;
4346 }
4347 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004349 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004351 if (!timeout) {
4352 __remove_wait_queue(&x->wait, &wait);
4353 return timeout;
4354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 } while (!x->done);
4356 __remove_wait_queue(&x->wait, &wait);
4357 }
4358 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004359 return timeout;
4360}
4361
4362static long __sched
4363wait_for_common(struct completion *x, long timeout, int state)
4364{
4365 might_sleep();
4366
4367 spin_lock_irq(&x->wait.lock);
4368 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004370 return timeout;
4371}
4372
Ingo Molnarb15136e2007-10-24 18:23:48 +02004373void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004374{
4375 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376}
4377EXPORT_SYMBOL(wait_for_completion);
4378
Ingo Molnarb15136e2007-10-24 18:23:48 +02004379unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4381{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004382 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383}
4384EXPORT_SYMBOL(wait_for_completion_timeout);
4385
Andi Kleen8cbbe862007-10-15 17:00:14 +02004386int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387{
Andi Kleen51e97992007-10-18 21:32:55 +02004388 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4389 if (t == -ERESTARTSYS)
4390 return t;
4391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392}
4393EXPORT_SYMBOL(wait_for_completion_interruptible);
4394
Ingo Molnarb15136e2007-10-24 18:23:48 +02004395unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396wait_for_completion_interruptible_timeout(struct completion *x,
4397 unsigned long timeout)
4398{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004399 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400}
4401EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4402
Matthew Wilcox009e5772007-12-06 12:29:54 -05004403int __sched wait_for_completion_killable(struct completion *x)
4404{
4405 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4406 if (t == -ERESTARTSYS)
4407 return t;
4408 return 0;
4409}
4410EXPORT_SYMBOL(wait_for_completion_killable);
4411
Andi Kleen8cbbe862007-10-15 17:00:14 +02004412static long __sched
4413sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004414{
4415 unsigned long flags;
4416 wait_queue_t wait;
4417
4418 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Andi Kleen8cbbe862007-10-15 17:00:14 +02004420 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
Andi Kleen8cbbe862007-10-15 17:00:14 +02004422 spin_lock_irqsave(&q->lock, flags);
4423 __add_wait_queue(q, &wait);
4424 spin_unlock(&q->lock);
4425 timeout = schedule_timeout(timeout);
4426 spin_lock_irq(&q->lock);
4427 __remove_wait_queue(q, &wait);
4428 spin_unlock_irqrestore(&q->lock, flags);
4429
4430 return timeout;
4431}
4432
4433void __sched interruptible_sleep_on(wait_queue_head_t *q)
4434{
4435 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437EXPORT_SYMBOL(interruptible_sleep_on);
4438
Ingo Molnar0fec1712007-07-09 18:52:01 +02004439long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004440interruptible_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_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4445
Ingo Molnar0fec1712007-07-09 18:52:01 +02004446void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004448 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450EXPORT_SYMBOL(sleep_on);
4451
Ingo Molnar0fec1712007-07-09 18:52:01 +02004452long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004454 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456EXPORT_SYMBOL(sleep_on_timeout);
4457
Ingo Molnarb29739f2006-06-27 02:54:51 -07004458#ifdef CONFIG_RT_MUTEXES
4459
4460/*
4461 * rt_mutex_setprio - set the current priority of a task
4462 * @p: task
4463 * @prio: prio value (kernel-internal form)
4464 *
4465 * This function changes the 'effective' priority of a task. It does
4466 * not touch ->normal_prio like __setscheduler().
4467 *
4468 * Used by the rt_mutex code to implement priority inheritance logic.
4469 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004470void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004471{
4472 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004473 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004474 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004475 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004476
4477 BUG_ON(prio < 0 || prio > MAX_PRIO);
4478
4479 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004480 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004481
Andrew Mortond5f9f942007-05-08 20:27:06 -07004482 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004483 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004484 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004485 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004486 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004487 if (running)
4488 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004489
4490 if (rt_prio(prio))
4491 p->sched_class = &rt_sched_class;
4492 else
4493 p->sched_class = &fair_sched_class;
4494
Ingo Molnarb29739f2006-06-27 02:54:51 -07004495 p->prio = prio;
4496
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004497 if (running)
4498 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004499 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004500 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004501
4502 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004503 }
4504 task_rq_unlock(rq, &flags);
4505}
4506
4507#endif
4508
Ingo Molnar36c8b582006-07-03 00:25:41 -07004509void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510{
Ingo Molnardd41f592007-07-09 18:51:59 +02004511 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004513 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
4515 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4516 return;
4517 /*
4518 * We have to be careful, if called from sys_setpriority(),
4519 * the task might be in the middle of scheduling on another CPU.
4520 */
4521 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004522 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 /*
4524 * The RT priorities are set via sched_setscheduler(), but we still
4525 * allow the 'normal' nice value to be set - but as expected
4526 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004527 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004529 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 p->static_prio = NICE_TO_PRIO(nice);
4531 goto out_unlock;
4532 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004533 on_rq = p->se.on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004534 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004535 dequeue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004536 dec_load(rq, p);
4537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004540 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004541 old_prio = p->prio;
4542 p->prio = effective_prio(p);
4543 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Ingo Molnardd41f592007-07-09 18:51:59 +02004545 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004546 enqueue_task(rq, p, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01004547 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004549 * If the task increased its priority or is running and
4550 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004552 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 resched_task(rq->curr);
4554 }
4555out_unlock:
4556 task_rq_unlock(rq, &flags);
4557}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558EXPORT_SYMBOL(set_user_nice);
4559
Matt Mackalle43379f2005-05-01 08:59:00 -07004560/*
4561 * can_nice - check if a task can reduce its nice value
4562 * @p: task
4563 * @nice: nice value
4564 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004565int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004566{
Matt Mackall024f4742005-08-18 11:24:19 -07004567 /* convert nice value [19,-20] to rlimit style value [1,40] */
4568 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004569
Matt Mackalle43379f2005-05-01 08:59:00 -07004570 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4571 capable(CAP_SYS_NICE));
4572}
4573
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574#ifdef __ARCH_WANT_SYS_NICE
4575
4576/*
4577 * sys_nice - change the priority of the current process.
4578 * @increment: priority increment
4579 *
4580 * sys_setpriority is a more generic, but much slower function that
4581 * does similar things.
4582 */
4583asmlinkage long sys_nice(int increment)
4584{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004585 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586
4587 /*
4588 * Setpriority might change our priority at the same moment.
4589 * We don't have to worry. Conceptually one call occurs first
4590 * and we have a single winner.
4591 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004592 if (increment < -40)
4593 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 if (increment > 40)
4595 increment = 40;
4596
4597 nice = PRIO_TO_NICE(current->static_prio) + increment;
4598 if (nice < -20)
4599 nice = -20;
4600 if (nice > 19)
4601 nice = 19;
4602
Matt Mackalle43379f2005-05-01 08:59:00 -07004603 if (increment < 0 && !can_nice(current, nice))
4604 return -EPERM;
4605
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 retval = security_task_setnice(current, nice);
4607 if (retval)
4608 return retval;
4609
4610 set_user_nice(current, nice);
4611 return 0;
4612}
4613
4614#endif
4615
4616/**
4617 * task_prio - return the priority value of a given task.
4618 * @p: the task in question.
4619 *
4620 * This is the priority value as seen by users in /proc.
4621 * RT tasks are offset by -200. Normal tasks are centered
4622 * around 0, value goes from -16 to +15.
4623 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004624int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625{
4626 return p->prio - MAX_RT_PRIO;
4627}
4628
4629/**
4630 * task_nice - return the nice value of a given task.
4631 * @p: the task in question.
4632 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004633int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634{
4635 return TASK_NICE(p);
4636}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004637EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638
4639/**
4640 * idle_cpu - is a given cpu idle currently?
4641 * @cpu: the processor in question.
4642 */
4643int idle_cpu(int cpu)
4644{
4645 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4646}
4647
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648/**
4649 * idle_task - return the idle task for a given cpu.
4650 * @cpu: the processor in question.
4651 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004652struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653{
4654 return cpu_rq(cpu)->idle;
4655}
4656
4657/**
4658 * find_process_by_pid - find a process with a matching PID value.
4659 * @pid: the pid in question.
4660 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004661static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004663 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664}
4665
4666/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004667static void
4668__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669{
Ingo Molnardd41f592007-07-09 18:51:59 +02004670 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004671
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004673 switch (p->policy) {
4674 case SCHED_NORMAL:
4675 case SCHED_BATCH:
4676 case SCHED_IDLE:
4677 p->sched_class = &fair_sched_class;
4678 break;
4679 case SCHED_FIFO:
4680 case SCHED_RR:
4681 p->sched_class = &rt_sched_class;
4682 break;
4683 }
4684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004686 p->normal_prio = normal_prio(p);
4687 /* we are holding p->pi_lock already */
4688 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004689 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690}
4691
4692/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004693 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 * @p: the task in question.
4695 * @policy: new policy.
4696 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004697 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004698 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004700int sched_setscheduler(struct task_struct *p, int policy,
4701 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004703 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004705 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004706 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707
Steven Rostedt66e53932006-06-27 02:54:44 -07004708 /* may grab non-irq protected spin_locks */
4709 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710recheck:
4711 /* double check policy once rq lock held */
4712 if (policy < 0)
4713 policy = oldpolicy = p->policy;
4714 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004715 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4716 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004717 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 /*
4719 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004720 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4721 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 */
4723 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004724 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004725 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004727 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 return -EINVAL;
4729
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004730 /*
4731 * Allow unprivileged RT tasks to decrease priority:
4732 */
4733 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004734 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004735 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004736
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004737 if (!lock_task_sighand(p, &flags))
4738 return -ESRCH;
4739 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4740 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004741
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004742 /* can't set/change the rt policy */
4743 if (policy != p->policy && !rlim_rtprio)
4744 return -EPERM;
4745
4746 /* can't increase priority */
4747 if (param->sched_priority > p->rt_priority &&
4748 param->sched_priority > rlim_rtprio)
4749 return -EPERM;
4750 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004751 /*
4752 * Like positive nice levels, dont allow tasks to
4753 * move out of SCHED_IDLE either:
4754 */
4755 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4756 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004757
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004758 /* can't change other user's priorities */
4759 if ((current->euid != p->euid) &&
4760 (current->euid != p->uid))
4761 return -EPERM;
4762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004764#ifdef CONFIG_RT_GROUP_SCHED
4765 /*
4766 * Do not allow realtime tasks into groups that have no runtime
4767 * assigned.
4768 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02004769 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004770 return -EPERM;
4771#endif
4772
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 retval = security_task_setscheduler(p, policy, param);
4774 if (retval)
4775 return retval;
4776 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004777 * make sure no PI-waiters arrive (or leave) while we are
4778 * changing the priority of the task:
4779 */
4780 spin_lock_irqsave(&p->pi_lock, flags);
4781 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 * To be able to change p->policy safely, the apropriate
4783 * runqueue lock must be held.
4784 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004785 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 /* recheck policy now with rq lock held */
4787 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4788 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004789 __task_rq_unlock(rq);
4790 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 goto recheck;
4792 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004793 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004794 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004795 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004796 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004797 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004798 if (running)
4799 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004800
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004802 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004803
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004804 if (running)
4805 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004806 if (on_rq) {
4807 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004808
4809 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004811 __task_rq_unlock(rq);
4812 spin_unlock_irqrestore(&p->pi_lock, flags);
4813
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004814 rt_mutex_adjust_pi(p);
4815
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 return 0;
4817}
4818EXPORT_SYMBOL_GPL(sched_setscheduler);
4819
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004820static int
4821do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 struct sched_param lparam;
4824 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004825 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
4827 if (!param || pid < 0)
4828 return -EINVAL;
4829 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4830 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004831
4832 rcu_read_lock();
4833 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004835 if (p != NULL)
4836 retval = sched_setscheduler(p, policy, &lparam);
4837 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 return retval;
4840}
4841
4842/**
4843 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4844 * @pid: the pid in question.
4845 * @policy: new policy.
4846 * @param: structure containing the new RT priority.
4847 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004848asmlinkage long
4849sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850{
Jason Baronc21761f2006-01-18 17:43:03 -08004851 /* negative values for policy are not valid */
4852 if (policy < 0)
4853 return -EINVAL;
4854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 return do_sched_setscheduler(pid, policy, param);
4856}
4857
4858/**
4859 * sys_sched_setparam - set/change the RT priority of a thread
4860 * @pid: the pid in question.
4861 * @param: structure containing the new RT priority.
4862 */
4863asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4864{
4865 return do_sched_setscheduler(pid, -1, param);
4866}
4867
4868/**
4869 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4870 * @pid: the pid in question.
4871 */
4872asmlinkage long sys_sched_getscheduler(pid_t pid)
4873{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004874 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004875 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
4877 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004878 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
4880 retval = -ESRCH;
4881 read_lock(&tasklist_lock);
4882 p = find_process_by_pid(pid);
4883 if (p) {
4884 retval = security_task_getscheduler(p);
4885 if (!retval)
4886 retval = p->policy;
4887 }
4888 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 return retval;
4890}
4891
4892/**
4893 * sys_sched_getscheduler - get the RT priority of a thread
4894 * @pid: the pid in question.
4895 * @param: structure containing the RT priority.
4896 */
4897asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4898{
4899 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004900 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004901 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902
4903 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004904 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905
4906 read_lock(&tasklist_lock);
4907 p = find_process_by_pid(pid);
4908 retval = -ESRCH;
4909 if (!p)
4910 goto out_unlock;
4911
4912 retval = security_task_getscheduler(p);
4913 if (retval)
4914 goto out_unlock;
4915
4916 lp.sched_priority = p->rt_priority;
4917 read_unlock(&tasklist_lock);
4918
4919 /*
4920 * This one might sleep, we cannot do it with a spinlock held ...
4921 */
4922 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4923
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 return retval;
4925
4926out_unlock:
4927 read_unlock(&tasklist_lock);
4928 return retval;
4929}
4930
Mike Travisb53e9212008-04-04 18:11:08 -07004931long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07004934 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004935 struct task_struct *p;
4936 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004938 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 read_lock(&tasklist_lock);
4940
4941 p = find_process_by_pid(pid);
4942 if (!p) {
4943 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004944 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 return -ESRCH;
4946 }
4947
4948 /*
4949 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004950 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 * usage count and then drop tasklist_lock.
4952 */
4953 get_task_struct(p);
4954 read_unlock(&tasklist_lock);
4955
4956 retval = -EPERM;
4957 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4958 !capable(CAP_SYS_NICE))
4959 goto out_unlock;
4960
David Quigleye7834f82006-06-23 02:03:59 -07004961 retval = security_task_setscheduler(p, 0, NULL);
4962 if (retval)
4963 goto out_unlock;
4964
Mike Travisf9a86fc2008-04-04 18:11:07 -07004965 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004967 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07004968 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969
Paul Menage8707d8b2007-10-18 23:40:22 -07004970 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07004971 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07004972 if (!cpus_subset(new_mask, cpus_allowed)) {
4973 /*
4974 * We must have raced with a concurrent cpuset
4975 * update. Just reset the cpus_allowed to the
4976 * cpuset's cpus_allowed
4977 */
4978 new_mask = cpus_allowed;
4979 goto again;
4980 }
4981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982out_unlock:
4983 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004984 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 return retval;
4986}
4987
4988static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4989 cpumask_t *new_mask)
4990{
4991 if (len < sizeof(cpumask_t)) {
4992 memset(new_mask, 0, sizeof(cpumask_t));
4993 } else if (len > sizeof(cpumask_t)) {
4994 len = sizeof(cpumask_t);
4995 }
4996 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4997}
4998
4999/**
5000 * sys_sched_setaffinity - set the cpu affinity of a process
5001 * @pid: pid of the process
5002 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5003 * @user_mask_ptr: user-space pointer to the new cpu mask
5004 */
5005asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5006 unsigned long __user *user_mask_ptr)
5007{
5008 cpumask_t new_mask;
5009 int retval;
5010
5011 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5012 if (retval)
5013 return retval;
5014
Mike Travisb53e9212008-04-04 18:11:08 -07005015 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016}
5017
5018/*
5019 * Represents all cpu's present in the system
5020 * In systems capable of hotplug, this map could dynamically grow
5021 * as new cpu's are detected in the system via any platform specific
5022 * method, such as ACPI for e.g.
5023 */
5024
Andi Kleen4cef0c62006-01-11 22:44:57 +01005025cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026EXPORT_SYMBOL(cpu_present_map);
5027
5028#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005029cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005030EXPORT_SYMBOL(cpu_online_map);
5031
Andi Kleen4cef0c62006-01-11 22:44:57 +01005032cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005033EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034#endif
5035
5036long sched_getaffinity(pid_t pid, cpumask_t *mask)
5037{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005038 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005041 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 read_lock(&tasklist_lock);
5043
5044 retval = -ESRCH;
5045 p = find_process_by_pid(pid);
5046 if (!p)
5047 goto out_unlock;
5048
David Quigleye7834f82006-06-23 02:03:59 -07005049 retval = security_task_getscheduler(p);
5050 if (retval)
5051 goto out_unlock;
5052
Jack Steiner2f7016d2006-02-01 03:05:18 -08005053 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
5055out_unlock:
5056 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005057 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
Ulrich Drepper9531b622007-08-09 11:16:46 +02005059 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060}
5061
5062/**
5063 * sys_sched_getaffinity - get the cpu affinity of a process
5064 * @pid: pid of the process
5065 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5066 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5067 */
5068asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5069 unsigned long __user *user_mask_ptr)
5070{
5071 int ret;
5072 cpumask_t mask;
5073
5074 if (len < sizeof(cpumask_t))
5075 return -EINVAL;
5076
5077 ret = sched_getaffinity(pid, &mask);
5078 if (ret < 0)
5079 return ret;
5080
5081 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5082 return -EFAULT;
5083
5084 return sizeof(cpumask_t);
5085}
5086
5087/**
5088 * sys_sched_yield - yield the current processor to other threads.
5089 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005090 * This function yields the current CPU to other tasks. If there are no
5091 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 */
5093asmlinkage long sys_sched_yield(void)
5094{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005095 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
Ingo Molnar2d723762007-10-15 17:00:12 +02005097 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005098 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099
5100 /*
5101 * Since we are going to call schedule() anyway, there's
5102 * no need to preempt or enable interrupts:
5103 */
5104 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005105 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 _raw_spin_unlock(&rq->lock);
5107 preempt_enable_no_resched();
5108
5109 schedule();
5110
5111 return 0;
5112}
5113
Andrew Mortone7b38402006-06-30 01:56:00 -07005114static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005116#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5117 __might_sleep(__FILE__, __LINE__);
5118#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005119 /*
5120 * The BKS might be reacquired before we have dropped
5121 * PREEMPT_ACTIVE, which could trigger a second
5122 * cond_resched() call.
5123 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 do {
5125 add_preempt_count(PREEMPT_ACTIVE);
5126 schedule();
5127 sub_preempt_count(PREEMPT_ACTIVE);
5128 } while (need_resched());
5129}
5130
Herbert Xu02b67cc32008-01-25 21:08:28 +01005131#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
5132int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133{
Ingo Molnar94142322006-12-29 16:48:13 -08005134 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5135 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 __cond_resched();
5137 return 1;
5138 }
5139 return 0;
5140}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005141EXPORT_SYMBOL(_cond_resched);
5142#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143
5144/*
5145 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5146 * call schedule, and on return reacquire the lock.
5147 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005148 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 * operations here to prevent schedule() from being called twice (once via
5150 * spin_unlock(), once by hand).
5151 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005152int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153{
Nick Piggin95c354f2008-01-30 13:31:20 +01005154 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005155 int ret = 0;
5156
Nick Piggin95c354f2008-01-30 13:31:20 +01005157 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005159 if (resched && need_resched())
5160 __cond_resched();
5161 else
5162 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005163 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005166 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168EXPORT_SYMBOL(cond_resched_lock);
5169
5170int __sched cond_resched_softirq(void)
5171{
5172 BUG_ON(!in_softirq());
5173
Ingo Molnar94142322006-12-29 16:48:13 -08005174 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005175 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 __cond_resched();
5177 local_bh_disable();
5178 return 1;
5179 }
5180 return 0;
5181}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182EXPORT_SYMBOL(cond_resched_softirq);
5183
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184/**
5185 * yield - yield the current processor to other threads.
5186 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005187 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 * thread runnable and calls sys_sched_yield().
5189 */
5190void __sched yield(void)
5191{
5192 set_current_state(TASK_RUNNING);
5193 sys_sched_yield();
5194}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195EXPORT_SYMBOL(yield);
5196
5197/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005198 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 * that process accounting knows that this is a task in IO wait state.
5200 *
5201 * But don't do that if it is a deliberate, throttling IO wait (this task
5202 * has set its backing_dev_info: the queue against which it should throttle)
5203 */
5204void __sched io_schedule(void)
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
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005208 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 atomic_inc(&rq->nr_iowait);
5210 schedule();
5211 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005212 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214EXPORT_SYMBOL(io_schedule);
5215
5216long __sched io_schedule_timeout(long timeout)
5217{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005218 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219 long ret;
5220
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005221 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 atomic_inc(&rq->nr_iowait);
5223 ret = schedule_timeout(timeout);
5224 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005225 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 return ret;
5227}
5228
5229/**
5230 * sys_sched_get_priority_max - return maximum RT priority.
5231 * @policy: scheduling class.
5232 *
5233 * this syscall returns the maximum rt_priority that can be used
5234 * by a given scheduling class.
5235 */
5236asmlinkage long sys_sched_get_priority_max(int policy)
5237{
5238 int ret = -EINVAL;
5239
5240 switch (policy) {
5241 case SCHED_FIFO:
5242 case SCHED_RR:
5243 ret = MAX_USER_RT_PRIO-1;
5244 break;
5245 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005246 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005247 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 ret = 0;
5249 break;
5250 }
5251 return ret;
5252}
5253
5254/**
5255 * sys_sched_get_priority_min - return minimum RT priority.
5256 * @policy: scheduling class.
5257 *
5258 * this syscall returns the minimum rt_priority that can be used
5259 * by a given scheduling class.
5260 */
5261asmlinkage long sys_sched_get_priority_min(int policy)
5262{
5263 int ret = -EINVAL;
5264
5265 switch (policy) {
5266 case SCHED_FIFO:
5267 case SCHED_RR:
5268 ret = 1;
5269 break;
5270 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005271 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005272 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 ret = 0;
5274 }
5275 return ret;
5276}
5277
5278/**
5279 * sys_sched_rr_get_interval - return the default timeslice of a process.
5280 * @pid: pid of the process.
5281 * @interval: userspace pointer to the timeslice value.
5282 *
5283 * this syscall writes the default timeslice value of a given process
5284 * into the user-space timespec buffer. A value of '0' means infinity.
5285 */
5286asmlinkage
5287long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5288{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005289 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005290 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005291 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293
5294 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005295 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296
5297 retval = -ESRCH;
5298 read_lock(&tasklist_lock);
5299 p = find_process_by_pid(pid);
5300 if (!p)
5301 goto out_unlock;
5302
5303 retval = security_task_getscheduler(p);
5304 if (retval)
5305 goto out_unlock;
5306
Ingo Molnar77034932007-12-04 17:04:39 +01005307 /*
5308 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5309 * tasks that are on an otherwise idle runqueue:
5310 */
5311 time_slice = 0;
5312 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005313 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005314 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005315 struct sched_entity *se = &p->se;
5316 unsigned long flags;
5317 struct rq *rq;
5318
5319 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005320 if (rq->cfs.load.weight)
5321 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005322 task_rq_unlock(rq, &flags);
5323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005325 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329out_unlock:
5330 read_unlock(&tasklist_lock);
5331 return retval;
5332}
5333
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005334static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005335
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005336void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005339 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005342 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005343 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005344#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005346 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005348 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349#else
5350 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005351 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005353 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354#endif
5355#ifdef CONFIG_DEBUG_STACK_USAGE
5356 {
Al Viro10ebffd2005-11-13 16:06:56 -08005357 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 while (!*n)
5359 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005360 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 }
5362#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005363 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005364 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005366 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367}
5368
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005369void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005371 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
Ingo Molnar4bd77322007-07-11 21:21:47 +02005373#if BITS_PER_LONG == 32
5374 printk(KERN_INFO
5375 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005377 printk(KERN_INFO
5378 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379#endif
5380 read_lock(&tasklist_lock);
5381 do_each_thread(g, p) {
5382 /*
5383 * reset the NMI-timeout, listing all files on a slow
5384 * console might take alot of time:
5385 */
5386 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005387 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005388 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 } while_each_thread(g, p);
5390
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005391 touch_all_softlockup_watchdogs();
5392
Ingo Molnardd41f592007-07-09 18:51:59 +02005393#ifdef CONFIG_SCHED_DEBUG
5394 sysrq_sched_debug_show();
5395#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005397 /*
5398 * Only show locks if all tasks are dumped:
5399 */
5400 if (state_filter == -1)
5401 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402}
5403
Ingo Molnar1df21052007-07-09 18:51:58 +02005404void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5405{
Ingo Molnardd41f592007-07-09 18:51:59 +02005406 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005407}
5408
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005409/**
5410 * init_idle - set up an idle thread for a given CPU
5411 * @idle: task in question
5412 * @cpu: cpu the idle task belongs to
5413 *
5414 * NOTE: this function does not set the idle thread's NEED_RESCHED
5415 * flag, to make booting more robust.
5416 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005417void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005419 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 unsigned long flags;
5421
Ingo Molnardd41f592007-07-09 18:51:59 +02005422 __sched_fork(idle);
5423 idle->se.exec_start = sched_clock();
5424
Ingo Molnarb29739f2006-06-27 02:54:51 -07005425 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005427 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428
5429 spin_lock_irqsave(&rq->lock, flags);
5430 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005431#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5432 idle->oncpu = 1;
5433#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 spin_unlock_irqrestore(&rq->lock, flags);
5435
5436 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f542005-11-13 16:06:55 -08005437 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005438
Ingo Molnardd41f592007-07-09 18:51:59 +02005439 /*
5440 * The idle tasks have their own, simple scheduling class:
5441 */
5442 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443}
5444
5445/*
5446 * In a system that switches off the HZ timer nohz_cpu_mask
5447 * indicates which cpus entered this state. This is used
5448 * in the rcu update to wait only for active cpus. For system
5449 * which do not switch off the HZ timer nohz_cpu_mask should
5450 * always be CPU_MASK_NONE.
5451 */
5452cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5453
Ingo Molnar19978ca2007-11-09 22:39:38 +01005454/*
5455 * Increase the granularity value when there are more CPUs,
5456 * because with more CPUs the 'effective latency' as visible
5457 * to users decreases. But the relationship is not linear,
5458 * so pick a second-best guess by going with the log2 of the
5459 * number of CPUs.
5460 *
5461 * This idea comes from the SD scheduler of Con Kolivas:
5462 */
5463static inline void sched_init_granularity(void)
5464{
5465 unsigned int factor = 1 + ilog2(num_online_cpus());
5466 const unsigned long limit = 200000000;
5467
5468 sysctl_sched_min_granularity *= factor;
5469 if (sysctl_sched_min_granularity > limit)
5470 sysctl_sched_min_granularity = limit;
5471
5472 sysctl_sched_latency *= factor;
5473 if (sysctl_sched_latency > limit)
5474 sysctl_sched_latency = limit;
5475
5476 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005477}
5478
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479#ifdef CONFIG_SMP
5480/*
5481 * This is how migration works:
5482 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005483 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 * runqueue and wake up that CPU's migration thread.
5485 * 2) we down() the locked semaphore => thread blocks.
5486 * 3) migration thread wakes up (implicitly it forces the migrated
5487 * thread off the CPU)
5488 * 4) it gets the migration request and checks whether the migrated
5489 * task is still in the wrong runqueue.
5490 * 5) if it's in the wrong runqueue then the migration thread removes
5491 * it and puts it into the right queue.
5492 * 6) migration thread up()s the semaphore.
5493 * 7) we wake up and the migration is done.
5494 */
5495
5496/*
5497 * Change a given task's CPU affinity. Migrate the thread to a
5498 * proper CPU and schedule it away if the CPU it's executing on
5499 * is removed from the allowed bitmask.
5500 *
5501 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005502 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 * call is not atomic; no spinlocks may be held.
5504 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005505int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005507 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005509 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005510 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
5512 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005513 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 ret = -EINVAL;
5515 goto out;
5516 }
5517
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01005518 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005519 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01005520 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005521 p->cpus_allowed = *new_mask;
5522 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01005523 }
5524
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005526 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527 goto out;
5528
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005529 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 /* Need help from migration thread: drop lock and wait. */
5531 task_rq_unlock(rq, &flags);
5532 wake_up_process(rq->migration_thread);
5533 wait_for_completion(&req.done);
5534 tlb_migrate_finish(p->mm);
5535 return 0;
5536 }
5537out:
5538 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005539
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540 return ret;
5541}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005542EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543
5544/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005545 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 * this because either it can't run here any more (set_cpus_allowed()
5547 * away from this CPU, or CPU going down), or because we're
5548 * attempting to rebalance this task on exec (sched_exec).
5549 *
5550 * So we race with normal scheduler movements, but that's OK, as long
5551 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005552 *
5553 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005555static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005557 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005558 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
5560 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005561 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562
5563 rq_src = cpu_rq(src_cpu);
5564 rq_dest = cpu_rq(dest_cpu);
5565
5566 double_rq_lock(rq_src, rq_dest);
5567 /* Already moved. */
5568 if (task_cpu(p) != src_cpu)
5569 goto out;
5570 /* Affinity changed (again). */
5571 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5572 goto out;
5573
Ingo Molnardd41f592007-07-09 18:51:59 +02005574 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005575 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005576 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005577
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005579 if (on_rq) {
5580 activate_task(rq_dest, p, 0);
5581 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005583 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584out:
5585 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005586 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587}
5588
5589/*
5590 * migration_thread - this is a highprio system thread that performs
5591 * thread migration by bumping thread off CPU then 'pushing' onto
5592 * another runqueue.
5593 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005594static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005597 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
5599 rq = cpu_rq(cpu);
5600 BUG_ON(rq->migration_thread != current);
5601
5602 set_current_state(TASK_INTERRUPTIBLE);
5603 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005604 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 spin_lock_irq(&rq->lock);
5608
5609 if (cpu_is_offline(cpu)) {
5610 spin_unlock_irq(&rq->lock);
5611 goto wait_to_die;
5612 }
5613
5614 if (rq->active_balance) {
5615 active_load_balance(rq, cpu);
5616 rq->active_balance = 0;
5617 }
5618
5619 head = &rq->migration_queue;
5620
5621 if (list_empty(head)) {
5622 spin_unlock_irq(&rq->lock);
5623 schedule();
5624 set_current_state(TASK_INTERRUPTIBLE);
5625 continue;
5626 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005627 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628 list_del_init(head->next);
5629
Nick Piggin674311d2005-06-25 14:57:27 -07005630 spin_unlock(&rq->lock);
5631 __migrate_task(req->task, cpu, req->dest_cpu);
5632 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
5634 complete(&req->done);
5635 }
5636 __set_current_state(TASK_RUNNING);
5637 return 0;
5638
5639wait_to_die:
5640 /* Wait for kthread_stop */
5641 set_current_state(TASK_INTERRUPTIBLE);
5642 while (!kthread_should_stop()) {
5643 schedule();
5644 set_current_state(TASK_INTERRUPTIBLE);
5645 }
5646 __set_current_state(TASK_RUNNING);
5647 return 0;
5648}
5649
5650#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005651
5652static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5653{
5654 int ret;
5655
5656 local_irq_disable();
5657 ret = __migrate_task(p, src_cpu, dest_cpu);
5658 local_irq_enable();
5659 return ret;
5660}
5661
Kirill Korotaev054b9102006-12-10 02:20:11 -08005662/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005663 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005664 * NOTE: interrupts should be disabled by the caller
5665 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005666static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005668 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005670 struct rq *rq;
5671 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672
Andi Kleen3a5c3592007-10-15 17:00:14 +02005673 do {
5674 /* On same node? */
5675 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5676 cpus_and(mask, mask, p->cpus_allowed);
5677 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678
Andi Kleen3a5c3592007-10-15 17:00:14 +02005679 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07005680 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005681 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Andi Kleen3a5c3592007-10-15 17:00:14 +02005683 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07005684 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005685 cpumask_t cpus_allowed;
5686
5687 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07005688 /*
5689 * Try to stay on the same cpuset, where the
5690 * current cpuset may be a subset of all cpus.
5691 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005692 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005693 * called within calls to cpuset_lock/cpuset_unlock.
5694 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005695 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005696 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005697 dest_cpu = any_online_cpu(p->cpus_allowed);
5698 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
Andi Kleen3a5c3592007-10-15 17:00:14 +02005700 /*
5701 * Don't tell them about moving exiting tasks or
5702 * kernel threads (both mm NULL), since they never
5703 * leave kernel.
5704 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005705 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005706 printk(KERN_INFO "process %d (%s) no "
5707 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005708 task_pid_nr(p), p->comm, dead_cpu);
5709 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005710 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005711 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712}
5713
5714/*
5715 * While a dead CPU has no uninterruptible tasks queued at this point,
5716 * it might still have a nonzero ->nr_uninterruptible counter, because
5717 * for performance reasons the counter is not stricly tracking tasks to
5718 * their home CPUs. So we just add the counter to another CPU's counter,
5719 * to keep the global sum constant after CPU-down:
5720 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005721static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722{
Mike Travis7c16ec52008-04-04 18:11:11 -07005723 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724 unsigned long flags;
5725
5726 local_irq_save(flags);
5727 double_rq_lock(rq_src, rq_dest);
5728 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5729 rq_src->nr_uninterruptible = 0;
5730 double_rq_unlock(rq_src, rq_dest);
5731 local_irq_restore(flags);
5732}
5733
5734/* Run through task list and migrate tasks from the dead cpu. */
5735static void migrate_live_tasks(int src_cpu)
5736{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005737 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005739 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740
Ingo Molnar48f24c42006-07-03 00:25:40 -07005741 do_each_thread(t, p) {
5742 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743 continue;
5744
Ingo Molnar48f24c42006-07-03 00:25:40 -07005745 if (task_cpu(p) == src_cpu)
5746 move_task_off_dead_cpu(src_cpu, p);
5747 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005749 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750}
5751
Ingo Molnardd41f592007-07-09 18:51:59 +02005752/*
5753 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005754 * It does so by boosting its priority to highest possible.
5755 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 */
5757void sched_idle_next(void)
5758{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005759 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005760 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761 struct task_struct *p = rq->idle;
5762 unsigned long flags;
5763
5764 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005765 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
Ingo Molnar48f24c42006-07-03 00:25:40 -07005767 /*
5768 * Strictly not necessary since rest of the CPUs are stopped by now
5769 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770 */
5771 spin_lock_irqsave(&rq->lock, flags);
5772
Ingo Molnardd41f592007-07-09 18:51:59 +02005773 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005774
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005775 update_rq_clock(rq);
5776 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777
5778 spin_unlock_irqrestore(&rq->lock, flags);
5779}
5780
Ingo Molnar48f24c42006-07-03 00:25:40 -07005781/*
5782 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783 * offline.
5784 */
5785void idle_task_exit(void)
5786{
5787 struct mm_struct *mm = current->active_mm;
5788
5789 BUG_ON(cpu_online(smp_processor_id()));
5790
5791 if (mm != &init_mm)
5792 switch_mm(mm, &init_mm, current);
5793 mmdrop(mm);
5794}
5795
Kirill Korotaev054b9102006-12-10 02:20:11 -08005796/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005797static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005799 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
5801 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005802 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803
5804 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005805 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806
Ingo Molnar48f24c42006-07-03 00:25:40 -07005807 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808
5809 /*
5810 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005811 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812 * fine.
5813 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005814 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005815 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005816 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
Ingo Molnar48f24c42006-07-03 00:25:40 -07005818 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819}
5820
5821/* release_task() removes task from tasklist, so we won't find dead tasks. */
5822static void migrate_dead_tasks(unsigned int dead_cpu)
5823{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005824 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005825 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
Ingo Molnardd41f592007-07-09 18:51:59 +02005827 for ( ; ; ) {
5828 if (!rq->nr_running)
5829 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005830 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005831 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005832 if (!next)
5833 break;
5834 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005835
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 }
5837}
5838#endif /* CONFIG_HOTPLUG_CPU */
5839
Nick Piggine692ab52007-07-26 13:40:43 +02005840#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5841
5842static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005843 {
5844 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005845 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005846 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005847 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005848};
5849
5850static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005851 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005852 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005853 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005854 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005855 .child = sd_ctl_dir,
5856 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005857 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005858};
5859
5860static struct ctl_table *sd_alloc_ctl_entry(int n)
5861{
5862 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005863 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005864
Nick Piggine692ab52007-07-26 13:40:43 +02005865 return entry;
5866}
5867
Milton Miller6382bc92007-10-15 17:00:19 +02005868static void sd_free_ctl_entry(struct ctl_table **tablep)
5869{
Milton Millercd7900762007-10-17 16:55:11 +02005870 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005871
Milton Millercd7900762007-10-17 16:55:11 +02005872 /*
5873 * In the intermediate directories, both the child directory and
5874 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005875 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02005876 * static strings and all have proc handlers.
5877 */
5878 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005879 if (entry->child)
5880 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02005881 if (entry->proc_handler == NULL)
5882 kfree(entry->procname);
5883 }
Milton Miller6382bc92007-10-15 17:00:19 +02005884
5885 kfree(*tablep);
5886 *tablep = NULL;
5887}
5888
Nick Piggine692ab52007-07-26 13:40:43 +02005889static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005890set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005891 const char *procname, void *data, int maxlen,
5892 mode_t mode, proc_handler *proc_handler)
5893{
Nick Piggine692ab52007-07-26 13:40:43 +02005894 entry->procname = procname;
5895 entry->data = data;
5896 entry->maxlen = maxlen;
5897 entry->mode = mode;
5898 entry->proc_handler = proc_handler;
5899}
5900
5901static struct ctl_table *
5902sd_alloc_ctl_domain_table(struct sched_domain *sd)
5903{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005904 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005905
Milton Millerad1cdc12007-10-15 17:00:19 +02005906 if (table == NULL)
5907 return NULL;
5908
Alexey Dobriyane0361852007-08-09 11:16:46 +02005909 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005910 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005911 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005912 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005913 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005914 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005915 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005916 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005917 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005918 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005919 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005920 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005921 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005922 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005923 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005924 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005925 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005926 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005927 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005928 &sd->cache_nice_tries,
5929 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005930 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005931 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005932 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005933
5934 return table;
5935}
5936
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005937static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005938{
5939 struct ctl_table *entry, *table;
5940 struct sched_domain *sd;
5941 int domain_num = 0, i;
5942 char buf[32];
5943
5944 for_each_domain(cpu, sd)
5945 domain_num++;
5946 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02005947 if (table == NULL)
5948 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02005949
5950 i = 0;
5951 for_each_domain(cpu, sd) {
5952 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005953 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005954 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005955 entry->child = sd_alloc_ctl_domain_table(sd);
5956 entry++;
5957 i++;
5958 }
5959 return table;
5960}
5961
5962static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02005963static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02005964{
5965 int i, cpu_num = num_online_cpus();
5966 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5967 char buf[32];
5968
Milton Miller73785472007-10-24 18:23:48 +02005969 WARN_ON(sd_ctl_dir[0].child);
5970 sd_ctl_dir[0].child = entry;
5971
Milton Millerad1cdc12007-10-15 17:00:19 +02005972 if (entry == NULL)
5973 return;
5974
Milton Miller97b6ea72007-10-15 17:00:19 +02005975 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02005976 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005977 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005978 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005979 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02005980 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02005981 }
Milton Miller73785472007-10-24 18:23:48 +02005982
5983 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02005984 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5985}
Milton Miller6382bc92007-10-15 17:00:19 +02005986
Milton Miller73785472007-10-24 18:23:48 +02005987/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02005988static void unregister_sched_domain_sysctl(void)
5989{
Milton Miller73785472007-10-24 18:23:48 +02005990 if (sd_sysctl_header)
5991 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02005992 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02005993 if (sd_ctl_dir[0].child)
5994 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02005995}
Nick Piggine692ab52007-07-26 13:40:43 +02005996#else
Milton Miller6382bc92007-10-15 17:00:19 +02005997static void register_sched_domain_sysctl(void)
5998{
5999}
6000static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006001{
6002}
6003#endif
6004
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005/*
6006 * migration_call - callback that gets triggered when a CPU is added.
6007 * Here we can start up the necessary migration thread for the new CPU.
6008 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006009static int __cpuinit
6010migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006013 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006015 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016
6017 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006018
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006020 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006021 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 if (IS_ERR(p))
6023 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 kthread_bind(p, cpu);
6025 /* Must be high prio: stop_machine expects to yield to it. */
6026 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006027 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028 task_rq_unlock(rq, &flags);
6029 cpu_rq(cpu)->migration_thread = p;
6030 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006031
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006033 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006034 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006036
6037 /* Update our root-domain */
6038 rq = cpu_rq(cpu);
6039 spin_lock_irqsave(&rq->lock, flags);
6040 if (rq->rd) {
6041 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6042 cpu_set(cpu, rq->rd->online);
6043 }
6044 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006046
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047#ifdef CONFIG_HOTPLUG_CPU
6048 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006049 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006050 if (!cpu_rq(cpu)->migration_thread)
6051 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006052 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006053 kthread_bind(cpu_rq(cpu)->migration_thread,
6054 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055 kthread_stop(cpu_rq(cpu)->migration_thread);
6056 cpu_rq(cpu)->migration_thread = NULL;
6057 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006058
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006060 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006061 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 migrate_live_tasks(cpu);
6063 rq = cpu_rq(cpu);
6064 kthread_stop(rq->migration_thread);
6065 rq->migration_thread = NULL;
6066 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006067 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006068 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006069 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006071 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6072 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006074 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006075 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076 migrate_nr_uninterruptible(rq);
6077 BUG_ON(rq->nr_running != 0);
6078
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006079 /*
6080 * No need to migrate the tasks: it was best-effort if
6081 * they didn't take sched_hotcpu_mutex. Just wake up
6082 * the requestors.
6083 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084 spin_lock_irq(&rq->lock);
6085 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006086 struct migration_req *req;
6087
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006089 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090 list_del_init(&req->list);
6091 complete(&req->done);
6092 }
6093 spin_unlock_irq(&rq->lock);
6094 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006095
Gregory Haskins08f503b2008-03-10 17:59:11 -04006096 case CPU_DYING:
6097 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006098 /* Update our root-domain */
6099 rq = cpu_rq(cpu);
6100 spin_lock_irqsave(&rq->lock, flags);
6101 if (rq->rd) {
6102 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6103 cpu_clear(cpu, rq->rd->online);
6104 }
6105 spin_unlock_irqrestore(&rq->lock, flags);
6106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107#endif
6108 }
6109 return NOTIFY_OK;
6110}
6111
6112/* Register at highest priority so that task migration (migrate_all_tasks)
6113 * happens before everything else.
6114 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006115static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116 .notifier_call = migration_call,
6117 .priority = 10
6118};
6119
Adrian Bunke6fe6642007-11-09 22:39:39 +01006120void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121{
6122 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006123 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006124
6125 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006126 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6127 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6129 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130}
6131#endif
6132
6133#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006134
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006135#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006136
Mike Travis7c16ec52008-04-04 18:11:11 -07006137static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6138 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006139{
6140 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006141 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006142
Mike Travis434d53b2008-04-04 18:11:04 -07006143 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006144 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006145
6146 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6147
6148 if (!(sd->flags & SD_LOAD_BALANCE)) {
6149 printk("does not load-balance\n");
6150 if (sd->parent)
6151 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6152 " has parent");
6153 return -1;
6154 }
6155
6156 printk(KERN_CONT "span %s\n", str);
6157
6158 if (!cpu_isset(cpu, sd->span)) {
6159 printk(KERN_ERR "ERROR: domain->span does not contain "
6160 "CPU%d\n", cpu);
6161 }
6162 if (!cpu_isset(cpu, group->cpumask)) {
6163 printk(KERN_ERR "ERROR: domain->groups does not contain"
6164 " CPU%d\n", cpu);
6165 }
6166
6167 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6168 do {
6169 if (!group) {
6170 printk("\n");
6171 printk(KERN_ERR "ERROR: group is NULL\n");
6172 break;
6173 }
6174
6175 if (!group->__cpu_power) {
6176 printk(KERN_CONT "\n");
6177 printk(KERN_ERR "ERROR: domain->cpu_power not "
6178 "set\n");
6179 break;
6180 }
6181
6182 if (!cpus_weight(group->cpumask)) {
6183 printk(KERN_CONT "\n");
6184 printk(KERN_ERR "ERROR: empty group\n");
6185 break;
6186 }
6187
Mike Travis7c16ec52008-04-04 18:11:11 -07006188 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006189 printk(KERN_CONT "\n");
6190 printk(KERN_ERR "ERROR: repeated CPUs\n");
6191 break;
6192 }
6193
Mike Travis7c16ec52008-04-04 18:11:11 -07006194 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006195
Mike Travis434d53b2008-04-04 18:11:04 -07006196 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006197 printk(KERN_CONT " %s", str);
6198
6199 group = group->next;
6200 } while (group != sd->groups);
6201 printk(KERN_CONT "\n");
6202
Mike Travis7c16ec52008-04-04 18:11:11 -07006203 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006204 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6205
Mike Travis7c16ec52008-04-04 18:11:11 -07006206 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006207 printk(KERN_ERR "ERROR: parent span is not a superset "
6208 "of domain->span\n");
6209 return 0;
6210}
6211
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212static void sched_domain_debug(struct sched_domain *sd, int cpu)
6213{
Mike Travis7c16ec52008-04-04 18:11:11 -07006214 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215 int level = 0;
6216
Nick Piggin41c7ce92005-06-25 14:57:24 -07006217 if (!sd) {
6218 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6219 return;
6220 }
6221
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6223
Mike Travis7c16ec52008-04-04 18:11:11 -07006224 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6225 if (!groupmask) {
6226 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6227 return;
6228 }
6229
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006230 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006231 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 level++;
6234 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006235 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006236 break;
6237 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006238 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239}
6240#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006241# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242#endif
6243
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006244static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006245{
6246 if (cpus_weight(sd->span) == 1)
6247 return 1;
6248
6249 /* Following flags need at least 2 groups */
6250 if (sd->flags & (SD_LOAD_BALANCE |
6251 SD_BALANCE_NEWIDLE |
6252 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006253 SD_BALANCE_EXEC |
6254 SD_SHARE_CPUPOWER |
6255 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006256 if (sd->groups != sd->groups->next)
6257 return 0;
6258 }
6259
6260 /* Following flags don't use groups */
6261 if (sd->flags & (SD_WAKE_IDLE |
6262 SD_WAKE_AFFINE |
6263 SD_WAKE_BALANCE))
6264 return 0;
6265
6266 return 1;
6267}
6268
Ingo Molnar48f24c42006-07-03 00:25:40 -07006269static int
6270sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006271{
6272 unsigned long cflags = sd->flags, pflags = parent->flags;
6273
6274 if (sd_degenerate(parent))
6275 return 1;
6276
6277 if (!cpus_equal(sd->span, parent->span))
6278 return 0;
6279
6280 /* Does parent contain flags not in child? */
6281 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6282 if (cflags & SD_WAKE_AFFINE)
6283 pflags &= ~SD_WAKE_BALANCE;
6284 /* Flags needing groups don't count if only 1 group in parent */
6285 if (parent->groups == parent->groups->next) {
6286 pflags &= ~(SD_LOAD_BALANCE |
6287 SD_BALANCE_NEWIDLE |
6288 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006289 SD_BALANCE_EXEC |
6290 SD_SHARE_CPUPOWER |
6291 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006292 }
6293 if (~cflags & pflags)
6294 return 0;
6295
6296 return 1;
6297}
6298
Gregory Haskins57d885f2008-01-25 21:08:18 +01006299static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6300{
6301 unsigned long flags;
6302 const struct sched_class *class;
6303
6304 spin_lock_irqsave(&rq->lock, flags);
6305
6306 if (rq->rd) {
6307 struct root_domain *old_rd = rq->rd;
6308
Ingo Molnar0eab9142008-01-25 21:08:19 +01006309 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006310 if (class->leave_domain)
6311 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006312 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006313
Gregory Haskinsdc938522008-01-25 21:08:26 +01006314 cpu_clear(rq->cpu, old_rd->span);
6315 cpu_clear(rq->cpu, old_rd->online);
6316
Gregory Haskins57d885f2008-01-25 21:08:18 +01006317 if (atomic_dec_and_test(&old_rd->refcount))
6318 kfree(old_rd);
6319 }
6320
6321 atomic_inc(&rd->refcount);
6322 rq->rd = rd;
6323
Gregory Haskinsdc938522008-01-25 21:08:26 +01006324 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006325 if (cpu_isset(rq->cpu, cpu_online_map))
6326 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006327
Ingo Molnar0eab9142008-01-25 21:08:19 +01006328 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006329 if (class->join_domain)
6330 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006331 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006332
6333 spin_unlock_irqrestore(&rq->lock, flags);
6334}
6335
Gregory Haskinsdc938522008-01-25 21:08:26 +01006336static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006337{
6338 memset(rd, 0, sizeof(*rd));
6339
Gregory Haskinsdc938522008-01-25 21:08:26 +01006340 cpus_clear(rd->span);
6341 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006342}
6343
6344static void init_defrootdomain(void)
6345{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006346 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006347 atomic_set(&def_root_domain.refcount, 1);
6348}
6349
Gregory Haskinsdc938522008-01-25 21:08:26 +01006350static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006351{
6352 struct root_domain *rd;
6353
6354 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6355 if (!rd)
6356 return NULL;
6357
Gregory Haskinsdc938522008-01-25 21:08:26 +01006358 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006359
6360 return rd;
6361}
6362
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006364 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365 * hold the hotplug lock.
6366 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006367static void
6368cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006370 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006371 struct sched_domain *tmp;
6372
6373 /* Remove the sched domains which do not contribute to scheduling. */
6374 for (tmp = sd; tmp; tmp = tmp->parent) {
6375 struct sched_domain *parent = tmp->parent;
6376 if (!parent)
6377 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006378 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006379 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006380 if (parent->parent)
6381 parent->parent->child = tmp;
6382 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006383 }
6384
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006385 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006386 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006387 if (sd)
6388 sd->child = NULL;
6389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390
6391 sched_domain_debug(sd, cpu);
6392
Gregory Haskins57d885f2008-01-25 21:08:18 +01006393 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006394 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395}
6396
6397/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006398static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399
6400/* Setup the mask of cpus configured for isolated domains */
6401static int __init isolated_cpu_setup(char *str)
6402{
6403 int ints[NR_CPUS], i;
6404
6405 str = get_options(str, ARRAY_SIZE(ints), ints);
6406 cpus_clear(cpu_isolated_map);
6407 for (i = 1; i <= ints[0]; i++)
6408 if (ints[i] < NR_CPUS)
6409 cpu_set(ints[i], cpu_isolated_map);
6410 return 1;
6411}
6412
Ingo Molnar8927f492007-10-15 17:00:13 +02006413__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414
6415/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006416 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6417 * to a function which identifies what group(along with sched group) a CPU
6418 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6419 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420 *
6421 * init_sched_build_groups will build a circular linked list of the groups
6422 * covered by the given span, and will set each group's ->cpumask correctly,
6423 * and ->cpu_power to 0.
6424 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006425static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006426init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006427 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006428 struct sched_group **sg,
6429 cpumask_t *tmpmask),
6430 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431{
6432 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 int i;
6434
Mike Travis7c16ec52008-04-04 18:11:11 -07006435 cpus_clear(*covered);
6436
6437 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006438 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006439 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440 int j;
6441
Mike Travis7c16ec52008-04-04 18:11:11 -07006442 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443 continue;
6444
Mike Travis7c16ec52008-04-04 18:11:11 -07006445 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006446 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447
Mike Travis7c16ec52008-04-04 18:11:11 -07006448 for_each_cpu_mask(j, *span) {
6449 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 continue;
6451
Mike Travis7c16ec52008-04-04 18:11:11 -07006452 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453 cpu_set(j, sg->cpumask);
6454 }
6455 if (!first)
6456 first = sg;
6457 if (last)
6458 last->next = sg;
6459 last = sg;
6460 }
6461 last->next = first;
6462}
6463
John Hawkes9c1cfda2005-09-06 15:18:14 -07006464#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465
John Hawkes9c1cfda2005-09-06 15:18:14 -07006466#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006467
John Hawkes9c1cfda2005-09-06 15:18:14 -07006468/**
6469 * find_next_best_node - find the next node to include in a sched_domain
6470 * @node: node whose sched_domain we're building
6471 * @used_nodes: nodes already in the sched_domain
6472 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006473 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006474 * finds the closest node not already in the @used_nodes map.
6475 *
6476 * Should use nodemask_t.
6477 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006478static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006479{
6480 int i, n, val, min_val, best_node = 0;
6481
6482 min_val = INT_MAX;
6483
6484 for (i = 0; i < MAX_NUMNODES; i++) {
6485 /* Start at @node */
6486 n = (node + i) % MAX_NUMNODES;
6487
6488 if (!nr_cpus_node(n))
6489 continue;
6490
6491 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006492 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006493 continue;
6494
6495 /* Simple min distance search */
6496 val = node_distance(node, n);
6497
6498 if (val < min_val) {
6499 min_val = val;
6500 best_node = n;
6501 }
6502 }
6503
Mike Travisc5f59f02008-04-04 18:11:10 -07006504 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006505 return best_node;
6506}
6507
6508/**
6509 * sched_domain_node_span - get a cpumask for a node's sched_domain
6510 * @node: node whose cpumask we're constructing
John Hawkes9c1cfda2005-09-06 15:18:14 -07006511 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006512 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006513 * should be one that prevents unnecessary balancing, but also spreads tasks
6514 * out optimally.
6515 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006516static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006517{
Mike Travisc5f59f02008-04-04 18:11:10 -07006518 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006519 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006520 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006521
Mike Travis4bdbaad32008-04-15 16:35:52 -07006522 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006523 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006524
Mike Travis4bdbaad32008-04-15 16:35:52 -07006525 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006526 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006527
6528 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006529 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006530
Mike Travisc5f59f02008-04-04 18:11:10 -07006531 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006532 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006533 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006534}
6535#endif
6536
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006537int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006538
John Hawkes9c1cfda2005-09-06 15:18:14 -07006539/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006540 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542#ifdef CONFIG_SCHED_SMT
6543static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006544static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006545
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006546static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006547cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6548 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006550 if (sg)
6551 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552 return cpu;
6553}
6554#endif
6555
Ingo Molnar48f24c42006-07-03 00:25:40 -07006556/*
6557 * multi-core sched-domains:
6558 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006559#ifdef CONFIG_SCHED_MC
6560static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006561static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006562#endif
6563
6564#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006565static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006566cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6567 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006568{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006569 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006570
6571 *mask = per_cpu(cpu_sibling_map, cpu);
6572 cpus_and(*mask, *mask, *cpu_map);
6573 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006574 if (sg)
6575 *sg = &per_cpu(sched_group_core, group);
6576 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006577}
6578#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006579static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006580cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6581 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006582{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006583 if (sg)
6584 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006585 return cpu;
6586}
6587#endif
6588
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006590static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006591
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006592static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006593cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6594 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006596 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006597#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006598 *mask = cpu_coregroup_map(cpu);
6599 cpus_and(*mask, *mask, *cpu_map);
6600 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006601#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006602 *mask = per_cpu(cpu_sibling_map, cpu);
6603 cpus_and(*mask, *mask, *cpu_map);
6604 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006606 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006608 if (sg)
6609 *sg = &per_cpu(sched_group_phys, group);
6610 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611}
6612
6613#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006614/*
6615 * The init_sched_build_groups can't handle what we want to do with node
6616 * groups, so roll our own. Now each node has its own list of groups which
6617 * gets dynamically allocated.
6618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07006620static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006621
6622static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006623static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006624
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006625static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006626 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006628 int group;
6629
Mike Travis7c16ec52008-04-04 18:11:11 -07006630 *nodemask = node_to_cpumask(cpu_to_node(cpu));
6631 cpus_and(*nodemask, *nodemask, *cpu_map);
6632 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006633
6634 if (sg)
6635 *sg = &per_cpu(sched_group_allnodes, group);
6636 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006638
Siddha, Suresh B08069032006-03-27 01:15:23 -08006639static void init_numa_sched_groups_power(struct sched_group *group_head)
6640{
6641 struct sched_group *sg = group_head;
6642 int j;
6643
6644 if (!sg)
6645 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006646 do {
6647 for_each_cpu_mask(j, sg->cpumask) {
6648 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006649
Andi Kleen3a5c3592007-10-15 17:00:14 +02006650 sd = &per_cpu(phys_domains, j);
6651 if (j != first_cpu(sd->groups->cpumask)) {
6652 /*
6653 * Only add "power" once for each
6654 * physical package.
6655 */
6656 continue;
6657 }
6658
6659 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006660 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006661 sg = sg->next;
6662 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006663}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664#endif
6665
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006666#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006667/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07006668static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006669{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006670 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006671
6672 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006673 struct sched_group **sched_group_nodes
6674 = sched_group_nodes_bycpu[cpu];
6675
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006676 if (!sched_group_nodes)
6677 continue;
6678
6679 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006680 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6681
Mike Travis7c16ec52008-04-04 18:11:11 -07006682 *nodemask = node_to_cpumask(i);
6683 cpus_and(*nodemask, *nodemask, *cpu_map);
6684 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006685 continue;
6686
6687 if (sg == NULL)
6688 continue;
6689 sg = sg->next;
6690next_sg:
6691 oldsg = sg;
6692 sg = sg->next;
6693 kfree(oldsg);
6694 if (oldsg != sched_group_nodes[i])
6695 goto next_sg;
6696 }
6697 kfree(sched_group_nodes);
6698 sched_group_nodes_bycpu[cpu] = NULL;
6699 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006700}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006701#else
Mike Travis7c16ec52008-04-04 18:11:11 -07006702static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006703{
6704}
6705#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006706
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006708 * Initialize sched groups cpu_power.
6709 *
6710 * cpu_power indicates the capacity of sched group, which is used while
6711 * distributing the load between different sched groups in a sched domain.
6712 * Typically cpu_power for all the groups in a sched domain will be same unless
6713 * there are asymmetries in the topology. If there are asymmetries, group
6714 * having more cpu_power will pickup more load compared to the group having
6715 * less cpu_power.
6716 *
6717 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6718 * the maximum number of tasks a group can handle in the presence of other idle
6719 * or lightly loaded groups in the same sched domain.
6720 */
6721static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6722{
6723 struct sched_domain *child;
6724 struct sched_group *group;
6725
6726 WARN_ON(!sd || !sd->groups);
6727
6728 if (cpu != first_cpu(sd->groups->cpumask))
6729 return;
6730
6731 child = sd->child;
6732
Eric Dumazet5517d862007-05-08 00:32:57 -07006733 sd->groups->__cpu_power = 0;
6734
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006735 /*
6736 * For perf policy, if the groups in child domain share resources
6737 * (for example cores sharing some portions of the cache hierarchy
6738 * or SMT), then set this domain groups cpu_power such that each group
6739 * can handle only one task, when there are other idle groups in the
6740 * same sched domain.
6741 */
6742 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6743 (child->flags &
6744 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006745 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006746 return;
6747 }
6748
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006749 /*
6750 * add cpu_power of each child group to this groups cpu_power
6751 */
6752 group = child->groups;
6753 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006754 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006755 group = group->next;
6756 } while (group != child->groups);
6757}
6758
6759/*
Mike Travis7c16ec52008-04-04 18:11:11 -07006760 * Initializers for schedule domains
6761 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
6762 */
6763
6764#define SD_INIT(sd, type) sd_init_##type(sd)
6765#define SD_INIT_FUNC(type) \
6766static noinline void sd_init_##type(struct sched_domain *sd) \
6767{ \
6768 memset(sd, 0, sizeof(*sd)); \
6769 *sd = SD_##type##_INIT; \
6770}
6771
6772SD_INIT_FUNC(CPU)
6773#ifdef CONFIG_NUMA
6774 SD_INIT_FUNC(ALLNODES)
6775 SD_INIT_FUNC(NODE)
6776#endif
6777#ifdef CONFIG_SCHED_SMT
6778 SD_INIT_FUNC(SIBLING)
6779#endif
6780#ifdef CONFIG_SCHED_MC
6781 SD_INIT_FUNC(MC)
6782#endif
6783
6784/*
6785 * To minimize stack usage kmalloc room for cpumasks and share the
6786 * space as the usage in build_sched_domains() dictates. Used only
6787 * if the amount of space is significant.
6788 */
6789struct allmasks {
6790 cpumask_t tmpmask; /* make this one first */
6791 union {
6792 cpumask_t nodemask;
6793 cpumask_t this_sibling_map;
6794 cpumask_t this_core_map;
6795 };
6796 cpumask_t send_covered;
6797
6798#ifdef CONFIG_NUMA
6799 cpumask_t domainspan;
6800 cpumask_t covered;
6801 cpumask_t notcovered;
6802#endif
6803};
6804
6805#if NR_CPUS > 128
6806#define SCHED_CPUMASK_ALLOC 1
6807#define SCHED_CPUMASK_FREE(v) kfree(v)
6808#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
6809#else
6810#define SCHED_CPUMASK_ALLOC 0
6811#define SCHED_CPUMASK_FREE(v)
6812#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
6813#endif
6814
6815#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
6816 ((unsigned long)(a) + offsetof(struct allmasks, v))
6817
6818/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006819 * Build sched domains for a given set of cpus and attach the sched domains
6820 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006822static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823{
6824 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006825 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006826 SCHED_CPUMASK_DECLARE(allmasks);
6827 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07006828#ifdef CONFIG_NUMA
6829 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006830 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006831
6832 /*
6833 * Allocate the per-node list of sched groups
6834 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006835 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006836 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006837 if (!sched_group_nodes) {
6838 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006839 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006840 }
John Hawkesd1b55132005-09-06 15:18:14 -07006841#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842
Gregory Haskinsdc938522008-01-25 21:08:26 +01006843 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006844 if (!rd) {
6845 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07006846#ifdef CONFIG_NUMA
6847 kfree(sched_group_nodes);
6848#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006849 return -ENOMEM;
6850 }
6851
Mike Travis7c16ec52008-04-04 18:11:11 -07006852#if SCHED_CPUMASK_ALLOC
6853 /* get space for all scratch cpumask variables */
6854 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
6855 if (!allmasks) {
6856 printk(KERN_WARNING "Cannot alloc cpumask array\n");
6857 kfree(rd);
6858#ifdef CONFIG_NUMA
6859 kfree(sched_group_nodes);
6860#endif
6861 return -ENOMEM;
6862 }
6863#endif
6864 tmpmask = (cpumask_t *)allmasks;
6865
6866
6867#ifdef CONFIG_NUMA
6868 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6869#endif
6870
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006872 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006874 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07006876 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
Mike Travis7c16ec52008-04-04 18:11:11 -07006878 *nodemask = node_to_cpumask(cpu_to_node(i));
6879 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880
6881#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006882 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07006883 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006884 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006885 SD_INIT(sd, ALLNODES);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006886 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07006887 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006888 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006889 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006890 } else
6891 p = NULL;
6892
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006894 SD_INIT(sd, NODE);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006895 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006896 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006897 if (p)
6898 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006899 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900#endif
6901
6902 p = sd;
6903 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006904 SD_INIT(sd, CPU);
6905 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006907 if (p)
6908 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006909 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006911#ifdef CONFIG_SCHED_MC
6912 p = sd;
6913 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006914 SD_INIT(sd, MC);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006915 sd->span = cpu_coregroup_map(i);
6916 cpus_and(sd->span, sd->span, *cpu_map);
6917 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006918 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006919 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006920#endif
6921
Linus Torvalds1da177e2005-04-16 15:20:36 -07006922#ifdef CONFIG_SCHED_SMT
6923 p = sd;
6924 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006925 SD_INIT(sd, SIBLING);
Mike Travisd5a74302007-10-16 01:24:05 -07006926 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006927 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006929 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006930 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931#endif
6932 }
6933
6934#ifdef CONFIG_SCHED_SMT
6935 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006936 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006937 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
6938 SCHED_CPUMASK_VAR(send_covered, allmasks);
6939
6940 *this_sibling_map = per_cpu(cpu_sibling_map, i);
6941 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
6942 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943 continue;
6944
Ingo Molnardd41f592007-07-09 18:51:59 +02006945 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006946 &cpu_to_cpu_group,
6947 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948 }
6949#endif
6950
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006951#ifdef CONFIG_SCHED_MC
6952 /* Set up multi-core groups */
6953 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006954 SCHED_CPUMASK_VAR(this_core_map, allmasks);
6955 SCHED_CPUMASK_VAR(send_covered, allmasks);
6956
6957 *this_core_map = cpu_coregroup_map(i);
6958 cpus_and(*this_core_map, *this_core_map, *cpu_map);
6959 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006960 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07006961
Ingo Molnardd41f592007-07-09 18:51:59 +02006962 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006963 &cpu_to_core_group,
6964 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006965 }
6966#endif
6967
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968 /* Set up physical groups */
6969 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006970 SCHED_CPUMASK_VAR(nodemask, allmasks);
6971 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972
Mike Travis7c16ec52008-04-04 18:11:11 -07006973 *nodemask = node_to_cpumask(i);
6974 cpus_and(*nodemask, *nodemask, *cpu_map);
6975 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006976 continue;
6977
Mike Travis7c16ec52008-04-04 18:11:11 -07006978 init_sched_build_groups(nodemask, cpu_map,
6979 &cpu_to_phys_group,
6980 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981 }
6982
6983#ifdef CONFIG_NUMA
6984 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07006985 if (sd_allnodes) {
6986 SCHED_CPUMASK_VAR(send_covered, allmasks);
6987
6988 init_sched_build_groups(cpu_map, cpu_map,
6989 &cpu_to_allnodes_group,
6990 send_covered, tmpmask);
6991 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006992
6993 for (i = 0; i < MAX_NUMNODES; i++) {
6994 /* Set up node groups */
6995 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07006996 SCHED_CPUMASK_VAR(nodemask, allmasks);
6997 SCHED_CPUMASK_VAR(domainspan, allmasks);
6998 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006999 int j;
7000
Mike Travis7c16ec52008-04-04 18:11:11 -07007001 *nodemask = node_to_cpumask(i);
7002 cpus_clear(*covered);
7003
7004 cpus_and(*nodemask, *nodemask, *cpu_map);
7005 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007006 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007007 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007008 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007009
Mike Travis4bdbaad32008-04-15 16:35:52 -07007010 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007011 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007012
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007013 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007014 if (!sg) {
7015 printk(KERN_WARNING "Can not alloc domain group for "
7016 "node %d\n", i);
7017 goto error;
7018 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007019 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007020 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007021 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007022
John Hawkes9c1cfda2005-09-06 15:18:14 -07007023 sd = &per_cpu(node_domains, j);
7024 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007025 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007026 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007027 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007028 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007029 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007030 prev = sg;
7031
7032 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007033 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007034 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007035 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007036
Mike Travis7c16ec52008-04-04 18:11:11 -07007037 cpus_complement(*notcovered, *covered);
7038 cpus_and(*tmpmask, *notcovered, *cpu_map);
7039 cpus_and(*tmpmask, *tmpmask, *domainspan);
7040 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007041 break;
7042
Mike Travis7c16ec52008-04-04 18:11:11 -07007043 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7044 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007045 continue;
7046
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007047 sg = kmalloc_node(sizeof(struct sched_group),
7048 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007049 if (!sg) {
7050 printk(KERN_WARNING
7051 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007052 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007053 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007054 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007055 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007056 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007057 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007058 prev->next = sg;
7059 prev = sg;
7060 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062#endif
7063
7064 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007065#ifdef CONFIG_SCHED_SMT
7066 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007067 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7068
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007069 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007070 }
7071#endif
7072#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007073 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007074 struct sched_domain *sd = &per_cpu(core_domains, i);
7075
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007076 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007077 }
7078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007080 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007081 struct sched_domain *sd = &per_cpu(phys_domains, i);
7082
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007083 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084 }
7085
John Hawkes9c1cfda2005-09-06 15:18:14 -07007086#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007087 for (i = 0; i < MAX_NUMNODES; i++)
7088 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007089
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007090 if (sd_allnodes) {
7091 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007092
Mike Travis7c16ec52008-04-04 18:11:11 -07007093 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7094 tmpmask);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007095 init_numa_sched_groups_power(sg);
7096 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007097#endif
7098
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007100 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101 struct sched_domain *sd;
7102#ifdef CONFIG_SCHED_SMT
7103 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007104#elif defined(CONFIG_SCHED_MC)
7105 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106#else
7107 sd = &per_cpu(phys_domains, i);
7108#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007109 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007111
Mike Travis7c16ec52008-04-04 18:11:11 -07007112 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007113 return 0;
7114
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007115#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007116error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007117 free_sched_groups(cpu_map, tmpmask);
7118 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007119 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121}
Paul Jackson029190c2007-10-18 23:40:20 -07007122
7123static cpumask_t *doms_cur; /* current sched domains */
7124static int ndoms_cur; /* number of sched domains in 'doms_cur' */
7125
7126/*
7127 * Special case: If a kmalloc of a doms_cur partition (array of
7128 * cpumask_t) fails, then fallback to a single sched domain,
7129 * as determined by the single cpumask_t fallback_doms.
7130 */
7131static cpumask_t fallback_doms;
7132
Heiko Carstens22e52b02008-03-12 18:31:59 +01007133void __attribute__((weak)) arch_update_cpu_topology(void)
7134{
7135}
7136
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007137/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007138 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007139 * For now this just excludes isolated cpus, but could be used to
7140 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007141 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007142static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007143{
Milton Miller73785472007-10-24 18:23:48 +02007144 int err;
7145
Heiko Carstens22e52b02008-03-12 18:31:59 +01007146 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007147 ndoms_cur = 1;
7148 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7149 if (!doms_cur)
7150 doms_cur = &fallback_doms;
7151 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Milton Miller73785472007-10-24 18:23:48 +02007152 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007153 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007154
7155 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007156}
7157
Mike Travis7c16ec52008-04-04 18:11:11 -07007158static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7159 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007160{
Mike Travis7c16ec52008-04-04 18:11:11 -07007161 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007162}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007164/*
7165 * Detach sched domains from a group of cpus specified in cpu_map
7166 * These cpus will now be attached to the NULL domain
7167 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007168static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007169{
Mike Travis7c16ec52008-04-04 18:11:11 -07007170 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007171 int i;
7172
Milton Miller6382bc92007-10-15 17:00:19 +02007173 unregister_sched_domain_sysctl();
7174
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007175 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007176 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007177 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007178 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007179}
7180
Paul Jackson029190c2007-10-18 23:40:20 -07007181/*
7182 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007183 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007184 * doms_new[] to the current sched domain partitioning, doms_cur[].
7185 * It destroys each deleted domain and builds each new domain.
7186 *
7187 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007188 * The masks don't intersect (don't overlap.) We should setup one
7189 * sched domain for each mask. CPUs not in any of the cpumasks will
7190 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007191 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7192 * it as it is.
7193 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007194 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7195 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007196 * failed the kmalloc call, then it can pass in doms_new == NULL,
7197 * and partition_sched_domains() will fallback to the single partition
7198 * 'fallback_doms'.
7199 *
7200 * Call with hotplug lock held
7201 */
7202void partition_sched_domains(int ndoms_new, cpumask_t *doms_new)
7203{
7204 int i, j;
7205
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007206 lock_doms_cur();
7207
Milton Miller73785472007-10-24 18:23:48 +02007208 /* always unregister in case we don't destroy any domains */
7209 unregister_sched_domain_sysctl();
7210
Paul Jackson029190c2007-10-18 23:40:20 -07007211 if (doms_new == NULL) {
7212 ndoms_new = 1;
7213 doms_new = &fallback_doms;
7214 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7215 }
7216
7217 /* Destroy deleted domains */
7218 for (i = 0; i < ndoms_cur; i++) {
7219 for (j = 0; j < ndoms_new; j++) {
7220 if (cpus_equal(doms_cur[i], doms_new[j]))
7221 goto match1;
7222 }
7223 /* no match - a current sched domain not in new doms_new[] */
7224 detach_destroy_domains(doms_cur + i);
7225match1:
7226 ;
7227 }
7228
7229 /* Build new domains */
7230 for (i = 0; i < ndoms_new; i++) {
7231 for (j = 0; j < ndoms_cur; j++) {
7232 if (cpus_equal(doms_new[i], doms_cur[j]))
7233 goto match2;
7234 }
7235 /* no match - add a new doms_new */
7236 build_sched_domains(doms_new + i);
7237match2:
7238 ;
7239 }
7240
7241 /* Remember the new sched domains */
7242 if (doms_cur != &fallback_doms)
7243 kfree(doms_cur);
7244 doms_cur = doms_new;
7245 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007246
7247 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007248
7249 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07007250}
7251
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007252#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007253int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007254{
7255 int err;
7256
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007257 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007258 detach_destroy_domains(&cpu_online_map);
7259 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007260 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007261
7262 return err;
7263}
7264
7265static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7266{
7267 int ret;
7268
7269 if (buf[0] != '0' && buf[0] != '1')
7270 return -EINVAL;
7271
7272 if (smt)
7273 sched_smt_power_savings = (buf[0] == '1');
7274 else
7275 sched_mc_power_savings = (buf[0] == '1');
7276
7277 ret = arch_reinit_sched_domains();
7278
7279 return ret ? ret : count;
7280}
7281
Adrian Bunk6707de002007-08-12 18:08:19 +02007282#ifdef CONFIG_SCHED_MC
7283static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7284{
7285 return sprintf(page, "%u\n", sched_mc_power_savings);
7286}
7287static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7288 const char *buf, size_t count)
7289{
7290 return sched_power_savings_store(buf, count, 0);
7291}
7292static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7293 sched_mc_power_savings_store);
7294#endif
7295
7296#ifdef CONFIG_SCHED_SMT
7297static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7298{
7299 return sprintf(page, "%u\n", sched_smt_power_savings);
7300}
7301static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7302 const char *buf, size_t count)
7303{
7304 return sched_power_savings_store(buf, count, 1);
7305}
7306static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7307 sched_smt_power_savings_store);
7308#endif
7309
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007310int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7311{
7312 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007313
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007314#ifdef CONFIG_SCHED_SMT
7315 if (smt_capable())
7316 err = sysfs_create_file(&cls->kset.kobj,
7317 &attr_sched_smt_power_savings.attr);
7318#endif
7319#ifdef CONFIG_SCHED_MC
7320 if (!err && mc_capable())
7321 err = sysfs_create_file(&cls->kset.kobj,
7322 &attr_sched_mc_power_savings.attr);
7323#endif
7324 return err;
7325}
7326#endif
7327
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007329 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007331 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332 * which will prevent rebalancing while the sched domains are recalculated.
7333 */
7334static int update_sched_domains(struct notifier_block *nfb,
7335 unsigned long action, void *hcpu)
7336{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337 switch (action) {
7338 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007339 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007341 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007342 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343 return NOTIFY_OK;
7344
7345 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007346 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007347 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007348 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007350 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007352 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 /*
7354 * Fall through and re-initialise the domains.
7355 */
7356 break;
7357 default:
7358 return NOTIFY_DONE;
7359 }
7360
7361 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007362 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363
7364 return NOTIFY_OK;
7365}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366
7367void __init sched_init_smp(void)
7368{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007369 cpumask_t non_isolated_cpus;
7370
Mike Travis434d53b2008-04-04 18:11:04 -07007371#if defined(CONFIG_NUMA)
7372 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7373 GFP_KERNEL);
7374 BUG_ON(sched_group_nodes_bycpu == NULL);
7375#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007376 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007377 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007378 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007379 if (cpus_empty(non_isolated_cpus))
7380 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007381 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007382 /* XXX: Theoretical race here - CPU may be hotplugged now */
7383 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007384
7385 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007386 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007387 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007388 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389}
7390#else
7391void __init sched_init_smp(void)
7392{
Mike Travis434d53b2008-04-04 18:11:04 -07007393#if defined(CONFIG_NUMA)
7394 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7395 GFP_KERNEL);
7396 BUG_ON(sched_group_nodes_bycpu == NULL);
7397#endif
Ingo Molnar19978ca2007-11-09 22:39:38 +01007398 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399}
7400#endif /* CONFIG_SMP */
7401
7402int in_sched_functions(unsigned long addr)
7403{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404 return in_lock_functions(addr) ||
7405 (addr >= (unsigned long)__sched_text_start
7406 && addr < (unsigned long)__sched_text_end);
7407}
7408
Alexey Dobriyana9957442007-10-15 17:00:13 +02007409static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007410{
7411 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02007412#ifdef CONFIG_FAIR_GROUP_SCHED
7413 cfs_rq->rq = rq;
7414#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007415 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007416}
7417
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007418static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7419{
7420 struct rt_prio_array *array;
7421 int i;
7422
7423 array = &rt_rq->active;
7424 for (i = 0; i < MAX_RT_PRIO; i++) {
7425 INIT_LIST_HEAD(array->queue + i);
7426 __clear_bit(i, array->bitmap);
7427 }
7428 /* delimiter for bitsearch: */
7429 __set_bit(MAX_RT_PRIO, array->bitmap);
7430
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007431#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007432 rt_rq->highest_prio = MAX_RT_PRIO;
7433#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007434#ifdef CONFIG_SMP
7435 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007436 rt_rq->overloaded = 0;
7437#endif
7438
7439 rt_rq->rt_time = 0;
7440 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007441 rt_rq->rt_runtime = 0;
7442 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007443
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007444#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007445 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007446 rt_rq->rq = rq;
7447#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007448}
7449
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007450#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007451static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7452 struct sched_entity *se, int cpu, int add,
7453 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007454{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007455 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007456 tg->cfs_rq[cpu] = cfs_rq;
7457 init_cfs_rq(cfs_rq, rq);
7458 cfs_rq->tg = tg;
7459 if (add)
7460 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7461
7462 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007463 /* se could be NULL for init_task_group */
7464 if (!se)
7465 return;
7466
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007467 if (!parent)
7468 se->cfs_rq = &rq->cfs;
7469 else
7470 se->cfs_rq = parent->my_q;
7471
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007472 se->my_q = cfs_rq;
7473 se->load.weight = tg->shares;
7474 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007475 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007476}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007477#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007478
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007479#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007480static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
7481 struct sched_rt_entity *rt_se, int cpu, int add,
7482 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007483{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007484 struct rq *rq = cpu_rq(cpu);
7485
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007486 tg->rt_rq[cpu] = rt_rq;
7487 init_rt_rq(rt_rq, rq);
7488 rt_rq->tg = tg;
7489 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007490 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007491 if (add)
7492 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7493
7494 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007495 if (!rt_se)
7496 return;
7497
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007498 if (!parent)
7499 rt_se->rt_rq = &rq->rt;
7500 else
7501 rt_se->rt_rq = parent->my_q;
7502
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007503 rt_se->rt_rq = &rq->rt;
7504 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007505 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007506 INIT_LIST_HEAD(&rt_se->run_list);
7507}
7508#endif
7509
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510void __init sched_init(void)
7511{
Ingo Molnardd41f592007-07-09 18:51:59 +02007512 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07007513 unsigned long alloc_size = 0, ptr;
7514
7515#ifdef CONFIG_FAIR_GROUP_SCHED
7516 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7517#endif
7518#ifdef CONFIG_RT_GROUP_SCHED
7519 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7520#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007521#ifdef CONFIG_USER_SCHED
7522 alloc_size *= 2;
7523#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007524 /*
7525 * As sched_init() is called before page_alloc is setup,
7526 * we use alloc_bootmem().
7527 */
7528 if (alloc_size) {
7529 ptr = (unsigned long)alloc_bootmem_low(alloc_size);
7530
7531#ifdef CONFIG_FAIR_GROUP_SCHED
7532 init_task_group.se = (struct sched_entity **)ptr;
7533 ptr += nr_cpu_ids * sizeof(void **);
7534
7535 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
7536 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007537
7538#ifdef CONFIG_USER_SCHED
7539 root_task_group.se = (struct sched_entity **)ptr;
7540 ptr += nr_cpu_ids * sizeof(void **);
7541
7542 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
7543 ptr += nr_cpu_ids * sizeof(void **);
7544#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007545#endif
7546#ifdef CONFIG_RT_GROUP_SCHED
7547 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
7548 ptr += nr_cpu_ids * sizeof(void **);
7549
7550 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007551 ptr += nr_cpu_ids * sizeof(void **);
7552
7553#ifdef CONFIG_USER_SCHED
7554 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
7555 ptr += nr_cpu_ids * sizeof(void **);
7556
7557 root_task_group.rt_rq = (struct rt_rq **)ptr;
7558 ptr += nr_cpu_ids * sizeof(void **);
7559#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007560#endif
7561 }
Ingo Molnardd41f592007-07-09 18:51:59 +02007562
Gregory Haskins57d885f2008-01-25 21:08:18 +01007563#ifdef CONFIG_SMP
7564 init_defrootdomain();
7565#endif
7566
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007567 init_rt_bandwidth(&def_rt_bandwidth,
7568 global_rt_period(), global_rt_runtime());
7569
7570#ifdef CONFIG_RT_GROUP_SCHED
7571 init_rt_bandwidth(&init_task_group.rt_bandwidth,
7572 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007573#ifdef CONFIG_USER_SCHED
7574 init_rt_bandwidth(&root_task_group.rt_bandwidth,
7575 global_rt_period(), RUNTIME_INF);
7576#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007577#endif
7578
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007579#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007580 list_add(&init_task_group.list, &task_groups);
7581#endif
7582
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007583 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007584 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
7586 rq = cpu_rq(i);
7587 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007588 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007589 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007590 rq->clock = 1;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02007591 update_last_tick_seen(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02007592 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007593 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007594#ifdef CONFIG_FAIR_GROUP_SCHED
7595 init_task_group.shares = init_task_group_load;
7596 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007597#ifdef CONFIG_CGROUP_SCHED
7598 /*
7599 * How much cpu bandwidth does init_task_group get?
7600 *
7601 * In case of task-groups formed thr' the cgroup filesystem, it
7602 * gets 100% of the cpu resources in the system. This overall
7603 * system cpu resource is divided among the tasks of
7604 * init_task_group and its child task-groups in a fair manner,
7605 * based on each entity's (task or task-group's) weight
7606 * (se->load.weight).
7607 *
7608 * In other words, if init_task_group has 10 tasks of weight
7609 * 1024) and two child groups A0 and A1 (of weight 1024 each),
7610 * then A0's share of the cpu resource is:
7611 *
7612 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
7613 *
7614 * We achieve this by letting init_task_group's tasks sit
7615 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
7616 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007617 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007618#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007619 root_task_group.shares = NICE_0_LOAD;
7620 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007621 /*
7622 * In case of task-groups formed thr' the user id of tasks,
7623 * init_task_group represents tasks belonging to root user.
7624 * Hence it forms a sibling of all subsequent groups formed.
7625 * In this case, init_task_group gets only a fraction of overall
7626 * system cpu resource, based on the weight assigned to root
7627 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
7628 * by letting tasks of init_task_group sit in a separate cfs_rq
7629 * (init_cfs_rq) and having one entity represent this group of
7630 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
7631 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007632 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007633 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007634 &per_cpu(init_sched_entity, i), i, 1,
7635 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007636
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007637#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02007638#endif /* CONFIG_FAIR_GROUP_SCHED */
7639
7640 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007641#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007642 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007643#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007644 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007645#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007646 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007647 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007648 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007649 &per_cpu(init_sched_rt_entity, i), i, 1,
7650 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007651#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653
Ingo Molnardd41f592007-07-09 18:51:59 +02007654 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7655 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007657 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007658 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007660 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007662 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 rq->migration_thread = NULL;
7664 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007665 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007667 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669 }
7670
Peter Williams2dd73a42006-06-27 02:54:34 -07007671 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007672
Avi Kivitye107be32007-07-26 13:40:43 +02007673#ifdef CONFIG_PREEMPT_NOTIFIERS
7674 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7675#endif
7676
Christoph Lameterc9819f42006-12-10 02:20:25 -08007677#ifdef CONFIG_SMP
7678 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7679#endif
7680
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007681#ifdef CONFIG_RT_MUTEXES
7682 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7683#endif
7684
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685 /*
7686 * The boot idle thread does lazy MMU switching as well:
7687 */
7688 atomic_inc(&init_mm.mm_count);
7689 enter_lazy_tlb(&init_mm, current);
7690
7691 /*
7692 * Make us the idle thread. Technically, schedule() should not be
7693 * called from this thread, however somewhere below it might be,
7694 * but because we are the idle thread, we just pick up running again
7695 * when this runqueue becomes "idle".
7696 */
7697 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007698 /*
7699 * During early bootup we pretend to be a normal task:
7700 */
7701 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007702
7703 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704}
7705
7706#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7707void __might_sleep(char *file, int line)
7708{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007709#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710 static unsigned long prev_jiffy; /* ratelimiting */
7711
7712 if ((in_atomic() || irqs_disabled()) &&
7713 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7714 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7715 return;
7716 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007717 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718 " context at %s:%d\n", file, line);
7719 printk("in_atomic():%d, irqs_disabled():%d\n",
7720 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007721 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007722 if (irqs_disabled())
7723 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724 dump_stack();
7725 }
7726#endif
7727}
7728EXPORT_SYMBOL(__might_sleep);
7729#endif
7730
7731#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007732static void normalize_task(struct rq *rq, struct task_struct *p)
7733{
7734 int on_rq;
7735 update_rq_clock(rq);
7736 on_rq = p->se.on_rq;
7737 if (on_rq)
7738 deactivate_task(rq, p, 0);
7739 __setscheduler(rq, p, SCHED_NORMAL, 0);
7740 if (on_rq) {
7741 activate_task(rq, p, 0);
7742 resched_task(rq->curr);
7743 }
7744}
7745
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746void normalize_rt_tasks(void)
7747{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007748 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007750 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007752 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007753 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007754 /*
7755 * Only normalize user tasks:
7756 */
7757 if (!p->mm)
7758 continue;
7759
Ingo Molnardd41f592007-07-09 18:51:59 +02007760 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007761#ifdef CONFIG_SCHEDSTATS
7762 p->se.wait_start = 0;
7763 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007764 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007765#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007766 task_rq(p)->clock = 0;
7767
7768 if (!rt_task(p)) {
7769 /*
7770 * Renice negative nice level userspace
7771 * tasks back to 0:
7772 */
7773 if (TASK_NICE(p) < 0 && p->mm)
7774 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007778 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007779 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780
Ingo Molnar178be792007-10-15 17:00:18 +02007781 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007782
Ingo Molnarb29739f2006-06-27 02:54:51 -07007783 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007784 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007785 } while_each_thread(g, p);
7786
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007787 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788}
7789
7790#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007791
7792#ifdef CONFIG_IA64
7793/*
7794 * These functions are only useful for the IA64 MCA handling.
7795 *
7796 * They can only be called when the whole system has been
7797 * stopped - every CPU needs to be quiescent, and no scheduling
7798 * activity can take place. Using them for anything else would
7799 * be a serious bug, and as a result, they aren't even visible
7800 * under any other configuration.
7801 */
7802
7803/**
7804 * curr_task - return the current task for a given cpu.
7805 * @cpu: the processor in question.
7806 *
7807 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7808 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007809struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007810{
7811 return cpu_curr(cpu);
7812}
7813
7814/**
7815 * set_curr_task - set the current task for a given cpu.
7816 * @cpu: the processor in question.
7817 * @p: the task pointer to set.
7818 *
7819 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007820 * are serviced on a separate stack. It allows the architecture to switch the
7821 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007822 * must be called with all CPU's synchronized, and interrupts disabled, the
7823 * and caller must save the original value of the current task (see
7824 * curr_task() above) and restore that value before reenabling interrupts and
7825 * re-starting the system.
7826 *
7827 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7828 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007829void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007830{
7831 cpu_curr(cpu) = p;
7832}
7833
7834#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007835
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007836#ifdef CONFIG_FAIR_GROUP_SCHED
7837static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007838{
7839 int i;
7840
7841 for_each_possible_cpu(i) {
7842 if (tg->cfs_rq)
7843 kfree(tg->cfs_rq[i]);
7844 if (tg->se)
7845 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007846 }
7847
7848 kfree(tg->cfs_rq);
7849 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007850}
7851
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007852static
7853int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007854{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007855 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007856 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007857 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007858 int i;
7859
Mike Travis434d53b2008-04-04 18:11:04 -07007860 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007861 if (!tg->cfs_rq)
7862 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07007863 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007864 if (!tg->se)
7865 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007866
7867 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007868
7869 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007870 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007871
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007872 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
7873 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007874 if (!cfs_rq)
7875 goto err;
7876
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007877 se = kmalloc_node(sizeof(struct sched_entity),
7878 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007879 if (!se)
7880 goto err;
7881
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007882 parent_se = parent ? parent->se[i] : NULL;
7883 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007884 }
7885
7886 return 1;
7887
7888 err:
7889 return 0;
7890}
7891
7892static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7893{
7894 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
7895 &cpu_rq(cpu)->leaf_cfs_rq_list);
7896}
7897
7898static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7899{
7900 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
7901}
7902#else
7903static inline void free_fair_sched_group(struct task_group *tg)
7904{
7905}
7906
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007907static inline
7908int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007909{
7910 return 1;
7911}
7912
7913static inline void register_fair_sched_group(struct task_group *tg, int cpu)
7914{
7915}
7916
7917static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
7918{
7919}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007920#endif
7921
7922#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007923static void free_rt_sched_group(struct task_group *tg)
7924{
7925 int i;
7926
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007927 destroy_rt_bandwidth(&tg->rt_bandwidth);
7928
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007929 for_each_possible_cpu(i) {
7930 if (tg->rt_rq)
7931 kfree(tg->rt_rq[i]);
7932 if (tg->rt_se)
7933 kfree(tg->rt_se[i]);
7934 }
7935
7936 kfree(tg->rt_rq);
7937 kfree(tg->rt_se);
7938}
7939
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007940static
7941int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007942{
7943 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007944 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007945 struct rq *rq;
7946 int i;
7947
Mike Travis434d53b2008-04-04 18:11:04 -07007948 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007949 if (!tg->rt_rq)
7950 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07007951 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007952 if (!tg->rt_se)
7953 goto err;
7954
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007955 init_rt_bandwidth(&tg->rt_bandwidth,
7956 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007957
7958 for_each_possible_cpu(i) {
7959 rq = cpu_rq(i);
7960
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007961 rt_rq = kmalloc_node(sizeof(struct rt_rq),
7962 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7963 if (!rt_rq)
7964 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007965
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007966 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
7967 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
7968 if (!rt_se)
7969 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007970
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007971 parent_se = parent ? parent->rt_se[i] : NULL;
7972 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007973 }
7974
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007975 return 1;
7976
7977 err:
7978 return 0;
7979}
7980
7981static inline void register_rt_sched_group(struct task_group *tg, int cpu)
7982{
7983 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
7984 &cpu_rq(cpu)->leaf_rt_rq_list);
7985}
7986
7987static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
7988{
7989 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
7990}
7991#else
7992static inline void free_rt_sched_group(struct task_group *tg)
7993{
7994}
7995
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007996static inline
7997int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007998{
7999 return 1;
8000}
8001
8002static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8003{
8004}
8005
8006static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8007{
8008}
8009#endif
8010
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008011#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008012static void free_sched_group(struct task_group *tg)
8013{
8014 free_fair_sched_group(tg);
8015 free_rt_sched_group(tg);
8016 kfree(tg);
8017}
8018
8019/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008020struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008021{
8022 struct task_group *tg;
8023 unsigned long flags;
8024 int i;
8025
8026 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8027 if (!tg)
8028 return ERR_PTR(-ENOMEM);
8029
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008030 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008031 goto err;
8032
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008033 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008034 goto err;
8035
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008036 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008037 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008038 register_fair_sched_group(tg, i);
8039 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008040 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008041 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008042 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008043
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008044 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008045
8046err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008047 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008048 return ERR_PTR(-ENOMEM);
8049}
8050
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008051/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008052static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008053{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008054 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008055 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008056}
8057
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008058/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008059void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008060{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008061 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008062 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008063
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008064 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008065 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008066 unregister_fair_sched_group(tg, i);
8067 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008068 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008069 list_del_rcu(&tg->list);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008070 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008071
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008072 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008073 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008074}
8075
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008076/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008077 * The caller of this function should have put the task in its new group
8078 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8079 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008080 */
8081void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008082{
8083 int on_rq, running;
8084 unsigned long flags;
8085 struct rq *rq;
8086
8087 rq = task_rq_lock(tsk, &flags);
8088
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008089 update_rq_clock(rq);
8090
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008091 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008092 on_rq = tsk->se.on_rq;
8093
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008094 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008095 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008096 if (unlikely(running))
8097 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008098
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008099 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008100
Peter Zijlstra810b3812008-02-29 15:21:01 -05008101#ifdef CONFIG_FAIR_GROUP_SCHED
8102 if (tsk->sched_class->moved_group)
8103 tsk->sched_class->moved_group(tsk);
8104#endif
8105
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008106 if (unlikely(running))
8107 tsk->sched_class->set_curr_task(rq);
8108 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008109 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008110
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008111 task_rq_unlock(rq, &flags);
8112}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008113#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008114
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008115#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008116static void set_se_shares(struct sched_entity *se, unsigned long shares)
8117{
8118 struct cfs_rq *cfs_rq = se->cfs_rq;
8119 struct rq *rq = cfs_rq->rq;
8120 int on_rq;
8121
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008122 spin_lock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008123
8124 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008125 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008126 dequeue_entity(cfs_rq, se, 0);
8127
8128 se->load.weight = shares;
8129 se->load.inv_weight = div64_64((1ULL<<32), shares);
8130
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008131 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008132 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008133
8134 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008135}
8136
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008137static DEFINE_MUTEX(shares_mutex);
8138
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008139int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008140{
8141 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008142 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008143
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008144 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008145 * We can't change the weight of the root cgroup.
8146 */
8147 if (!tg->se[0])
8148 return -EINVAL;
8149
8150 /*
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008151 * A weight of 0 or 1 can cause arithmetics problems.
8152 * (The default weight is 1024 - so there's no practical
8153 * limitation from this.)
8154 */
8155 if (shares < 2)
8156 shares = 2;
8157
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008158 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008159 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008160 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008161
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008162 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008163 for_each_possible_cpu(i)
8164 unregister_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008165 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008166
8167 /* wait for any ongoing reference to this group to finish */
8168 synchronize_sched();
8169
8170 /*
8171 * Now we are free to modify the group's share on each cpu
8172 * w/o tripping rebalance_share or load_balance_fair.
8173 */
8174 tg->shares = shares;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008175 for_each_possible_cpu(i)
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008176 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008177
8178 /*
8179 * Enable load balance activity on this group, by inserting it back on
8180 * each cpu's rq->leaf_cfs_rq_list.
8181 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008182 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008183 for_each_possible_cpu(i)
8184 register_fair_sched_group(tg, i);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008185 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008186done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008187 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008188 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008189}
8190
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008191unsigned long sched_group_shares(struct task_group *tg)
8192{
8193 return tg->shares;
8194}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008195#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008196
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008197#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008198/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008199 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008200 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008201static DEFINE_MUTEX(rt_constraints_mutex);
8202
8203static unsigned long to_ratio(u64 period, u64 runtime)
8204{
8205 if (runtime == RUNTIME_INF)
8206 return 1ULL << 16;
8207
Peter Zijlstra2692a242008-02-27 12:00:46 +01008208 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008209}
8210
8211static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008212{
8213 struct task_group *tgi;
8214 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008215 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008216 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008217
8218 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008219 list_for_each_entry_rcu(tgi, &task_groups, list) {
8220 if (tgi == tg)
8221 continue;
8222
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008223 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8224 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008225 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008226 rcu_read_unlock();
8227
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008228 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008229}
8230
Dhaval Giani521f1a242008-02-28 15:21:56 +05308231/* Must be called with tasklist_lock held */
8232static inline int tg_has_rt_tasks(struct task_group *tg)
8233{
8234 struct task_struct *g, *p;
8235 do_each_thread(g, p) {
8236 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8237 return 1;
8238 } while_each_thread(g, p);
8239 return 0;
8240}
8241
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008242static int tg_set_bandwidth(struct task_group *tg,
8243 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008244{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008245 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008246
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008247 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308248 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008249 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308250 err = -EBUSY;
8251 goto unlock;
8252 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008253 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8254 err = -EINVAL;
8255 goto unlock;
8256 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008257
8258 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008259 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8260 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008261
8262 for_each_possible_cpu(i) {
8263 struct rt_rq *rt_rq = tg->rt_rq[i];
8264
8265 spin_lock(&rt_rq->rt_runtime_lock);
8266 rt_rq->rt_runtime = rt_runtime;
8267 spin_unlock(&rt_rq->rt_runtime_lock);
8268 }
8269 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008270 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308271 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008272 mutex_unlock(&rt_constraints_mutex);
8273
8274 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008275}
8276
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008277int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8278{
8279 u64 rt_runtime, rt_period;
8280
8281 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8282 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8283 if (rt_runtime_us < 0)
8284 rt_runtime = RUNTIME_INF;
8285
8286 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8287}
8288
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008289long sched_group_rt_runtime(struct task_group *tg)
8290{
8291 u64 rt_runtime_us;
8292
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008293 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008294 return -1;
8295
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008296 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008297 do_div(rt_runtime_us, NSEC_PER_USEC);
8298 return rt_runtime_us;
8299}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008300
8301int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8302{
8303 u64 rt_runtime, rt_period;
8304
8305 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8306 rt_runtime = tg->rt_bandwidth.rt_runtime;
8307
8308 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8309}
8310
8311long sched_group_rt_period(struct task_group *tg)
8312{
8313 u64 rt_period_us;
8314
8315 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8316 do_div(rt_period_us, NSEC_PER_USEC);
8317 return rt_period_us;
8318}
8319
8320static int sched_rt_global_constraints(void)
8321{
8322 int ret = 0;
8323
8324 mutex_lock(&rt_constraints_mutex);
8325 if (!__rt_schedulable(NULL, 1, 0))
8326 ret = -EINVAL;
8327 mutex_unlock(&rt_constraints_mutex);
8328
8329 return ret;
8330}
8331#else
8332static int sched_rt_global_constraints(void)
8333{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008334 unsigned long flags;
8335 int i;
8336
8337 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8338 for_each_possible_cpu(i) {
8339 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8340
8341 spin_lock(&rt_rq->rt_runtime_lock);
8342 rt_rq->rt_runtime = global_rt_runtime();
8343 spin_unlock(&rt_rq->rt_runtime_lock);
8344 }
8345 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8346
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008347 return 0;
8348}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008349#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008350
8351int sched_rt_handler(struct ctl_table *table, int write,
8352 struct file *filp, void __user *buffer, size_t *lenp,
8353 loff_t *ppos)
8354{
8355 int ret;
8356 int old_period, old_runtime;
8357 static DEFINE_MUTEX(mutex);
8358
8359 mutex_lock(&mutex);
8360 old_period = sysctl_sched_rt_period;
8361 old_runtime = sysctl_sched_rt_runtime;
8362
8363 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8364
8365 if (!ret && write) {
8366 ret = sched_rt_global_constraints();
8367 if (ret) {
8368 sysctl_sched_rt_period = old_period;
8369 sysctl_sched_rt_runtime = old_runtime;
8370 } else {
8371 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8372 def_rt_bandwidth.rt_period =
8373 ns_to_ktime(global_rt_period());
8374 }
8375 }
8376 mutex_unlock(&mutex);
8377
8378 return ret;
8379}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008380
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008381#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008382
8383/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008384static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008385{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008386 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8387 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008388}
8389
8390static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008391cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008392{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008393 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008394
Paul Menage2b01dfe2007-10-24 18:23:50 +02008395 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008396 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008397 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008398 return &init_task_group.css;
8399 }
8400
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008401 parent = cgroup_tg(cgrp->parent);
8402 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008403 if (IS_ERR(tg))
8404 return ERR_PTR(-ENOMEM);
8405
8406 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008407 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008408
8409 return &tg->css;
8410}
8411
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008412static void
8413cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008414{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008415 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008416
8417 sched_destroy_group(tg);
8418}
8419
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008420static int
8421cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8422 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008423{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008424#ifdef CONFIG_RT_GROUP_SCHED
8425 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008426 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008427 return -EINVAL;
8428#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008429 /* We don't support RT-tasks being in separate groups */
8430 if (tsk->sched_class != &fair_sched_class)
8431 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008432#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008433
8434 return 0;
8435}
8436
8437static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008438cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008439 struct cgroup *old_cont, struct task_struct *tsk)
8440{
8441 sched_move_task(tsk);
8442}
8443
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008444#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02008445static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8446 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008447{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008448 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008449}
8450
Paul Menage2b01dfe2007-10-24 18:23:50 +02008451static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008452{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008453 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008454
8455 return (u64) tg->shares;
8456}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008457#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008458
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008459#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008460static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008461 struct file *file,
8462 const char __user *userbuf,
8463 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008464{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008465 char buffer[64];
8466 int retval = 0;
8467 s64 val;
8468 char *end;
8469
8470 if (!nbytes)
8471 return -EINVAL;
8472 if (nbytes >= sizeof(buffer))
8473 return -E2BIG;
8474 if (copy_from_user(buffer, userbuf, nbytes))
8475 return -EFAULT;
8476
8477 buffer[nbytes] = 0; /* nul-terminate */
8478
8479 /* strip newline if necessary */
8480 if (nbytes && (buffer[nbytes-1] == '\n'))
8481 buffer[nbytes-1] = 0;
8482 val = simple_strtoll(buffer, &end, 0);
8483 if (*end)
8484 return -EINVAL;
8485
8486 /* Pass to subsystem */
8487 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
8488 if (!retval)
8489 retval = nbytes;
8490 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008491}
8492
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008493static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
8494 struct file *file,
8495 char __user *buf, size_t nbytes,
8496 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008497{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008498 char tmp[64];
8499 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
8500 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008501
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008502 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008503}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008504
8505static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8506 u64 rt_period_us)
8507{
8508 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
8509}
8510
8511static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
8512{
8513 return sched_group_rt_period(cgroup_tg(cgrp));
8514}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008515#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008516
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008517static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008518#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008519 {
8520 .name = "shares",
8521 .read_uint = cpu_shares_read_uint,
8522 .write_uint = cpu_shares_write_uint,
8523 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008524#endif
8525#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008526 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008527 .name = "rt_runtime_us",
8528 .read = cpu_rt_runtime_read,
8529 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008530 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008531 {
8532 .name = "rt_period_us",
8533 .read_uint = cpu_rt_period_read_uint,
8534 .write_uint = cpu_rt_period_write_uint,
8535 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008536#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008537};
8538
8539static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8540{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008541 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008542}
8543
8544struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01008545 .name = "cpu",
8546 .create = cpu_cgroup_create,
8547 .destroy = cpu_cgroup_destroy,
8548 .can_attach = cpu_cgroup_can_attach,
8549 .attach = cpu_cgroup_attach,
8550 .populate = cpu_cgroup_populate,
8551 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008552 .early_init = 1,
8553};
8554
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008555#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008556
8557#ifdef CONFIG_CGROUP_CPUACCT
8558
8559/*
8560 * CPU accounting code for task groups.
8561 *
8562 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
8563 * (balbir@in.ibm.com).
8564 */
8565
8566/* track cpu usage of a group of tasks */
8567struct cpuacct {
8568 struct cgroup_subsys_state css;
8569 /* cpuusage holds pointer to a u64-type object on every cpu */
8570 u64 *cpuusage;
8571};
8572
8573struct cgroup_subsys cpuacct_subsys;
8574
8575/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308576static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008577{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308578 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008579 struct cpuacct, css);
8580}
8581
8582/* return cpu accounting group to which this task belongs */
8583static inline struct cpuacct *task_ca(struct task_struct *tsk)
8584{
8585 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8586 struct cpuacct, css);
8587}
8588
8589/* create a new cpu accounting group */
8590static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05308591 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008592{
8593 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8594
8595 if (!ca)
8596 return ERR_PTR(-ENOMEM);
8597
8598 ca->cpuusage = alloc_percpu(u64);
8599 if (!ca->cpuusage) {
8600 kfree(ca);
8601 return ERR_PTR(-ENOMEM);
8602 }
8603
8604 return &ca->css;
8605}
8606
8607/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008608static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05308609cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008610{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308611 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008612
8613 free_percpu(ca->cpuusage);
8614 kfree(ca);
8615}
8616
8617/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308618static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008619{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308620 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008621 u64 totalcpuusage = 0;
8622 int i;
8623
8624 for_each_possible_cpu(i) {
8625 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8626
8627 /*
8628 * Take rq->lock to make 64-bit addition safe on 32-bit
8629 * platforms.
8630 */
8631 spin_lock_irq(&cpu_rq(i)->lock);
8632 totalcpuusage += *cpuusage;
8633 spin_unlock_irq(&cpu_rq(i)->lock);
8634 }
8635
8636 return totalcpuusage;
8637}
8638
Dhaval Giani0297b802008-02-29 10:02:44 +05308639static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
8640 u64 reset)
8641{
8642 struct cpuacct *ca = cgroup_ca(cgrp);
8643 int err = 0;
8644 int i;
8645
8646 if (reset) {
8647 err = -EINVAL;
8648 goto out;
8649 }
8650
8651 for_each_possible_cpu(i) {
8652 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8653
8654 spin_lock_irq(&cpu_rq(i)->lock);
8655 *cpuusage = 0;
8656 spin_unlock_irq(&cpu_rq(i)->lock);
8657 }
8658out:
8659 return err;
8660}
8661
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008662static struct cftype files[] = {
8663 {
8664 .name = "usage",
8665 .read_uint = cpuusage_read,
Dhaval Giani0297b802008-02-29 10:02:44 +05308666 .write_uint = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008667 },
8668};
8669
Dhaval Giani32cd7562008-02-29 10:02:43 +05308670static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008671{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308672 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008673}
8674
8675/*
8676 * charge this task's execution time to its accounting group.
8677 *
8678 * called with rq->lock held.
8679 */
8680static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8681{
8682 struct cpuacct *ca;
8683
8684 if (!cpuacct_subsys.active)
8685 return;
8686
8687 ca = task_ca(tsk);
8688 if (ca) {
8689 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8690
8691 *cpuusage += cputime;
8692 }
8693}
8694
8695struct cgroup_subsys cpuacct_subsys = {
8696 .name = "cpuacct",
8697 .create = cpuacct_create,
8698 .destroy = cpuacct_destroy,
8699 .populate = cpuacct_populate,
8700 .subsys_id = cpuacct_subsys_id,
8701};
8702#endif /* CONFIG_CGROUP_CPUACCT */