blob: a964ed9450947de981fa1d20417cb6f144dffe47 [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>
Peter Zijlstraf00b45c2008-04-19 19:45:00 +020071#include <linux/debugfs.h>
72#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Dumazet5517d862007-05-08 00:32:57 -070074#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020075#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * Convert user-nice values [ -20 ... 0 ... 19 ]
79 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
80 * and back.
81 */
82#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
83#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
84#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
85
86/*
87 * 'User priority' is the nice value converted to something we
88 * can work with better when scaling various scheduler parameters,
89 * it's a [ 0 ... 39 ] range.
90 */
91#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
92#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
93#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
94
95/*
Ingo Molnard7876a02008-01-25 21:08:19 +010096 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +010098#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200100#define NICE_0_LOAD SCHED_LOAD_SCALE
101#define NICE_0_SHIFT SCHED_LOAD_SHIFT
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * These are the 'tuning knobs' of the scheduler:
105 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200106 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * Timeslices get refilled after they expire.
108 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700110
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200111/*
112 * single value that denotes runtime == period, ie unlimited time.
113 */
114#define RUNTIME_INF ((u64)~0ULL)
115
Eric Dumazet5517d862007-05-08 00:32:57 -0700116#ifdef CONFIG_SMP
117/*
118 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
119 * Since cpu_power is a 'constant', we can use a reciprocal divide.
120 */
121static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
122{
123 return reciprocal_divide(load, sg->reciprocal_cpu_power);
124}
125
126/*
127 * Each time a sched group cpu_power is changed,
128 * we must compute its reciprocal value
129 */
130static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
131{
132 sg->__cpu_power += val;
133 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
134}
135#endif
136
Ingo Molnare05606d2007-07-09 18:51:59 +0200137static inline int rt_policy(int policy)
138{
139 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
140 return 1;
141 return 0;
142}
143
144static inline int task_has_rt_policy(struct task_struct *p)
145{
146 return rt_policy(p->policy);
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200150 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200152struct rt_prio_array {
153 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
154 struct list_head queue[MAX_RT_PRIO];
155};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200157struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100158 /* nests inside the rq lock: */
159 spinlock_t rt_runtime_lock;
160 ktime_t rt_period;
161 u64 rt_runtime;
162 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200163};
164
165static struct rt_bandwidth def_rt_bandwidth;
166
167static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
168
169static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
170{
171 struct rt_bandwidth *rt_b =
172 container_of(timer, struct rt_bandwidth, rt_period_timer);
173 ktime_t now;
174 int overrun;
175 int idle = 0;
176
177 for (;;) {
178 now = hrtimer_cb_get_time(timer);
179 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
180
181 if (!overrun)
182 break;
183
184 idle = do_sched_rt_period_timer(rt_b, overrun);
185 }
186
187 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
188}
189
190static
191void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
192{
193 rt_b->rt_period = ns_to_ktime(period);
194 rt_b->rt_runtime = runtime;
195
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200196 spin_lock_init(&rt_b->rt_runtime_lock);
197
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200198 hrtimer_init(&rt_b->rt_period_timer,
199 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
200 rt_b->rt_period_timer.function = sched_rt_period_timer;
201 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
202}
203
204static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
205{
206 ktime_t now;
207
208 if (rt_b->rt_runtime == RUNTIME_INF)
209 return;
210
211 if (hrtimer_active(&rt_b->rt_period_timer))
212 return;
213
214 spin_lock(&rt_b->rt_runtime_lock);
215 for (;;) {
216 if (hrtimer_active(&rt_b->rt_period_timer))
217 break;
218
219 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
220 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
221 hrtimer_start(&rt_b->rt_period_timer,
222 rt_b->rt_period_timer.expires,
223 HRTIMER_MODE_ABS);
224 }
225 spin_unlock(&rt_b->rt_runtime_lock);
226}
227
228#ifdef CONFIG_RT_GROUP_SCHED
229static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
230{
231 hrtimer_cancel(&rt_b->rt_period_timer);
232}
233#endif
234
Heiko Carstens712555e2008-04-28 11:33:07 +0200235/*
236 * sched_domains_mutex serializes calls to arch_init_sched_domains,
237 * detach_destroy_domains and partition_sched_domains.
238 */
239static DEFINE_MUTEX(sched_domains_mutex);
240
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100241#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200242
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700243#include <linux/cgroup.h>
244
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200245struct cfs_rq;
246
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100247static LIST_HEAD(task_groups);
248
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200249/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200250struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100251#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700252 struct cgroup_subsys_state css;
253#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100254
255#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200256 /* schedulable entities of this group on each cpu */
257 struct sched_entity **se;
258 /* runqueue "owned" by this group on each cpu */
259 struct cfs_rq **cfs_rq;
260 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100261#endif
262
263#ifdef CONFIG_RT_GROUP_SCHED
264 struct sched_rt_entity **rt_se;
265 struct rt_rq **rt_rq;
266
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200267 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100268#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100269
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100270 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100271 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200272
273 struct task_group *parent;
274 struct list_head siblings;
275 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200276};
277
Dhaval Giani354d60c2008-04-19 19:44:59 +0200278#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200279
280/*
281 * Root task group.
282 * Every UID task group (including init_task_group aka UID-0) will
283 * be a child to this group.
284 */
285struct task_group root_task_group;
286
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100287#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200288/* Default task group's sched entity on each cpu */
289static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
290/* Default task group's cfs_rq on each cpu */
291static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100292#endif
293
294#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100295static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
296static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100297#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200298#else
299#define root_task_group init_task_group
Dhaval Giani354d60c2008-04-19 19:44:59 +0200300#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100301
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100302/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100303 * a task group's cpu shares.
304 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100305static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100306
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100307#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100308#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100309# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200310#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100311# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200312#endif
313
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800314/*
315 * A weight of 0, 1 or ULONG_MAX can cause arithmetics problems.
316 * (The default weight is 1024 - so there's no practical
317 * limitation from this.)
318 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200319#define MIN_SHARES 2
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800320#define MAX_SHARES (ULONG_MAX - 1)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200321
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100322static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100323#endif
324
325/* Default task group.
326 * Every task in system belong to this group at bootup.
327 */
Mike Travis434d53b2008-04-04 18:11:04 -0700328struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200329
330/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200331static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200332{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200333 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200334
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100335#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200336 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100337#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700338 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
339 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200340#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100341 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200342#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200343 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200344}
345
346/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100347static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200348{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100349#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100350 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
351 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100352#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100353
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100354#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100355 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
356 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100357#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200358}
359
360#else
361
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100362static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200363
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100364#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200365
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200366/* CFS-related fields in a runqueue */
367struct cfs_rq {
368 struct load_weight load;
369 unsigned long nr_running;
370
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200371 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200372 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200373
374 struct rb_root tasks_timeline;
375 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200376
377 struct list_head tasks;
378 struct list_head *balance_iterator;
379
380 /*
381 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200382 * It is set to NULL otherwise (i.e when none are currently running).
383 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100384 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200385
386 unsigned long nr_spread_over;
387
Ingo Molnar62160e32007-10-15 17:00:03 +0200388#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200389 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
390
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100391 /*
392 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200393 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
394 * (like users, containers etc.)
395 *
396 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
397 * list is used during load balance.
398 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100399 struct list_head leaf_cfs_rq_list;
400 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200401
402#ifdef CONFIG_SMP
403 unsigned long task_weight;
404 unsigned long shares;
405 /*
406 * We need space to build a sched_domain wide view of the full task
407 * group tree, in order to avoid depending on dynamic memory allocation
408 * during the load balancing we place this in the per cpu task group
409 * hierarchy. This limits the load balancing to one instance per cpu,
410 * but more should not be needed anyway.
411 */
412 struct aggregate_struct {
413 /*
414 * load = weight(cpus) * f(tg)
415 *
416 * Where f(tg) is the recursive weight fraction assigned to
417 * this group.
418 */
419 unsigned long load;
420
421 /*
422 * part of the group weight distributed to this span.
423 */
424 unsigned long shares;
425
426 /*
427 * The sum of all runqueue weights within this span.
428 */
429 unsigned long rq_weight;
430
431 /*
432 * Weight contributed by tasks; this is the part we can
433 * influence by moving tasks around.
434 */
435 unsigned long task_weight;
436 } aggregate;
437#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200438#endif
439};
440
441/* Real-Time classes' related field in a runqueue: */
442struct rt_rq {
443 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100444 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100445#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100446 int highest_prio; /* highest queued rt task prio */
447#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100448#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100449 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100450 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100451#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100452 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100453 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200454 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100455 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200456 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100457
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100458#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100459 unsigned long rt_nr_boosted;
460
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100461 struct rq *rq;
462 struct list_head leaf_rt_rq_list;
463 struct task_group *tg;
464 struct sched_rt_entity *rt_se;
465#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200466};
467
Gregory Haskins57d885f2008-01-25 21:08:18 +0100468#ifdef CONFIG_SMP
469
470/*
471 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100472 * variables. Each exclusive cpuset essentially defines an island domain by
473 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100474 * exclusive cpuset is created, we also create and attach a new root-domain
475 * object.
476 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100477 */
478struct root_domain {
479 atomic_t refcount;
480 cpumask_t span;
481 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100482
Ingo Molnar0eab9142008-01-25 21:08:19 +0100483 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100484 * The "RT overload" flag: it gets set if a CPU has more than
485 * one runnable RT task.
486 */
487 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100488 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100489};
490
Gregory Haskinsdc938522008-01-25 21:08:26 +0100491/*
492 * By default the system creates a single root-domain with all cpus as
493 * members (mimicking the global state we have today).
494 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100495static struct root_domain def_root_domain;
496
497#endif
498
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * This is the main, per-CPU runqueue data structure.
501 *
502 * Locking rule: those places that want to lock multiple runqueues
503 * (such as the load balancing or the thread migration code), lock
504 * acquire operations must be ordered by ascending &runqueue.
505 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700506struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200507 /* runqueue lock: */
508 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 /*
511 * nr_running and cpu_load should be in the same cacheline because
512 * remote CPUs use both these fields when doing load calculation.
513 */
514 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200515 #define CPU_LOAD_IDX_MAX 5
516 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700517 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700518#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200519 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700520 unsigned char in_nohz_recently;
521#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200522 /* capture load from *all* tasks on this cpu: */
523 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200524 unsigned long nr_load_updates;
525 u64 nr_switches;
526
527 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100528 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100529
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200530#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200531 /* list of leaf cfs_rq on this cpu: */
532 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100533#endif
534#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100535 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 /*
539 * This is part of a global counter where only the total sum
540 * over all CPUs matters. A task can increase this counter on
541 * one CPU and if it got migrated afterwards it may decrease
542 * it on another CPU. Always updated under the runqueue lock:
543 */
544 unsigned long nr_uninterruptible;
545
Ingo Molnar36c8b582006-07-03 00:25:41 -0700546 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800547 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200549
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200550 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 atomic_t nr_iowait;
553
554#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100555 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct sched_domain *sd;
557
558 /* For active balancing */
559 int active_balance;
560 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200561 /* cpu of this runqueue: */
562 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Ingo Molnar36c8b582006-07-03 00:25:41 -0700564 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct list_head migration_queue;
566#endif
567
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100568#ifdef CONFIG_SCHED_HRTICK
569 unsigned long hrtick_flags;
570 ktime_t hrtick_expire;
571 struct hrtimer hrtick_timer;
572#endif
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574#ifdef CONFIG_SCHEDSTATS
575 /* latency stats */
576 struct sched_info rq_sched_info;
577
578 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200579 unsigned int yld_exp_empty;
580 unsigned int yld_act_empty;
581 unsigned int yld_both_empty;
582 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200585 unsigned int sched_switch;
586 unsigned int sched_count;
587 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200590 unsigned int ttwu_count;
591 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200592
593 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200594 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700596 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597};
598
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700599static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Ingo Molnardd41f592007-07-09 18:51:59 +0200601static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
602{
603 rq->curr->sched_class->check_preempt_curr(rq, p);
604}
605
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700606static inline int cpu_of(struct rq *rq)
607{
608#ifdef CONFIG_SMP
609 return rq->cpu;
610#else
611 return 0;
612#endif
613}
614
Ingo Molnar20d315d2007-07-09 18:51:58 +0200615/*
Nick Piggin674311d2005-06-25 14:57:27 -0700616 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700617 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700618 *
619 * The domain tree of any CPU may only be accessed from within
620 * preempt-disabled sections.
621 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700622#define for_each_domain(cpu, __sd) \
623 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
626#define this_rq() (&__get_cpu_var(runqueues))
627#define task_rq(p) cpu_rq(task_cpu(p))
628#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
629
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200630static inline void update_rq_clock(struct rq *rq)
631{
632 rq->clock = sched_clock_cpu(cpu_of(rq));
633}
634
Ingo Molnare436d802007-07-19 21:28:35 +0200635/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200636 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
637 */
638#ifdef CONFIG_SCHED_DEBUG
639# define const_debug __read_mostly
640#else
641# define const_debug static const
642#endif
643
644/*
645 * Debugging: various feature bits
646 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200647
648#define SCHED_FEAT(name, enabled) \
649 __SCHED_FEAT_##name ,
650
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200651enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200652#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200653};
654
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200655#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200656
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200657#define SCHED_FEAT(name, enabled) \
658 (1UL << __SCHED_FEAT_##name) * enabled |
659
660const_debug unsigned int sysctl_sched_features =
661#include "sched_features.h"
662 0;
663
664#undef SCHED_FEAT
665
666#ifdef CONFIG_SCHED_DEBUG
667#define SCHED_FEAT(name, enabled) \
668 #name ,
669
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700670static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200671#include "sched_features.h"
672 NULL
673};
674
675#undef SCHED_FEAT
676
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700677static int sched_feat_open(struct inode *inode, struct file *filp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200678{
679 filp->private_data = inode->i_private;
680 return 0;
681}
682
683static ssize_t
684sched_feat_read(struct file *filp, char __user *ubuf,
685 size_t cnt, loff_t *ppos)
686{
687 char *buf;
688 int r = 0;
689 int len = 0;
690 int i;
691
692 for (i = 0; sched_feat_names[i]; i++) {
693 len += strlen(sched_feat_names[i]);
694 len += 4;
695 }
696
697 buf = kmalloc(len + 2, GFP_KERNEL);
698 if (!buf)
699 return -ENOMEM;
700
701 for (i = 0; sched_feat_names[i]; i++) {
702 if (sysctl_sched_features & (1UL << i))
703 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
704 else
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200705 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200706 }
707
708 r += sprintf(buf + r, "\n");
709 WARN_ON(r >= len + 2);
710
711 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
712
713 kfree(buf);
714
715 return r;
716}
717
718static ssize_t
719sched_feat_write(struct file *filp, const char __user *ubuf,
720 size_t cnt, loff_t *ppos)
721{
722 char buf[64];
723 char *cmp = buf;
724 int neg = 0;
725 int i;
726
727 if (cnt > 63)
728 cnt = 63;
729
730 if (copy_from_user(&buf, ubuf, cnt))
731 return -EFAULT;
732
733 buf[cnt] = 0;
734
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200735 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200736 neg = 1;
737 cmp += 3;
738 }
739
740 for (i = 0; sched_feat_names[i]; i++) {
741 int len = strlen(sched_feat_names[i]);
742
743 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
744 if (neg)
745 sysctl_sched_features &= ~(1UL << i);
746 else
747 sysctl_sched_features |= (1UL << i);
748 break;
749 }
750 }
751
752 if (!sched_feat_names[i])
753 return -EINVAL;
754
755 filp->f_pos += cnt;
756
757 return cnt;
758}
759
760static struct file_operations sched_feat_fops = {
761 .open = sched_feat_open,
762 .read = sched_feat_read,
763 .write = sched_feat_write,
764};
765
766static __init int sched_init_debug(void)
767{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200768 debugfs_create_file("sched_features", 0644, NULL, NULL,
769 &sched_feat_fops);
770
771 return 0;
772}
773late_initcall(sched_init_debug);
774
775#endif
776
777#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200778
779/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100780 * Number of tasks to iterate in a single balance run.
781 * Limited because this is done with IRQs disabled.
782 */
783const_debug unsigned int sysctl_sched_nr_migrate = 32;
784
785/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100786 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100787 * default: 1s
788 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100789unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100790
Ingo Molnar6892b752008-02-13 14:02:36 +0100791static __read_mostly int scheduler_running;
792
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100793/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100794 * part of the period that we allow rt tasks to run in us.
795 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100796 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100797int sysctl_sched_rt_runtime = 950000;
798
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200799static inline u64 global_rt_period(void)
800{
801 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
802}
803
804static inline u64 global_rt_runtime(void)
805{
806 if (sysctl_sched_rt_period < 0)
807 return RUNTIME_INF;
808
809 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
810}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100811
Ingo Molnar690229a2008-04-23 09:31:35 +0200812unsigned long long time_sync_thresh = 100000;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100813
814static DEFINE_PER_CPU(unsigned long long, time_offset);
815static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
816
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100817/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100818 * Global lock which we take every now and then to synchronize
819 * the CPUs time. This method is not warp-safe, but it's good
820 * enough to synchronize slowly diverging time sources and thus
821 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200822 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100823static DEFINE_SPINLOCK(time_sync_lock);
824static unsigned long long prev_global_time;
825
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200826static unsigned long long __sync_cpu_clock(unsigned long long time, int cpu)
Ingo Molnar27ec4402008-02-28 21:00:21 +0100827{
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200828 /*
829 * We want this inlined, to not get tracer function calls
830 * in this critical section:
831 */
832 spin_acquire(&time_sync_lock.dep_map, 0, 0, _THIS_IP_);
833 __raw_spin_lock(&time_sync_lock.raw_lock);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100834
835 if (time < prev_global_time) {
836 per_cpu(time_offset, cpu) += prev_global_time - time;
837 time = prev_global_time;
838 } else {
839 prev_global_time = time;
840 }
841
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200842 __raw_spin_unlock(&time_sync_lock.raw_lock);
843 spin_release(&time_sync_lock.dep_map, 1, _THIS_IP_);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100844
845 return time;
846}
847
848static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200849{
Ingo Molnare436d802007-07-19 21:28:35 +0200850 unsigned long long now;
Ingo Molnare436d802007-07-19 21:28:35 +0200851
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100852 /*
853 * Only call sched_clock() if the scheduler has already been
854 * initialized (some code might call cpu_clock() very early):
855 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100856 if (unlikely(!scheduler_running))
857 return 0;
858
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200859 now = sched_clock_cpu(cpu);
Ingo Molnare436d802007-07-19 21:28:35 +0200860
861 return now;
862}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100863
864/*
865 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
866 * clock constructed from sched_clock():
867 */
868unsigned long long cpu_clock(int cpu)
869{
870 unsigned long long prev_cpu_time, time, delta_time;
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200871 unsigned long flags;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100872
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200873 local_irq_save(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100874 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
875 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
876 delta_time = time-prev_cpu_time;
877
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200878 if (unlikely(delta_time > time_sync_thresh)) {
Ingo Molnar27ec4402008-02-28 21:00:21 +0100879 time = __sync_cpu_clock(time, cpu);
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200880 per_cpu(prev_cpu_time, cpu) = time;
881 }
882 local_irq_restore(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100883
884 return time;
885}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200886EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700889# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700891#ifndef finish_arch_switch
892# define finish_arch_switch(prev) do { } while (0)
893#endif
894
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100895static inline int task_current(struct rq *rq, struct task_struct *p)
896{
897 return rq->curr == p;
898}
899
Nick Piggin4866cde2005-06-25 14:57:23 -0700900#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700901static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700902{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100903 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700904}
905
Ingo Molnar70b97a72006-07-03 00:25:42 -0700906static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700907{
908}
909
Ingo Molnar70b97a72006-07-03 00:25:42 -0700910static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700911{
Ingo Molnarda04c032005-09-13 11:17:59 +0200912#ifdef CONFIG_DEBUG_SPINLOCK
913 /* this is a valid case when another task releases the spinlock */
914 rq->lock.owner = current;
915#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700916 /*
917 * If we are tracking spinlock dependencies then we have to
918 * fix up the runqueue lock - which gets 'carried over' from
919 * prev into current:
920 */
921 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
922
Nick Piggin4866cde2005-06-25 14:57:23 -0700923 spin_unlock_irq(&rq->lock);
924}
925
926#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700927static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700928{
929#ifdef CONFIG_SMP
930 return p->oncpu;
931#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100932 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700933#endif
934}
935
Ingo Molnar70b97a72006-07-03 00:25:42 -0700936static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700937{
938#ifdef CONFIG_SMP
939 /*
940 * We can optimise this out completely for !SMP, because the
941 * SMP rebalancing from interrupt is the only thing that cares
942 * here.
943 */
944 next->oncpu = 1;
945#endif
946#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
947 spin_unlock_irq(&rq->lock);
948#else
949 spin_unlock(&rq->lock);
950#endif
951}
952
Ingo Molnar70b97a72006-07-03 00:25:42 -0700953static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700954{
955#ifdef CONFIG_SMP
956 /*
957 * After ->oncpu is cleared, the task can be moved to a different CPU.
958 * We must ensure this doesn't happen until the switch is completely
959 * finished.
960 */
961 smp_wmb();
962 prev->oncpu = 0;
963#endif
964#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
965 local_irq_enable();
966#endif
967}
968#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700971 * __task_rq_lock - lock the runqueue a given task resides on.
972 * Must be called interrupts disabled.
973 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700974static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700975 __acquires(rq->lock)
976{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200977 for (;;) {
978 struct rq *rq = task_rq(p);
979 spin_lock(&rq->lock);
980 if (likely(rq == task_rq(p)))
981 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700982 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700983 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700984}
985
986/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100988 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 * explicitly disabling preemption.
990 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700991static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 __acquires(rq->lock)
993{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700994 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Andi Kleen3a5c3592007-10-15 17:00:14 +0200996 for (;;) {
997 local_irq_save(*flags);
998 rq = task_rq(p);
999 spin_lock(&rq->lock);
1000 if (likely(rq == task_rq(p)))
1001 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Alexey Dobriyana9957442007-10-15 17:00:13 +02001006static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001007 __releases(rq->lock)
1008{
1009 spin_unlock(&rq->lock);
1010}
1011
Ingo Molnar70b97a72006-07-03 00:25:42 -07001012static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 __releases(rq->lock)
1014{
1015 spin_unlock_irqrestore(&rq->lock, *flags);
1016}
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001019 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001021static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 __acquires(rq->lock)
1023{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001024 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 local_irq_disable();
1027 rq = this_rq();
1028 spin_lock(&rq->lock);
1029
1030 return rq;
1031}
1032
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001033static void __resched_task(struct task_struct *p, int tif_bit);
1034
1035static inline void resched_task(struct task_struct *p)
1036{
1037 __resched_task(p, TIF_NEED_RESCHED);
1038}
1039
1040#ifdef CONFIG_SCHED_HRTICK
1041/*
1042 * Use HR-timers to deliver accurate preemption points.
1043 *
1044 * Its all a bit involved since we cannot program an hrt while holding the
1045 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1046 * reschedule event.
1047 *
1048 * When we get rescheduled we reprogram the hrtick_timer outside of the
1049 * rq->lock.
1050 */
1051static inline void resched_hrt(struct task_struct *p)
1052{
1053 __resched_task(p, TIF_HRTICK_RESCHED);
1054}
1055
1056static inline void resched_rq(struct rq *rq)
1057{
1058 unsigned long flags;
1059
1060 spin_lock_irqsave(&rq->lock, flags);
1061 resched_task(rq->curr);
1062 spin_unlock_irqrestore(&rq->lock, flags);
1063}
1064
1065enum {
1066 HRTICK_SET, /* re-programm hrtick_timer */
1067 HRTICK_RESET, /* not a new slice */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001068 HRTICK_BLOCK, /* stop hrtick operations */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001069};
1070
1071/*
1072 * Use hrtick when:
1073 * - enabled by features
1074 * - hrtimer is actually high res
1075 */
1076static inline int hrtick_enabled(struct rq *rq)
1077{
1078 if (!sched_feat(HRTICK))
1079 return 0;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001080 if (unlikely(test_bit(HRTICK_BLOCK, &rq->hrtick_flags)))
1081 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001082 return hrtimer_is_hres_active(&rq->hrtick_timer);
1083}
1084
1085/*
1086 * Called to set the hrtick timer state.
1087 *
1088 * called with rq->lock held and irqs disabled
1089 */
1090static void hrtick_start(struct rq *rq, u64 delay, int reset)
1091{
1092 assert_spin_locked(&rq->lock);
1093
1094 /*
1095 * preempt at: now + delay
1096 */
1097 rq->hrtick_expire =
1098 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1099 /*
1100 * indicate we need to program the timer
1101 */
1102 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1103 if (reset)
1104 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1105
1106 /*
1107 * New slices are called from the schedule path and don't need a
1108 * forced reschedule.
1109 */
1110 if (reset)
1111 resched_hrt(rq->curr);
1112}
1113
1114static void hrtick_clear(struct rq *rq)
1115{
1116 if (hrtimer_active(&rq->hrtick_timer))
1117 hrtimer_cancel(&rq->hrtick_timer);
1118}
1119
1120/*
1121 * Update the timer from the possible pending state.
1122 */
1123static void hrtick_set(struct rq *rq)
1124{
1125 ktime_t time;
1126 int set, reset;
1127 unsigned long flags;
1128
1129 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1130
1131 spin_lock_irqsave(&rq->lock, flags);
1132 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1133 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1134 time = rq->hrtick_expire;
1135 clear_thread_flag(TIF_HRTICK_RESCHED);
1136 spin_unlock_irqrestore(&rq->lock, flags);
1137
1138 if (set) {
1139 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1140 if (reset && !hrtimer_active(&rq->hrtick_timer))
1141 resched_rq(rq);
1142 } else
1143 hrtick_clear(rq);
1144}
1145
1146/*
1147 * High-resolution timer tick.
1148 * Runs from hardirq context with interrupts disabled.
1149 */
1150static enum hrtimer_restart hrtick(struct hrtimer *timer)
1151{
1152 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1153
1154 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1155
1156 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001157 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001158 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1159 spin_unlock(&rq->lock);
1160
1161 return HRTIMER_NORESTART;
1162}
1163
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001164static void hotplug_hrtick_disable(int cpu)
1165{
1166 struct rq *rq = cpu_rq(cpu);
1167 unsigned long flags;
1168
1169 spin_lock_irqsave(&rq->lock, flags);
1170 rq->hrtick_flags = 0;
1171 __set_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1172 spin_unlock_irqrestore(&rq->lock, flags);
1173
1174 hrtick_clear(rq);
1175}
1176
1177static void hotplug_hrtick_enable(int cpu)
1178{
1179 struct rq *rq = cpu_rq(cpu);
1180 unsigned long flags;
1181
1182 spin_lock_irqsave(&rq->lock, flags);
1183 __clear_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1184 spin_unlock_irqrestore(&rq->lock, flags);
1185}
1186
1187static int
1188hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1189{
1190 int cpu = (int)(long)hcpu;
1191
1192 switch (action) {
1193 case CPU_UP_CANCELED:
1194 case CPU_UP_CANCELED_FROZEN:
1195 case CPU_DOWN_PREPARE:
1196 case CPU_DOWN_PREPARE_FROZEN:
1197 case CPU_DEAD:
1198 case CPU_DEAD_FROZEN:
1199 hotplug_hrtick_disable(cpu);
1200 return NOTIFY_OK;
1201
1202 case CPU_UP_PREPARE:
1203 case CPU_UP_PREPARE_FROZEN:
1204 case CPU_DOWN_FAILED:
1205 case CPU_DOWN_FAILED_FROZEN:
1206 case CPU_ONLINE:
1207 case CPU_ONLINE_FROZEN:
1208 hotplug_hrtick_enable(cpu);
1209 return NOTIFY_OK;
1210 }
1211
1212 return NOTIFY_DONE;
1213}
1214
1215static void init_hrtick(void)
1216{
1217 hotcpu_notifier(hotplug_hrtick, 0);
1218}
1219
1220static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001221{
1222 rq->hrtick_flags = 0;
1223 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1224 rq->hrtick_timer.function = hrtick;
1225 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1226}
1227
1228void hrtick_resched(void)
1229{
1230 struct rq *rq;
1231 unsigned long flags;
1232
1233 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1234 return;
1235
1236 local_irq_save(flags);
1237 rq = cpu_rq(smp_processor_id());
1238 hrtick_set(rq);
1239 local_irq_restore(flags);
1240}
1241#else
1242static inline void hrtick_clear(struct rq *rq)
1243{
1244}
1245
1246static inline void hrtick_set(struct rq *rq)
1247{
1248}
1249
1250static inline void init_rq_hrtick(struct rq *rq)
1251{
1252}
1253
1254void hrtick_resched(void)
1255{
1256}
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001257
1258static inline void init_hrtick(void)
1259{
1260}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001261#endif
1262
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001263/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001264 * resched_task - mark a task 'to be rescheduled now'.
1265 *
1266 * On UP this means the setting of the need_resched flag, on SMP it
1267 * might also involve a cross-CPU call to trigger the scheduler on
1268 * the target CPU.
1269 */
1270#ifdef CONFIG_SMP
1271
1272#ifndef tsk_is_polling
1273#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1274#endif
1275
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001276static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001277{
1278 int cpu;
1279
1280 assert_spin_locked(&task_rq(p)->lock);
1281
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001282 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001283 return;
1284
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001285 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001286
1287 cpu = task_cpu(p);
1288 if (cpu == smp_processor_id())
1289 return;
1290
1291 /* NEED_RESCHED must be visible before we test polling */
1292 smp_mb();
1293 if (!tsk_is_polling(p))
1294 smp_send_reschedule(cpu);
1295}
1296
1297static void resched_cpu(int cpu)
1298{
1299 struct rq *rq = cpu_rq(cpu);
1300 unsigned long flags;
1301
1302 if (!spin_trylock_irqsave(&rq->lock, flags))
1303 return;
1304 resched_task(cpu_curr(cpu));
1305 spin_unlock_irqrestore(&rq->lock, flags);
1306}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001307
1308#ifdef CONFIG_NO_HZ
1309/*
1310 * When add_timer_on() enqueues a timer into the timer wheel of an
1311 * idle CPU then this timer might expire before the next timer event
1312 * which is scheduled to wake up that CPU. In case of a completely
1313 * idle system the next event might even be infinite time into the
1314 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1315 * leaves the inner idle loop so the newly added timer is taken into
1316 * account when the CPU goes back to idle and evaluates the timer
1317 * wheel for the next timer event.
1318 */
1319void wake_up_idle_cpu(int cpu)
1320{
1321 struct rq *rq = cpu_rq(cpu);
1322
1323 if (cpu == smp_processor_id())
1324 return;
1325
1326 /*
1327 * This is safe, as this function is called with the timer
1328 * wheel base lock of (cpu) held. When the CPU is on the way
1329 * to idle and has not yet set rq->curr to idle then it will
1330 * be serialized on the timer wheel base lock and take the new
1331 * timer into account automatically.
1332 */
1333 if (rq->curr != rq->idle)
1334 return;
1335
1336 /*
1337 * We can set TIF_RESCHED on the idle task of the other CPU
1338 * lockless. The worst case is that the other CPU runs the
1339 * idle task through an additional NOOP schedule()
1340 */
1341 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1342
1343 /* NEED_RESCHED must be visible before we test polling */
1344 smp_mb();
1345 if (!tsk_is_polling(rq->idle))
1346 smp_send_reschedule(cpu);
1347}
1348#endif
1349
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001350#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001351static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001352{
1353 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001354 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001355}
1356#endif
1357
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001358#if BITS_PER_LONG == 32
1359# define WMULT_CONST (~0UL)
1360#else
1361# define WMULT_CONST (1UL << 32)
1362#endif
1363
1364#define WMULT_SHIFT 32
1365
Ingo Molnar194081e2007-08-09 11:16:51 +02001366/*
1367 * Shift right and round:
1368 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001369#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001370
Peter Zijlstra8f1bc382008-04-19 19:45:00 +02001371/*
1372 * delta *= weight / lw
1373 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001374static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001375calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1376 struct load_weight *lw)
1377{
1378 u64 tmp;
1379
Peter Zijlstrae05510d2008-05-05 23:56:17 +02001380 if (!lw->inv_weight)
1381 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)/(lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001382
1383 tmp = (u64)delta_exec * weight;
1384 /*
1385 * Check whether we'd overflow the 64-bit multiplication:
1386 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001387 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001388 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001389 WMULT_SHIFT/2);
1390 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001391 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001392
Ingo Molnarecf691d2007-08-02 17:41:40 +02001393 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001394}
1395
Ingo Molnar10919852007-10-15 17:00:04 +02001396static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001397{
1398 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001399 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001400}
1401
Ingo Molnar10919852007-10-15 17:00:04 +02001402static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001403{
1404 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001405 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001406}
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001409 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1410 * of tasks with abnormal "nice" values across CPUs the contribution that
1411 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001412 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001413 * scaled version of the new time slice allocation that they receive on time
1414 * slice expiry etc.
1415 */
1416
Ingo Molnardd41f592007-07-09 18:51:59 +02001417#define WEIGHT_IDLEPRIO 2
1418#define WMULT_IDLEPRIO (1 << 31)
1419
1420/*
1421 * Nice levels are multiplicative, with a gentle 10% change for every
1422 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1423 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1424 * that remained on nice 0.
1425 *
1426 * The "10% effect" is relative and cumulative: from _any_ nice level,
1427 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001428 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1429 * If a task goes up by ~10% and another task goes down by ~10% then
1430 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001431 */
1432static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001433 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1434 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1435 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1436 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1437 /* 0 */ 1024, 820, 655, 526, 423,
1438 /* 5 */ 335, 272, 215, 172, 137,
1439 /* 10 */ 110, 87, 70, 56, 45,
1440 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001441};
1442
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001443/*
1444 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1445 *
1446 * In cases where the weight does not change often, we can use the
1447 * precalculated inverse to speed up arithmetics by turning divisions
1448 * into multiplications:
1449 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001450static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001451 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1452 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1453 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1454 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1455 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1456 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1457 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1458 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001459};
Peter Williams2dd73a42006-06-27 02:54:34 -07001460
Ingo Molnardd41f592007-07-09 18:51:59 +02001461static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1462
1463/*
1464 * runqueue iterator, to support SMP load-balancing between different
1465 * scheduling classes, without having to expose their internal data
1466 * structures to the load-balancing proper:
1467 */
1468struct rq_iterator {
1469 void *arg;
1470 struct task_struct *(*start)(void *);
1471 struct task_struct *(*next)(void *);
1472};
1473
Peter Williamse1d14842007-10-24 18:23:51 +02001474#ifdef CONFIG_SMP
1475static unsigned long
1476balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1477 unsigned long max_load_move, struct sched_domain *sd,
1478 enum cpu_idle_type idle, int *all_pinned,
1479 int *this_best_prio, struct rq_iterator *iterator);
1480
1481static int
1482iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1483 struct sched_domain *sd, enum cpu_idle_type idle,
1484 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001485#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001486
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001487#ifdef CONFIG_CGROUP_CPUACCT
1488static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1489#else
1490static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1491#endif
1492
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001493static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1494{
1495 update_load_add(&rq->load, load);
1496}
1497
1498static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1499{
1500 update_load_sub(&rq->load, load);
1501}
1502
Gregory Haskinse7693a32008-01-25 21:08:09 +01001503#ifdef CONFIG_SMP
1504static unsigned long source_load(int cpu, int type);
1505static unsigned long target_load(int cpu, int type);
1506static unsigned long cpu_avg_load_per_task(int cpu);
1507static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001508
1509#ifdef CONFIG_FAIR_GROUP_SCHED
1510
1511/*
1512 * Group load balancing.
1513 *
1514 * We calculate a few balance domain wide aggregate numbers; load and weight.
1515 * Given the pictures below, and assuming each item has equal weight:
1516 *
1517 * root 1 - thread
1518 * / | \ A - group
1519 * A 1 B
1520 * /|\ / \
1521 * C 2 D 3 4
1522 * | |
1523 * 5 6
1524 *
1525 * load:
1526 * A and B get 1/3-rd of the total load. C and D get 1/3-rd of A's 1/3-rd,
1527 * which equals 1/9-th of the total load.
1528 *
1529 * shares:
1530 * The weight of this group on the selected cpus.
1531 *
1532 * rq_weight:
1533 * Direct sum of all the cpu's their rq weight, e.g. A would get 3 while
1534 * B would get 2.
1535 *
1536 * task_weight:
1537 * Part of the rq_weight contributed by tasks; all groups except B would
1538 * get 1, B gets 2.
1539 */
1540
1541static inline struct aggregate_struct *
1542aggregate(struct task_group *tg, struct sched_domain *sd)
1543{
1544 return &tg->cfs_rq[sd->first_cpu]->aggregate;
1545}
1546
1547typedef void (*aggregate_func)(struct task_group *, struct sched_domain *);
1548
1549/*
1550 * Iterate the full tree, calling @down when first entering a node and @up when
1551 * leaving it for the final time.
1552 */
1553static
1554void aggregate_walk_tree(aggregate_func down, aggregate_func up,
1555 struct sched_domain *sd)
1556{
1557 struct task_group *parent, *child;
1558
1559 rcu_read_lock();
1560 parent = &root_task_group;
1561down:
1562 (*down)(parent, sd);
1563 list_for_each_entry_rcu(child, &parent->children, siblings) {
1564 parent = child;
1565 goto down;
1566
1567up:
1568 continue;
1569 }
1570 (*up)(parent, sd);
1571
1572 child = parent;
1573 parent = parent->parent;
1574 if (parent)
1575 goto up;
1576 rcu_read_unlock();
1577}
1578
1579/*
1580 * Calculate the aggregate runqueue weight.
1581 */
1582static
1583void aggregate_group_weight(struct task_group *tg, struct sched_domain *sd)
1584{
1585 unsigned long rq_weight = 0;
1586 unsigned long task_weight = 0;
1587 int i;
1588
1589 for_each_cpu_mask(i, sd->span) {
1590 rq_weight += tg->cfs_rq[i]->load.weight;
1591 task_weight += tg->cfs_rq[i]->task_weight;
1592 }
1593
1594 aggregate(tg, sd)->rq_weight = rq_weight;
1595 aggregate(tg, sd)->task_weight = task_weight;
1596}
1597
1598/*
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001599 * Compute the weight of this group on the given cpus.
1600 */
1601static
1602void aggregate_group_shares(struct task_group *tg, struct sched_domain *sd)
1603{
1604 unsigned long shares = 0;
1605 int i;
1606
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001607 for_each_cpu_mask(i, sd->span)
1608 shares += tg->cfs_rq[i]->shares;
1609
Peter Zijlstra3f5087a2008-04-25 00:25:08 +02001610 if ((!shares && aggregate(tg, sd)->rq_weight) || shares > tg->shares)
1611 shares = tg->shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001612
1613 aggregate(tg, sd)->shares = shares;
1614}
1615
1616/*
1617 * Compute the load fraction assigned to this group, relies on the aggregate
1618 * weight and this group's parent's load, i.e. top-down.
1619 */
1620static
1621void aggregate_group_load(struct task_group *tg, struct sched_domain *sd)
1622{
1623 unsigned long load;
1624
1625 if (!tg->parent) {
1626 int i;
1627
1628 load = 0;
1629 for_each_cpu_mask(i, sd->span)
1630 load += cpu_rq(i)->load.weight;
1631
1632 } else {
1633 load = aggregate(tg->parent, sd)->load;
1634
1635 /*
1636 * shares is our weight in the parent's rq so
1637 * shares/parent->rq_weight gives our fraction of the load
1638 */
1639 load *= aggregate(tg, sd)->shares;
1640 load /= aggregate(tg->parent, sd)->rq_weight + 1;
1641 }
1642
1643 aggregate(tg, sd)->load = load;
1644}
1645
1646static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1647
1648/*
1649 * Calculate and set the cpu's group shares.
1650 */
1651static void
1652__update_group_shares_cpu(struct task_group *tg, struct sched_domain *sd,
1653 int tcpu)
1654{
1655 int boost = 0;
1656 unsigned long shares;
1657 unsigned long rq_weight;
1658
1659 if (!tg->se[tcpu])
1660 return;
1661
1662 rq_weight = tg->cfs_rq[tcpu]->load.weight;
1663
1664 /*
1665 * If there are currently no tasks on the cpu pretend there is one of
1666 * average load so that when a new task gets to run here it will not
1667 * get delayed by group starvation.
1668 */
1669 if (!rq_weight) {
1670 boost = 1;
1671 rq_weight = NICE_0_LOAD;
1672 }
1673
1674 /*
1675 * \Sum shares * rq_weight
1676 * shares = -----------------------
1677 * \Sum rq_weight
1678 *
1679 */
1680 shares = aggregate(tg, sd)->shares * rq_weight;
1681 shares /= aggregate(tg, sd)->rq_weight + 1;
1682
1683 /*
1684 * record the actual number of shares, not the boosted amount.
1685 */
1686 tg->cfs_rq[tcpu]->shares = boost ? 0 : shares;
1687
1688 if (shares < MIN_SHARES)
1689 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08001690 else if (shares > MAX_SHARES)
1691 shares = MAX_SHARES;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001692
1693 __set_se_shares(tg->se[tcpu], shares);
1694}
1695
1696/*
1697 * Re-adjust the weights on the cpu the task came from and on the cpu the
1698 * task went to.
1699 */
1700static void
1701__move_group_shares(struct task_group *tg, struct sched_domain *sd,
1702 int scpu, int dcpu)
1703{
1704 unsigned long shares;
1705
1706 shares = tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1707
1708 __update_group_shares_cpu(tg, sd, scpu);
1709 __update_group_shares_cpu(tg, sd, dcpu);
1710
1711 /*
1712 * ensure we never loose shares due to rounding errors in the
1713 * above redistribution.
1714 */
1715 shares -= tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1716 if (shares)
1717 tg->cfs_rq[dcpu]->shares += shares;
1718}
1719
1720/*
1721 * Because changing a group's shares changes the weight of the super-group
1722 * we need to walk up the tree and change all shares until we hit the root.
1723 */
1724static void
1725move_group_shares(struct task_group *tg, struct sched_domain *sd,
1726 int scpu, int dcpu)
1727{
1728 while (tg) {
1729 __move_group_shares(tg, sd, scpu, dcpu);
1730 tg = tg->parent;
1731 }
1732}
1733
1734static
1735void aggregate_group_set_shares(struct task_group *tg, struct sched_domain *sd)
1736{
1737 unsigned long shares = aggregate(tg, sd)->shares;
1738 int i;
1739
1740 for_each_cpu_mask(i, sd->span) {
1741 struct rq *rq = cpu_rq(i);
1742 unsigned long flags;
1743
1744 spin_lock_irqsave(&rq->lock, flags);
1745 __update_group_shares_cpu(tg, sd, i);
1746 spin_unlock_irqrestore(&rq->lock, flags);
1747 }
1748
1749 aggregate_group_shares(tg, sd);
1750
1751 /*
1752 * ensure we never loose shares due to rounding errors in the
1753 * above redistribution.
1754 */
1755 shares -= aggregate(tg, sd)->shares;
1756 if (shares) {
1757 tg->cfs_rq[sd->first_cpu]->shares += shares;
1758 aggregate(tg, sd)->shares += shares;
1759 }
1760}
1761
1762/*
1763 * Calculate the accumulative weight and recursive load of each task group
1764 * while walking down the tree.
1765 */
1766static
1767void aggregate_get_down(struct task_group *tg, struct sched_domain *sd)
1768{
1769 aggregate_group_weight(tg, sd);
1770 aggregate_group_shares(tg, sd);
1771 aggregate_group_load(tg, sd);
1772}
1773
1774/*
1775 * Rebalance the cpu shares while walking back up the tree.
1776 */
1777static
1778void aggregate_get_up(struct task_group *tg, struct sched_domain *sd)
1779{
1780 aggregate_group_set_shares(tg, sd);
1781}
1782
1783static DEFINE_PER_CPU(spinlock_t, aggregate_lock);
1784
1785static void __init init_aggregate(void)
1786{
1787 int i;
1788
1789 for_each_possible_cpu(i)
1790 spin_lock_init(&per_cpu(aggregate_lock, i));
1791}
1792
1793static int get_aggregate(struct sched_domain *sd)
1794{
1795 if (!spin_trylock(&per_cpu(aggregate_lock, sd->first_cpu)))
1796 return 0;
1797
1798 aggregate_walk_tree(aggregate_get_down, aggregate_get_up, sd);
1799 return 1;
1800}
1801
1802static void put_aggregate(struct sched_domain *sd)
1803{
1804 spin_unlock(&per_cpu(aggregate_lock, sd->first_cpu));
1805}
1806
1807static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1808{
1809 cfs_rq->shares = shares;
1810}
1811
1812#else
1813
1814static inline void init_aggregate(void)
1815{
1816}
1817
1818static inline int get_aggregate(struct sched_domain *sd)
1819{
1820 return 0;
1821}
1822
1823static inline void put_aggregate(struct sched_domain *sd)
1824{
1825}
1826#endif
1827
1828#else /* CONFIG_SMP */
1829
1830#ifdef CONFIG_FAIR_GROUP_SCHED
1831static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1832{
1833}
1834#endif
1835
Gregory Haskinse7693a32008-01-25 21:08:09 +01001836#endif /* CONFIG_SMP */
1837
Ingo Molnardd41f592007-07-09 18:51:59 +02001838#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001839#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001840#include "sched_fair.c"
1841#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001842#ifdef CONFIG_SCHED_DEBUG
1843# include "sched_debug.c"
1844#endif
1845
1846#define sched_class_highest (&rt_sched_class)
1847
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001848static void inc_nr_running(struct rq *rq)
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001849{
1850 rq->nr_running++;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001851}
1852
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001853static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001854{
1855 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001856}
1857
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001858static void set_load_weight(struct task_struct *p)
1859{
1860 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001861 p->se.load.weight = prio_to_weight[0] * 2;
1862 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1863 return;
1864 }
1865
1866 /*
1867 * SCHED_IDLE tasks get minimal weight:
1868 */
1869 if (p->policy == SCHED_IDLE) {
1870 p->se.load.weight = WEIGHT_IDLEPRIO;
1871 p->se.load.inv_weight = WMULT_IDLEPRIO;
1872 return;
1873 }
1874
1875 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1876 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001877}
1878
Ingo Molnar8159f872007-08-09 11:16:49 +02001879static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001880{
1881 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001882 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001883 p->se.on_rq = 1;
1884}
1885
Ingo Molnar69be72c2007-08-09 11:16:49 +02001886static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001887{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001888 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001889 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001890}
1891
1892/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001893 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001894 */
Ingo Molnar14531182007-07-09 18:51:59 +02001895static inline int __normal_prio(struct task_struct *p)
1896{
Ingo Molnardd41f592007-07-09 18:51:59 +02001897 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001898}
1899
1900/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001901 * Calculate the expected normal priority: i.e. priority
1902 * without taking RT-inheritance into account. Might be
1903 * boosted by interactivity modifiers. Changes upon fork,
1904 * setprio syscalls, and whenever the interactivity
1905 * estimator recalculates.
1906 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001907static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001908{
1909 int prio;
1910
Ingo Molnare05606d2007-07-09 18:51:59 +02001911 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001912 prio = MAX_RT_PRIO-1 - p->rt_priority;
1913 else
1914 prio = __normal_prio(p);
1915 return prio;
1916}
1917
1918/*
1919 * Calculate the current priority, i.e. the priority
1920 * taken into account by the scheduler. This value might
1921 * be boosted by RT tasks, or might be boosted by
1922 * interactivity modifiers. Will be RT if the task got
1923 * RT-boosted. If not then it returns p->normal_prio.
1924 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001925static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001926{
1927 p->normal_prio = normal_prio(p);
1928 /*
1929 * If we are RT tasks or we were boosted to RT priority,
1930 * keep the priority unchanged. Otherwise, update priority
1931 * to the normal priority:
1932 */
1933 if (!rt_prio(p->prio))
1934 return p->normal_prio;
1935 return p->prio;
1936}
1937
1938/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001939 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001941static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001943 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001944 rq->nr_uninterruptible--;
1945
Ingo Molnar8159f872007-08-09 11:16:49 +02001946 enqueue_task(rq, p, wakeup);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001947 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
1950/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * deactivate_task - remove a task from the runqueue.
1952 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001953static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001955 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001956 rq->nr_uninterruptible++;
1957
Ingo Molnar69be72c2007-08-09 11:16:49 +02001958 dequeue_task(rq, p, sleep);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001959 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962/**
1963 * task_curr - is this task currently executing on a CPU?
1964 * @p: the task in question.
1965 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001966inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
1968 return cpu_curr(task_cpu(p)) == p;
1969}
1970
Peter Williams2dd73a42006-06-27 02:54:34 -07001971/* Used instead of source_load when we know the type == 0 */
1972unsigned long weighted_cpuload(const int cpu)
1973{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001974 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001975}
1976
1977static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1978{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001979 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001980#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001981 /*
1982 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1983 * successfuly executed on another CPU. We must ensure that updates of
1984 * per-task data have been completed by this moment.
1985 */
1986 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001987 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001988#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001989}
1990
Steven Rostedtcb469842008-01-25 21:08:22 +01001991static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1992 const struct sched_class *prev_class,
1993 int oldprio, int running)
1994{
1995 if (prev_class != p->sched_class) {
1996 if (prev_class->switched_from)
1997 prev_class->switched_from(rq, p, running);
1998 p->sched_class->switched_to(rq, p, running);
1999 } else
2000 p->sched_class->prio_changed(rq, p, oldprio, running);
2001}
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02002004
Ingo Molnarcc367732007-10-15 17:00:18 +02002005/*
2006 * Is this task likely cache-hot:
2007 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002008static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002009task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2010{
2011 s64 delta;
2012
Ingo Molnarf540a602008-03-15 17:10:34 +01002013 /*
2014 * Buddy candidates are cache hot:
2015 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01002016 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01002017 return 1;
2018
Ingo Molnarcc367732007-10-15 17:00:18 +02002019 if (p->sched_class != &fair_sched_class)
2020 return 0;
2021
Ingo Molnar6bc16652007-10-15 17:00:18 +02002022 if (sysctl_sched_migration_cost == -1)
2023 return 1;
2024 if (sysctl_sched_migration_cost == 0)
2025 return 0;
2026
Ingo Molnarcc367732007-10-15 17:00:18 +02002027 delta = now - p->se.exec_start;
2028
2029 return delta < (s64)sysctl_sched_migration_cost;
2030}
2031
2032
Ingo Molnardd41f592007-07-09 18:51:59 +02002033void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002034{
Ingo Molnardd41f592007-07-09 18:51:59 +02002035 int old_cpu = task_cpu(p);
2036 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002037 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
2038 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02002039 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002040
2041 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002042
2043#ifdef CONFIG_SCHEDSTATS
2044 if (p->se.wait_start)
2045 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002046 if (p->se.sleep_start)
2047 p->se.sleep_start -= clock_offset;
2048 if (p->se.block_start)
2049 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02002050 if (old_cpu != new_cpu) {
2051 schedstat_inc(p, se.nr_migrations);
2052 if (task_hot(p, old_rq->clock, NULL))
2053 schedstat_inc(p, se.nr_forced2_migrations);
2054 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002055#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002056 p->se.vruntime -= old_cfsrq->min_vruntime -
2057 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02002058
2059 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002060}
2061
Ingo Molnar70b97a72006-07-03 00:25:42 -07002062struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Ingo Molnar36c8b582006-07-03 00:25:41 -07002065 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 int dest_cpu;
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002069};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071/*
2072 * The task's runqueue lock must be held.
2073 * Returns true if you have to wait for migration thread.
2074 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002075static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002076migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002078 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 /*
2081 * If the task is not on a runqueue (and not running), then
2082 * it is sufficient to simply update the task's cpu field.
2083 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002084 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 set_task_cpu(p, dest_cpu);
2086 return 0;
2087 }
2088
2089 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 req->task = p;
2091 req->dest_cpu = dest_cpu;
2092 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 return 1;
2095}
2096
2097/*
2098 * wait_task_inactive - wait for a thread to unschedule.
2099 *
2100 * The caller must ensure that the task *will* unschedule sometime soon,
2101 * else this function might spin for a *long* time. This function can't
2102 * be called with interrupts off, or it may introduce deadlock with
2103 * smp_call_function() if an IPI is sent by the same process we are
2104 * waiting to become inactive.
2105 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002106void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
2108 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002109 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002110 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Andi Kleen3a5c3592007-10-15 17:00:14 +02002112 for (;;) {
2113 /*
2114 * We do the initial early heuristics without holding
2115 * any task-queue locks at all. We'll only try to get
2116 * the runqueue lock when things look like they will
2117 * work out!
2118 */
2119 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002120
Andi Kleen3a5c3592007-10-15 17:00:14 +02002121 /*
2122 * If the task is actively running on another CPU
2123 * still, just relax and busy-wait without holding
2124 * any locks.
2125 *
2126 * NOTE! Since we don't hold any locks, it's not
2127 * even sure that "rq" stays as the right runqueue!
2128 * But we don't care, since "task_running()" will
2129 * return false if the runqueue has changed and p
2130 * is actually now running somewhere else!
2131 */
2132 while (task_running(rq, p))
2133 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002134
Andi Kleen3a5c3592007-10-15 17:00:14 +02002135 /*
2136 * Ok, time to look more closely! We need the rq
2137 * lock now, to be *sure*. If we're wrong, we'll
2138 * just go back and repeat.
2139 */
2140 rq = task_rq_lock(p, &flags);
2141 running = task_running(rq, p);
2142 on_rq = p->se.on_rq;
2143 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002144
Andi Kleen3a5c3592007-10-15 17:00:14 +02002145 /*
2146 * Was it really running after all now that we
2147 * checked with the proper locks actually held?
2148 *
2149 * Oops. Go back and try again..
2150 */
2151 if (unlikely(running)) {
2152 cpu_relax();
2153 continue;
2154 }
2155
2156 /*
2157 * It's not enough that it's not actively running,
2158 * it must be off the runqueue _entirely_, and not
2159 * preempted!
2160 *
2161 * So if it wa still runnable (but just not actively
2162 * running right now), it's preempted, and we should
2163 * yield - it could be a while.
2164 */
2165 if (unlikely(on_rq)) {
2166 schedule_timeout_uninterruptible(1);
2167 continue;
2168 }
2169
2170 /*
2171 * Ahh, all good. It wasn't running, and it wasn't
2172 * runnable, which means that it will never become
2173 * running in the future either. We're all done!
2174 */
2175 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
2179/***
2180 * kick_process - kick a running thread to enter/exit the kernel
2181 * @p: the to-be-kicked thread
2182 *
2183 * Cause a process which is running on another CPU to enter
2184 * kernel-mode, without any delay. (to get signals handled.)
2185 *
2186 * NOTE: this function doesnt have to take the runqueue lock,
2187 * because all it wants to ensure is that the remote task enters
2188 * the kernel. If the IPI races and the task has been migrated
2189 * to another CPU then no harm is done and the purpose has been
2190 * achieved as well.
2191 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002192void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 int cpu;
2195
2196 preempt_disable();
2197 cpu = task_cpu(p);
2198 if ((cpu != smp_processor_id()) && task_curr(p))
2199 smp_send_reschedule(cpu);
2200 preempt_enable();
2201}
2202
2203/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002204 * Return a low guess at the load of a migration-source cpu weighted
2205 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 *
2207 * We want to under-estimate the load of migration sources, to
2208 * balance conservatively.
2209 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002210static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002211{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002212 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002213 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002214
Peter Williams2dd73a42006-06-27 02:54:34 -07002215 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002216 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002217
Ingo Molnardd41f592007-07-09 18:51:59 +02002218 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
2221/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002222 * Return a high guess at the load of a migration-target cpu weighted
2223 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002225static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002226{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002227 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002228 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002229
Peter Williams2dd73a42006-06-27 02:54:34 -07002230 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002231 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002232
Ingo Molnardd41f592007-07-09 18:51:59 +02002233 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002234}
2235
2236/*
2237 * Return the average load per task on the cpu's run queue
2238 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002239static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07002240{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002241 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002242 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002243 unsigned long n = rq->nr_running;
2244
Ingo Molnardd41f592007-07-09 18:51:59 +02002245 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
Nick Piggin147cbb42005-06-25 14:57:19 -07002248/*
2249 * find_idlest_group finds and returns the least busy CPU group within the
2250 * domain.
2251 */
2252static struct sched_group *
2253find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2254{
2255 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2256 unsigned long min_load = ULONG_MAX, this_load = 0;
2257 int load_idx = sd->forkexec_idx;
2258 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2259
2260 do {
2261 unsigned long load, avg_load;
2262 int local_group;
2263 int i;
2264
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002265 /* Skip over this group if it has no CPUs allowed */
2266 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002267 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002268
Nick Piggin147cbb42005-06-25 14:57:19 -07002269 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002270
2271 /* Tally up the load of all CPUs in the group */
2272 avg_load = 0;
2273
2274 for_each_cpu_mask(i, group->cpumask) {
2275 /* Bias balancing toward cpus of our domain */
2276 if (local_group)
2277 load = source_load(i, load_idx);
2278 else
2279 load = target_load(i, load_idx);
2280
2281 avg_load += load;
2282 }
2283
2284 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002285 avg_load = sg_div_cpu_power(group,
2286 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002287
2288 if (local_group) {
2289 this_load = avg_load;
2290 this = group;
2291 } else if (avg_load < min_load) {
2292 min_load = avg_load;
2293 idlest = group;
2294 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002295 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002296
2297 if (!idlest || 100*this_load < imbalance*min_load)
2298 return NULL;
2299 return idlest;
2300}
2301
2302/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002303 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002304 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002305static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002306find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2307 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002308{
2309 unsigned long load, min_load = ULONG_MAX;
2310 int idlest = -1;
2311 int i;
2312
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002313 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002314 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002315
Mike Travis7c16ec52008-04-04 18:11:11 -07002316 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002317 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002318
2319 if (load < min_load || (load == min_load && i == this_cpu)) {
2320 min_load = load;
2321 idlest = i;
2322 }
2323 }
2324
2325 return idlest;
2326}
2327
Nick Piggin476d1392005-06-25 14:57:29 -07002328/*
2329 * sched_balance_self: balance the current task (running on cpu) in domains
2330 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2331 * SD_BALANCE_EXEC.
2332 *
2333 * Balance, ie. select the least loaded group.
2334 *
2335 * Returns the target CPU number, or the same CPU if no balancing is needed.
2336 *
2337 * preempt must be disabled.
2338 */
2339static int sched_balance_self(int cpu, int flag)
2340{
2341 struct task_struct *t = current;
2342 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002343
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002344 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002345 /*
2346 * If power savings logic is enabled for a domain, stop there.
2347 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002348 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2349 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002350 if (tmp->flags & flag)
2351 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002352 }
Nick Piggin476d1392005-06-25 14:57:29 -07002353
2354 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002355 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002356 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002357 int new_cpu, weight;
2358
2359 if (!(sd->flags & flag)) {
2360 sd = sd->child;
2361 continue;
2362 }
Nick Piggin476d1392005-06-25 14:57:29 -07002363
2364 span = sd->span;
2365 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002366 if (!group) {
2367 sd = sd->child;
2368 continue;
2369 }
Nick Piggin476d1392005-06-25 14:57:29 -07002370
Mike Travis7c16ec52008-04-04 18:11:11 -07002371 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002372 if (new_cpu == -1 || new_cpu == cpu) {
2373 /* Now try balancing at a lower domain level of cpu */
2374 sd = sd->child;
2375 continue;
2376 }
Nick Piggin476d1392005-06-25 14:57:29 -07002377
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002378 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002379 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002380 sd = NULL;
2381 weight = cpus_weight(span);
2382 for_each_domain(cpu, tmp) {
2383 if (weight <= cpus_weight(tmp->span))
2384 break;
2385 if (tmp->flags & flag)
2386 sd = tmp;
2387 }
2388 /* while loop will break here if sd == NULL */
2389 }
2390
2391 return cpu;
2392}
2393
2394#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396/***
2397 * try_to_wake_up - wake up a thread
2398 * @p: the to-be-woken-up thread
2399 * @state: the mask of task states that can be woken
2400 * @sync: do a synchronous wakeup?
2401 *
2402 * Put it on the run-queue if it's not already there. The "current"
2403 * thread is always on the run-queue (except when the actual
2404 * re-schedule is in progress), and as such you're allowed to do
2405 * the simpler "current->state = TASK_RUNNING" to mark yourself
2406 * runnable without the overhead of this.
2407 *
2408 * returns failure only if the task is already active.
2409 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002410static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Ingo Molnarcc367732007-10-15 17:00:18 +02002412 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 unsigned long flags;
2414 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002415 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Ingo Molnarb85d0662008-03-16 20:03:22 +01002417 if (!sched_feat(SYNC_WAKEUPS))
2418 sync = 0;
2419
Linus Torvalds04e2f172008-02-23 18:05:03 -08002420 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 rq = task_rq_lock(p, &flags);
2422 old_state = p->state;
2423 if (!(old_state & state))
2424 goto out;
2425
Ingo Molnardd41f592007-07-09 18:51:59 +02002426 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 goto out_running;
2428
2429 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002430 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 this_cpu = smp_processor_id();
2432
2433#ifdef CONFIG_SMP
2434 if (unlikely(task_running(rq, p)))
2435 goto out_activate;
2436
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002437 cpu = p->sched_class->select_task_rq(p, sync);
2438 if (cpu != orig_cpu) {
2439 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 task_rq_unlock(rq, &flags);
2441 /* might preempt at this point */
2442 rq = task_rq_lock(p, &flags);
2443 old_state = p->state;
2444 if (!(old_state & state))
2445 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002446 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 goto out_running;
2448
2449 this_cpu = smp_processor_id();
2450 cpu = task_cpu(p);
2451 }
2452
Gregory Haskinse7693a32008-01-25 21:08:09 +01002453#ifdef CONFIG_SCHEDSTATS
2454 schedstat_inc(rq, ttwu_count);
2455 if (cpu == this_cpu)
2456 schedstat_inc(rq, ttwu_local);
2457 else {
2458 struct sched_domain *sd;
2459 for_each_domain(this_cpu, sd) {
2460 if (cpu_isset(cpu, sd->span)) {
2461 schedstat_inc(sd, ttwu_wake_remote);
2462 break;
2463 }
2464 }
2465 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002466#endif
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468out_activate:
2469#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002470 schedstat_inc(p, se.nr_wakeups);
2471 if (sync)
2472 schedstat_inc(p, se.nr_wakeups_sync);
2473 if (orig_cpu != cpu)
2474 schedstat_inc(p, se.nr_wakeups_migrate);
2475 if (cpu == this_cpu)
2476 schedstat_inc(p, se.nr_wakeups_local);
2477 else
2478 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002479 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002480 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 success = 1;
2482
2483out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002484 check_preempt_curr(rq, p);
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002487#ifdef CONFIG_SMP
2488 if (p->sched_class->task_wake_up)
2489 p->sched_class->task_wake_up(rq, p);
2490#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491out:
2492 task_rq_unlock(rq, &flags);
2493
2494 return success;
2495}
2496
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002497int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002499 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501EXPORT_SYMBOL(wake_up_process);
2502
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002503int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
2505 return try_to_wake_up(p, state, 0);
2506}
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508/*
2509 * Perform scheduler related setup for a newly forked process p.
2510 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002511 *
2512 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002514static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515{
Ingo Molnardd41f592007-07-09 18:51:59 +02002516 p->se.exec_start = 0;
2517 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002518 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002519 p->se.last_wakeup = 0;
2520 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002521
2522#ifdef CONFIG_SCHEDSTATS
2523 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002524 p->se.sum_sleep_runtime = 0;
2525 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002526 p->se.block_start = 0;
2527 p->se.sleep_max = 0;
2528 p->se.block_max = 0;
2529 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002530 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002531 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002532#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002533
Peter Zijlstrafa717062008-01-25 21:08:27 +01002534 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002535 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002536 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002537
Avi Kivitye107be32007-07-26 13:40:43 +02002538#ifdef CONFIG_PREEMPT_NOTIFIERS
2539 INIT_HLIST_HEAD(&p->preempt_notifiers);
2540#endif
2541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 /*
2543 * We mark the process as running here, but have not actually
2544 * inserted it onto the runqueue yet. This guarantees that
2545 * nobody will actually run it, and a signal or other external
2546 * event cannot wake it up and insert it on the runqueue either.
2547 */
2548 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002549}
2550
2551/*
2552 * fork()/clone()-time setup:
2553 */
2554void sched_fork(struct task_struct *p, int clone_flags)
2555{
2556 int cpu = get_cpu();
2557
2558 __sched_fork(p);
2559
2560#ifdef CONFIG_SMP
2561 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2562#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002563 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002564
2565 /*
2566 * Make sure we do not leak PI boosting priority to the child:
2567 */
2568 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002569 if (!rt_prio(p->prio))
2570 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002571
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002572#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002573 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002574 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002576#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002577 p->oncpu = 0;
2578#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002580 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002581 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002583 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584}
2585
2586/*
2587 * wake_up_new_task - wake up a newly created task for the first time.
2588 *
2589 * This function will do some initial scheduler statistics housekeeping
2590 * that must be done for every newly created context, then puts the task
2591 * on the runqueue and wakes it.
2592 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002593void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
2595 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002596 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
2598 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002600 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 p->prio = effective_prio(p);
2603
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002604 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002605 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002608 * Let the scheduling class do new task startup
2609 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002611 p->sched_class->task_new(rq, p);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002612 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002614 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002615#ifdef CONFIG_SMP
2616 if (p->sched_class->task_wake_up)
2617 p->sched_class->task_wake_up(rq, p);
2618#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002619 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
2621
Avi Kivitye107be32007-07-26 13:40:43 +02002622#ifdef CONFIG_PREEMPT_NOTIFIERS
2623
2624/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002625 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2626 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002627 */
2628void preempt_notifier_register(struct preempt_notifier *notifier)
2629{
2630 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2631}
2632EXPORT_SYMBOL_GPL(preempt_notifier_register);
2633
2634/**
2635 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002636 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002637 *
2638 * This is safe to call from within a preemption notifier.
2639 */
2640void preempt_notifier_unregister(struct preempt_notifier *notifier)
2641{
2642 hlist_del(&notifier->link);
2643}
2644EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2645
2646static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2647{
2648 struct preempt_notifier *notifier;
2649 struct hlist_node *node;
2650
2651 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2652 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2653}
2654
2655static void
2656fire_sched_out_preempt_notifiers(struct task_struct *curr,
2657 struct task_struct *next)
2658{
2659 struct preempt_notifier *notifier;
2660 struct hlist_node *node;
2661
2662 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2663 notifier->ops->sched_out(notifier, next);
2664}
2665
2666#else
2667
2668static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2669{
2670}
2671
2672static void
2673fire_sched_out_preempt_notifiers(struct task_struct *curr,
2674 struct task_struct *next)
2675{
2676}
2677
2678#endif
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002681 * prepare_task_switch - prepare to switch tasks
2682 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002683 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002684 * @next: the task we are going to switch to.
2685 *
2686 * This is called with the rq lock held and interrupts off. It must
2687 * be paired with a subsequent finish_task_switch after the context
2688 * switch.
2689 *
2690 * prepare_task_switch sets up locking and calls architecture specific
2691 * hooks.
2692 */
Avi Kivitye107be32007-07-26 13:40:43 +02002693static inline void
2694prepare_task_switch(struct rq *rq, struct task_struct *prev,
2695 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002696{
Avi Kivitye107be32007-07-26 13:40:43 +02002697 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002698 prepare_lock_switch(rq, next);
2699 prepare_arch_switch(next);
2700}
2701
2702/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002704 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 * @prev: the thread we just switched away from.
2706 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002707 * finish_task_switch must be called after the context switch, paired
2708 * with a prepare_task_switch call before the context switch.
2709 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2710 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 *
2712 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002713 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 * with the lock held can cause deadlocks; see schedule() for
2715 * details.)
2716 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002717static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 __releases(rq->lock)
2719{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002721 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
2723 rq->prev_mm = NULL;
2724
2725 /*
2726 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002727 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002728 * schedule one last time. The schedule call will never return, and
2729 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002730 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 * still held, otherwise prev could be scheduled on another cpu, die
2732 * there before we look at prev->state, and then the reference would
2733 * be dropped twice.
2734 * Manfred Spraul <manfred@colorfullife.com>
2735 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002736 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002737 finish_arch_switch(prev);
2738 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002739#ifdef CONFIG_SMP
2740 if (current->sched_class->post_schedule)
2741 current->sched_class->post_schedule(rq);
2742#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002743
Avi Kivitye107be32007-07-26 13:40:43 +02002744 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (mm)
2746 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002747 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002748 /*
2749 * Remove function-return probe instances associated with this
2750 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002751 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002752 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755}
2756
2757/**
2758 * schedule_tail - first thing a freshly forked thread must call.
2759 * @prev: the thread we just switched away from.
2760 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002761asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 __releases(rq->lock)
2763{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002764 struct rq *rq = this_rq();
2765
Nick Piggin4866cde2005-06-25 14:57:23 -07002766 finish_task_switch(rq, prev);
2767#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2768 /* In this case, finish_task_switch does not reenable preemption */
2769 preempt_enable();
2770#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002772 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773}
2774
2775/*
2776 * context_switch - switch to the new MM and the new
2777 * thread's register state.
2778 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002779static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002780context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002781 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
Ingo Molnardd41f592007-07-09 18:51:59 +02002783 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Avi Kivitye107be32007-07-26 13:40:43 +02002785 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002786 mm = next->mm;
2787 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002788 /*
2789 * For paravirt, this is coupled with an exit in switch_to to
2790 * combine the page table reload and the switch backend into
2791 * one hypercall.
2792 */
2793 arch_enter_lazy_cpu_mode();
2794
Ingo Molnardd41f592007-07-09 18:51:59 +02002795 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 next->active_mm = oldmm;
2797 atomic_inc(&oldmm->mm_count);
2798 enter_lazy_tlb(oldmm, next);
2799 } else
2800 switch_mm(oldmm, mm, next);
2801
Ingo Molnardd41f592007-07-09 18:51:59 +02002802 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 rq->prev_mm = oldmm;
2805 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002806 /*
2807 * Since the runqueue lock will be released by the next
2808 * task (which is an invalid locking op but in the case
2809 * of the scheduler it's an obvious special-case), so we
2810 * do an early lockdep release here:
2811 */
2812#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002813 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002814#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
2816 /* Here we just switch the register state and the stack. */
2817 switch_to(prev, next, prev);
2818
Ingo Molnardd41f592007-07-09 18:51:59 +02002819 barrier();
2820 /*
2821 * this_rq must be evaluated again because prev may have moved
2822 * CPUs since it called schedule(), thus the 'rq' on its stack
2823 * frame will be invalid.
2824 */
2825 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826}
2827
2828/*
2829 * nr_running, nr_uninterruptible and nr_context_switches:
2830 *
2831 * externally visible scheduler statistics: current number of runnable
2832 * threads, current number of uninterruptible-sleeping threads, total
2833 * number of context switches performed since bootup.
2834 */
2835unsigned long nr_running(void)
2836{
2837 unsigned long i, sum = 0;
2838
2839 for_each_online_cpu(i)
2840 sum += cpu_rq(i)->nr_running;
2841
2842 return sum;
2843}
2844
2845unsigned long nr_uninterruptible(void)
2846{
2847 unsigned long i, sum = 0;
2848
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002849 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 sum += cpu_rq(i)->nr_uninterruptible;
2851
2852 /*
2853 * Since we read the counters lockless, it might be slightly
2854 * inaccurate. Do not allow it to go below zero though:
2855 */
2856 if (unlikely((long)sum < 0))
2857 sum = 0;
2858
2859 return sum;
2860}
2861
2862unsigned long long nr_context_switches(void)
2863{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002864 int i;
2865 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002867 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 sum += cpu_rq(i)->nr_switches;
2869
2870 return sum;
2871}
2872
2873unsigned long nr_iowait(void)
2874{
2875 unsigned long i, sum = 0;
2876
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002877 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2879
2880 return sum;
2881}
2882
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002883unsigned long nr_active(void)
2884{
2885 unsigned long i, running = 0, uninterruptible = 0;
2886
2887 for_each_online_cpu(i) {
2888 running += cpu_rq(i)->nr_running;
2889 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2890 }
2891
2892 if (unlikely((long)uninterruptible < 0))
2893 uninterruptible = 0;
2894
2895 return running + uninterruptible;
2896}
2897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002899 * Update rq->cpu_load[] statistics. This function is usually called every
2900 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002901 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002902static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002903{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002904 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002905 int i, scale;
2906
2907 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002908
2909 /* Update our load: */
2910 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2911 unsigned long old_load, new_load;
2912
2913 /* scale is effectively 1 << i now, and >> i divides by scale */
2914
2915 old_load = this_rq->cpu_load[i];
2916 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002917 /*
2918 * Round up the averaging division if load is increasing. This
2919 * prevents us from getting stuck on 9 if the load is 10, for
2920 * example.
2921 */
2922 if (new_load > old_load)
2923 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002924 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2925 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002926}
2927
Ingo Molnardd41f592007-07-09 18:51:59 +02002928#ifdef CONFIG_SMP
2929
Ingo Molnar48f24c42006-07-03 00:25:40 -07002930/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 * double_rq_lock - safely lock two runqueues
2932 *
2933 * Note this does not disable interrupts like task_rq_lock,
2934 * you need to do so manually before calling.
2935 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002936static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 __acquires(rq1->lock)
2938 __acquires(rq2->lock)
2939{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002940 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 if (rq1 == rq2) {
2942 spin_lock(&rq1->lock);
2943 __acquire(rq2->lock); /* Fake it out ;) */
2944 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002945 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 spin_lock(&rq1->lock);
2947 spin_lock(&rq2->lock);
2948 } else {
2949 spin_lock(&rq2->lock);
2950 spin_lock(&rq1->lock);
2951 }
2952 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002953 update_rq_clock(rq1);
2954 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955}
2956
2957/*
2958 * double_rq_unlock - safely unlock two runqueues
2959 *
2960 * Note this does not restore interrupts like task_rq_unlock,
2961 * you need to do so manually after calling.
2962 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002963static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 __releases(rq1->lock)
2965 __releases(rq2->lock)
2966{
2967 spin_unlock(&rq1->lock);
2968 if (rq1 != rq2)
2969 spin_unlock(&rq2->lock);
2970 else
2971 __release(rq2->lock);
2972}
2973
2974/*
2975 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2976 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002977static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 __releases(this_rq->lock)
2979 __acquires(busiest->lock)
2980 __acquires(this_rq->lock)
2981{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002982 int ret = 0;
2983
Kirill Korotaev054b9102006-12-10 02:20:11 -08002984 if (unlikely(!irqs_disabled())) {
2985 /* printk() doesn't work good under rq->lock */
2986 spin_unlock(&this_rq->lock);
2987 BUG_ON(1);
2988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002990 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 spin_unlock(&this_rq->lock);
2992 spin_lock(&busiest->lock);
2993 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002994 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 } else
2996 spin_lock(&busiest->lock);
2997 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002998 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999}
3000
3001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 * If dest_cpu is allowed for this process, migrate the task to it.
3003 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003004 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 * the cpu_allowed mask is restored.
3006 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003007static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003009 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003011 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 rq = task_rq_lock(p, &flags);
3014 if (!cpu_isset(dest_cpu, p->cpus_allowed)
3015 || unlikely(cpu_is_offline(dest_cpu)))
3016 goto out;
3017
3018 /* force the process onto the specified CPU */
3019 if (migrate_task(p, dest_cpu, &req)) {
3020 /* Need to wait for migration thread (might exit: take ref). */
3021 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 get_task_struct(mt);
3024 task_rq_unlock(rq, &flags);
3025 wake_up_process(mt);
3026 put_task_struct(mt);
3027 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return;
3030 }
3031out:
3032 task_rq_unlock(rq, &flags);
3033}
3034
3035/*
Nick Piggin476d1392005-06-25 14:57:29 -07003036 * sched_exec - execve() is a valuable balancing opportunity, because at
3037 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 */
3039void sched_exec(void)
3040{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003042 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003044 if (new_cpu != this_cpu)
3045 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046}
3047
3048/*
3049 * pull_task - move a task from a remote runqueue to the local runqueue.
3050 * Both runqueues must be locked.
3051 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003052static void pull_task(struct rq *src_rq, struct task_struct *p,
3053 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003055 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003057 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 /*
3059 * Note that idle threads have a prio of MAX_PRIO, for this test
3060 * to be always true for them.
3061 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003062 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063}
3064
3065/*
3066 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3067 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003068static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003069int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003070 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003071 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
3073 /*
3074 * We do not migrate tasks that are:
3075 * 1) running (obviously), or
3076 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3077 * 3) are cache-hot on their current CPU.
3078 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003079 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3080 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003082 }
Nick Piggin81026792005-06-25 14:57:07 -07003083 *all_pinned = 0;
3084
Ingo Molnarcc367732007-10-15 17:00:18 +02003085 if (task_running(rq, p)) {
3086 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003087 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Ingo Molnarda84d962007-10-15 17:00:18 +02003090 /*
3091 * Aggressive migration if:
3092 * 1) task is cache cold, or
3093 * 2) too many balance attempts have failed.
3094 */
3095
Ingo Molnar6bc16652007-10-15 17:00:18 +02003096 if (!task_hot(p, rq->clock, sd) ||
3097 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003098#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003099 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003100 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003101 schedstat_inc(p, se.nr_forced_migrations);
3102 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003103#endif
3104 return 1;
3105 }
3106
Ingo Molnarcc367732007-10-15 17:00:18 +02003107 if (task_hot(p, rq->clock, sd)) {
3108 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003109 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 return 1;
3112}
3113
Peter Williamse1d14842007-10-24 18:23:51 +02003114static unsigned long
3115balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3116 unsigned long max_load_move, struct sched_domain *sd,
3117 enum cpu_idle_type idle, int *all_pinned,
3118 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003119{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003120 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003121 struct task_struct *p;
3122 long rem_load_move = max_load_move;
3123
Peter Williamse1d14842007-10-24 18:23:51 +02003124 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003125 goto out;
3126
3127 pinned = 1;
3128
3129 /*
3130 * Start the load-balancing iterator:
3131 */
3132 p = iterator->start(iterator->arg);
3133next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003134 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003135 goto out;
3136 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003137 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003138 * skip a task if it will be the highest priority task (i.e. smallest
3139 * prio value) on its new queue regardless of its load weight
3140 */
3141 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3142 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003143 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003144 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003145 p = iterator->next(iterator->arg);
3146 goto next;
3147 }
3148
3149 pull_task(busiest, p, this_rq, this_cpu);
3150 pulled++;
3151 rem_load_move -= p->se.load.weight;
3152
3153 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003154 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003155 */
Peter Williamse1d14842007-10-24 18:23:51 +02003156 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003157 if (p->prio < *this_best_prio)
3158 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003159 p = iterator->next(iterator->arg);
3160 goto next;
3161 }
3162out:
3163 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003164 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003165 * so we can safely collect pull_task() stats here rather than
3166 * inside pull_task().
3167 */
3168 schedstat_add(sd, lb_gained[idle], pulled);
3169
3170 if (all_pinned)
3171 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003172
3173 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003174}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176/*
Peter Williams43010652007-08-09 11:16:46 +02003177 * move_tasks tries to move up to max_load_move weighted load from busiest to
3178 * this_rq, as part of a balancing operation within domain "sd".
3179 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 *
3181 * Called with both runqueues locked.
3182 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003183static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003184 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003185 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003186 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003188 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003189 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003190 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Ingo Molnardd41f592007-07-09 18:51:59 +02003192 do {
Peter Williams43010652007-08-09 11:16:46 +02003193 total_load_moved +=
3194 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003195 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003196 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003197 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003198 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Peter Williams43010652007-08-09 11:16:46 +02003200 return total_load_moved > 0;
3201}
3202
Peter Williamse1d14842007-10-24 18:23:51 +02003203static int
3204iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3205 struct sched_domain *sd, enum cpu_idle_type idle,
3206 struct rq_iterator *iterator)
3207{
3208 struct task_struct *p = iterator->start(iterator->arg);
3209 int pinned = 0;
3210
3211 while (p) {
3212 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3213 pull_task(busiest, p, this_rq, this_cpu);
3214 /*
3215 * Right now, this is only the second place pull_task()
3216 * is called, so we can safely collect pull_task()
3217 * stats here rather than inside pull_task().
3218 */
3219 schedstat_inc(sd, lb_gained[idle]);
3220
3221 return 1;
3222 }
3223 p = iterator->next(iterator->arg);
3224 }
3225
3226 return 0;
3227}
3228
Peter Williams43010652007-08-09 11:16:46 +02003229/*
3230 * move_one_task tries to move exactly one task from busiest to this_rq, as
3231 * part of active balancing operations within "domain".
3232 * Returns 1 if successful and 0 otherwise.
3233 *
3234 * Called with both runqueues locked.
3235 */
3236static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3237 struct sched_domain *sd, enum cpu_idle_type idle)
3238{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003239 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003240
3241 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003242 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003243 return 1;
3244
3245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246}
3247
3248/*
3249 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003250 * domain. It calculates and returns the amount of weighted load which
3251 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 */
3253static struct sched_group *
3254find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003255 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003256 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
3258 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3259 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003260 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003261 unsigned long busiest_load_per_task, busiest_nr_running;
3262 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003263 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003264#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3265 int power_savings_balance = 1;
3266 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3267 unsigned long min_nr_running = ULONG_MAX;
3268 struct sched_group *group_min = NULL, *group_leader = NULL;
3269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
3271 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003272 busiest_load_per_task = busiest_nr_running = 0;
3273 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003274 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003275 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003276 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003277 load_idx = sd->newidle_idx;
3278 else
3279 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003282 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 int local_group;
3284 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003285 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003286 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003287 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
3289 local_group = cpu_isset(this_cpu, group->cpumask);
3290
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003291 if (local_group)
3292 balance_cpu = first_cpu(group->cpumask);
3293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003295 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003296 max_cpu_load = 0;
3297 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003300 struct rq *rq;
3301
3302 if (!cpu_isset(i, *cpus))
3303 continue;
3304
3305 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003306
Suresh Siddha9439aab2007-07-19 21:28:35 +02003307 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003308 *sd_idle = 0;
3309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003311 if (local_group) {
3312 if (idle_cpu(i) && !first_idle_cpu) {
3313 first_idle_cpu = 1;
3314 balance_cpu = i;
3315 }
3316
Nick Piggina2000572006-02-10 01:51:02 -08003317 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003318 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003319 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003320 if (load > max_cpu_load)
3321 max_cpu_load = load;
3322 if (min_cpu_load > load)
3323 min_cpu_load = load;
3324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003327 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003328 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 }
3330
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003331 /*
3332 * First idle cpu or the first cpu(busiest) in this sched group
3333 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003334 * domains. In the newly idle case, we will allow all the cpu's
3335 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003336 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003337 if (idle != CPU_NEWLY_IDLE && local_group &&
3338 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003339 *balance = 0;
3340 goto ret;
3341 }
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003344 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
3346 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003347 avg_load = sg_div_cpu_power(group,
3348 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
Ken Chen908a7c12007-10-17 16:55:11 +02003350 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3351 __group_imb = 1;
3352
Eric Dumazet5517d862007-05-08 00:32:57 -07003353 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 if (local_group) {
3356 this_load = avg_load;
3357 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003358 this_nr_running = sum_nr_running;
3359 this_load_per_task = sum_weighted_load;
3360 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003361 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 max_load = avg_load;
3363 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003364 busiest_nr_running = sum_nr_running;
3365 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003366 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003368
3369#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3370 /*
3371 * Busy processors will not participate in power savings
3372 * balance.
3373 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003374 if (idle == CPU_NOT_IDLE ||
3375 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3376 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003377
3378 /*
3379 * If the local group is idle or completely loaded
3380 * no need to do power savings balance at this domain
3381 */
3382 if (local_group && (this_nr_running >= group_capacity ||
3383 !this_nr_running))
3384 power_savings_balance = 0;
3385
Ingo Molnardd41f592007-07-09 18:51:59 +02003386 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003387 * If a group is already running at full capacity or idle,
3388 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003389 */
3390 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003391 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003392 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003393
Ingo Molnardd41f592007-07-09 18:51:59 +02003394 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003395 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003396 * This is the group from where we need to pick up the load
3397 * for saving power
3398 */
3399 if ((sum_nr_running < min_nr_running) ||
3400 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003401 first_cpu(group->cpumask) <
3402 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003403 group_min = group;
3404 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003405 min_load_per_task = sum_weighted_load /
3406 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003407 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003408
Ingo Molnardd41f592007-07-09 18:51:59 +02003409 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003410 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003411 * capacity but still has some space to pick up some load
3412 * from other group and save more power
3413 */
3414 if (sum_nr_running <= group_capacity - 1) {
3415 if (sum_nr_running > leader_nr_running ||
3416 (sum_nr_running == leader_nr_running &&
3417 first_cpu(group->cpumask) >
3418 first_cpu(group_leader->cpumask))) {
3419 group_leader = group;
3420 leader_nr_running = sum_nr_running;
3421 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003422 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003423group_next:
3424#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 group = group->next;
3426 } while (group != sd->groups);
3427
Peter Williams2dd73a42006-06-27 02:54:34 -07003428 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 goto out_balanced;
3430
3431 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3432
3433 if (this_load >= avg_load ||
3434 100*max_load <= sd->imbalance_pct*this_load)
3435 goto out_balanced;
3436
Peter Williams2dd73a42006-06-27 02:54:34 -07003437 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003438 if (group_imb)
3439 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 /*
3442 * We're trying to get all the cpus to the average_load, so we don't
3443 * want to push ourselves above the average load, nor do we wish to
3444 * reduce the max loaded cpu below the average load, as either of these
3445 * actions would just result in more rebalancing later, and ping-pong
3446 * tasks around. Thus we look for the minimum possible imbalance.
3447 * Negative imbalances (*we* are more loaded than anyone else) will
3448 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003449 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 * appear as very large values with unsigned longs.
3451 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003452 if (max_load <= busiest_load_per_task)
3453 goto out_balanced;
3454
3455 /*
3456 * In the presence of smp nice balancing, certain scenarios can have
3457 * max load less than avg load(as we skip the groups at or below
3458 * its cpu_power, while calculating max_load..)
3459 */
3460 if (max_load < avg_load) {
3461 *imbalance = 0;
3462 goto small_imbalance;
3463 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003464
3465 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003466 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003469 *imbalance = min(max_pull * busiest->__cpu_power,
3470 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 / SCHED_LOAD_SCALE;
3472
Peter Williams2dd73a42006-06-27 02:54:34 -07003473 /*
3474 * if *imbalance is less than the average load per runnable task
3475 * there is no gaurantee that any tasks will be moved so we'll have
3476 * a think about bumping its value to force at least one task to be
3477 * moved
3478 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003479 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003480 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003481 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Peter Williams2dd73a42006-06-27 02:54:34 -07003483small_imbalance:
3484 pwr_move = pwr_now = 0;
3485 imbn = 2;
3486 if (this_nr_running) {
3487 this_load_per_task /= this_nr_running;
3488 if (busiest_load_per_task > this_load_per_task)
3489 imbn = 1;
3490 } else
3491 this_load_per_task = SCHED_LOAD_SCALE;
3492
Ingo Molnardd41f592007-07-09 18:51:59 +02003493 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3494 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003495 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 return busiest;
3497 }
3498
3499 /*
3500 * OK, we don't have enough imbalance to justify moving tasks,
3501 * however we may be able to increase total CPU power used by
3502 * moving them.
3503 */
3504
Eric Dumazet5517d862007-05-08 00:32:57 -07003505 pwr_now += busiest->__cpu_power *
3506 min(busiest_load_per_task, max_load);
3507 pwr_now += this->__cpu_power *
3508 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 pwr_now /= SCHED_LOAD_SCALE;
3510
3511 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003512 tmp = sg_div_cpu_power(busiest,
3513 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003515 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003516 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517
3518 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003519 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003520 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003521 tmp = sg_div_cpu_power(this,
3522 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003524 tmp = sg_div_cpu_power(this,
3525 busiest_load_per_task * SCHED_LOAD_SCALE);
3526 pwr_move += this->__cpu_power *
3527 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 pwr_move /= SCHED_LOAD_SCALE;
3529
3530 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003531 if (pwr_move > pwr_now)
3532 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 }
3534
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 return busiest;
3536
3537out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003538#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003539 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003540 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003542 if (this == group_leader && group_leader != group_min) {
3543 *imbalance = min_load_per_task;
3544 return group_min;
3545 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003546#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003547ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 *imbalance = 0;
3549 return NULL;
3550}
3551
3552/*
3553 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3554 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003555static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003556find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003557 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003559 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003560 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 int i;
3562
3563 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003564 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003565
3566 if (!cpu_isset(i, *cpus))
3567 continue;
3568
Ingo Molnar48f24c42006-07-03 00:25:40 -07003569 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003570 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Ingo Molnardd41f592007-07-09 18:51:59 +02003572 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003573 continue;
3574
Ingo Molnardd41f592007-07-09 18:51:59 +02003575 if (wl > max_load) {
3576 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003577 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 }
3579 }
3580
3581 return busiest;
3582}
3583
3584/*
Nick Piggin77391d72005-06-25 14:57:30 -07003585 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3586 * so long as it is large enough.
3587 */
3588#define MAX_PINNED_INTERVAL 512
3589
3590/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3592 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003594static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003595 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003596 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597{
Peter Williams43010652007-08-09 11:16:46 +02003598 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003601 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003602 unsigned long flags;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003603 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003604
Mike Travis7c16ec52008-04-04 18:11:11 -07003605 cpus_setall(*cpus);
3606
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003607 unlock_aggregate = get_aggregate(sd);
3608
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003609 /*
3610 * When power savings policy is enabled for the parent domain, idle
3611 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003612 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003613 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003614 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003615 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003616 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003617 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618
Ingo Molnar2d723762007-10-15 17:00:12 +02003619 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003621redo:
3622 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003623 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003624
Chen, Kenneth W06066712006-12-10 02:20:35 -08003625 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003626 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 if (!group) {
3629 schedstat_inc(sd, lb_nobusyg[idle]);
3630 goto out_balanced;
3631 }
3632
Mike Travis7c16ec52008-04-04 18:11:11 -07003633 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 if (!busiest) {
3635 schedstat_inc(sd, lb_nobusyq[idle]);
3636 goto out_balanced;
3637 }
3638
Nick Piggindb935db2005-06-25 14:57:11 -07003639 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
3641 schedstat_add(sd, lb_imbalance[idle], imbalance);
3642
Peter Williams43010652007-08-09 11:16:46 +02003643 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 if (busiest->nr_running > 1) {
3645 /*
3646 * Attempt to move tasks. If find_busiest_group has found
3647 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003648 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 * correctly treated as an imbalance.
3650 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003651 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003652 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003653 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003654 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003655 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003656 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003657
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003658 /*
3659 * some other cpu did the load balance for us.
3660 */
Peter Williams43010652007-08-09 11:16:46 +02003661 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003662 resched_cpu(this_cpu);
3663
Nick Piggin81026792005-06-25 14:57:07 -07003664 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003665 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003666 cpu_clear(cpu_of(busiest), *cpus);
3667 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003668 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003669 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 }
Nick Piggin81026792005-06-25 14:57:07 -07003672
Peter Williams43010652007-08-09 11:16:46 +02003673 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 schedstat_inc(sd, lb_failed[idle]);
3675 sd->nr_balance_failed++;
3676
3677 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003679 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003680
3681 /* don't kick the migration_thread, if the curr
3682 * task on busiest cpu can't be moved to this_cpu
3683 */
3684 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003685 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003686 all_pinned = 1;
3687 goto out_one_pinned;
3688 }
3689
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 if (!busiest->active_balance) {
3691 busiest->active_balance = 1;
3692 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003693 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003695 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003696 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 wake_up_process(busiest->migration_thread);
3698
3699 /*
3700 * We've kicked active balancing, reset the failure
3701 * counter.
3702 */
Nick Piggin39507452005-06-25 14:57:09 -07003703 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 }
Nick Piggin81026792005-06-25 14:57:07 -07003705 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 sd->nr_balance_failed = 0;
3707
Nick Piggin81026792005-06-25 14:57:07 -07003708 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 /* We were unbalanced, so reset the balancing interval */
3710 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003711 } else {
3712 /*
3713 * If we've begun active balancing, start to back off. This
3714 * case may not be covered by the all_pinned logic if there
3715 * is only 1 task on the busy runqueue (because we don't call
3716 * move_tasks).
3717 */
3718 if (sd->balance_interval < sd->max_interval)
3719 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 }
3721
Peter Williams43010652007-08-09 11:16:46 +02003722 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003723 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003724 ld_moved = -1;
3725
3726 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
3728out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 schedstat_inc(sd, lb_balanced[idle]);
3730
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003731 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003732
3733out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003735 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3736 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 sd->balance_interval *= 2;
3738
Ingo Molnar48f24c42006-07-03 00:25:40 -07003739 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003740 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003741 ld_moved = -1;
3742 else
3743 ld_moved = 0;
3744out:
3745 if (unlock_aggregate)
3746 put_aggregate(sd);
3747 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748}
3749
3750/*
3751 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3752 * tasks if there is an imbalance.
3753 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003754 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 * this_rq is locked.
3756 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003757static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003758load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3759 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
3761 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003762 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003764 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003765 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003766 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003767
3768 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003769
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003770 /*
3771 * When power savings policy is enabled for the parent domain, idle
3772 * sibling can pick up load irrespective of busy siblings. In this case,
3773 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003774 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003775 */
3776 if (sd->flags & SD_SHARE_CPUPOWER &&
3777 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003778 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Ingo Molnar2d723762007-10-15 17:00:12 +02003780 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003781redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003782 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003783 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003785 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003786 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 }
3788
Mike Travis7c16ec52008-04-04 18:11:11 -07003789 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003790 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003791 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003792 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 }
3794
Nick Piggindb935db2005-06-25 14:57:11 -07003795 BUG_ON(busiest == this_rq);
3796
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003797 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003798
Peter Williams43010652007-08-09 11:16:46 +02003799 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003800 if (busiest->nr_running > 1) {
3801 /* Attempt to move tasks */
3802 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003803 /* this_rq->clock is already updated */
3804 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003805 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003806 imbalance, sd, CPU_NEWLY_IDLE,
3807 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003808 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003809
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003810 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003811 cpu_clear(cpu_of(busiest), *cpus);
3812 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003813 goto redo;
3814 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003815 }
3816
Peter Williams43010652007-08-09 11:16:46 +02003817 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003818 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003819 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3820 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003821 return -1;
3822 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003823 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
Peter Williams43010652007-08-09 11:16:46 +02003825 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003826
3827out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003828 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003829 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003830 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003831 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003832 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003833
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835}
3836
3837/*
3838 * idle_balance is called by schedule() if this_cpu is about to become
3839 * idle. Attempts to pull tasks from other CPUs.
3840 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003841static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842{
3843 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003844 int pulled_task = -1;
3845 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003846 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
3848 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003849 unsigned long interval;
3850
3851 if (!(sd->flags & SD_LOAD_BALANCE))
3852 continue;
3853
3854 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003855 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003856 pulled_task = load_balance_newidle(this_cpu, this_rq,
3857 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003858
3859 interval = msecs_to_jiffies(sd->balance_interval);
3860 if (time_after(next_balance, sd->last_balance + interval))
3861 next_balance = sd->last_balance + interval;
3862 if (pulled_task)
3863 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003865 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003866 /*
3867 * We are going idle. next_balance may be set based on
3868 * a busy processor. So reset next_balance.
3869 */
3870 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872}
3873
3874/*
3875 * active_load_balance is run by migration threads. It pushes running tasks
3876 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3877 * running on each physical CPU where possible, and avoids physical /
3878 * logical imbalances.
3879 *
3880 * Called with busiest_rq locked.
3881 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003882static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883{
Nick Piggin39507452005-06-25 14:57:09 -07003884 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003885 struct sched_domain *sd;
3886 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003887
Ingo Molnar48f24c42006-07-03 00:25:40 -07003888 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003889 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003890 return;
3891
3892 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
3894 /*
Nick Piggin39507452005-06-25 14:57:09 -07003895 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003896 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003897 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 */
Nick Piggin39507452005-06-25 14:57:09 -07003899 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
Nick Piggin39507452005-06-25 14:57:09 -07003901 /* move a task from busiest_rq to target_rq */
3902 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003903 update_rq_clock(busiest_rq);
3904 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Nick Piggin39507452005-06-25 14:57:09 -07003906 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003907 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003908 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003909 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003910 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Ingo Molnar48f24c42006-07-03 00:25:40 -07003913 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003914 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Peter Williams43010652007-08-09 11:16:46 +02003916 if (move_one_task(target_rq, target_cpu, busiest_rq,
3917 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003918 schedstat_inc(sd, alb_pushed);
3919 else
3920 schedstat_inc(sd, alb_failed);
3921 }
Nick Piggin39507452005-06-25 14:57:09 -07003922 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923}
3924
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003925#ifdef CONFIG_NO_HZ
3926static struct {
3927 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003928 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003929} nohz ____cacheline_aligned = {
3930 .load_balancer = ATOMIC_INIT(-1),
3931 .cpu_mask = CPU_MASK_NONE,
3932};
3933
Christoph Lameter7835b982006-12-10 02:20:22 -08003934/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003935 * This routine will try to nominate the ilb (idle load balancing)
3936 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3937 * load balancing on behalf of all those cpus. If all the cpus in the system
3938 * go into this tickless mode, then there will be no ilb owner (as there is
3939 * no need for one) and all the cpus will sleep till the next wakeup event
3940 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003941 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003942 * For the ilb owner, tick is not stopped. And this tick will be used
3943 * for idle load balancing. ilb owner will still be part of
3944 * nohz.cpu_mask..
3945 *
3946 * While stopping the tick, this cpu will become the ilb owner if there
3947 * is no other owner. And will be the owner till that cpu becomes busy
3948 * or if all cpus in the system stop their ticks at which point
3949 * there is no need for ilb owner.
3950 *
3951 * When the ilb owner becomes busy, it nominates another owner, during the
3952 * next busy scheduler_tick()
3953 */
3954int select_nohz_load_balancer(int stop_tick)
3955{
3956 int cpu = smp_processor_id();
3957
3958 if (stop_tick) {
3959 cpu_set(cpu, nohz.cpu_mask);
3960 cpu_rq(cpu)->in_nohz_recently = 1;
3961
3962 /*
3963 * If we are going offline and still the leader, give up!
3964 */
3965 if (cpu_is_offline(cpu) &&
3966 atomic_read(&nohz.load_balancer) == cpu) {
3967 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3968 BUG();
3969 return 0;
3970 }
3971
3972 /* time for ilb owner also to sleep */
3973 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3974 if (atomic_read(&nohz.load_balancer) == cpu)
3975 atomic_set(&nohz.load_balancer, -1);
3976 return 0;
3977 }
3978
3979 if (atomic_read(&nohz.load_balancer) == -1) {
3980 /* make me the ilb owner */
3981 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3982 return 1;
3983 } else if (atomic_read(&nohz.load_balancer) == cpu)
3984 return 1;
3985 } else {
3986 if (!cpu_isset(cpu, nohz.cpu_mask))
3987 return 0;
3988
3989 cpu_clear(cpu, nohz.cpu_mask);
3990
3991 if (atomic_read(&nohz.load_balancer) == cpu)
3992 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3993 BUG();
3994 }
3995 return 0;
3996}
3997#endif
3998
3999static DEFINE_SPINLOCK(balancing);
4000
4001/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004002 * It checks each scheduling domain to see if it is due to be balanced,
4003 * and initiates a balancing operation if so.
4004 *
4005 * Balancing parameters are set up in arch_init_sched_domains.
4006 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004007static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004008{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004009 int balance = 1;
4010 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004011 unsigned long interval;
4012 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004013 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004014 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004015 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07004016 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004018 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 if (!(sd->flags & SD_LOAD_BALANCE))
4020 continue;
4021
4022 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004023 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 interval *= sd->busy_factor;
4025
4026 /* scale ms to jiffies */
4027 interval = msecs_to_jiffies(interval);
4028 if (unlikely(!interval))
4029 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004030 if (interval > HZ*NR_CPUS/10)
4031 interval = HZ*NR_CPUS/10;
4032
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
Christoph Lameter08c183f2006-12-10 02:20:29 -08004034 if (sd->flags & SD_SERIALIZE) {
4035 if (!spin_trylock(&balancing))
4036 goto out;
4037 }
4038
Christoph Lameterc9819f42006-12-10 02:20:25 -08004039 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07004040 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004041 /*
4042 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004043 * longer idle, or one of our SMT siblings is
4044 * not idle.
4045 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004046 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004048 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08004050 if (sd->flags & SD_SERIALIZE)
4051 spin_unlock(&balancing);
4052out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004053 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004054 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004055 update_next_balance = 1;
4056 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004057
4058 /*
4059 * Stop the load balance at this level. There is another
4060 * CPU in our sched group which is doing load balancing more
4061 * actively.
4062 */
4063 if (!balance)
4064 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004066
4067 /*
4068 * next_balance will be updated only when there is a need.
4069 * When the cpu is attached to null domain for ex, it will not be
4070 * updated.
4071 */
4072 if (likely(update_next_balance))
4073 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004074}
4075
4076/*
4077 * run_rebalance_domains is triggered when needed from the scheduler tick.
4078 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4079 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4080 */
4081static void run_rebalance_domains(struct softirq_action *h)
4082{
Ingo Molnardd41f592007-07-09 18:51:59 +02004083 int this_cpu = smp_processor_id();
4084 struct rq *this_rq = cpu_rq(this_cpu);
4085 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4086 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004087
Ingo Molnardd41f592007-07-09 18:51:59 +02004088 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004089
4090#ifdef CONFIG_NO_HZ
4091 /*
4092 * If this cpu is the owner for idle load balancing, then do the
4093 * balancing on behalf of the other idle cpus whose ticks are
4094 * stopped.
4095 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004096 if (this_rq->idle_at_tick &&
4097 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004098 cpumask_t cpus = nohz.cpu_mask;
4099 struct rq *rq;
4100 int balance_cpu;
4101
Ingo Molnardd41f592007-07-09 18:51:59 +02004102 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004103 for_each_cpu_mask(balance_cpu, cpus) {
4104 /*
4105 * If this cpu gets work to do, stop the load balancing
4106 * work being done for other cpus. Next load
4107 * balancing owner will pick it up.
4108 */
4109 if (need_resched())
4110 break;
4111
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004112 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004113
4114 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004115 if (time_after(this_rq->next_balance, rq->next_balance))
4116 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004117 }
4118 }
4119#endif
4120}
4121
4122/*
4123 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4124 *
4125 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4126 * idle load balancing owner or decide to stop the periodic load balancing,
4127 * if the whole system is idle.
4128 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004129static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004130{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004131#ifdef CONFIG_NO_HZ
4132 /*
4133 * If we were in the nohz mode recently and busy at the current
4134 * scheduler tick, then check if we need to nominate new idle
4135 * load balancer.
4136 */
4137 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4138 rq->in_nohz_recently = 0;
4139
4140 if (atomic_read(&nohz.load_balancer) == cpu) {
4141 cpu_clear(cpu, nohz.cpu_mask);
4142 atomic_set(&nohz.load_balancer, -1);
4143 }
4144
4145 if (atomic_read(&nohz.load_balancer) == -1) {
4146 /*
4147 * simple selection for now: Nominate the
4148 * first cpu in the nohz list to be the next
4149 * ilb owner.
4150 *
4151 * TBD: Traverse the sched domains and nominate
4152 * the nearest cpu in the nohz.cpu_mask.
4153 */
4154 int ilb = first_cpu(nohz.cpu_mask);
4155
Mike Travis434d53b2008-04-04 18:11:04 -07004156 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004157 resched_cpu(ilb);
4158 }
4159 }
4160
4161 /*
4162 * If this cpu is idle and doing idle load balancing for all the
4163 * cpus with ticks stopped, is it time for that to stop?
4164 */
4165 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4166 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4167 resched_cpu(cpu);
4168 return;
4169 }
4170
4171 /*
4172 * If this cpu is idle and the idle load balancing is done by
4173 * someone else, then no need raise the SCHED_SOFTIRQ
4174 */
4175 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4176 cpu_isset(cpu, nohz.cpu_mask))
4177 return;
4178#endif
4179 if (time_after_eq(jiffies, rq->next_balance))
4180 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181}
Ingo Molnardd41f592007-07-09 18:51:59 +02004182
4183#else /* CONFIG_SMP */
4184
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185/*
4186 * on UP we do not need to balance between CPUs:
4187 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004188static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189{
4190}
Ingo Molnardd41f592007-07-09 18:51:59 +02004191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192#endif
4193
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194DEFINE_PER_CPU(struct kernel_stat, kstat);
4195
4196EXPORT_PER_CPU_SYMBOL(kstat);
4197
4198/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004199 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4200 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004202unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004205 u64 ns, delta_exec;
4206 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004207
Ingo Molnar41b86e92007-07-09 18:51:58 +02004208 rq = task_rq_lock(p, &flags);
4209 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004210 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004211 update_rq_clock(rq);
4212 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004213 if ((s64)delta_exec > 0)
4214 ns += delta_exec;
4215 }
4216 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004217
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 return ns;
4219}
4220
4221/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 * Account user cpu time to a process.
4223 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 * @cputime: the cpu time spent in user space since the last update
4225 */
4226void account_user_time(struct task_struct *p, cputime_t cputime)
4227{
4228 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4229 cputime64_t tmp;
4230
4231 p->utime = cputime_add(p->utime, cputime);
4232
4233 /* Add user time to cpustat. */
4234 tmp = cputime_to_cputime64(cputime);
4235 if (TASK_NICE(p) > 0)
4236 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4237 else
4238 cpustat->user = cputime64_add(cpustat->user, tmp);
4239}
4240
4241/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004242 * Account guest cpu time to a process.
4243 * @p: the process that the cpu time gets accounted to
4244 * @cputime: the cpu time spent in virtual machine since the last update
4245 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004246static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004247{
4248 cputime64_t tmp;
4249 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4250
4251 tmp = cputime_to_cputime64(cputime);
4252
4253 p->utime = cputime_add(p->utime, cputime);
4254 p->gtime = cputime_add(p->gtime, cputime);
4255
4256 cpustat->user = cputime64_add(cpustat->user, tmp);
4257 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4258}
4259
4260/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004261 * Account scaled user cpu time to a process.
4262 * @p: the process that the cpu time gets accounted to
4263 * @cputime: the cpu time spent in user space since the last update
4264 */
4265void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4266{
4267 p->utimescaled = cputime_add(p->utimescaled, cputime);
4268}
4269
4270/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 * Account system cpu time to a process.
4272 * @p: the process that the cpu time gets accounted to
4273 * @hardirq_offset: the offset to subtract from hardirq_count()
4274 * @cputime: the cpu time spent in kernel space since the last update
4275 */
4276void account_system_time(struct task_struct *p, int hardirq_offset,
4277 cputime_t cputime)
4278{
4279 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004280 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 cputime64_t tmp;
4282
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004283 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4284 account_guest_time(p, cputime);
4285 return;
4286 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 p->stime = cputime_add(p->stime, cputime);
4289
4290 /* Add system time to cpustat. */
4291 tmp = cputime_to_cputime64(cputime);
4292 if (hardirq_count() - hardirq_offset)
4293 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4294 else if (softirq_count())
4295 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004296 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004298 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4300 else
4301 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4302 /* Account for system time used */
4303 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304}
4305
4306/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004307 * Account scaled system cpu time to a process.
4308 * @p: the process that the cpu time gets accounted to
4309 * @hardirq_offset: the offset to subtract from hardirq_count()
4310 * @cputime: the cpu time spent in kernel space since the last update
4311 */
4312void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4313{
4314 p->stimescaled = cputime_add(p->stimescaled, cputime);
4315}
4316
4317/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 * Account for involuntary wait time.
4319 * @p: the process from which the cpu time has been stolen
4320 * @steal: the cpu time spent in involuntary wait
4321 */
4322void account_steal_time(struct task_struct *p, cputime_t steal)
4323{
4324 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4325 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004326 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
4328 if (p == rq->idle) {
4329 p->stime = cputime_add(p->stime, steal);
4330 if (atomic_read(&rq->nr_iowait) > 0)
4331 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4332 else
4333 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004334 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4336}
4337
Christoph Lameter7835b982006-12-10 02:20:22 -08004338/*
4339 * This function gets called by the timer code, with HZ frequency.
4340 * We call it with interrupts disabled.
4341 *
4342 * It also gets called by the fork code, when changing the parent's
4343 * timeslices.
4344 */
4345void scheduler_tick(void)
4346{
Christoph Lameter7835b982006-12-10 02:20:22 -08004347 int cpu = smp_processor_id();
4348 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004349 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004350
4351 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004352
Ingo Molnardd41f592007-07-09 18:51:59 +02004353 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004354 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004355 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004356 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004357 spin_unlock(&rq->lock);
4358
Christoph Lametere418e1c2006-12-10 02:20:23 -08004359#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004360 rq->idle_at_tick = idle_cpu(cpu);
4361 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004362#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363}
4364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
4366
Srinivasa Ds43627582008-02-23 15:24:04 -08004367void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368{
4369 /*
4370 * Underflow?
4371 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004372 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4373 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 preempt_count() += val;
4375 /*
4376 * Spinlock count overflowing soon?
4377 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004378 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4379 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380}
4381EXPORT_SYMBOL(add_preempt_count);
4382
Srinivasa Ds43627582008-02-23 15:24:04 -08004383void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384{
4385 /*
4386 * Underflow?
4387 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004388 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4389 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 /*
4391 * Is the spinlock portion underflowing?
4392 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004393 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4394 !(preempt_count() & PREEMPT_MASK)))
4395 return;
4396
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 preempt_count() -= val;
4398}
4399EXPORT_SYMBOL(sub_preempt_count);
4400
4401#endif
4402
4403/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004404 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004406static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407{
Satyam Sharma838225b2007-10-24 18:23:50 +02004408 struct pt_regs *regs = get_irq_regs();
4409
4410 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4411 prev->comm, prev->pid, preempt_count());
4412
Ingo Molnardd41f592007-07-09 18:51:59 +02004413 debug_show_held_locks(prev);
4414 if (irqs_disabled())
4415 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004416
4417 if (regs)
4418 show_regs(regs);
4419 else
4420 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004421}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422
Ingo Molnardd41f592007-07-09 18:51:59 +02004423/*
4424 * Various schedule()-time debugging checks and statistics:
4425 */
4426static inline void schedule_debug(struct task_struct *prev)
4427{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004429 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 * schedule() atomically, we ignore that path for now.
4431 * Otherwise, whine if we are scheduling when we should not be.
4432 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004433 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
4434 __schedule_bug(prev);
4435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4437
Ingo Molnar2d723762007-10-15 17:00:12 +02004438 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004439#ifdef CONFIG_SCHEDSTATS
4440 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004441 schedstat_inc(this_rq(), bkl_count);
4442 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004443 }
4444#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004445}
4446
4447/*
4448 * Pick up the highest-prio task:
4449 */
4450static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004451pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004452{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004453 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004454 struct task_struct *p;
4455
4456 /*
4457 * Optimization: we know that if all tasks are in
4458 * the fair class we can call that function directly:
4459 */
4460 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004461 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004462 if (likely(p))
4463 return p;
4464 }
4465
4466 class = sched_class_highest;
4467 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004468 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004469 if (p)
4470 return p;
4471 /*
4472 * Will never be NULL as the idle class always
4473 * returns a non-NULL p:
4474 */
4475 class = class->next;
4476 }
4477}
4478
4479/*
4480 * schedule() is the main scheduler function.
4481 */
4482asmlinkage void __sched schedule(void)
4483{
4484 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004485 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004486 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004487 int cpu;
4488
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489need_resched:
4490 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004491 cpu = smp_processor_id();
4492 rq = cpu_rq(cpu);
4493 rcu_qsctr_inc(cpu);
4494 prev = rq->curr;
4495 switch_count = &prev->nivcsw;
4496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 release_kernel_lock(prev);
4498need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
Ingo Molnardd41f592007-07-09 18:51:59 +02004500 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004502 hrtick_clear(rq);
4503
Ingo Molnar1e819952007-10-15 17:00:13 +02004504 /*
4505 * Do the rq-clock update outside the rq lock:
4506 */
4507 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004508 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004509 spin_lock(&rq->lock);
4510 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
Ingo Molnardd41f592007-07-09 18:51:59 +02004512 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4513 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004514 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004515 prev->state = TASK_RUNNING;
4516 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004517 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004518 }
4519 switch_count = &prev->nvcsw;
4520 }
4521
Steven Rostedt9a897c52008-01-25 21:08:22 +01004522#ifdef CONFIG_SMP
4523 if (prev->sched_class->pre_schedule)
4524 prev->sched_class->pre_schedule(rq, prev);
4525#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004526
Ingo Molnardd41f592007-07-09 18:51:59 +02004527 if (unlikely(!rq->nr_running))
4528 idle_balance(cpu, rq);
4529
Ingo Molnar31ee5292007-08-09 11:16:49 +02004530 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004531 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004534 sched_info_switch(prev, next);
4535
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 rq->nr_switches++;
4537 rq->curr = next;
4538 ++*switch_count;
4539
Ingo Molnardd41f592007-07-09 18:51:59 +02004540 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004541 /*
4542 * the context switch might have flipped the stack from under
4543 * us, hence refresh the local variables.
4544 */
4545 cpu = smp_processor_id();
4546 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 } else
4548 spin_unlock_irq(&rq->lock);
4549
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004550 hrtick_set(rq);
4551
4552 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 preempt_enable_no_resched();
4556 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4557 goto need_resched;
4558}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559EXPORT_SYMBOL(schedule);
4560
4561#ifdef CONFIG_PREEMPT
4562/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004563 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004564 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 * occur there and call schedule directly.
4566 */
4567asmlinkage void __sched preempt_schedule(void)
4568{
4569 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004570
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 /*
4572 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004573 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004575 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 return;
4577
Andi Kleen3a5c3592007-10-15 17:00:14 +02004578 do {
4579 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004580 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004581 sub_preempt_count(PREEMPT_ACTIVE);
4582
4583 /*
4584 * Check again in case we missed a preemption opportunity
4585 * between schedule and now.
4586 */
4587 barrier();
4588 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590EXPORT_SYMBOL(preempt_schedule);
4591
4592/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004593 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 * off of irq context.
4595 * Note, that this is called and return with irqs disabled. This will
4596 * protect us against recursive calling from irq.
4597 */
4598asmlinkage void __sched preempt_schedule_irq(void)
4599{
4600 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004601
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004602 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 BUG_ON(ti->preempt_count || !irqs_disabled());
4604
Andi Kleen3a5c3592007-10-15 17:00:14 +02004605 do {
4606 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004607 local_irq_enable();
4608 schedule();
4609 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004610 sub_preempt_count(PREEMPT_ACTIVE);
4611
4612 /*
4613 * Check again in case we missed a preemption opportunity
4614 * between schedule and now.
4615 */
4616 barrier();
4617 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618}
4619
4620#endif /* CONFIG_PREEMPT */
4621
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004622int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4623 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004625 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627EXPORT_SYMBOL(default_wake_function);
4628
4629/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004630 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4631 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 * number) then we wake all the non-exclusive tasks and one exclusive task.
4633 *
4634 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004635 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4637 */
4638static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4639 int nr_exclusive, int sync, void *key)
4640{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004641 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004643 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004644 unsigned flags = curr->flags;
4645
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004647 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 break;
4649 }
4650}
4651
4652/**
4653 * __wake_up - wake up threads blocked on a waitqueue.
4654 * @q: the waitqueue
4655 * @mode: which threads
4656 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004657 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004659void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004660 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661{
4662 unsigned long flags;
4663
4664 spin_lock_irqsave(&q->lock, flags);
4665 __wake_up_common(q, mode, nr_exclusive, 0, key);
4666 spin_unlock_irqrestore(&q->lock, flags);
4667}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668EXPORT_SYMBOL(__wake_up);
4669
4670/*
4671 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4672 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004673void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674{
4675 __wake_up_common(q, mode, 1, 0, NULL);
4676}
4677
4678/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004679 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 * @q: the waitqueue
4681 * @mode: which threads
4682 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4683 *
4684 * The sync wakeup differs that the waker knows that it will schedule
4685 * away soon, so while the target thread will be woken up, it will not
4686 * be migrated to another CPU - ie. the two threads are 'synchronized'
4687 * with each other. This can prevent needless bouncing between CPUs.
4688 *
4689 * On UP it can prevent extra preemption.
4690 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004691void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004692__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693{
4694 unsigned long flags;
4695 int sync = 1;
4696
4697 if (unlikely(!q))
4698 return;
4699
4700 if (unlikely(!nr_exclusive))
4701 sync = 0;
4702
4703 spin_lock_irqsave(&q->lock, flags);
4704 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4705 spin_unlock_irqrestore(&q->lock, flags);
4706}
4707EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4708
Ingo Molnarb15136e2007-10-24 18:23:48 +02004709void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710{
4711 unsigned long flags;
4712
4713 spin_lock_irqsave(&x->wait.lock, flags);
4714 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004715 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 spin_unlock_irqrestore(&x->wait.lock, flags);
4717}
4718EXPORT_SYMBOL(complete);
4719
Ingo Molnarb15136e2007-10-24 18:23:48 +02004720void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721{
4722 unsigned long flags;
4723
4724 spin_lock_irqsave(&x->wait.lock, flags);
4725 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004726 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 spin_unlock_irqrestore(&x->wait.lock, flags);
4728}
4729EXPORT_SYMBOL(complete_all);
4730
Andi Kleen8cbbe862007-10-15 17:00:14 +02004731static inline long __sched
4732do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 if (!x->done) {
4735 DECLARE_WAITQUEUE(wait, current);
4736
4737 wait.flags |= WQ_FLAG_EXCLUSIVE;
4738 __add_wait_queue_tail(&x->wait, &wait);
4739 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004740 if ((state == TASK_INTERRUPTIBLE &&
4741 signal_pending(current)) ||
4742 (state == TASK_KILLABLE &&
4743 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004744 __remove_wait_queue(&x->wait, &wait);
4745 return -ERESTARTSYS;
4746 }
4747 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004749 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004751 if (!timeout) {
4752 __remove_wait_queue(&x->wait, &wait);
4753 return timeout;
4754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 } while (!x->done);
4756 __remove_wait_queue(&x->wait, &wait);
4757 }
4758 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004759 return timeout;
4760}
4761
4762static long __sched
4763wait_for_common(struct completion *x, long timeout, int state)
4764{
4765 might_sleep();
4766
4767 spin_lock_irq(&x->wait.lock);
4768 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004770 return timeout;
4771}
4772
Ingo Molnarb15136e2007-10-24 18:23:48 +02004773void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004774{
4775 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776}
4777EXPORT_SYMBOL(wait_for_completion);
4778
Ingo Molnarb15136e2007-10-24 18:23:48 +02004779unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4781{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004782 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783}
4784EXPORT_SYMBOL(wait_for_completion_timeout);
4785
Andi Kleen8cbbe862007-10-15 17:00:14 +02004786int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787{
Andi Kleen51e97992007-10-18 21:32:55 +02004788 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4789 if (t == -ERESTARTSYS)
4790 return t;
4791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792}
4793EXPORT_SYMBOL(wait_for_completion_interruptible);
4794
Ingo Molnarb15136e2007-10-24 18:23:48 +02004795unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796wait_for_completion_interruptible_timeout(struct completion *x,
4797 unsigned long timeout)
4798{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004799 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800}
4801EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4802
Matthew Wilcox009e5772007-12-06 12:29:54 -05004803int __sched wait_for_completion_killable(struct completion *x)
4804{
4805 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4806 if (t == -ERESTARTSYS)
4807 return t;
4808 return 0;
4809}
4810EXPORT_SYMBOL(wait_for_completion_killable);
4811
Andi Kleen8cbbe862007-10-15 17:00:14 +02004812static long __sched
4813sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004814{
4815 unsigned long flags;
4816 wait_queue_t wait;
4817
4818 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
Andi Kleen8cbbe862007-10-15 17:00:14 +02004820 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Andi Kleen8cbbe862007-10-15 17:00:14 +02004822 spin_lock_irqsave(&q->lock, flags);
4823 __add_wait_queue(q, &wait);
4824 spin_unlock(&q->lock);
4825 timeout = schedule_timeout(timeout);
4826 spin_lock_irq(&q->lock);
4827 __remove_wait_queue(q, &wait);
4828 spin_unlock_irqrestore(&q->lock, flags);
4829
4830 return timeout;
4831}
4832
4833void __sched interruptible_sleep_on(wait_queue_head_t *q)
4834{
4835 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837EXPORT_SYMBOL(interruptible_sleep_on);
4838
Ingo Molnar0fec1712007-07-09 18:52:01 +02004839long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004840interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004842 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4845
Ingo Molnar0fec1712007-07-09 18:52:01 +02004846void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004848 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850EXPORT_SYMBOL(sleep_on);
4851
Ingo Molnar0fec1712007-07-09 18:52:01 +02004852long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004854 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856EXPORT_SYMBOL(sleep_on_timeout);
4857
Ingo Molnarb29739f2006-06-27 02:54:51 -07004858#ifdef CONFIG_RT_MUTEXES
4859
4860/*
4861 * rt_mutex_setprio - set the current priority of a task
4862 * @p: task
4863 * @prio: prio value (kernel-internal form)
4864 *
4865 * This function changes the 'effective' priority of a task. It does
4866 * not touch ->normal_prio like __setscheduler().
4867 *
4868 * Used by the rt_mutex code to implement priority inheritance logic.
4869 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004870void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004871{
4872 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004873 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004874 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004875 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004876
4877 BUG_ON(prio < 0 || prio > MAX_PRIO);
4878
4879 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004880 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004881
Andrew Mortond5f9f942007-05-08 20:27:06 -07004882 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004883 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004884 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004885 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004886 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004887 if (running)
4888 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004889
4890 if (rt_prio(prio))
4891 p->sched_class = &rt_sched_class;
4892 else
4893 p->sched_class = &fair_sched_class;
4894
Ingo Molnarb29739f2006-06-27 02:54:51 -07004895 p->prio = prio;
4896
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004897 if (running)
4898 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004899 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004900 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004901
4902 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004903 }
4904 task_rq_unlock(rq, &flags);
4905}
4906
4907#endif
4908
Ingo Molnar36c8b582006-07-03 00:25:41 -07004909void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910{
Ingo Molnardd41f592007-07-09 18:51:59 +02004911 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004913 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914
4915 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4916 return;
4917 /*
4918 * We have to be careful, if called from sys_setpriority(),
4919 * the task might be in the middle of scheduling on another CPU.
4920 */
4921 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004922 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 /*
4924 * The RT priorities are set via sched_setscheduler(), but we still
4925 * allow the 'normal' nice value to be set - but as expected
4926 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004927 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004929 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 p->static_prio = NICE_TO_PRIO(nice);
4931 goto out_unlock;
4932 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004933 on_rq = p->se.on_rq;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02004934 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004935 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004938 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004939 old_prio = p->prio;
4940 p->prio = effective_prio(p);
4941 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
Ingo Molnardd41f592007-07-09 18:51:59 +02004943 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004944 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004946 * If the task increased its priority or is running and
4947 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004949 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 resched_task(rq->curr);
4951 }
4952out_unlock:
4953 task_rq_unlock(rq, &flags);
4954}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955EXPORT_SYMBOL(set_user_nice);
4956
Matt Mackalle43379f2005-05-01 08:59:00 -07004957/*
4958 * can_nice - check if a task can reduce its nice value
4959 * @p: task
4960 * @nice: nice value
4961 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004962int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004963{
Matt Mackall024f4742005-08-18 11:24:19 -07004964 /* convert nice value [19,-20] to rlimit style value [1,40] */
4965 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004966
Matt Mackalle43379f2005-05-01 08:59:00 -07004967 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4968 capable(CAP_SYS_NICE));
4969}
4970
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971#ifdef __ARCH_WANT_SYS_NICE
4972
4973/*
4974 * sys_nice - change the priority of the current process.
4975 * @increment: priority increment
4976 *
4977 * sys_setpriority is a more generic, but much slower function that
4978 * does similar things.
4979 */
4980asmlinkage long sys_nice(int increment)
4981{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004982 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983
4984 /*
4985 * Setpriority might change our priority at the same moment.
4986 * We don't have to worry. Conceptually one call occurs first
4987 * and we have a single winner.
4988 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004989 if (increment < -40)
4990 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 if (increment > 40)
4992 increment = 40;
4993
4994 nice = PRIO_TO_NICE(current->static_prio) + increment;
4995 if (nice < -20)
4996 nice = -20;
4997 if (nice > 19)
4998 nice = 19;
4999
Matt Mackalle43379f2005-05-01 08:59:00 -07005000 if (increment < 0 && !can_nice(current, nice))
5001 return -EPERM;
5002
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 retval = security_task_setnice(current, nice);
5004 if (retval)
5005 return retval;
5006
5007 set_user_nice(current, nice);
5008 return 0;
5009}
5010
5011#endif
5012
5013/**
5014 * task_prio - return the priority value of a given task.
5015 * @p: the task in question.
5016 *
5017 * This is the priority value as seen by users in /proc.
5018 * RT tasks are offset by -200. Normal tasks are centered
5019 * around 0, value goes from -16 to +15.
5020 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005021int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022{
5023 return p->prio - MAX_RT_PRIO;
5024}
5025
5026/**
5027 * task_nice - return the nice value of a given task.
5028 * @p: the task in question.
5029 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005030int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031{
5032 return TASK_NICE(p);
5033}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005034EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
5036/**
5037 * idle_cpu - is a given cpu idle currently?
5038 * @cpu: the processor in question.
5039 */
5040int idle_cpu(int cpu)
5041{
5042 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5043}
5044
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045/**
5046 * idle_task - return the idle task for a given cpu.
5047 * @cpu: the processor in question.
5048 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005049struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050{
5051 return cpu_rq(cpu)->idle;
5052}
5053
5054/**
5055 * find_process_by_pid - find a process with a matching PID value.
5056 * @pid: the pid in question.
5057 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005058static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005060 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061}
5062
5063/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005064static void
5065__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066{
Ingo Molnardd41f592007-07-09 18:51:59 +02005067 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005068
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005070 switch (p->policy) {
5071 case SCHED_NORMAL:
5072 case SCHED_BATCH:
5073 case SCHED_IDLE:
5074 p->sched_class = &fair_sched_class;
5075 break;
5076 case SCHED_FIFO:
5077 case SCHED_RR:
5078 p->sched_class = &rt_sched_class;
5079 break;
5080 }
5081
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005083 p->normal_prio = normal_prio(p);
5084 /* we are holding p->pi_lock already */
5085 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005086 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087}
5088
5089/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005090 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091 * @p: the task in question.
5092 * @policy: new policy.
5093 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005094 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005095 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005097int sched_setscheduler(struct task_struct *p, int policy,
5098 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005100 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005102 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005103 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
Steven Rostedt66e53932006-06-27 02:54:44 -07005105 /* may grab non-irq protected spin_locks */
5106 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107recheck:
5108 /* double check policy once rq lock held */
5109 if (policy < 0)
5110 policy = oldpolicy = p->policy;
5111 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005112 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5113 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005114 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 /*
5116 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005117 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5118 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119 */
5120 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005121 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005122 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005124 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 return -EINVAL;
5126
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005127 /*
5128 * Allow unprivileged RT tasks to decrease priority:
5129 */
5130 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005131 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005132 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005133
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005134 if (!lock_task_sighand(p, &flags))
5135 return -ESRCH;
5136 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5137 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005138
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005139 /* can't set/change the rt policy */
5140 if (policy != p->policy && !rlim_rtprio)
5141 return -EPERM;
5142
5143 /* can't increase priority */
5144 if (param->sched_priority > p->rt_priority &&
5145 param->sched_priority > rlim_rtprio)
5146 return -EPERM;
5147 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005148 /*
5149 * Like positive nice levels, dont allow tasks to
5150 * move out of SCHED_IDLE either:
5151 */
5152 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5153 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005154
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005155 /* can't change other user's priorities */
5156 if ((current->euid != p->euid) &&
5157 (current->euid != p->uid))
5158 return -EPERM;
5159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005161#ifdef CONFIG_RT_GROUP_SCHED
5162 /*
5163 * Do not allow realtime tasks into groups that have no runtime
5164 * assigned.
5165 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005166 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005167 return -EPERM;
5168#endif
5169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 retval = security_task_setscheduler(p, policy, param);
5171 if (retval)
5172 return retval;
5173 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005174 * make sure no PI-waiters arrive (or leave) while we are
5175 * changing the priority of the task:
5176 */
5177 spin_lock_irqsave(&p->pi_lock, flags);
5178 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 * To be able to change p->policy safely, the apropriate
5180 * runqueue lock must be held.
5181 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005182 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 /* recheck policy now with rq lock held */
5184 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5185 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005186 __task_rq_unlock(rq);
5187 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 goto recheck;
5189 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005190 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005191 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005192 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005193 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005194 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005195 if (running)
5196 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005197
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005199 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005200
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005201 if (running)
5202 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005203 if (on_rq) {
5204 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005205
5206 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005208 __task_rq_unlock(rq);
5209 spin_unlock_irqrestore(&p->pi_lock, flags);
5210
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005211 rt_mutex_adjust_pi(p);
5212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 return 0;
5214}
5215EXPORT_SYMBOL_GPL(sched_setscheduler);
5216
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005217static int
5218do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 struct sched_param lparam;
5221 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005222 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223
5224 if (!param || pid < 0)
5225 return -EINVAL;
5226 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5227 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005228
5229 rcu_read_lock();
5230 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005232 if (p != NULL)
5233 retval = sched_setscheduler(p, policy, &lparam);
5234 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005235
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 return retval;
5237}
5238
5239/**
5240 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5241 * @pid: the pid in question.
5242 * @policy: new policy.
5243 * @param: structure containing the new RT priority.
5244 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005245asmlinkage long
5246sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247{
Jason Baronc21761f2006-01-18 17:43:03 -08005248 /* negative values for policy are not valid */
5249 if (policy < 0)
5250 return -EINVAL;
5251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 return do_sched_setscheduler(pid, policy, param);
5253}
5254
5255/**
5256 * sys_sched_setparam - set/change the RT priority of a thread
5257 * @pid: the pid in question.
5258 * @param: structure containing the new RT priority.
5259 */
5260asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5261{
5262 return do_sched_setscheduler(pid, -1, param);
5263}
5264
5265/**
5266 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5267 * @pid: the pid in question.
5268 */
5269asmlinkage long sys_sched_getscheduler(pid_t pid)
5270{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005271 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005272 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
5274 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005275 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
5277 retval = -ESRCH;
5278 read_lock(&tasklist_lock);
5279 p = find_process_by_pid(pid);
5280 if (p) {
5281 retval = security_task_getscheduler(p);
5282 if (!retval)
5283 retval = p->policy;
5284 }
5285 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 return retval;
5287}
5288
5289/**
5290 * sys_sched_getscheduler - get the RT priority of a thread
5291 * @pid: the pid in question.
5292 * @param: structure containing the RT priority.
5293 */
5294asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5295{
5296 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005297 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005298 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005301 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
5303 read_lock(&tasklist_lock);
5304 p = find_process_by_pid(pid);
5305 retval = -ESRCH;
5306 if (!p)
5307 goto out_unlock;
5308
5309 retval = security_task_getscheduler(p);
5310 if (retval)
5311 goto out_unlock;
5312
5313 lp.sched_priority = p->rt_priority;
5314 read_unlock(&tasklist_lock);
5315
5316 /*
5317 * This one might sleep, we cannot do it with a spinlock held ...
5318 */
5319 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5320
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 return retval;
5322
5323out_unlock:
5324 read_unlock(&tasklist_lock);
5325 return retval;
5326}
5327
Mike Travisb53e9212008-04-04 18:11:08 -07005328long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005331 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005332 struct task_struct *p;
5333 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005335 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336 read_lock(&tasklist_lock);
5337
5338 p = find_process_by_pid(pid);
5339 if (!p) {
5340 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005341 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 return -ESRCH;
5343 }
5344
5345 /*
5346 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005347 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348 * usage count and then drop tasklist_lock.
5349 */
5350 get_task_struct(p);
5351 read_unlock(&tasklist_lock);
5352
5353 retval = -EPERM;
5354 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5355 !capable(CAP_SYS_NICE))
5356 goto out_unlock;
5357
David Quigleye7834f82006-06-23 02:03:59 -07005358 retval = security_task_setscheduler(p, 0, NULL);
5359 if (retval)
5360 goto out_unlock;
5361
Mike Travisf9a86fc2008-04-04 18:11:07 -07005362 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005364 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005365 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366
Paul Menage8707d8b2007-10-18 23:40:22 -07005367 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005368 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005369 if (!cpus_subset(new_mask, cpus_allowed)) {
5370 /*
5371 * We must have raced with a concurrent cpuset
5372 * update. Just reset the cpus_allowed to the
5373 * cpuset's cpus_allowed
5374 */
5375 new_mask = cpus_allowed;
5376 goto again;
5377 }
5378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379out_unlock:
5380 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005381 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 return retval;
5383}
5384
5385static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5386 cpumask_t *new_mask)
5387{
5388 if (len < sizeof(cpumask_t)) {
5389 memset(new_mask, 0, sizeof(cpumask_t));
5390 } else if (len > sizeof(cpumask_t)) {
5391 len = sizeof(cpumask_t);
5392 }
5393 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5394}
5395
5396/**
5397 * sys_sched_setaffinity - set the cpu affinity of a process
5398 * @pid: pid of the process
5399 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5400 * @user_mask_ptr: user-space pointer to the new cpu mask
5401 */
5402asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5403 unsigned long __user *user_mask_ptr)
5404{
5405 cpumask_t new_mask;
5406 int retval;
5407
5408 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5409 if (retval)
5410 return retval;
5411
Mike Travisb53e9212008-04-04 18:11:08 -07005412 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413}
5414
5415/*
5416 * Represents all cpu's present in the system
5417 * In systems capable of hotplug, this map could dynamically grow
5418 * as new cpu's are detected in the system via any platform specific
5419 * method, such as ACPI for e.g.
5420 */
5421
Andi Kleen4cef0c62006-01-11 22:44:57 +01005422cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423EXPORT_SYMBOL(cpu_present_map);
5424
5425#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005426cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005427EXPORT_SYMBOL(cpu_online_map);
5428
Andi Kleen4cef0c62006-01-11 22:44:57 +01005429cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005430EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431#endif
5432
5433long sched_getaffinity(pid_t pid, cpumask_t *mask)
5434{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005435 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005438 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 read_lock(&tasklist_lock);
5440
5441 retval = -ESRCH;
5442 p = find_process_by_pid(pid);
5443 if (!p)
5444 goto out_unlock;
5445
David Quigleye7834f82006-06-23 02:03:59 -07005446 retval = security_task_getscheduler(p);
5447 if (retval)
5448 goto out_unlock;
5449
Jack Steiner2f7016d2006-02-01 03:05:18 -08005450 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451
5452out_unlock:
5453 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005454 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455
Ulrich Drepper9531b622007-08-09 11:16:46 +02005456 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457}
5458
5459/**
5460 * sys_sched_getaffinity - get the cpu affinity of a process
5461 * @pid: pid of the process
5462 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5463 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5464 */
5465asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5466 unsigned long __user *user_mask_ptr)
5467{
5468 int ret;
5469 cpumask_t mask;
5470
5471 if (len < sizeof(cpumask_t))
5472 return -EINVAL;
5473
5474 ret = sched_getaffinity(pid, &mask);
5475 if (ret < 0)
5476 return ret;
5477
5478 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5479 return -EFAULT;
5480
5481 return sizeof(cpumask_t);
5482}
5483
5484/**
5485 * sys_sched_yield - yield the current processor to other threads.
5486 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005487 * This function yields the current CPU to other tasks. If there are no
5488 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 */
5490asmlinkage long sys_sched_yield(void)
5491{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005492 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493
Ingo Molnar2d723762007-10-15 17:00:12 +02005494 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005495 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496
5497 /*
5498 * Since we are going to call schedule() anyway, there's
5499 * no need to preempt or enable interrupts:
5500 */
5501 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005502 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 _raw_spin_unlock(&rq->lock);
5504 preempt_enable_no_resched();
5505
5506 schedule();
5507
5508 return 0;
5509}
5510
Andrew Mortone7b38402006-06-30 01:56:00 -07005511static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005513#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5514 __might_sleep(__FILE__, __LINE__);
5515#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005516 /*
5517 * The BKS might be reacquired before we have dropped
5518 * PREEMPT_ACTIVE, which could trigger a second
5519 * cond_resched() call.
5520 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 do {
5522 add_preempt_count(PREEMPT_ACTIVE);
5523 schedule();
5524 sub_preempt_count(PREEMPT_ACTIVE);
5525 } while (need_resched());
5526}
5527
Herbert Xu02b67cc2008-01-25 21:08:28 +01005528int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529{
Ingo Molnar94142322006-12-29 16:48:13 -08005530 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5531 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 __cond_resched();
5533 return 1;
5534 }
5535 return 0;
5536}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005537EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538
5539/*
5540 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5541 * call schedule, and on return reacquire the lock.
5542 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005543 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 * operations here to prevent schedule() from being called twice (once via
5545 * spin_unlock(), once by hand).
5546 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005547int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548{
Nick Piggin95c354f2008-01-30 13:31:20 +01005549 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005550 int ret = 0;
5551
Nick Piggin95c354f2008-01-30 13:31:20 +01005552 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005554 if (resched && need_resched())
5555 __cond_resched();
5556 else
5557 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005558 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005561 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563EXPORT_SYMBOL(cond_resched_lock);
5564
5565int __sched cond_resched_softirq(void)
5566{
5567 BUG_ON(!in_softirq());
5568
Ingo Molnar94142322006-12-29 16:48:13 -08005569 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07005570 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 __cond_resched();
5572 local_bh_disable();
5573 return 1;
5574 }
5575 return 0;
5576}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577EXPORT_SYMBOL(cond_resched_softirq);
5578
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579/**
5580 * yield - yield the current processor to other threads.
5581 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005582 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583 * thread runnable and calls sys_sched_yield().
5584 */
5585void __sched yield(void)
5586{
5587 set_current_state(TASK_RUNNING);
5588 sys_sched_yield();
5589}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590EXPORT_SYMBOL(yield);
5591
5592/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005593 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594 * that process accounting knows that this is a task in IO wait state.
5595 *
5596 * But don't do that if it is a deliberate, throttling IO wait (this task
5597 * has set its backing_dev_info: the queue against which it should throttle)
5598 */
5599void __sched io_schedule(void)
5600{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005601 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005603 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604 atomic_inc(&rq->nr_iowait);
5605 schedule();
5606 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005607 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609EXPORT_SYMBOL(io_schedule);
5610
5611long __sched io_schedule_timeout(long timeout)
5612{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005613 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614 long ret;
5615
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005616 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617 atomic_inc(&rq->nr_iowait);
5618 ret = schedule_timeout(timeout);
5619 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005620 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 return ret;
5622}
5623
5624/**
5625 * sys_sched_get_priority_max - return maximum RT priority.
5626 * @policy: scheduling class.
5627 *
5628 * this syscall returns the maximum rt_priority that can be used
5629 * by a given scheduling class.
5630 */
5631asmlinkage long sys_sched_get_priority_max(int policy)
5632{
5633 int ret = -EINVAL;
5634
5635 switch (policy) {
5636 case SCHED_FIFO:
5637 case SCHED_RR:
5638 ret = MAX_USER_RT_PRIO-1;
5639 break;
5640 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005641 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005642 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 ret = 0;
5644 break;
5645 }
5646 return ret;
5647}
5648
5649/**
5650 * sys_sched_get_priority_min - return minimum RT priority.
5651 * @policy: scheduling class.
5652 *
5653 * this syscall returns the minimum rt_priority that can be used
5654 * by a given scheduling class.
5655 */
5656asmlinkage long sys_sched_get_priority_min(int policy)
5657{
5658 int ret = -EINVAL;
5659
5660 switch (policy) {
5661 case SCHED_FIFO:
5662 case SCHED_RR:
5663 ret = 1;
5664 break;
5665 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005666 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005667 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 ret = 0;
5669 }
5670 return ret;
5671}
5672
5673/**
5674 * sys_sched_rr_get_interval - return the default timeslice of a process.
5675 * @pid: pid of the process.
5676 * @interval: userspace pointer to the timeslice value.
5677 *
5678 * this syscall writes the default timeslice value of a given process
5679 * into the user-space timespec buffer. A value of '0' means infinity.
5680 */
5681asmlinkage
5682long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5683{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005684 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005685 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005686 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
5689 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005690 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691
5692 retval = -ESRCH;
5693 read_lock(&tasklist_lock);
5694 p = find_process_by_pid(pid);
5695 if (!p)
5696 goto out_unlock;
5697
5698 retval = security_task_getscheduler(p);
5699 if (retval)
5700 goto out_unlock;
5701
Ingo Molnar77034932007-12-04 17:04:39 +01005702 /*
5703 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5704 * tasks that are on an otherwise idle runqueue:
5705 */
5706 time_slice = 0;
5707 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005708 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005709 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005710 struct sched_entity *se = &p->se;
5711 unsigned long flags;
5712 struct rq *rq;
5713
5714 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005715 if (rq->cfs.load.weight)
5716 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005717 task_rq_unlock(rq, &flags);
5718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005720 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005723
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724out_unlock:
5725 read_unlock(&tasklist_lock);
5726 return retval;
5727}
5728
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005729static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005730
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005731void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005734 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005737 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005738 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005739#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005741 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005743 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744#else
5745 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005746 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005748 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749#endif
5750#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05005751 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005753 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005754 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005756 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757}
5758
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005759void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005761 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762
Ingo Molnar4bd77322007-07-11 21:21:47 +02005763#if BITS_PER_LONG == 32
5764 printk(KERN_INFO
5765 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005767 printk(KERN_INFO
5768 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769#endif
5770 read_lock(&tasklist_lock);
5771 do_each_thread(g, p) {
5772 /*
5773 * reset the NMI-timeout, listing all files on a slow
5774 * console might take alot of time:
5775 */
5776 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005777 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005778 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 } while_each_thread(g, p);
5780
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005781 touch_all_softlockup_watchdogs();
5782
Ingo Molnardd41f592007-07-09 18:51:59 +02005783#ifdef CONFIG_SCHED_DEBUG
5784 sysrq_sched_debug_show();
5785#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005787 /*
5788 * Only show locks if all tasks are dumped:
5789 */
5790 if (state_filter == -1)
5791 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792}
5793
Ingo Molnar1df21052007-07-09 18:51:58 +02005794void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5795{
Ingo Molnardd41f592007-07-09 18:51:59 +02005796 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005797}
5798
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005799/**
5800 * init_idle - set up an idle thread for a given CPU
5801 * @idle: task in question
5802 * @cpu: cpu the idle task belongs to
5803 *
5804 * NOTE: this function does not set the idle thread's NEED_RESCHED
5805 * flag, to make booting more robust.
5806 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005807void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005809 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 unsigned long flags;
5811
Ingo Molnardd41f592007-07-09 18:51:59 +02005812 __sched_fork(idle);
5813 idle->se.exec_start = sched_clock();
5814
Ingo Molnarb29739f2006-06-27 02:54:51 -07005815 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005817 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
5819 spin_lock_irqsave(&rq->lock, flags);
5820 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005821#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5822 idle->oncpu = 1;
5823#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 spin_unlock_irqrestore(&rq->lock, flags);
5825
5826 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005827#if defined(CONFIG_PREEMPT)
5828 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5829#else
Al Viroa1261f52005-11-13 16:06:55 -08005830 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005831#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005832 /*
5833 * The idle tasks have their own, simple scheduling class:
5834 */
5835 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836}
5837
5838/*
5839 * In a system that switches off the HZ timer nohz_cpu_mask
5840 * indicates which cpus entered this state. This is used
5841 * in the rcu update to wait only for active cpus. For system
5842 * which do not switch off the HZ timer nohz_cpu_mask should
5843 * always be CPU_MASK_NONE.
5844 */
5845cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5846
Ingo Molnar19978ca2007-11-09 22:39:38 +01005847/*
5848 * Increase the granularity value when there are more CPUs,
5849 * because with more CPUs the 'effective latency' as visible
5850 * to users decreases. But the relationship is not linear,
5851 * so pick a second-best guess by going with the log2 of the
5852 * number of CPUs.
5853 *
5854 * This idea comes from the SD scheduler of Con Kolivas:
5855 */
5856static inline void sched_init_granularity(void)
5857{
5858 unsigned int factor = 1 + ilog2(num_online_cpus());
5859 const unsigned long limit = 200000000;
5860
5861 sysctl_sched_min_granularity *= factor;
5862 if (sysctl_sched_min_granularity > limit)
5863 sysctl_sched_min_granularity = limit;
5864
5865 sysctl_sched_latency *= factor;
5866 if (sysctl_sched_latency > limit)
5867 sysctl_sched_latency = limit;
5868
5869 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005870}
5871
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872#ifdef CONFIG_SMP
5873/*
5874 * This is how migration works:
5875 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005876 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877 * runqueue and wake up that CPU's migration thread.
5878 * 2) we down() the locked semaphore => thread blocks.
5879 * 3) migration thread wakes up (implicitly it forces the migrated
5880 * thread off the CPU)
5881 * 4) it gets the migration request and checks whether the migrated
5882 * task is still in the wrong runqueue.
5883 * 5) if it's in the wrong runqueue then the migration thread removes
5884 * it and puts it into the right queue.
5885 * 6) migration thread up()s the semaphore.
5886 * 7) we wake up and the migration is done.
5887 */
5888
5889/*
5890 * Change a given task's CPU affinity. Migrate the thread to a
5891 * proper CPU and schedule it away if the CPU it's executing on
5892 * is removed from the allowed bitmask.
5893 *
5894 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005895 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896 * call is not atomic; no spinlocks may be held.
5897 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005898int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005900 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005902 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005903 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904
5905 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005906 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 ret = -EINVAL;
5908 goto out;
5909 }
5910
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005911 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005912 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005913 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005914 p->cpus_allowed = *new_mask;
5915 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005916 }
5917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005919 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920 goto out;
5921
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005922 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923 /* Need help from migration thread: drop lock and wait. */
5924 task_rq_unlock(rq, &flags);
5925 wake_up_process(rq->migration_thread);
5926 wait_for_completion(&req.done);
5927 tlb_migrate_finish(p->mm);
5928 return 0;
5929 }
5930out:
5931 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005932
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933 return ret;
5934}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005935EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
5937/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005938 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939 * this because either it can't run here any more (set_cpus_allowed()
5940 * away from this CPU, or CPU going down), or because we're
5941 * attempting to rebalance this task on exec (sched_exec).
5942 *
5943 * So we race with normal scheduler movements, but that's OK, as long
5944 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005945 *
5946 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005948static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005950 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005951 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952
5953 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005954 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955
5956 rq_src = cpu_rq(src_cpu);
5957 rq_dest = cpu_rq(dest_cpu);
5958
5959 double_rq_lock(rq_src, rq_dest);
5960 /* Already moved. */
5961 if (task_cpu(p) != src_cpu)
5962 goto out;
5963 /* Affinity changed (again). */
5964 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5965 goto out;
5966
Ingo Molnardd41f592007-07-09 18:51:59 +02005967 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005968 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005969 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005970
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005972 if (on_rq) {
5973 activate_task(rq_dest, p, 0);
5974 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005976 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977out:
5978 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005979 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980}
5981
5982/*
5983 * migration_thread - this is a highprio system thread that performs
5984 * thread migration by bumping thread off CPU then 'pushing' onto
5985 * another runqueue.
5986 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005987static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005990 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
5992 rq = cpu_rq(cpu);
5993 BUG_ON(rq->migration_thread != current);
5994
5995 set_current_state(TASK_INTERRUPTIBLE);
5996 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005997 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 spin_lock_irq(&rq->lock);
6001
6002 if (cpu_is_offline(cpu)) {
6003 spin_unlock_irq(&rq->lock);
6004 goto wait_to_die;
6005 }
6006
6007 if (rq->active_balance) {
6008 active_load_balance(rq, cpu);
6009 rq->active_balance = 0;
6010 }
6011
6012 head = &rq->migration_queue;
6013
6014 if (list_empty(head)) {
6015 spin_unlock_irq(&rq->lock);
6016 schedule();
6017 set_current_state(TASK_INTERRUPTIBLE);
6018 continue;
6019 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006020 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 list_del_init(head->next);
6022
Nick Piggin674311d2005-06-25 14:57:27 -07006023 spin_unlock(&rq->lock);
6024 __migrate_task(req->task, cpu, req->dest_cpu);
6025 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
6027 complete(&req->done);
6028 }
6029 __set_current_state(TASK_RUNNING);
6030 return 0;
6031
6032wait_to_die:
6033 /* Wait for kthread_stop */
6034 set_current_state(TASK_INTERRUPTIBLE);
6035 while (!kthread_should_stop()) {
6036 schedule();
6037 set_current_state(TASK_INTERRUPTIBLE);
6038 }
6039 __set_current_state(TASK_RUNNING);
6040 return 0;
6041}
6042
6043#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006044
6045static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6046{
6047 int ret;
6048
6049 local_irq_disable();
6050 ret = __migrate_task(p, src_cpu, dest_cpu);
6051 local_irq_enable();
6052 return ret;
6053}
6054
Kirill Korotaev054b9102006-12-10 02:20:11 -08006055/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006056 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006057 * NOTE: interrupts should be disabled by the caller
6058 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006059static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006061 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006063 struct rq *rq;
6064 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065
Andi Kleen3a5c3592007-10-15 17:00:14 +02006066 do {
6067 /* On same node? */
6068 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6069 cpus_and(mask, mask, p->cpus_allowed);
6070 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071
Andi Kleen3a5c3592007-10-15 17:00:14 +02006072 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006073 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006074 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075
Andi Kleen3a5c3592007-10-15 17:00:14 +02006076 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006077 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006078 cpumask_t cpus_allowed;
6079
6080 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07006081 /*
6082 * Try to stay on the same cpuset, where the
6083 * current cpuset may be a subset of all cpus.
6084 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006085 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07006086 * called within calls to cpuset_lock/cpuset_unlock.
6087 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006088 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07006089 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006090 dest_cpu = any_online_cpu(p->cpus_allowed);
6091 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
Andi Kleen3a5c3592007-10-15 17:00:14 +02006093 /*
6094 * Don't tell them about moving exiting tasks or
6095 * kernel threads (both mm NULL), since they never
6096 * leave kernel.
6097 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006098 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006099 printk(KERN_INFO "process %d (%s) no "
6100 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006101 task_pid_nr(p), p->comm, dead_cpu);
6102 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006103 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006104 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105}
6106
6107/*
6108 * While a dead CPU has no uninterruptible tasks queued at this point,
6109 * it might still have a nonzero ->nr_uninterruptible counter, because
6110 * for performance reasons the counter is not stricly tracking tasks to
6111 * their home CPUs. So we just add the counter to another CPU's counter,
6112 * to keep the global sum constant after CPU-down:
6113 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006114static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115{
Mike Travis7c16ec52008-04-04 18:11:11 -07006116 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117 unsigned long flags;
6118
6119 local_irq_save(flags);
6120 double_rq_lock(rq_src, rq_dest);
6121 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6122 rq_src->nr_uninterruptible = 0;
6123 double_rq_unlock(rq_src, rq_dest);
6124 local_irq_restore(flags);
6125}
6126
6127/* Run through task list and migrate tasks from the dead cpu. */
6128static void migrate_live_tasks(int src_cpu)
6129{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006130 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006132 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
Ingo Molnar48f24c42006-07-03 00:25:40 -07006134 do_each_thread(t, p) {
6135 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136 continue;
6137
Ingo Molnar48f24c42006-07-03 00:25:40 -07006138 if (task_cpu(p) == src_cpu)
6139 move_task_off_dead_cpu(src_cpu, p);
6140 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006142 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143}
6144
Ingo Molnardd41f592007-07-09 18:51:59 +02006145/*
6146 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006147 * It does so by boosting its priority to highest possible.
6148 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149 */
6150void sched_idle_next(void)
6151{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006152 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006153 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154 struct task_struct *p = rq->idle;
6155 unsigned long flags;
6156
6157 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006158 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159
Ingo Molnar48f24c42006-07-03 00:25:40 -07006160 /*
6161 * Strictly not necessary since rest of the CPUs are stopped by now
6162 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 */
6164 spin_lock_irqsave(&rq->lock, flags);
6165
Ingo Molnardd41f592007-07-09 18:51:59 +02006166 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006167
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006168 update_rq_clock(rq);
6169 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170
6171 spin_unlock_irqrestore(&rq->lock, flags);
6172}
6173
Ingo Molnar48f24c42006-07-03 00:25:40 -07006174/*
6175 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176 * offline.
6177 */
6178void idle_task_exit(void)
6179{
6180 struct mm_struct *mm = current->active_mm;
6181
6182 BUG_ON(cpu_online(smp_processor_id()));
6183
6184 if (mm != &init_mm)
6185 switch_mm(mm, &init_mm, current);
6186 mmdrop(mm);
6187}
6188
Kirill Korotaev054b9102006-12-10 02:20:11 -08006189/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006190static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006192 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193
6194 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006195 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196
6197 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006198 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199
Ingo Molnar48f24c42006-07-03 00:25:40 -07006200 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
6202 /*
6203 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006204 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205 * fine.
6206 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006207 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006208 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006209 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210
Ingo Molnar48f24c42006-07-03 00:25:40 -07006211 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212}
6213
6214/* release_task() removes task from tasklist, so we won't find dead tasks. */
6215static void migrate_dead_tasks(unsigned int dead_cpu)
6216{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006217 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006218 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219
Ingo Molnardd41f592007-07-09 18:51:59 +02006220 for ( ; ; ) {
6221 if (!rq->nr_running)
6222 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006223 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006224 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006225 if (!next)
6226 break;
6227 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006228
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229 }
6230}
6231#endif /* CONFIG_HOTPLUG_CPU */
6232
Nick Piggine692ab52007-07-26 13:40:43 +02006233#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6234
6235static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006236 {
6237 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006238 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006239 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006240 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006241};
6242
6243static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006244 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006245 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006246 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006247 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006248 .child = sd_ctl_dir,
6249 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006250 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006251};
6252
6253static struct ctl_table *sd_alloc_ctl_entry(int n)
6254{
6255 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006256 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006257
Nick Piggine692ab52007-07-26 13:40:43 +02006258 return entry;
6259}
6260
Milton Miller6382bc92007-10-15 17:00:19 +02006261static void sd_free_ctl_entry(struct ctl_table **tablep)
6262{
Milton Millercd790072007-10-17 16:55:11 +02006263 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006264
Milton Millercd790072007-10-17 16:55:11 +02006265 /*
6266 * In the intermediate directories, both the child directory and
6267 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006268 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02006269 * static strings and all have proc handlers.
6270 */
6271 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006272 if (entry->child)
6273 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02006274 if (entry->proc_handler == NULL)
6275 kfree(entry->procname);
6276 }
Milton Miller6382bc92007-10-15 17:00:19 +02006277
6278 kfree(*tablep);
6279 *tablep = NULL;
6280}
6281
Nick Piggine692ab52007-07-26 13:40:43 +02006282static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006283set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006284 const char *procname, void *data, int maxlen,
6285 mode_t mode, proc_handler *proc_handler)
6286{
Nick Piggine692ab52007-07-26 13:40:43 +02006287 entry->procname = procname;
6288 entry->data = data;
6289 entry->maxlen = maxlen;
6290 entry->mode = mode;
6291 entry->proc_handler = proc_handler;
6292}
6293
6294static struct ctl_table *
6295sd_alloc_ctl_domain_table(struct sched_domain *sd)
6296{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006297 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006298
Milton Millerad1cdc12007-10-15 17:00:19 +02006299 if (table == NULL)
6300 return NULL;
6301
Alexey Dobriyane0361852007-08-09 11:16:46 +02006302 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006303 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006304 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006305 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006306 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006307 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006308 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006309 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006310 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006311 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006312 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006313 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006314 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006315 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006316 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006317 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006318 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006319 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006320 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006321 &sd->cache_nice_tries,
6322 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006323 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006324 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006325 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006326
6327 return table;
6328}
6329
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006330static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006331{
6332 struct ctl_table *entry, *table;
6333 struct sched_domain *sd;
6334 int domain_num = 0, i;
6335 char buf[32];
6336
6337 for_each_domain(cpu, sd)
6338 domain_num++;
6339 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006340 if (table == NULL)
6341 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006342
6343 i = 0;
6344 for_each_domain(cpu, sd) {
6345 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006346 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006347 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006348 entry->child = sd_alloc_ctl_domain_table(sd);
6349 entry++;
6350 i++;
6351 }
6352 return table;
6353}
6354
6355static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006356static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006357{
6358 int i, cpu_num = num_online_cpus();
6359 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6360 char buf[32];
6361
Milton Miller73785472007-10-24 18:23:48 +02006362 WARN_ON(sd_ctl_dir[0].child);
6363 sd_ctl_dir[0].child = entry;
6364
Milton Millerad1cdc12007-10-15 17:00:19 +02006365 if (entry == NULL)
6366 return;
6367
Milton Miller97b6ea72007-10-15 17:00:19 +02006368 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006369 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006370 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006371 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006372 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006373 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006374 }
Milton Miller73785472007-10-24 18:23:48 +02006375
6376 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006377 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6378}
Milton Miller6382bc92007-10-15 17:00:19 +02006379
Milton Miller73785472007-10-24 18:23:48 +02006380/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006381static void unregister_sched_domain_sysctl(void)
6382{
Milton Miller73785472007-10-24 18:23:48 +02006383 if (sd_sysctl_header)
6384 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006385 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006386 if (sd_ctl_dir[0].child)
6387 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006388}
Nick Piggine692ab52007-07-26 13:40:43 +02006389#else
Milton Miller6382bc92007-10-15 17:00:19 +02006390static void register_sched_domain_sysctl(void)
6391{
6392}
6393static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006394{
6395}
6396#endif
6397
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398/*
6399 * migration_call - callback that gets triggered when a CPU is added.
6400 * Here we can start up the necessary migration thread for the new CPU.
6401 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006402static int __cpuinit
6403migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006406 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006407 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006408 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409
6410 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006411
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006413 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006414 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415 if (IS_ERR(p))
6416 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417 kthread_bind(p, cpu);
6418 /* Must be high prio: stop_machine expects to yield to it. */
6419 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006420 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 task_rq_unlock(rq, &flags);
6422 cpu_rq(cpu)->migration_thread = p;
6423 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006424
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006426 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006427 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006429
6430 /* Update our root-domain */
6431 rq = cpu_rq(cpu);
6432 spin_lock_irqsave(&rq->lock, flags);
6433 if (rq->rd) {
6434 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6435 cpu_set(cpu, rq->rd->online);
6436 }
6437 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006439
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440#ifdef CONFIG_HOTPLUG_CPU
6441 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006442 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006443 if (!cpu_rq(cpu)->migration_thread)
6444 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006445 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006446 kthread_bind(cpu_rq(cpu)->migration_thread,
6447 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448 kthread_stop(cpu_rq(cpu)->migration_thread);
6449 cpu_rq(cpu)->migration_thread = NULL;
6450 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006451
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006453 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006454 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455 migrate_live_tasks(cpu);
6456 rq = cpu_rq(cpu);
6457 kthread_stop(rq->migration_thread);
6458 rq->migration_thread = NULL;
6459 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006460 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006461 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006462 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006464 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6465 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006467 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006468 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 migrate_nr_uninterruptible(rq);
6470 BUG_ON(rq->nr_running != 0);
6471
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006472 /*
6473 * No need to migrate the tasks: it was best-effort if
6474 * they didn't take sched_hotcpu_mutex. Just wake up
6475 * the requestors.
6476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477 spin_lock_irq(&rq->lock);
6478 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006479 struct migration_req *req;
6480
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006482 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483 list_del_init(&req->list);
6484 complete(&req->done);
6485 }
6486 spin_unlock_irq(&rq->lock);
6487 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006488
Gregory Haskins08f503b2008-03-10 17:59:11 -04006489 case CPU_DYING:
6490 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006491 /* Update our root-domain */
6492 rq = cpu_rq(cpu);
6493 spin_lock_irqsave(&rq->lock, flags);
6494 if (rq->rd) {
6495 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6496 cpu_clear(cpu, rq->rd->online);
6497 }
6498 spin_unlock_irqrestore(&rq->lock, flags);
6499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500#endif
6501 }
6502 return NOTIFY_OK;
6503}
6504
6505/* Register at highest priority so that task migration (migrate_all_tasks)
6506 * happens before everything else.
6507 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006508static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509 .notifier_call = migration_call,
6510 .priority = 10
6511};
6512
Adrian Bunke6fe6642007-11-09 22:39:39 +01006513void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514{
6515 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006516 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006517
6518 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006519 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6520 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6522 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523}
6524#endif
6525
6526#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006527
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006528#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006529
Mike Travis7c16ec52008-04-04 18:11:11 -07006530static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6531 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006532{
6533 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006534 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006535
Mike Travis434d53b2008-04-04 18:11:04 -07006536 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006537 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006538
6539 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6540
6541 if (!(sd->flags & SD_LOAD_BALANCE)) {
6542 printk("does not load-balance\n");
6543 if (sd->parent)
6544 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6545 " has parent");
6546 return -1;
6547 }
6548
6549 printk(KERN_CONT "span %s\n", str);
6550
6551 if (!cpu_isset(cpu, sd->span)) {
6552 printk(KERN_ERR "ERROR: domain->span does not contain "
6553 "CPU%d\n", cpu);
6554 }
6555 if (!cpu_isset(cpu, group->cpumask)) {
6556 printk(KERN_ERR "ERROR: domain->groups does not contain"
6557 " CPU%d\n", cpu);
6558 }
6559
6560 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6561 do {
6562 if (!group) {
6563 printk("\n");
6564 printk(KERN_ERR "ERROR: group is NULL\n");
6565 break;
6566 }
6567
6568 if (!group->__cpu_power) {
6569 printk(KERN_CONT "\n");
6570 printk(KERN_ERR "ERROR: domain->cpu_power not "
6571 "set\n");
6572 break;
6573 }
6574
6575 if (!cpus_weight(group->cpumask)) {
6576 printk(KERN_CONT "\n");
6577 printk(KERN_ERR "ERROR: empty group\n");
6578 break;
6579 }
6580
Mike Travis7c16ec52008-04-04 18:11:11 -07006581 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006582 printk(KERN_CONT "\n");
6583 printk(KERN_ERR "ERROR: repeated CPUs\n");
6584 break;
6585 }
6586
Mike Travis7c16ec52008-04-04 18:11:11 -07006587 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006588
Mike Travis434d53b2008-04-04 18:11:04 -07006589 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006590 printk(KERN_CONT " %s", str);
6591
6592 group = group->next;
6593 } while (group != sd->groups);
6594 printk(KERN_CONT "\n");
6595
Mike Travis7c16ec52008-04-04 18:11:11 -07006596 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006597 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6598
Mike Travis7c16ec52008-04-04 18:11:11 -07006599 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006600 printk(KERN_ERR "ERROR: parent span is not a superset "
6601 "of domain->span\n");
6602 return 0;
6603}
6604
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605static void sched_domain_debug(struct sched_domain *sd, int cpu)
6606{
Mike Travis7c16ec52008-04-04 18:11:11 -07006607 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608 int level = 0;
6609
Nick Piggin41c7ce92005-06-25 14:57:24 -07006610 if (!sd) {
6611 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6612 return;
6613 }
6614
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6616
Mike Travis7c16ec52008-04-04 18:11:11 -07006617 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6618 if (!groupmask) {
6619 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6620 return;
6621 }
6622
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006623 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006624 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626 level++;
6627 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006628 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006629 break;
6630 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006631 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632}
6633#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006634# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635#endif
6636
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006637static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006638{
6639 if (cpus_weight(sd->span) == 1)
6640 return 1;
6641
6642 /* Following flags need at least 2 groups */
6643 if (sd->flags & (SD_LOAD_BALANCE |
6644 SD_BALANCE_NEWIDLE |
6645 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006646 SD_BALANCE_EXEC |
6647 SD_SHARE_CPUPOWER |
6648 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006649 if (sd->groups != sd->groups->next)
6650 return 0;
6651 }
6652
6653 /* Following flags don't use groups */
6654 if (sd->flags & (SD_WAKE_IDLE |
6655 SD_WAKE_AFFINE |
6656 SD_WAKE_BALANCE))
6657 return 0;
6658
6659 return 1;
6660}
6661
Ingo Molnar48f24c42006-07-03 00:25:40 -07006662static int
6663sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006664{
6665 unsigned long cflags = sd->flags, pflags = parent->flags;
6666
6667 if (sd_degenerate(parent))
6668 return 1;
6669
6670 if (!cpus_equal(sd->span, parent->span))
6671 return 0;
6672
6673 /* Does parent contain flags not in child? */
6674 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6675 if (cflags & SD_WAKE_AFFINE)
6676 pflags &= ~SD_WAKE_BALANCE;
6677 /* Flags needing groups don't count if only 1 group in parent */
6678 if (parent->groups == parent->groups->next) {
6679 pflags &= ~(SD_LOAD_BALANCE |
6680 SD_BALANCE_NEWIDLE |
6681 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006682 SD_BALANCE_EXEC |
6683 SD_SHARE_CPUPOWER |
6684 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006685 }
6686 if (~cflags & pflags)
6687 return 0;
6688
6689 return 1;
6690}
6691
Gregory Haskins57d885f2008-01-25 21:08:18 +01006692static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6693{
6694 unsigned long flags;
6695 const struct sched_class *class;
6696
6697 spin_lock_irqsave(&rq->lock, flags);
6698
6699 if (rq->rd) {
6700 struct root_domain *old_rd = rq->rd;
6701
Ingo Molnar0eab9142008-01-25 21:08:19 +01006702 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006703 if (class->leave_domain)
6704 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006705 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006706
Gregory Haskinsdc938522008-01-25 21:08:26 +01006707 cpu_clear(rq->cpu, old_rd->span);
6708 cpu_clear(rq->cpu, old_rd->online);
6709
Gregory Haskins57d885f2008-01-25 21:08:18 +01006710 if (atomic_dec_and_test(&old_rd->refcount))
6711 kfree(old_rd);
6712 }
6713
6714 atomic_inc(&rd->refcount);
6715 rq->rd = rd;
6716
Gregory Haskinsdc938522008-01-25 21:08:26 +01006717 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006718 if (cpu_isset(rq->cpu, cpu_online_map))
6719 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006720
Ingo Molnar0eab9142008-01-25 21:08:19 +01006721 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006722 if (class->join_domain)
6723 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006724 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006725
6726 spin_unlock_irqrestore(&rq->lock, flags);
6727}
6728
Gregory Haskinsdc938522008-01-25 21:08:26 +01006729static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006730{
6731 memset(rd, 0, sizeof(*rd));
6732
Gregory Haskinsdc938522008-01-25 21:08:26 +01006733 cpus_clear(rd->span);
6734 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006735}
6736
6737static void init_defrootdomain(void)
6738{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006739 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006740 atomic_set(&def_root_domain.refcount, 1);
6741}
6742
Gregory Haskinsdc938522008-01-25 21:08:26 +01006743static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006744{
6745 struct root_domain *rd;
6746
6747 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6748 if (!rd)
6749 return NULL;
6750
Gregory Haskinsdc938522008-01-25 21:08:26 +01006751 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006752
6753 return rd;
6754}
6755
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006757 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758 * hold the hotplug lock.
6759 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006760static void
6761cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006763 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006764 struct sched_domain *tmp;
6765
6766 /* Remove the sched domains which do not contribute to scheduling. */
6767 for (tmp = sd; tmp; tmp = tmp->parent) {
6768 struct sched_domain *parent = tmp->parent;
6769 if (!parent)
6770 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006771 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006772 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006773 if (parent->parent)
6774 parent->parent->child = tmp;
6775 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006776 }
6777
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006778 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006779 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006780 if (sd)
6781 sd->child = NULL;
6782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783
6784 sched_domain_debug(sd, cpu);
6785
Gregory Haskins57d885f2008-01-25 21:08:18 +01006786 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006787 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788}
6789
6790/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006791static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792
6793/* Setup the mask of cpus configured for isolated domains */
6794static int __init isolated_cpu_setup(char *str)
6795{
6796 int ints[NR_CPUS], i;
6797
6798 str = get_options(str, ARRAY_SIZE(ints), ints);
6799 cpus_clear(cpu_isolated_map);
6800 for (i = 1; i <= ints[0]; i++)
6801 if (ints[i] < NR_CPUS)
6802 cpu_set(ints[i], cpu_isolated_map);
6803 return 1;
6804}
6805
Ingo Molnar8927f492007-10-15 17:00:13 +02006806__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
6808/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006809 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6810 * to a function which identifies what group(along with sched group) a CPU
6811 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6812 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813 *
6814 * init_sched_build_groups will build a circular linked list of the groups
6815 * covered by the given span, and will set each group's ->cpumask correctly,
6816 * and ->cpu_power to 0.
6817 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006818static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006819init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006820 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006821 struct sched_group **sg,
6822 cpumask_t *tmpmask),
6823 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824{
6825 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826 int i;
6827
Mike Travis7c16ec52008-04-04 18:11:11 -07006828 cpus_clear(*covered);
6829
6830 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006831 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006832 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 int j;
6834
Mike Travis7c16ec52008-04-04 18:11:11 -07006835 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836 continue;
6837
Mike Travis7c16ec52008-04-04 18:11:11 -07006838 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006839 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840
Mike Travis7c16ec52008-04-04 18:11:11 -07006841 for_each_cpu_mask(j, *span) {
6842 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843 continue;
6844
Mike Travis7c16ec52008-04-04 18:11:11 -07006845 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846 cpu_set(j, sg->cpumask);
6847 }
6848 if (!first)
6849 first = sg;
6850 if (last)
6851 last->next = sg;
6852 last = sg;
6853 }
6854 last->next = first;
6855}
6856
John Hawkes9c1cfda2005-09-06 15:18:14 -07006857#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858
John Hawkes9c1cfda2005-09-06 15:18:14 -07006859#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006860
John Hawkes9c1cfda2005-09-06 15:18:14 -07006861/**
6862 * find_next_best_node - find the next node to include in a sched_domain
6863 * @node: node whose sched_domain we're building
6864 * @used_nodes: nodes already in the sched_domain
6865 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006866 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006867 * finds the closest node not already in the @used_nodes map.
6868 *
6869 * Should use nodemask_t.
6870 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006871static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006872{
6873 int i, n, val, min_val, best_node = 0;
6874
6875 min_val = INT_MAX;
6876
6877 for (i = 0; i < MAX_NUMNODES; i++) {
6878 /* Start at @node */
6879 n = (node + i) % MAX_NUMNODES;
6880
6881 if (!nr_cpus_node(n))
6882 continue;
6883
6884 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006885 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006886 continue;
6887
6888 /* Simple min distance search */
6889 val = node_distance(node, n);
6890
6891 if (val < min_val) {
6892 min_val = val;
6893 best_node = n;
6894 }
6895 }
6896
Mike Travisc5f59f02008-04-04 18:11:10 -07006897 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006898 return best_node;
6899}
6900
6901/**
6902 * sched_domain_node_span - get a cpumask for a node's sched_domain
6903 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006904 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006905 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006906 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006907 * should be one that prevents unnecessary balancing, but also spreads tasks
6908 * out optimally.
6909 */
Mike Travis4bdbaad2008-04-15 16:35:52 -07006910static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006911{
Mike Travisc5f59f02008-04-04 18:11:10 -07006912 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006913 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006914 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006915
Mike Travis4bdbaad2008-04-15 16:35:52 -07006916 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006917 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006918
Mike Travis4bdbaad2008-04-15 16:35:52 -07006919 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006920 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006921
6922 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006923 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006924
Mike Travisc5f59f02008-04-04 18:11:10 -07006925 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad2008-04-15 16:35:52 -07006926 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006927 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006928}
6929#endif
6930
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006931int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006932
John Hawkes9c1cfda2005-09-06 15:18:14 -07006933/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006934 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006935 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936#ifdef CONFIG_SCHED_SMT
6937static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006938static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006939
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006940static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006941cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6942 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006944 if (sg)
6945 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 return cpu;
6947}
6948#endif
6949
Ingo Molnar48f24c42006-07-03 00:25:40 -07006950/*
6951 * multi-core sched-domains:
6952 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006953#ifdef CONFIG_SCHED_MC
6954static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006955static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006956#endif
6957
6958#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006959static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006960cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6961 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006962{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006963 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006964
6965 *mask = per_cpu(cpu_sibling_map, cpu);
6966 cpus_and(*mask, *mask, *cpu_map);
6967 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006968 if (sg)
6969 *sg = &per_cpu(sched_group_core, group);
6970 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006971}
6972#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006973static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006974cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6975 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006976{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006977 if (sg)
6978 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006979 return cpu;
6980}
6981#endif
6982
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006984static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006985
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006986static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006987cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6988 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006990 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006991#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006992 *mask = cpu_coregroup_map(cpu);
6993 cpus_and(*mask, *mask, *cpu_map);
6994 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006995#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006996 *mask = per_cpu(cpu_sibling_map, cpu);
6997 cpus_and(*mask, *mask, *cpu_map);
6998 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007000 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007002 if (sg)
7003 *sg = &per_cpu(sched_group_phys, group);
7004 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005}
7006
7007#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007008/*
7009 * The init_sched_build_groups can't handle what we want to do with node
7010 * groups, so roll our own. Now each node has its own list of groups which
7011 * gets dynamically allocated.
7012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007013static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007014static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007015
7016static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007017static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007018
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007019static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007020 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007022 int group;
7023
Mike Travis7c16ec52008-04-04 18:11:11 -07007024 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7025 cpus_and(*nodemask, *nodemask, *cpu_map);
7026 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007027
7028 if (sg)
7029 *sg = &per_cpu(sched_group_allnodes, group);
7030 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007032
Siddha, Suresh B08069032006-03-27 01:15:23 -08007033static void init_numa_sched_groups_power(struct sched_group *group_head)
7034{
7035 struct sched_group *sg = group_head;
7036 int j;
7037
7038 if (!sg)
7039 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007040 do {
7041 for_each_cpu_mask(j, sg->cpumask) {
7042 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007043
Andi Kleen3a5c3592007-10-15 17:00:14 +02007044 sd = &per_cpu(phys_domains, j);
7045 if (j != first_cpu(sd->groups->cpumask)) {
7046 /*
7047 * Only add "power" once for each
7048 * physical package.
7049 */
7050 continue;
7051 }
7052
7053 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007054 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007055 sg = sg->next;
7056 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007057}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058#endif
7059
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007060#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007061/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007062static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007063{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007064 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007065
7066 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007067 struct sched_group **sched_group_nodes
7068 = sched_group_nodes_bycpu[cpu];
7069
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007070 if (!sched_group_nodes)
7071 continue;
7072
7073 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007074 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7075
Mike Travis7c16ec52008-04-04 18:11:11 -07007076 *nodemask = node_to_cpumask(i);
7077 cpus_and(*nodemask, *nodemask, *cpu_map);
7078 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007079 continue;
7080
7081 if (sg == NULL)
7082 continue;
7083 sg = sg->next;
7084next_sg:
7085 oldsg = sg;
7086 sg = sg->next;
7087 kfree(oldsg);
7088 if (oldsg != sched_group_nodes[i])
7089 goto next_sg;
7090 }
7091 kfree(sched_group_nodes);
7092 sched_group_nodes_bycpu[cpu] = NULL;
7093 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007094}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007095#else
Mike Travis7c16ec52008-04-04 18:11:11 -07007096static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007097{
7098}
7099#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007100
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007102 * Initialize sched groups cpu_power.
7103 *
7104 * cpu_power indicates the capacity of sched group, which is used while
7105 * distributing the load between different sched groups in a sched domain.
7106 * Typically cpu_power for all the groups in a sched domain will be same unless
7107 * there are asymmetries in the topology. If there are asymmetries, group
7108 * having more cpu_power will pickup more load compared to the group having
7109 * less cpu_power.
7110 *
7111 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7112 * the maximum number of tasks a group can handle in the presence of other idle
7113 * or lightly loaded groups in the same sched domain.
7114 */
7115static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7116{
7117 struct sched_domain *child;
7118 struct sched_group *group;
7119
7120 WARN_ON(!sd || !sd->groups);
7121
7122 if (cpu != first_cpu(sd->groups->cpumask))
7123 return;
7124
7125 child = sd->child;
7126
Eric Dumazet5517d862007-05-08 00:32:57 -07007127 sd->groups->__cpu_power = 0;
7128
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007129 /*
7130 * For perf policy, if the groups in child domain share resources
7131 * (for example cores sharing some portions of the cache hierarchy
7132 * or SMT), then set this domain groups cpu_power such that each group
7133 * can handle only one task, when there are other idle groups in the
7134 * same sched domain.
7135 */
7136 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7137 (child->flags &
7138 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007139 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007140 return;
7141 }
7142
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007143 /*
7144 * add cpu_power of each child group to this groups cpu_power
7145 */
7146 group = child->groups;
7147 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007148 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007149 group = group->next;
7150 } while (group != child->groups);
7151}
7152
7153/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007154 * Initializers for schedule domains
7155 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7156 */
7157
7158#define SD_INIT(sd, type) sd_init_##type(sd)
7159#define SD_INIT_FUNC(type) \
7160static noinline void sd_init_##type(struct sched_domain *sd) \
7161{ \
7162 memset(sd, 0, sizeof(*sd)); \
7163 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007164 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007165}
7166
7167SD_INIT_FUNC(CPU)
7168#ifdef CONFIG_NUMA
7169 SD_INIT_FUNC(ALLNODES)
7170 SD_INIT_FUNC(NODE)
7171#endif
7172#ifdef CONFIG_SCHED_SMT
7173 SD_INIT_FUNC(SIBLING)
7174#endif
7175#ifdef CONFIG_SCHED_MC
7176 SD_INIT_FUNC(MC)
7177#endif
7178
7179/*
7180 * To minimize stack usage kmalloc room for cpumasks and share the
7181 * space as the usage in build_sched_domains() dictates. Used only
7182 * if the amount of space is significant.
7183 */
7184struct allmasks {
7185 cpumask_t tmpmask; /* make this one first */
7186 union {
7187 cpumask_t nodemask;
7188 cpumask_t this_sibling_map;
7189 cpumask_t this_core_map;
7190 };
7191 cpumask_t send_covered;
7192
7193#ifdef CONFIG_NUMA
7194 cpumask_t domainspan;
7195 cpumask_t covered;
7196 cpumask_t notcovered;
7197#endif
7198};
7199
7200#if NR_CPUS > 128
7201#define SCHED_CPUMASK_ALLOC 1
7202#define SCHED_CPUMASK_FREE(v) kfree(v)
7203#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7204#else
7205#define SCHED_CPUMASK_ALLOC 0
7206#define SCHED_CPUMASK_FREE(v)
7207#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7208#endif
7209
7210#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7211 ((unsigned long)(a) + offsetof(struct allmasks, v))
7212
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007213static int default_relax_domain_level = -1;
7214
7215static int __init setup_relax_domain_level(char *str)
7216{
7217 default_relax_domain_level = simple_strtoul(str, NULL, 0);
7218 return 1;
7219}
7220__setup("relax_domain_level=", setup_relax_domain_level);
7221
7222static void set_domain_attribute(struct sched_domain *sd,
7223 struct sched_domain_attr *attr)
7224{
7225 int request;
7226
7227 if (!attr || attr->relax_domain_level < 0) {
7228 if (default_relax_domain_level < 0)
7229 return;
7230 else
7231 request = default_relax_domain_level;
7232 } else
7233 request = attr->relax_domain_level;
7234 if (request < sd->level) {
7235 /* turn off idle balance on this domain */
7236 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7237 } else {
7238 /* turn on idle balance on this domain */
7239 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7240 }
7241}
7242
Mike Travis7c16ec52008-04-04 18:11:11 -07007243/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007244 * Build sched domains for a given set of cpus and attach the sched domains
7245 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007246 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007247static int __build_sched_domains(const cpumask_t *cpu_map,
7248 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249{
7250 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007251 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007252 SCHED_CPUMASK_DECLARE(allmasks);
7253 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007254#ifdef CONFIG_NUMA
7255 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007256 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007257
7258 /*
7259 * Allocate the per-node list of sched groups
7260 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007261 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007262 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007263 if (!sched_group_nodes) {
7264 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007265 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007266 }
John Hawkesd1b55132005-09-06 15:18:14 -07007267#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268
Gregory Haskinsdc938522008-01-25 21:08:26 +01007269 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007270 if (!rd) {
7271 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007272#ifdef CONFIG_NUMA
7273 kfree(sched_group_nodes);
7274#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007275 return -ENOMEM;
7276 }
7277
Mike Travis7c16ec52008-04-04 18:11:11 -07007278#if SCHED_CPUMASK_ALLOC
7279 /* get space for all scratch cpumask variables */
7280 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7281 if (!allmasks) {
7282 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7283 kfree(rd);
7284#ifdef CONFIG_NUMA
7285 kfree(sched_group_nodes);
7286#endif
7287 return -ENOMEM;
7288 }
7289#endif
7290 tmpmask = (cpumask_t *)allmasks;
7291
7292
7293#ifdef CONFIG_NUMA
7294 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7295#endif
7296
Linus Torvalds1da177e2005-04-16 15:20:36 -07007297 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007298 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007299 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007300 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007301 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007302 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303
Mike Travis7c16ec52008-04-04 18:11:11 -07007304 *nodemask = node_to_cpumask(cpu_to_node(i));
7305 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306
7307#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007308 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007309 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007310 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007311 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007312 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007313 sd->span = *cpu_map;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007314 sd->first_cpu = first_cpu(sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07007315 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007316 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007317 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007318 } else
7319 p = NULL;
7320
Linus Torvalds1da177e2005-04-16 15:20:36 -07007321 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007322 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007323 set_domain_attribute(sd, attr);
Mike Travis4bdbaad2008-04-15 16:35:52 -07007324 sched_domain_node_span(cpu_to_node(i), &sd->span);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007325 sd->first_cpu = first_cpu(sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007326 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007327 if (p)
7328 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007329 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330#endif
7331
7332 p = sd;
7333 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007334 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007335 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007336 sd->span = *nodemask;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007337 sd->first_cpu = first_cpu(sd->span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007339 if (p)
7340 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007341 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007343#ifdef CONFIG_SCHED_MC
7344 p = sd;
7345 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007346 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007347 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007348 sd->span = cpu_coregroup_map(i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007349 sd->first_cpu = first_cpu(sd->span);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007350 cpus_and(sd->span, sd->span, *cpu_map);
7351 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007352 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007353 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007354#endif
7355
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356#ifdef CONFIG_SCHED_SMT
7357 p = sd;
7358 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007359 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007360 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007361 sd->span = per_cpu(cpu_sibling_map, i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007362 sd->first_cpu = first_cpu(sd->span);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007363 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007364 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007365 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007366 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367#endif
7368 }
7369
7370#ifdef CONFIG_SCHED_SMT
7371 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007372 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007373 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7374 SCHED_CPUMASK_VAR(send_covered, allmasks);
7375
7376 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7377 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7378 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 continue;
7380
Ingo Molnardd41f592007-07-09 18:51:59 +02007381 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007382 &cpu_to_cpu_group,
7383 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384 }
7385#endif
7386
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007387#ifdef CONFIG_SCHED_MC
7388 /* Set up multi-core groups */
7389 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007390 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7391 SCHED_CPUMASK_VAR(send_covered, allmasks);
7392
7393 *this_core_map = cpu_coregroup_map(i);
7394 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7395 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007396 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007397
Ingo Molnardd41f592007-07-09 18:51:59 +02007398 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007399 &cpu_to_core_group,
7400 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007401 }
7402#endif
7403
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404 /* Set up physical groups */
7405 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007406 SCHED_CPUMASK_VAR(nodemask, allmasks);
7407 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408
Mike Travis7c16ec52008-04-04 18:11:11 -07007409 *nodemask = node_to_cpumask(i);
7410 cpus_and(*nodemask, *nodemask, *cpu_map);
7411 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412 continue;
7413
Mike Travis7c16ec52008-04-04 18:11:11 -07007414 init_sched_build_groups(nodemask, cpu_map,
7415 &cpu_to_phys_group,
7416 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417 }
7418
7419#ifdef CONFIG_NUMA
7420 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007421 if (sd_allnodes) {
7422 SCHED_CPUMASK_VAR(send_covered, allmasks);
7423
7424 init_sched_build_groups(cpu_map, cpu_map,
7425 &cpu_to_allnodes_group,
7426 send_covered, tmpmask);
7427 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007428
7429 for (i = 0; i < MAX_NUMNODES; i++) {
7430 /* Set up node groups */
7431 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007432 SCHED_CPUMASK_VAR(nodemask, allmasks);
7433 SCHED_CPUMASK_VAR(domainspan, allmasks);
7434 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007435 int j;
7436
Mike Travis7c16ec52008-04-04 18:11:11 -07007437 *nodemask = node_to_cpumask(i);
7438 cpus_clear(*covered);
7439
7440 cpus_and(*nodemask, *nodemask, *cpu_map);
7441 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007442 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007443 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007444 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007445
Mike Travis4bdbaad2008-04-15 16:35:52 -07007446 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007447 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007448
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007449 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007450 if (!sg) {
7451 printk(KERN_WARNING "Can not alloc domain group for "
7452 "node %d\n", i);
7453 goto error;
7454 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007455 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007456 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007457 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007458
John Hawkes9c1cfda2005-09-06 15:18:14 -07007459 sd = &per_cpu(node_domains, j);
7460 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007461 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007462 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007463 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007464 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007465 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007466 prev = sg;
7467
7468 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007469 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007470 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007471 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007472
Mike Travis7c16ec52008-04-04 18:11:11 -07007473 cpus_complement(*notcovered, *covered);
7474 cpus_and(*tmpmask, *notcovered, *cpu_map);
7475 cpus_and(*tmpmask, *tmpmask, *domainspan);
7476 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007477 break;
7478
Mike Travis7c16ec52008-04-04 18:11:11 -07007479 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7480 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007481 continue;
7482
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007483 sg = kmalloc_node(sizeof(struct sched_group),
7484 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007485 if (!sg) {
7486 printk(KERN_WARNING
7487 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007488 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007489 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007490 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007491 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007492 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007493 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007494 prev->next = sg;
7495 prev = sg;
7496 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498#endif
7499
7500 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007501#ifdef CONFIG_SCHED_SMT
7502 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007503 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7504
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007505 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007506 }
7507#endif
7508#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007509 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007510 struct sched_domain *sd = &per_cpu(core_domains, i);
7511
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007512 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007513 }
7514#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007516 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007517 struct sched_domain *sd = &per_cpu(phys_domains, i);
7518
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007519 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520 }
7521
John Hawkes9c1cfda2005-09-06 15:18:14 -07007522#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007523 for (i = 0; i < MAX_NUMNODES; i++)
7524 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007525
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007526 if (sd_allnodes) {
7527 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007528
Mike Travis7c16ec52008-04-04 18:11:11 -07007529 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7530 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007531 init_numa_sched_groups_power(sg);
7532 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007533#endif
7534
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007536 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537 struct sched_domain *sd;
7538#ifdef CONFIG_SCHED_SMT
7539 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007540#elif defined(CONFIG_SCHED_MC)
7541 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007542#else
7543 sd = &per_cpu(phys_domains, i);
7544#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007545 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007546 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007547
Mike Travis7c16ec52008-04-04 18:11:11 -07007548 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007549 return 0;
7550
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007551#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007552error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007553 free_sched_groups(cpu_map, tmpmask);
7554 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007555 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007556#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557}
Paul Jackson029190c2007-10-18 23:40:20 -07007558
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007559static int build_sched_domains(const cpumask_t *cpu_map)
7560{
7561 return __build_sched_domains(cpu_map, NULL);
7562}
7563
Paul Jackson029190c2007-10-18 23:40:20 -07007564static cpumask_t *doms_cur; /* current sched domains */
7565static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007566static struct sched_domain_attr *dattr_cur; /* attribues of custom domains
7567 in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007568
7569/*
7570 * Special case: If a kmalloc of a doms_cur partition (array of
7571 * cpumask_t) fails, then fallback to a single sched domain,
7572 * as determined by the single cpumask_t fallback_doms.
7573 */
7574static cpumask_t fallback_doms;
7575
Heiko Carstens22e52b02008-03-12 18:31:59 +01007576void __attribute__((weak)) arch_update_cpu_topology(void)
7577{
7578}
7579
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007580/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007581 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007582 * For now this just excludes isolated cpus, but could be used to
7583 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007584 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007585static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007586{
Milton Miller73785472007-10-24 18:23:48 +02007587 int err;
7588
Heiko Carstens22e52b02008-03-12 18:31:59 +01007589 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007590 ndoms_cur = 1;
7591 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7592 if (!doms_cur)
7593 doms_cur = &fallback_doms;
7594 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007595 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007596 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007597 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007598
7599 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007600}
7601
Mike Travis7c16ec52008-04-04 18:11:11 -07007602static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7603 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604{
Mike Travis7c16ec52008-04-04 18:11:11 -07007605 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007606}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007608/*
7609 * Detach sched domains from a group of cpus specified in cpu_map
7610 * These cpus will now be attached to the NULL domain
7611 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007612static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007613{
Mike Travis7c16ec52008-04-04 18:11:11 -07007614 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007615 int i;
7616
Milton Miller6382bc92007-10-15 17:00:19 +02007617 unregister_sched_domain_sysctl();
7618
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007619 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007620 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007621 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007622 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007623}
7624
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007625/* handle null as "default" */
7626static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7627 struct sched_domain_attr *new, int idx_new)
7628{
7629 struct sched_domain_attr tmp;
7630
7631 /* fast path */
7632 if (!new && !cur)
7633 return 1;
7634
7635 tmp = SD_ATTR_INIT;
7636 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7637 new ? (new + idx_new) : &tmp,
7638 sizeof(struct sched_domain_attr));
7639}
7640
Paul Jackson029190c2007-10-18 23:40:20 -07007641/*
7642 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007643 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007644 * doms_new[] to the current sched domain partitioning, doms_cur[].
7645 * It destroys each deleted domain and builds each new domain.
7646 *
7647 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007648 * The masks don't intersect (don't overlap.) We should setup one
7649 * sched domain for each mask. CPUs not in any of the cpumasks will
7650 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007651 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7652 * it as it is.
7653 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007654 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7655 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007656 * failed the kmalloc call, then it can pass in doms_new == NULL,
7657 * and partition_sched_domains() will fallback to the single partition
7658 * 'fallback_doms'.
7659 *
7660 * Call with hotplug lock held
7661 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007662void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7663 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007664{
7665 int i, j;
7666
Heiko Carstens712555e2008-04-28 11:33:07 +02007667 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007668
Milton Miller73785472007-10-24 18:23:48 +02007669 /* always unregister in case we don't destroy any domains */
7670 unregister_sched_domain_sysctl();
7671
Paul Jackson029190c2007-10-18 23:40:20 -07007672 if (doms_new == NULL) {
7673 ndoms_new = 1;
7674 doms_new = &fallback_doms;
7675 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007676 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007677 }
7678
7679 /* Destroy deleted domains */
7680 for (i = 0; i < ndoms_cur; i++) {
7681 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007682 if (cpus_equal(doms_cur[i], doms_new[j])
7683 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007684 goto match1;
7685 }
7686 /* no match - a current sched domain not in new doms_new[] */
7687 detach_destroy_domains(doms_cur + i);
7688match1:
7689 ;
7690 }
7691
7692 /* Build new domains */
7693 for (i = 0; i < ndoms_new; i++) {
7694 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007695 if (cpus_equal(doms_new[i], doms_cur[j])
7696 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007697 goto match2;
7698 }
7699 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007700 __build_sched_domains(doms_new + i,
7701 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007702match2:
7703 ;
7704 }
7705
7706 /* Remember the new sched domains */
7707 if (doms_cur != &fallback_doms)
7708 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007709 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007710 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007711 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007712 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007713
7714 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007715
Heiko Carstens712555e2008-04-28 11:33:07 +02007716 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007717}
7718
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007719#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007720int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007721{
7722 int err;
7723
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007724 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007725 mutex_lock(&sched_domains_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007726 detach_destroy_domains(&cpu_online_map);
7727 err = arch_init_sched_domains(&cpu_online_map);
Heiko Carstens712555e2008-04-28 11:33:07 +02007728 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007729 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007730
7731 return err;
7732}
7733
7734static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7735{
7736 int ret;
7737
7738 if (buf[0] != '0' && buf[0] != '1')
7739 return -EINVAL;
7740
7741 if (smt)
7742 sched_smt_power_savings = (buf[0] == '1');
7743 else
7744 sched_mc_power_savings = (buf[0] == '1');
7745
7746 ret = arch_reinit_sched_domains();
7747
7748 return ret ? ret : count;
7749}
7750
Adrian Bunk6707de002007-08-12 18:08:19 +02007751#ifdef CONFIG_SCHED_MC
7752static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7753{
7754 return sprintf(page, "%u\n", sched_mc_power_savings);
7755}
7756static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7757 const char *buf, size_t count)
7758{
7759 return sched_power_savings_store(buf, count, 0);
7760}
7761static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7762 sched_mc_power_savings_store);
7763#endif
7764
7765#ifdef CONFIG_SCHED_SMT
7766static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7767{
7768 return sprintf(page, "%u\n", sched_smt_power_savings);
7769}
7770static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7771 const char *buf, size_t count)
7772{
7773 return sched_power_savings_store(buf, count, 1);
7774}
7775static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7776 sched_smt_power_savings_store);
7777#endif
7778
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007779int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7780{
7781 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007782
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007783#ifdef CONFIG_SCHED_SMT
7784 if (smt_capable())
7785 err = sysfs_create_file(&cls->kset.kobj,
7786 &attr_sched_smt_power_savings.attr);
7787#endif
7788#ifdef CONFIG_SCHED_MC
7789 if (!err && mc_capable())
7790 err = sysfs_create_file(&cls->kset.kobj,
7791 &attr_sched_mc_power_savings.attr);
7792#endif
7793 return err;
7794}
7795#endif
7796
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007798 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007799 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007800 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007801 * which will prevent rebalancing while the sched domains are recalculated.
7802 */
7803static int update_sched_domains(struct notifier_block *nfb,
7804 unsigned long action, void *hcpu)
7805{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806 switch (action) {
7807 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007808 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007810 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007811 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812 return NOTIFY_OK;
7813
7814 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007815 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007816 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007817 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007819 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007821 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822 /*
7823 * Fall through and re-initialise the domains.
7824 */
7825 break;
7826 default:
7827 return NOTIFY_DONE;
7828 }
7829
7830 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007831 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832
7833 return NOTIFY_OK;
7834}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835
7836void __init sched_init_smp(void)
7837{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007838 cpumask_t non_isolated_cpus;
7839
Mike Travis434d53b2008-04-04 18:11:04 -07007840#if defined(CONFIG_NUMA)
7841 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7842 GFP_KERNEL);
7843 BUG_ON(sched_group_nodes_bycpu == NULL);
7844#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007845 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007846 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007847 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007848 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007849 if (cpus_empty(non_isolated_cpus))
7850 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007851 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007852 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853 /* XXX: Theoretical race here - CPU may be hotplugged now */
7854 hotcpu_notifier(update_sched_domains, 0);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007855 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007856
7857 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007858 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007859 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007860 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861}
7862#else
7863void __init sched_init_smp(void)
7864{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007865 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866}
7867#endif /* CONFIG_SMP */
7868
7869int in_sched_functions(unsigned long addr)
7870{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871 return in_lock_functions(addr) ||
7872 (addr >= (unsigned long)__sched_text_start
7873 && addr < (unsigned long)__sched_text_end);
7874}
7875
Alexey Dobriyana9957442007-10-15 17:00:13 +02007876static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007877{
7878 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007879 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007880#ifdef CONFIG_FAIR_GROUP_SCHED
7881 cfs_rq->rq = rq;
7882#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007883 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007884}
7885
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007886static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7887{
7888 struct rt_prio_array *array;
7889 int i;
7890
7891 array = &rt_rq->active;
7892 for (i = 0; i < MAX_RT_PRIO; i++) {
7893 INIT_LIST_HEAD(array->queue + i);
7894 __clear_bit(i, array->bitmap);
7895 }
7896 /* delimiter for bitsearch: */
7897 __set_bit(MAX_RT_PRIO, array->bitmap);
7898
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007899#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007900 rt_rq->highest_prio = MAX_RT_PRIO;
7901#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007902#ifdef CONFIG_SMP
7903 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007904 rt_rq->overloaded = 0;
7905#endif
7906
7907 rt_rq->rt_time = 0;
7908 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007909 rt_rq->rt_runtime = 0;
7910 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007911
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007912#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007913 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007914 rt_rq->rq = rq;
7915#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007916}
7917
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007918#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007919static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7920 struct sched_entity *se, int cpu, int add,
7921 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007922{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007923 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007924 tg->cfs_rq[cpu] = cfs_rq;
7925 init_cfs_rq(cfs_rq, rq);
7926 cfs_rq->tg = tg;
7927 if (add)
7928 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7929
7930 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007931 /* se could be NULL for init_task_group */
7932 if (!se)
7933 return;
7934
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007935 if (!parent)
7936 se->cfs_rq = &rq->cfs;
7937 else
7938 se->cfs_rq = parent->my_q;
7939
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007940 se->my_q = cfs_rq;
7941 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02007942 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007943 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007944}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007945#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007946
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007947#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007948static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
7949 struct sched_rt_entity *rt_se, int cpu, int add,
7950 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007951{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007952 struct rq *rq = cpu_rq(cpu);
7953
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007954 tg->rt_rq[cpu] = rt_rq;
7955 init_rt_rq(rt_rq, rq);
7956 rt_rq->tg = tg;
7957 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007958 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007959 if (add)
7960 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7961
7962 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007963 if (!rt_se)
7964 return;
7965
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007966 if (!parent)
7967 rt_se->rt_rq = &rq->rt;
7968 else
7969 rt_se->rt_rq = parent->my_q;
7970
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007971 rt_se->rt_rq = &rq->rt;
7972 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007973 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007974 INIT_LIST_HEAD(&rt_se->run_list);
7975}
7976#endif
7977
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978void __init sched_init(void)
7979{
Ingo Molnardd41f592007-07-09 18:51:59 +02007980 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07007981 unsigned long alloc_size = 0, ptr;
7982
7983#ifdef CONFIG_FAIR_GROUP_SCHED
7984 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7985#endif
7986#ifdef CONFIG_RT_GROUP_SCHED
7987 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7988#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007989#ifdef CONFIG_USER_SCHED
7990 alloc_size *= 2;
7991#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007992 /*
7993 * As sched_init() is called before page_alloc is setup,
7994 * we use alloc_bootmem().
7995 */
7996 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07007997 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07007998
7999#ifdef CONFIG_FAIR_GROUP_SCHED
8000 init_task_group.se = (struct sched_entity **)ptr;
8001 ptr += nr_cpu_ids * sizeof(void **);
8002
8003 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8004 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008005
8006#ifdef CONFIG_USER_SCHED
8007 root_task_group.se = (struct sched_entity **)ptr;
8008 ptr += nr_cpu_ids * sizeof(void **);
8009
8010 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8011 ptr += nr_cpu_ids * sizeof(void **);
8012#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008013#endif
8014#ifdef CONFIG_RT_GROUP_SCHED
8015 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8016 ptr += nr_cpu_ids * sizeof(void **);
8017
8018 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008019 ptr += nr_cpu_ids * sizeof(void **);
8020
8021#ifdef CONFIG_USER_SCHED
8022 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8023 ptr += nr_cpu_ids * sizeof(void **);
8024
8025 root_task_group.rt_rq = (struct rt_rq **)ptr;
8026 ptr += nr_cpu_ids * sizeof(void **);
8027#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008028#endif
8029 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008030
Gregory Haskins57d885f2008-01-25 21:08:18 +01008031#ifdef CONFIG_SMP
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008032 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008033 init_defrootdomain();
8034#endif
8035
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008036 init_rt_bandwidth(&def_rt_bandwidth,
8037 global_rt_period(), global_rt_runtime());
8038
8039#ifdef CONFIG_RT_GROUP_SCHED
8040 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8041 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008042#ifdef CONFIG_USER_SCHED
8043 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8044 global_rt_period(), RUNTIME_INF);
8045#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008046#endif
8047
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008048#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008049 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008050 INIT_LIST_HEAD(&init_task_group.children);
8051
8052#ifdef CONFIG_USER_SCHED
8053 INIT_LIST_HEAD(&root_task_group.children);
8054 init_task_group.parent = &root_task_group;
8055 list_add(&init_task_group.siblings, &root_task_group.children);
8056#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008057#endif
8058
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008059 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008060 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008061
8062 rq = cpu_rq(i);
8063 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008064 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008065 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008066 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008067 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008068#ifdef CONFIG_FAIR_GROUP_SCHED
8069 init_task_group.shares = init_task_group_load;
8070 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008071#ifdef CONFIG_CGROUP_SCHED
8072 /*
8073 * How much cpu bandwidth does init_task_group get?
8074 *
8075 * In case of task-groups formed thr' the cgroup filesystem, it
8076 * gets 100% of the cpu resources in the system. This overall
8077 * system cpu resource is divided among the tasks of
8078 * init_task_group and its child task-groups in a fair manner,
8079 * based on each entity's (task or task-group's) weight
8080 * (se->load.weight).
8081 *
8082 * In other words, if init_task_group has 10 tasks of weight
8083 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8084 * then A0's share of the cpu resource is:
8085 *
8086 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8087 *
8088 * We achieve this by letting init_task_group's tasks sit
8089 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8090 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008091 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008092#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008093 root_task_group.shares = NICE_0_LOAD;
8094 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008095 /*
8096 * In case of task-groups formed thr' the user id of tasks,
8097 * init_task_group represents tasks belonging to root user.
8098 * Hence it forms a sibling of all subsequent groups formed.
8099 * In this case, init_task_group gets only a fraction of overall
8100 * system cpu resource, based on the weight assigned to root
8101 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8102 * by letting tasks of init_task_group sit in a separate cfs_rq
8103 * (init_cfs_rq) and having one entity represent this group of
8104 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8105 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008106 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008107 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008108 &per_cpu(init_sched_entity, i), i, 1,
8109 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008110
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008111#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008112#endif /* CONFIG_FAIR_GROUP_SCHED */
8113
8114 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008115#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008116 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008117#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008118 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008119#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008120 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008121 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008122 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008123 &per_cpu(init_sched_rt_entity, i), i, 1,
8124 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008125#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127
Ingo Molnardd41f592007-07-09 18:51:59 +02008128 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8129 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008131 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008132 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008134 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008136 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137 rq->migration_thread = NULL;
8138 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008139 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008141 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008143 }
8144
Peter Williams2dd73a42006-06-27 02:54:34 -07008145 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008146
Avi Kivitye107be32007-07-26 13:40:43 +02008147#ifdef CONFIG_PREEMPT_NOTIFIERS
8148 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8149#endif
8150
Christoph Lameterc9819f42006-12-10 02:20:25 -08008151#ifdef CONFIG_SMP
8152 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
8153#endif
8154
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008155#ifdef CONFIG_RT_MUTEXES
8156 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8157#endif
8158
Linus Torvalds1da177e2005-04-16 15:20:36 -07008159 /*
8160 * The boot idle thread does lazy MMU switching as well:
8161 */
8162 atomic_inc(&init_mm.mm_count);
8163 enter_lazy_tlb(&init_mm, current);
8164
8165 /*
8166 * Make us the idle thread. Technically, schedule() should not be
8167 * called from this thread, however somewhere below it might be,
8168 * but because we are the idle thread, we just pick up running again
8169 * when this runqueue becomes "idle".
8170 */
8171 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008172 /*
8173 * During early bootup we pretend to be a normal task:
8174 */
8175 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008176
8177 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008178}
8179
8180#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8181void __might_sleep(char *file, int line)
8182{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008183#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008184 static unsigned long prev_jiffy; /* ratelimiting */
8185
8186 if ((in_atomic() || irqs_disabled()) &&
8187 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8188 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8189 return;
8190 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008191 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192 " context at %s:%d\n", file, line);
8193 printk("in_atomic():%d, irqs_disabled():%d\n",
8194 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008195 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008196 if (irqs_disabled())
8197 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198 dump_stack();
8199 }
8200#endif
8201}
8202EXPORT_SYMBOL(__might_sleep);
8203#endif
8204
8205#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008206static void normalize_task(struct rq *rq, struct task_struct *p)
8207{
8208 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008209
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008210 update_rq_clock(rq);
8211 on_rq = p->se.on_rq;
8212 if (on_rq)
8213 deactivate_task(rq, p, 0);
8214 __setscheduler(rq, p, SCHED_NORMAL, 0);
8215 if (on_rq) {
8216 activate_task(rq, p, 0);
8217 resched_task(rq->curr);
8218 }
8219}
8220
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221void normalize_rt_tasks(void)
8222{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008223 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008225 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008227 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008228 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008229 /*
8230 * Only normalize user tasks:
8231 */
8232 if (!p->mm)
8233 continue;
8234
Ingo Molnardd41f592007-07-09 18:51:59 +02008235 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008236#ifdef CONFIG_SCHEDSTATS
8237 p->se.wait_start = 0;
8238 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008239 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008240#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008241
8242 if (!rt_task(p)) {
8243 /*
8244 * Renice negative nice level userspace
8245 * tasks back to 0:
8246 */
8247 if (TASK_NICE(p) < 0 && p->mm)
8248 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008252 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008253 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254
Ingo Molnar178be792007-10-15 17:00:18 +02008255 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008256
Ingo Molnarb29739f2006-06-27 02:54:51 -07008257 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008258 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008259 } while_each_thread(g, p);
8260
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008261 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008262}
8263
8264#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008265
8266#ifdef CONFIG_IA64
8267/*
8268 * These functions are only useful for the IA64 MCA handling.
8269 *
8270 * They can only be called when the whole system has been
8271 * stopped - every CPU needs to be quiescent, and no scheduling
8272 * activity can take place. Using them for anything else would
8273 * be a serious bug, and as a result, they aren't even visible
8274 * under any other configuration.
8275 */
8276
8277/**
8278 * curr_task - return the current task for a given cpu.
8279 * @cpu: the processor in question.
8280 *
8281 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8282 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008283struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008284{
8285 return cpu_curr(cpu);
8286}
8287
8288/**
8289 * set_curr_task - set the current task for a given cpu.
8290 * @cpu: the processor in question.
8291 * @p: the task pointer to set.
8292 *
8293 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008294 * are serviced on a separate stack. It allows the architecture to switch the
8295 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008296 * must be called with all CPU's synchronized, and interrupts disabled, the
8297 * and caller must save the original value of the current task (see
8298 * curr_task() above) and restore that value before reenabling interrupts and
8299 * re-starting the system.
8300 *
8301 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8302 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008303void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008304{
8305 cpu_curr(cpu) = p;
8306}
8307
8308#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008309
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008310#ifdef CONFIG_FAIR_GROUP_SCHED
8311static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008312{
8313 int i;
8314
8315 for_each_possible_cpu(i) {
8316 if (tg->cfs_rq)
8317 kfree(tg->cfs_rq[i]);
8318 if (tg->se)
8319 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008320 }
8321
8322 kfree(tg->cfs_rq);
8323 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008324}
8325
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008326static
8327int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008328{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008329 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008330 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008331 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008332 int i;
8333
Mike Travis434d53b2008-04-04 18:11:04 -07008334 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008335 if (!tg->cfs_rq)
8336 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008337 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008338 if (!tg->se)
8339 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008340
8341 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008342
8343 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008344 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008345
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008346 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8347 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008348 if (!cfs_rq)
8349 goto err;
8350
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008351 se = kmalloc_node(sizeof(struct sched_entity),
8352 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008353 if (!se)
8354 goto err;
8355
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008356 parent_se = parent ? parent->se[i] : NULL;
8357 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008358 }
8359
8360 return 1;
8361
8362 err:
8363 return 0;
8364}
8365
8366static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8367{
8368 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8369 &cpu_rq(cpu)->leaf_cfs_rq_list);
8370}
8371
8372static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8373{
8374 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8375}
8376#else
8377static inline void free_fair_sched_group(struct task_group *tg)
8378{
8379}
8380
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008381static inline
8382int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008383{
8384 return 1;
8385}
8386
8387static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8388{
8389}
8390
8391static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8392{
8393}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008394#endif
8395
8396#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008397static void free_rt_sched_group(struct task_group *tg)
8398{
8399 int i;
8400
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008401 destroy_rt_bandwidth(&tg->rt_bandwidth);
8402
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008403 for_each_possible_cpu(i) {
8404 if (tg->rt_rq)
8405 kfree(tg->rt_rq[i]);
8406 if (tg->rt_se)
8407 kfree(tg->rt_se[i]);
8408 }
8409
8410 kfree(tg->rt_rq);
8411 kfree(tg->rt_se);
8412}
8413
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008414static
8415int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008416{
8417 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008418 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008419 struct rq *rq;
8420 int i;
8421
Mike Travis434d53b2008-04-04 18:11:04 -07008422 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008423 if (!tg->rt_rq)
8424 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008425 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008426 if (!tg->rt_se)
8427 goto err;
8428
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008429 init_rt_bandwidth(&tg->rt_bandwidth,
8430 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008431
8432 for_each_possible_cpu(i) {
8433 rq = cpu_rq(i);
8434
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008435 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8436 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8437 if (!rt_rq)
8438 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008439
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008440 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8441 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8442 if (!rt_se)
8443 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008444
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008445 parent_se = parent ? parent->rt_se[i] : NULL;
8446 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008447 }
8448
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008449 return 1;
8450
8451 err:
8452 return 0;
8453}
8454
8455static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8456{
8457 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8458 &cpu_rq(cpu)->leaf_rt_rq_list);
8459}
8460
8461static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8462{
8463 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8464}
8465#else
8466static inline void free_rt_sched_group(struct task_group *tg)
8467{
8468}
8469
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008470static inline
8471int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008472{
8473 return 1;
8474}
8475
8476static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8477{
8478}
8479
8480static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8481{
8482}
8483#endif
8484
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008485#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008486static void free_sched_group(struct task_group *tg)
8487{
8488 free_fair_sched_group(tg);
8489 free_rt_sched_group(tg);
8490 kfree(tg);
8491}
8492
8493/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008494struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008495{
8496 struct task_group *tg;
8497 unsigned long flags;
8498 int i;
8499
8500 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8501 if (!tg)
8502 return ERR_PTR(-ENOMEM);
8503
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008504 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008505 goto err;
8506
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008507 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008508 goto err;
8509
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008510 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008511 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008512 register_fair_sched_group(tg, i);
8513 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008514 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008515 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008516
8517 WARN_ON(!parent); /* root should already exist */
8518
8519 tg->parent = parent;
8520 list_add_rcu(&tg->siblings, &parent->children);
8521 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008522 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008523
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008524 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008525
8526err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008527 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008528 return ERR_PTR(-ENOMEM);
8529}
8530
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008531/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008532static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008533{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008534 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008535 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008536}
8537
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008538/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008539void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008540{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008541 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008542 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008543
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008544 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008545 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008546 unregister_fair_sched_group(tg, i);
8547 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008548 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008549 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008550 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008551 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008552
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008553 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008554 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008555}
8556
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008557/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008558 * The caller of this function should have put the task in its new group
8559 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8560 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008561 */
8562void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008563{
8564 int on_rq, running;
8565 unsigned long flags;
8566 struct rq *rq;
8567
8568 rq = task_rq_lock(tsk, &flags);
8569
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008570 update_rq_clock(rq);
8571
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008572 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008573 on_rq = tsk->se.on_rq;
8574
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008575 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008576 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008577 if (unlikely(running))
8578 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008579
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008580 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008581
Peter Zijlstra810b3812008-02-29 15:21:01 -05008582#ifdef CONFIG_FAIR_GROUP_SCHED
8583 if (tsk->sched_class->moved_group)
8584 tsk->sched_class->moved_group(tsk);
8585#endif
8586
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008587 if (unlikely(running))
8588 tsk->sched_class->set_curr_task(rq);
8589 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008590 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008591
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008592 task_rq_unlock(rq, &flags);
8593}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008594#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008595
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008596#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008597static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008598{
8599 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008600 int on_rq;
8601
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008602 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008603 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008604 dequeue_entity(cfs_rq, se, 0);
8605
8606 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008607 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008608
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008609 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008610 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008611}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008612
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008613static void set_se_shares(struct sched_entity *se, unsigned long shares)
8614{
8615 struct cfs_rq *cfs_rq = se->cfs_rq;
8616 struct rq *rq = cfs_rq->rq;
8617 unsigned long flags;
8618
8619 spin_lock_irqsave(&rq->lock, flags);
8620 __set_se_shares(se, shares);
8621 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008622}
8623
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008624static DEFINE_MUTEX(shares_mutex);
8625
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008626int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008627{
8628 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008629 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008630
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008631 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008632 * We can't change the weight of the root cgroup.
8633 */
8634 if (!tg->se[0])
8635 return -EINVAL;
8636
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008637 if (shares < MIN_SHARES)
8638 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008639 else if (shares > MAX_SHARES)
8640 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008641
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008642 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008643 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008644 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008645
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008646 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008647 for_each_possible_cpu(i)
8648 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008649 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008650 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008651
8652 /* wait for any ongoing reference to this group to finish */
8653 synchronize_sched();
8654
8655 /*
8656 * Now we are free to modify the group's share on each cpu
8657 * w/o tripping rebalance_share or load_balance_fair.
8658 */
8659 tg->shares = shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008660 for_each_possible_cpu(i) {
8661 /*
8662 * force a rebalance
8663 */
8664 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008665 set_se_shares(tg->se[i], shares);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008666 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008667
8668 /*
8669 * Enable load balance activity on this group, by inserting it back on
8670 * each cpu's rq->leaf_cfs_rq_list.
8671 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008672 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008673 for_each_possible_cpu(i)
8674 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008675 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008676 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008677done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008678 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008679 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008680}
8681
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008682unsigned long sched_group_shares(struct task_group *tg)
8683{
8684 return tg->shares;
8685}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008686#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008687
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008688#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008689/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008690 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008691 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008692static DEFINE_MUTEX(rt_constraints_mutex);
8693
8694static unsigned long to_ratio(u64 period, u64 runtime)
8695{
8696 if (runtime == RUNTIME_INF)
8697 return 1ULL << 16;
8698
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008699 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008700}
8701
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008702#ifdef CONFIG_CGROUP_SCHED
8703static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8704{
8705 struct task_group *tgi, *parent = tg->parent;
8706 unsigned long total = 0;
8707
8708 if (!parent) {
8709 if (global_rt_period() < period)
8710 return 0;
8711
8712 return to_ratio(period, runtime) <
8713 to_ratio(global_rt_period(), global_rt_runtime());
8714 }
8715
8716 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8717 return 0;
8718
8719 rcu_read_lock();
8720 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8721 if (tgi == tg)
8722 continue;
8723
8724 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8725 tgi->rt_bandwidth.rt_runtime);
8726 }
8727 rcu_read_unlock();
8728
8729 return total + to_ratio(period, runtime) <
8730 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8731 parent->rt_bandwidth.rt_runtime);
8732}
8733#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008734static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008735{
8736 struct task_group *tgi;
8737 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008738 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008739 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008740
8741 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008742 list_for_each_entry_rcu(tgi, &task_groups, list) {
8743 if (tgi == tg)
8744 continue;
8745
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008746 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8747 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008748 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008749 rcu_read_unlock();
8750
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008751 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008752}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008753#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008754
Dhaval Giani521f1a242008-02-28 15:21:56 +05308755/* Must be called with tasklist_lock held */
8756static inline int tg_has_rt_tasks(struct task_group *tg)
8757{
8758 struct task_struct *g, *p;
8759 do_each_thread(g, p) {
8760 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8761 return 1;
8762 } while_each_thread(g, p);
8763 return 0;
8764}
8765
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008766static int tg_set_bandwidth(struct task_group *tg,
8767 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008768{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008769 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008770
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008771 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308772 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008773 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308774 err = -EBUSY;
8775 goto unlock;
8776 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008777 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8778 err = -EINVAL;
8779 goto unlock;
8780 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008781
8782 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008783 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8784 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008785
8786 for_each_possible_cpu(i) {
8787 struct rt_rq *rt_rq = tg->rt_rq[i];
8788
8789 spin_lock(&rt_rq->rt_runtime_lock);
8790 rt_rq->rt_runtime = rt_runtime;
8791 spin_unlock(&rt_rq->rt_runtime_lock);
8792 }
8793 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008794 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308795 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008796 mutex_unlock(&rt_constraints_mutex);
8797
8798 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008799}
8800
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008801int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8802{
8803 u64 rt_runtime, rt_period;
8804
8805 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8806 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8807 if (rt_runtime_us < 0)
8808 rt_runtime = RUNTIME_INF;
8809
8810 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8811}
8812
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008813long sched_group_rt_runtime(struct task_group *tg)
8814{
8815 u64 rt_runtime_us;
8816
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008817 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008818 return -1;
8819
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008820 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008821 do_div(rt_runtime_us, NSEC_PER_USEC);
8822 return rt_runtime_us;
8823}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008824
8825int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8826{
8827 u64 rt_runtime, rt_period;
8828
8829 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8830 rt_runtime = tg->rt_bandwidth.rt_runtime;
8831
8832 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8833}
8834
8835long sched_group_rt_period(struct task_group *tg)
8836{
8837 u64 rt_period_us;
8838
8839 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8840 do_div(rt_period_us, NSEC_PER_USEC);
8841 return rt_period_us;
8842}
8843
8844static int sched_rt_global_constraints(void)
8845{
8846 int ret = 0;
8847
8848 mutex_lock(&rt_constraints_mutex);
8849 if (!__rt_schedulable(NULL, 1, 0))
8850 ret = -EINVAL;
8851 mutex_unlock(&rt_constraints_mutex);
8852
8853 return ret;
8854}
8855#else
8856static int sched_rt_global_constraints(void)
8857{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008858 unsigned long flags;
8859 int i;
8860
8861 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8862 for_each_possible_cpu(i) {
8863 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8864
8865 spin_lock(&rt_rq->rt_runtime_lock);
8866 rt_rq->rt_runtime = global_rt_runtime();
8867 spin_unlock(&rt_rq->rt_runtime_lock);
8868 }
8869 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8870
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008871 return 0;
8872}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008873#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008874
8875int sched_rt_handler(struct ctl_table *table, int write,
8876 struct file *filp, void __user *buffer, size_t *lenp,
8877 loff_t *ppos)
8878{
8879 int ret;
8880 int old_period, old_runtime;
8881 static DEFINE_MUTEX(mutex);
8882
8883 mutex_lock(&mutex);
8884 old_period = sysctl_sched_rt_period;
8885 old_runtime = sysctl_sched_rt_runtime;
8886
8887 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8888
8889 if (!ret && write) {
8890 ret = sched_rt_global_constraints();
8891 if (ret) {
8892 sysctl_sched_rt_period = old_period;
8893 sysctl_sched_rt_runtime = old_runtime;
8894 } else {
8895 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8896 def_rt_bandwidth.rt_period =
8897 ns_to_ktime(global_rt_period());
8898 }
8899 }
8900 mutex_unlock(&mutex);
8901
8902 return ret;
8903}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008904
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008905#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008906
8907/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008908static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008909{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008910 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8911 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008912}
8913
8914static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008915cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008916{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008917 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008918
Paul Menage2b01dfe2007-10-24 18:23:50 +02008919 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008920 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008921 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008922 return &init_task_group.css;
8923 }
8924
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008925 parent = cgroup_tg(cgrp->parent);
8926 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008927 if (IS_ERR(tg))
8928 return ERR_PTR(-ENOMEM);
8929
8930 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008931 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008932
8933 return &tg->css;
8934}
8935
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008936static void
8937cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008938{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008939 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008940
8941 sched_destroy_group(tg);
8942}
8943
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008944static int
8945cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8946 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008947{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008948#ifdef CONFIG_RT_GROUP_SCHED
8949 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008950 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008951 return -EINVAL;
8952#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008953 /* We don't support RT-tasks being in separate groups */
8954 if (tsk->sched_class != &fair_sched_class)
8955 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008956#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008957
8958 return 0;
8959}
8960
8961static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008962cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008963 struct cgroup *old_cont, struct task_struct *tsk)
8964{
8965 sched_move_task(tsk);
8966}
8967
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008968#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07008969static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02008970 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008971{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008972 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008973}
8974
Paul Menagef4c753b2008-04-29 00:59:56 -07008975static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008976{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008977 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008978
8979 return (u64) tg->shares;
8980}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008981#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008982
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008983#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07008984static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07008985 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008986{
Paul Menage06ecb272008-04-29 01:00:06 -07008987 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008988}
8989
Paul Menage06ecb272008-04-29 01:00:06 -07008990static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008991{
Paul Menage06ecb272008-04-29 01:00:06 -07008992 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008993}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008994
8995static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8996 u64 rt_period_us)
8997{
8998 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
8999}
9000
9001static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9002{
9003 return sched_group_rt_period(cgroup_tg(cgrp));
9004}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009005#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009006
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009007static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009008#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009009 {
9010 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009011 .read_u64 = cpu_shares_read_u64,
9012 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009013 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009014#endif
9015#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009016 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009017 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009018 .read_s64 = cpu_rt_runtime_read,
9019 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009020 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009021 {
9022 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009023 .read_u64 = cpu_rt_period_read_uint,
9024 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009025 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009026#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009027};
9028
9029static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9030{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009031 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009032}
9033
9034struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009035 .name = "cpu",
9036 .create = cpu_cgroup_create,
9037 .destroy = cpu_cgroup_destroy,
9038 .can_attach = cpu_cgroup_can_attach,
9039 .attach = cpu_cgroup_attach,
9040 .populate = cpu_cgroup_populate,
9041 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009042 .early_init = 1,
9043};
9044
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009045#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009046
9047#ifdef CONFIG_CGROUP_CPUACCT
9048
9049/*
9050 * CPU accounting code for task groups.
9051 *
9052 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9053 * (balbir@in.ibm.com).
9054 */
9055
9056/* track cpu usage of a group of tasks */
9057struct cpuacct {
9058 struct cgroup_subsys_state css;
9059 /* cpuusage holds pointer to a u64-type object on every cpu */
9060 u64 *cpuusage;
9061};
9062
9063struct cgroup_subsys cpuacct_subsys;
9064
9065/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309066static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009067{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309068 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009069 struct cpuacct, css);
9070}
9071
9072/* return cpu accounting group to which this task belongs */
9073static inline struct cpuacct *task_ca(struct task_struct *tsk)
9074{
9075 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9076 struct cpuacct, css);
9077}
9078
9079/* create a new cpu accounting group */
9080static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309081 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009082{
9083 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9084
9085 if (!ca)
9086 return ERR_PTR(-ENOMEM);
9087
9088 ca->cpuusage = alloc_percpu(u64);
9089 if (!ca->cpuusage) {
9090 kfree(ca);
9091 return ERR_PTR(-ENOMEM);
9092 }
9093
9094 return &ca->css;
9095}
9096
9097/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009098static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309099cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009100{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309101 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009102
9103 free_percpu(ca->cpuusage);
9104 kfree(ca);
9105}
9106
9107/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309108static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009109{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309110 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009111 u64 totalcpuusage = 0;
9112 int i;
9113
9114 for_each_possible_cpu(i) {
9115 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9116
9117 /*
9118 * Take rq->lock to make 64-bit addition safe on 32-bit
9119 * platforms.
9120 */
9121 spin_lock_irq(&cpu_rq(i)->lock);
9122 totalcpuusage += *cpuusage;
9123 spin_unlock_irq(&cpu_rq(i)->lock);
9124 }
9125
9126 return totalcpuusage;
9127}
9128
Dhaval Giani0297b802008-02-29 10:02:44 +05309129static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9130 u64 reset)
9131{
9132 struct cpuacct *ca = cgroup_ca(cgrp);
9133 int err = 0;
9134 int i;
9135
9136 if (reset) {
9137 err = -EINVAL;
9138 goto out;
9139 }
9140
9141 for_each_possible_cpu(i) {
9142 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9143
9144 spin_lock_irq(&cpu_rq(i)->lock);
9145 *cpuusage = 0;
9146 spin_unlock_irq(&cpu_rq(i)->lock);
9147 }
9148out:
9149 return err;
9150}
9151
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009152static struct cftype files[] = {
9153 {
9154 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009155 .read_u64 = cpuusage_read,
9156 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009157 },
9158};
9159
Dhaval Giani32cd7562008-02-29 10:02:43 +05309160static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009161{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309162 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009163}
9164
9165/*
9166 * charge this task's execution time to its accounting group.
9167 *
9168 * called with rq->lock held.
9169 */
9170static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9171{
9172 struct cpuacct *ca;
9173
9174 if (!cpuacct_subsys.active)
9175 return;
9176
9177 ca = task_ca(tsk);
9178 if (ca) {
9179 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9180
9181 *cpuusage += cputime;
9182 }
9183}
9184
9185struct cgroup_subsys cpuacct_subsys = {
9186 .name = "cpuacct",
9187 .create = cpuacct_create,
9188 .destroy = cpuacct_destroy,
9189 .populate = cpuacct_populate,
9190 .subsys_id = cpuacct_subsys_id,
9191};
9192#endif /* CONFIG_CGROUP_CPUACCT */