blob: b59a44e1ea442f966daa0dfa099a1e3f7c9631e7 [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/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080078 * Scheduler clock - returns current time in nanosec units.
79 * This is default implementation.
80 * Architectures and sub-architectures can override this.
81 */
82unsigned long long __attribute__((weak)) sched_clock(void)
83{
Eric Dumazetd6322fa2007-11-09 22:39:38 +010084 return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080085}
86
87/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * Convert user-nice values [ -20 ... 0 ... 19 ]
89 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
90 * and back.
91 */
92#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
93#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
94#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
95
96/*
97 * 'User priority' is the nice value converted to something we
98 * can work with better when scaling various scheduler parameters,
99 * it's a [ 0 ... 39 ] range.
100 */
101#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
102#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
103#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
104
105/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100106 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100108#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200110#define NICE_0_LOAD SCHED_LOAD_SCALE
111#define NICE_0_SHIFT SCHED_LOAD_SHIFT
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*
114 * These are the 'tuning knobs' of the scheduler:
115 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200116 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * Timeslices get refilled after they expire.
118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700120
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200121/*
122 * single value that denotes runtime == period, ie unlimited time.
123 */
124#define RUNTIME_INF ((u64)~0ULL)
125
Eric Dumazet5517d862007-05-08 00:32:57 -0700126#ifdef CONFIG_SMP
127/*
128 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
129 * Since cpu_power is a 'constant', we can use a reciprocal divide.
130 */
131static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
132{
133 return reciprocal_divide(load, sg->reciprocal_cpu_power);
134}
135
136/*
137 * Each time a sched group cpu_power is changed,
138 * we must compute its reciprocal value
139 */
140static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
141{
142 sg->__cpu_power += val;
143 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
144}
145#endif
146
Ingo Molnare05606d2007-07-09 18:51:59 +0200147static inline int rt_policy(int policy)
148{
149 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
150 return 1;
151 return 0;
152}
153
154static inline int task_has_rt_policy(struct task_struct *p)
155{
156 return rt_policy(p->policy);
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200160 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200162struct rt_prio_array {
163 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
164 struct list_head queue[MAX_RT_PRIO];
165};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200167struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100168 /* nests inside the rq lock: */
169 spinlock_t rt_runtime_lock;
170 ktime_t rt_period;
171 u64 rt_runtime;
172 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200173};
174
175static struct rt_bandwidth def_rt_bandwidth;
176
177static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
178
179static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
180{
181 struct rt_bandwidth *rt_b =
182 container_of(timer, struct rt_bandwidth, rt_period_timer);
183 ktime_t now;
184 int overrun;
185 int idle = 0;
186
187 for (;;) {
188 now = hrtimer_cb_get_time(timer);
189 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
190
191 if (!overrun)
192 break;
193
194 idle = do_sched_rt_period_timer(rt_b, overrun);
195 }
196
197 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
198}
199
200static
201void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
202{
203 rt_b->rt_period = ns_to_ktime(period);
204 rt_b->rt_runtime = runtime;
205
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200206 spin_lock_init(&rt_b->rt_runtime_lock);
207
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200208 hrtimer_init(&rt_b->rt_period_timer,
209 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
210 rt_b->rt_period_timer.function = sched_rt_period_timer;
211 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
212}
213
214static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
215{
216 ktime_t now;
217
218 if (rt_b->rt_runtime == RUNTIME_INF)
219 return;
220
221 if (hrtimer_active(&rt_b->rt_period_timer))
222 return;
223
224 spin_lock(&rt_b->rt_runtime_lock);
225 for (;;) {
226 if (hrtimer_active(&rt_b->rt_period_timer))
227 break;
228
229 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
230 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
231 hrtimer_start(&rt_b->rt_period_timer,
232 rt_b->rt_period_timer.expires,
233 HRTIMER_MODE_ABS);
234 }
235 spin_unlock(&rt_b->rt_runtime_lock);
236}
237
238#ifdef CONFIG_RT_GROUP_SCHED
239static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
240{
241 hrtimer_cancel(&rt_b->rt_period_timer);
242}
243#endif
244
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100245#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200246
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700247#include <linux/cgroup.h>
248
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200249struct cfs_rq;
250
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100251static LIST_HEAD(task_groups);
252
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200253/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200254struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100255#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700256 struct cgroup_subsys_state css;
257#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100258
259#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200260 /* schedulable entities of this group on each cpu */
261 struct sched_entity **se;
262 /* runqueue "owned" by this group on each cpu */
263 struct cfs_rq **cfs_rq;
264 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100265#endif
266
267#ifdef CONFIG_RT_GROUP_SCHED
268 struct sched_rt_entity **rt_se;
269 struct rt_rq **rt_rq;
270
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200271 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100272#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100273
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100274 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100275 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200276
277 struct task_group *parent;
278 struct list_head siblings;
279 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200280};
281
Dhaval Giani354d60c2008-04-19 19:44:59 +0200282#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200283
284/*
285 * Root task group.
286 * Every UID task group (including init_task_group aka UID-0) will
287 * be a child to this group.
288 */
289struct task_group root_task_group;
290
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100291#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200292/* Default task group's sched entity on each cpu */
293static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
294/* Default task group's cfs_rq on each cpu */
295static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100296#endif
297
298#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100299static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
300static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100301#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200302#else
303#define root_task_group init_task_group
Dhaval Giani354d60c2008-04-19 19:44:59 +0200304#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100305
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100306/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100307 * a task group's cpu shares.
308 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100309static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100310
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100311/* doms_cur_mutex serializes access to doms_cur[] array */
312static DEFINE_MUTEX(doms_cur_mutex);
313
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100314#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100315#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100316# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200317#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100318# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200319#endif
320
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200321#define MIN_SHARES 2
322
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100323static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100324#endif
325
326/* Default task group.
327 * Every task in system belong to this group at bootup.
328 */
Mike Travis434d53b2008-04-04 18:11:04 -0700329struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200330
331/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200332static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200333{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200334 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200335
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100336#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200337 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100338#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700339 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
340 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200341#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100342 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200343#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200344 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200345}
346
347/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100348static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200349{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100350#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100351 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
352 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100353#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100354
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100355#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100356 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
357 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100358#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200359}
360
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100361static inline void lock_doms_cur(void)
362{
363 mutex_lock(&doms_cur_mutex);
364}
365
366static inline void unlock_doms_cur(void)
367{
368 mutex_unlock(&doms_cur_mutex);
369}
370
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200371#else
372
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100373static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +0100374static inline void lock_doms_cur(void) { }
375static inline void unlock_doms_cur(void) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200376
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100377#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200378
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200379/* CFS-related fields in a runqueue */
380struct cfs_rq {
381 struct load_weight load;
382 unsigned long nr_running;
383
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200384 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200385 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200386
387 struct rb_root tasks_timeline;
388 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200389
390 struct list_head tasks;
391 struct list_head *balance_iterator;
392
393 /*
394 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200395 * It is set to NULL otherwise (i.e when none are currently running).
396 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100397 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200398
399 unsigned long nr_spread_over;
400
Ingo Molnar62160e32007-10-15 17:00:03 +0200401#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200402 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
403
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100404 /*
405 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200406 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
407 * (like users, containers etc.)
408 *
409 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
410 * list is used during load balance.
411 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100412 struct list_head leaf_cfs_rq_list;
413 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200414
415#ifdef CONFIG_SMP
416 unsigned long task_weight;
417 unsigned long shares;
418 /*
419 * We need space to build a sched_domain wide view of the full task
420 * group tree, in order to avoid depending on dynamic memory allocation
421 * during the load balancing we place this in the per cpu task group
422 * hierarchy. This limits the load balancing to one instance per cpu,
423 * but more should not be needed anyway.
424 */
425 struct aggregate_struct {
426 /*
427 * load = weight(cpus) * f(tg)
428 *
429 * Where f(tg) is the recursive weight fraction assigned to
430 * this group.
431 */
432 unsigned long load;
433
434 /*
435 * part of the group weight distributed to this span.
436 */
437 unsigned long shares;
438
439 /*
440 * The sum of all runqueue weights within this span.
441 */
442 unsigned long rq_weight;
443
444 /*
445 * Weight contributed by tasks; this is the part we can
446 * influence by moving tasks around.
447 */
448 unsigned long task_weight;
449 } aggregate;
450#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200451#endif
452};
453
454/* Real-Time classes' related field in a runqueue: */
455struct rt_rq {
456 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100457 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100458#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100459 int highest_prio; /* highest queued rt task prio */
460#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100461#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100462 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100463 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100464#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100465 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100466 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200467 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100468 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200469 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100470
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100471#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100472 unsigned long rt_nr_boosted;
473
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100474 struct rq *rq;
475 struct list_head leaf_rt_rq_list;
476 struct task_group *tg;
477 struct sched_rt_entity *rt_se;
478#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200479};
480
Gregory Haskins57d885f2008-01-25 21:08:18 +0100481#ifdef CONFIG_SMP
482
483/*
484 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100485 * variables. Each exclusive cpuset essentially defines an island domain by
486 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100487 * exclusive cpuset is created, we also create and attach a new root-domain
488 * object.
489 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100490 */
491struct root_domain {
492 atomic_t refcount;
493 cpumask_t span;
494 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100495
Ingo Molnar0eab9142008-01-25 21:08:19 +0100496 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100497 * The "RT overload" flag: it gets set if a CPU has more than
498 * one runnable RT task.
499 */
500 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100501 atomic_t rto_count;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100502};
503
Gregory Haskinsdc938522008-01-25 21:08:26 +0100504/*
505 * By default the system creates a single root-domain with all cpus as
506 * members (mimicking the global state we have today).
507 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100508static struct root_domain def_root_domain;
509
510#endif
511
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200512/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * This is the main, per-CPU runqueue data structure.
514 *
515 * Locking rule: those places that want to lock multiple runqueues
516 * (such as the load balancing or the thread migration code), lock
517 * acquire operations must be ordered by ascending &runqueue.
518 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700519struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200520 /* runqueue lock: */
521 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 /*
524 * nr_running and cpu_load should be in the same cacheline because
525 * remote CPUs use both these fields when doing load calculation.
526 */
527 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200528 #define CPU_LOAD_IDX_MAX 5
529 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700530 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700531#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200532 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700533 unsigned char in_nohz_recently;
534#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200535 /* capture load from *all* tasks on this cpu: */
536 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200537 unsigned long nr_load_updates;
538 u64 nr_switches;
539
540 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100541 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100542
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200543#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200544 /* list of leaf cfs_rq on this cpu: */
545 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100546#endif
547#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100548 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /*
552 * This is part of a global counter where only the total sum
553 * over all CPUs matters. A task can increase this counter on
554 * one CPU and if it got migrated afterwards it may decrease
555 * it on another CPU. Always updated under the runqueue lock:
556 */
557 unsigned long nr_uninterruptible;
558
Ingo Molnar36c8b582006-07-03 00:25:41 -0700559 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800560 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200562
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200563 u64 clock, prev_clock_raw;
564 s64 clock_max_delta;
565
Guillaume Chazaraincc203d22008-01-25 21:08:34 +0100566 unsigned int clock_warps, clock_overflows, clock_underflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200567 u64 idle_clock;
568 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200569 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 atomic_t nr_iowait;
572
573#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100574 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 struct sched_domain *sd;
576
577 /* For active balancing */
578 int active_balance;
579 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200580 /* cpu of this runqueue: */
581 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Ingo Molnar36c8b582006-07-03 00:25:41 -0700583 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 struct list_head migration_queue;
585#endif
586
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100587#ifdef CONFIG_SCHED_HRTICK
588 unsigned long hrtick_flags;
589 ktime_t hrtick_expire;
590 struct hrtimer hrtick_timer;
591#endif
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#ifdef CONFIG_SCHEDSTATS
594 /* latency stats */
595 struct sched_info rq_sched_info;
596
597 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200598 unsigned int yld_exp_empty;
599 unsigned int yld_act_empty;
600 unsigned int yld_both_empty;
601 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200604 unsigned int sched_switch;
605 unsigned int sched_count;
606 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200609 unsigned int ttwu_count;
610 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200611
612 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200613 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700615 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616};
617
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700618static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Ingo Molnardd41f592007-07-09 18:51:59 +0200620static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
621{
622 rq->curr->sched_class->check_preempt_curr(rq, p);
623}
624
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700625static inline int cpu_of(struct rq *rq)
626{
627#ifdef CONFIG_SMP
628 return rq->cpu;
629#else
630 return 0;
631#endif
632}
633
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200634#ifdef CONFIG_NO_HZ
635static inline bool nohz_on(int cpu)
636{
637 return tick_get_tick_sched(cpu)->nohz_mode != NOHZ_MODE_INACTIVE;
638}
639
640static inline u64 max_skipped_ticks(struct rq *rq)
641{
642 return nohz_on(cpu_of(rq)) ? jiffies - rq->last_tick_seen + 2 : 1;
643}
644
645static inline void update_last_tick_seen(struct rq *rq)
646{
647 rq->last_tick_seen = jiffies;
648}
649#else
650static inline u64 max_skipped_ticks(struct rq *rq)
651{
652 return 1;
653}
654
655static inline void update_last_tick_seen(struct rq *rq)
656{
657}
658#endif
659
Nick Piggin674311d2005-06-25 14:57:27 -0700660/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200661 * Update the per-runqueue clock, as finegrained as the platform can give
662 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200663 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200664static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200665{
666 u64 prev_raw = rq->prev_clock_raw;
667 u64 now = sched_clock();
668 s64 delta = now - prev_raw;
669 u64 clock = rq->clock;
670
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200671#ifdef CONFIG_SCHED_DEBUG
672 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
673#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200674 /*
675 * Protect against sched_clock() occasionally going backwards:
676 */
677 if (unlikely(delta < 0)) {
678 clock++;
679 rq->clock_warps++;
680 } else {
681 /*
682 * Catch too large forward jumps too:
683 */
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200684 u64 max_jump = max_skipped_ticks(rq) * TICK_NSEC;
685 u64 max_time = rq->tick_timestamp + max_jump;
686
687 if (unlikely(clock + delta > max_time)) {
688 if (clock < max_time)
689 clock = max_time;
Ingo Molnar529c7722007-08-10 23:05:11 +0200690 else
691 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200692 rq->clock_overflows++;
693 } else {
694 if (unlikely(delta > rq->clock_max_delta))
695 rq->clock_max_delta = delta;
696 clock += delta;
697 }
698 }
699
700 rq->prev_clock_raw = now;
701 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200702}
703
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200704static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200705{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200706 if (likely(smp_processor_id() == cpu_of(rq)))
707 __update_rq_clock(rq);
708}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200709
Ingo Molnar20d315d2007-07-09 18:51:58 +0200710/*
Nick Piggin674311d2005-06-25 14:57:27 -0700711 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700712 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700713 *
714 * The domain tree of any CPU may only be accessed from within
715 * preempt-disabled sections.
716 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700717#define for_each_domain(cpu, __sd) \
718 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
721#define this_rq() (&__get_cpu_var(runqueues))
722#define task_rq(p) cpu_rq(task_cpu(p))
723#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
724
Ingo Molnare436d802007-07-19 21:28:35 +0200725/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200726 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
727 */
728#ifdef CONFIG_SCHED_DEBUG
729# define const_debug __read_mostly
730#else
731# define const_debug static const
732#endif
733
734/*
735 * Debugging: various feature bits
736 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200737
738#define SCHED_FEAT(name, enabled) \
739 __SCHED_FEAT_##name ,
740
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200741enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200742#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200743};
744
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200745#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200746
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200747#define SCHED_FEAT(name, enabled) \
748 (1UL << __SCHED_FEAT_##name) * enabled |
749
750const_debug unsigned int sysctl_sched_features =
751#include "sched_features.h"
752 0;
753
754#undef SCHED_FEAT
755
756#ifdef CONFIG_SCHED_DEBUG
757#define SCHED_FEAT(name, enabled) \
758 #name ,
759
760__read_mostly char *sched_feat_names[] = {
761#include "sched_features.h"
762 NULL
763};
764
765#undef SCHED_FEAT
766
767int sched_feat_open(struct inode *inode, struct file *filp)
768{
769 filp->private_data = inode->i_private;
770 return 0;
771}
772
773static ssize_t
774sched_feat_read(struct file *filp, char __user *ubuf,
775 size_t cnt, loff_t *ppos)
776{
777 char *buf;
778 int r = 0;
779 int len = 0;
780 int i;
781
782 for (i = 0; sched_feat_names[i]; i++) {
783 len += strlen(sched_feat_names[i]);
784 len += 4;
785 }
786
787 buf = kmalloc(len + 2, GFP_KERNEL);
788 if (!buf)
789 return -ENOMEM;
790
791 for (i = 0; sched_feat_names[i]; i++) {
792 if (sysctl_sched_features & (1UL << i))
793 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
794 else
795 r += sprintf(buf + r, "no_%s ", sched_feat_names[i]);
796 }
797
798 r += sprintf(buf + r, "\n");
799 WARN_ON(r >= len + 2);
800
801 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
802
803 kfree(buf);
804
805 return r;
806}
807
808static ssize_t
809sched_feat_write(struct file *filp, const char __user *ubuf,
810 size_t cnt, loff_t *ppos)
811{
812 char buf[64];
813 char *cmp = buf;
814 int neg = 0;
815 int i;
816
817 if (cnt > 63)
818 cnt = 63;
819
820 if (copy_from_user(&buf, ubuf, cnt))
821 return -EFAULT;
822
823 buf[cnt] = 0;
824
825 if (strncmp(buf, "no_", 3) == 0) {
826 neg = 1;
827 cmp += 3;
828 }
829
830 for (i = 0; sched_feat_names[i]; i++) {
831 int len = strlen(sched_feat_names[i]);
832
833 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
834 if (neg)
835 sysctl_sched_features &= ~(1UL << i);
836 else
837 sysctl_sched_features |= (1UL << i);
838 break;
839 }
840 }
841
842 if (!sched_feat_names[i])
843 return -EINVAL;
844
845 filp->f_pos += cnt;
846
847 return cnt;
848}
849
850static struct file_operations sched_feat_fops = {
851 .open = sched_feat_open,
852 .read = sched_feat_read,
853 .write = sched_feat_write,
854};
855
856static __init int sched_init_debug(void)
857{
858 int i, j, len;
859
860 for (i = 0; sched_feat_names[i]; i++) {
861 len = strlen(sched_feat_names[i]);
862
863 for (j = 0; j < len; j++) {
864 sched_feat_names[i][j] =
865 tolower(sched_feat_names[i][j]);
866 }
867 }
868
869 debugfs_create_file("sched_features", 0644, NULL, NULL,
870 &sched_feat_fops);
871
872 return 0;
873}
874late_initcall(sched_init_debug);
875
876#endif
877
878#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200879
880/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100881 * Number of tasks to iterate in a single balance run.
882 * Limited because this is done with IRQs disabled.
883 */
884const_debug unsigned int sysctl_sched_nr_migrate = 32;
885
886/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100887 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100888 * default: 1s
889 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100890unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100891
Ingo Molnar6892b752008-02-13 14:02:36 +0100892static __read_mostly int scheduler_running;
893
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100894/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100895 * part of the period that we allow rt tasks to run in us.
896 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100897 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100898int sysctl_sched_rt_runtime = 950000;
899
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200900static inline u64 global_rt_period(void)
901{
902 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
903}
904
905static inline u64 global_rt_runtime(void)
906{
907 if (sysctl_sched_rt_period < 0)
908 return RUNTIME_INF;
909
910 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
911}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100912
Ingo Molnar27ec4402008-02-28 21:00:21 +0100913static const unsigned long long time_sync_thresh = 100000;
914
915static DEFINE_PER_CPU(unsigned long long, time_offset);
916static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
917
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100918/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100919 * Global lock which we take every now and then to synchronize
920 * the CPUs time. This method is not warp-safe, but it's good
921 * enough to synchronize slowly diverging time sources and thus
922 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200923 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100924static DEFINE_SPINLOCK(time_sync_lock);
925static unsigned long long prev_global_time;
926
927static unsigned long long __sync_cpu_clock(cycles_t time, int cpu)
928{
929 unsigned long flags;
930
931 spin_lock_irqsave(&time_sync_lock, flags);
932
933 if (time < prev_global_time) {
934 per_cpu(time_offset, cpu) += prev_global_time - time;
935 time = prev_global_time;
936 } else {
937 prev_global_time = time;
938 }
939
940 spin_unlock_irqrestore(&time_sync_lock, flags);
941
942 return time;
943}
944
945static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200946{
Ingo Molnare436d802007-07-19 21:28:35 +0200947 unsigned long long now;
948 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200949 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200950
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100951 /*
952 * Only call sched_clock() if the scheduler has already been
953 * initialized (some code might call cpu_clock() very early):
954 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100955 if (unlikely(!scheduler_running))
956 return 0;
957
958 local_irq_save(flags);
959 rq = cpu_rq(cpu);
960 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200961 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200962 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200963
964 return now;
965}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100966
967/*
968 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
969 * clock constructed from sched_clock():
970 */
971unsigned long long cpu_clock(int cpu)
972{
973 unsigned long long prev_cpu_time, time, delta_time;
974
975 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
976 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
977 delta_time = time-prev_cpu_time;
978
979 if (unlikely(delta_time > time_sync_thresh))
980 time = __sync_cpu_clock(time, cpu);
981
982 return time;
983}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200984EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700987# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700989#ifndef finish_arch_switch
990# define finish_arch_switch(prev) do { } while (0)
991#endif
992
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100993static inline int task_current(struct rq *rq, struct task_struct *p)
994{
995 return rq->curr == p;
996}
997
Nick Piggin4866cde2005-06-25 14:57:23 -0700998#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700999static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -07001000{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01001001 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -07001002}
1003
Ingo Molnar70b97a72006-07-03 00:25:42 -07001004static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001005{
1006}
1007
Ingo Molnar70b97a72006-07-03 00:25:42 -07001008static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -07001009{
Ingo Molnarda04c032005-09-13 11:17:59 +02001010#ifdef CONFIG_DEBUG_SPINLOCK
1011 /* this is a valid case when another task releases the spinlock */
1012 rq->lock.owner = current;
1013#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001014 /*
1015 * If we are tracking spinlock dependencies then we have to
1016 * fix up the runqueue lock - which gets 'carried over' from
1017 * prev into current:
1018 */
1019 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
1020
Nick Piggin4866cde2005-06-25 14:57:23 -07001021 spin_unlock_irq(&rq->lock);
1022}
1023
1024#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001025static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -07001026{
1027#ifdef CONFIG_SMP
1028 return p->oncpu;
1029#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01001030 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -07001031#endif
1032}
1033
Ingo Molnar70b97a72006-07-03 00:25:42 -07001034static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001035{
1036#ifdef CONFIG_SMP
1037 /*
1038 * We can optimise this out completely for !SMP, because the
1039 * SMP rebalancing from interrupt is the only thing that cares
1040 * here.
1041 */
1042 next->oncpu = 1;
1043#endif
1044#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
1045 spin_unlock_irq(&rq->lock);
1046#else
1047 spin_unlock(&rq->lock);
1048#endif
1049}
1050
Ingo Molnar70b97a72006-07-03 00:25:42 -07001051static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -07001052{
1053#ifdef CONFIG_SMP
1054 /*
1055 * After ->oncpu is cleared, the task can be moved to a different CPU.
1056 * We must ensure this doesn't happen until the switch is completely
1057 * finished.
1058 */
1059 smp_wmb();
1060 prev->oncpu = 0;
1061#endif
1062#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
1063 local_irq_enable();
1064#endif
1065}
1066#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001069 * __task_rq_lock - lock the runqueue a given task resides on.
1070 * Must be called interrupts disabled.
1071 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001072static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001073 __acquires(rq->lock)
1074{
Andi Kleen3a5c3592007-10-15 17:00:14 +02001075 for (;;) {
1076 struct rq *rq = task_rq(p);
1077 spin_lock(&rq->lock);
1078 if (likely(rq == task_rq(p)))
1079 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001080 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001081 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001082}
1083
1084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001086 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 * explicitly disabling preemption.
1088 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001089static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 __acquires(rq->lock)
1091{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001092 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Andi Kleen3a5c3592007-10-15 17:00:14 +02001094 for (;;) {
1095 local_irq_save(*flags);
1096 rq = task_rq(p);
1097 spin_lock(&rq->lock);
1098 if (likely(rq == task_rq(p)))
1099 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
Alexey Dobriyana9957442007-10-15 17:00:13 +02001104static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001105 __releases(rq->lock)
1106{
1107 spin_unlock(&rq->lock);
1108}
1109
Ingo Molnar70b97a72006-07-03 00:25:42 -07001110static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 __releases(rq->lock)
1112{
1113 spin_unlock_irqrestore(&rq->lock, *flags);
1114}
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001117 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001119static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 __acquires(rq->lock)
1121{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001122 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 local_irq_disable();
1125 rq = this_rq();
1126 spin_lock(&rq->lock);
1127
1128 return rq;
1129}
1130
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001131/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001132 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001133 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001134void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001135{
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001136 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001137
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001138 spin_lock(&rq->lock);
1139 __update_rq_clock(rq);
1140 spin_unlock(&rq->lock);
1141 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001142}
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001143EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
1144
1145/*
1146 * We just idled delta nanoseconds (called with irqs disabled):
1147 */
1148void sched_clock_idle_wakeup_event(u64 delta_ns)
1149{
1150 struct rq *rq = cpu_rq(smp_processor_id());
1151 u64 now = sched_clock();
1152
1153 rq->idle_clock += delta_ns;
1154 /*
1155 * Override the previous timestamp and ignore all
1156 * sched_clock() deltas that occured while we idled,
1157 * and use the PM-provided delta_ns to advance the
1158 * rq clock:
1159 */
1160 spin_lock(&rq->lock);
1161 rq->prev_clock_raw = now;
1162 rq->clock += delta_ns;
1163 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +01001164 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001165}
1166EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001167
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001168static void __resched_task(struct task_struct *p, int tif_bit);
1169
1170static inline void resched_task(struct task_struct *p)
1171{
1172 __resched_task(p, TIF_NEED_RESCHED);
1173}
1174
1175#ifdef CONFIG_SCHED_HRTICK
1176/*
1177 * Use HR-timers to deliver accurate preemption points.
1178 *
1179 * Its all a bit involved since we cannot program an hrt while holding the
1180 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1181 * reschedule event.
1182 *
1183 * When we get rescheduled we reprogram the hrtick_timer outside of the
1184 * rq->lock.
1185 */
1186static inline void resched_hrt(struct task_struct *p)
1187{
1188 __resched_task(p, TIF_HRTICK_RESCHED);
1189}
1190
1191static inline void resched_rq(struct rq *rq)
1192{
1193 unsigned long flags;
1194
1195 spin_lock_irqsave(&rq->lock, flags);
1196 resched_task(rq->curr);
1197 spin_unlock_irqrestore(&rq->lock, flags);
1198}
1199
1200enum {
1201 HRTICK_SET, /* re-programm hrtick_timer */
1202 HRTICK_RESET, /* not a new slice */
1203};
1204
1205/*
1206 * Use hrtick when:
1207 * - enabled by features
1208 * - hrtimer is actually high res
1209 */
1210static inline int hrtick_enabled(struct rq *rq)
1211{
1212 if (!sched_feat(HRTICK))
1213 return 0;
1214 return hrtimer_is_hres_active(&rq->hrtick_timer);
1215}
1216
1217/*
1218 * Called to set the hrtick timer state.
1219 *
1220 * called with rq->lock held and irqs disabled
1221 */
1222static void hrtick_start(struct rq *rq, u64 delay, int reset)
1223{
1224 assert_spin_locked(&rq->lock);
1225
1226 /*
1227 * preempt at: now + delay
1228 */
1229 rq->hrtick_expire =
1230 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1231 /*
1232 * indicate we need to program the timer
1233 */
1234 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1235 if (reset)
1236 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1237
1238 /*
1239 * New slices are called from the schedule path and don't need a
1240 * forced reschedule.
1241 */
1242 if (reset)
1243 resched_hrt(rq->curr);
1244}
1245
1246static void hrtick_clear(struct rq *rq)
1247{
1248 if (hrtimer_active(&rq->hrtick_timer))
1249 hrtimer_cancel(&rq->hrtick_timer);
1250}
1251
1252/*
1253 * Update the timer from the possible pending state.
1254 */
1255static void hrtick_set(struct rq *rq)
1256{
1257 ktime_t time;
1258 int set, reset;
1259 unsigned long flags;
1260
1261 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1262
1263 spin_lock_irqsave(&rq->lock, flags);
1264 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1265 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1266 time = rq->hrtick_expire;
1267 clear_thread_flag(TIF_HRTICK_RESCHED);
1268 spin_unlock_irqrestore(&rq->lock, flags);
1269
1270 if (set) {
1271 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1272 if (reset && !hrtimer_active(&rq->hrtick_timer))
1273 resched_rq(rq);
1274 } else
1275 hrtick_clear(rq);
1276}
1277
1278/*
1279 * High-resolution timer tick.
1280 * Runs from hardirq context with interrupts disabled.
1281 */
1282static enum hrtimer_restart hrtick(struct hrtimer *timer)
1283{
1284 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1285
1286 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1287
1288 spin_lock(&rq->lock);
1289 __update_rq_clock(rq);
1290 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1291 spin_unlock(&rq->lock);
1292
1293 return HRTIMER_NORESTART;
1294}
1295
1296static inline void init_rq_hrtick(struct rq *rq)
1297{
1298 rq->hrtick_flags = 0;
1299 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1300 rq->hrtick_timer.function = hrtick;
1301 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1302}
1303
1304void hrtick_resched(void)
1305{
1306 struct rq *rq;
1307 unsigned long flags;
1308
1309 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1310 return;
1311
1312 local_irq_save(flags);
1313 rq = cpu_rq(smp_processor_id());
1314 hrtick_set(rq);
1315 local_irq_restore(flags);
1316}
1317#else
1318static inline void hrtick_clear(struct rq *rq)
1319{
1320}
1321
1322static inline void hrtick_set(struct rq *rq)
1323{
1324}
1325
1326static inline void init_rq_hrtick(struct rq *rq)
1327{
1328}
1329
1330void hrtick_resched(void)
1331{
1332}
1333#endif
1334
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001335/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001336 * resched_task - mark a task 'to be rescheduled now'.
1337 *
1338 * On UP this means the setting of the need_resched flag, on SMP it
1339 * might also involve a cross-CPU call to trigger the scheduler on
1340 * the target CPU.
1341 */
1342#ifdef CONFIG_SMP
1343
1344#ifndef tsk_is_polling
1345#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1346#endif
1347
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001348static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001349{
1350 int cpu;
1351
1352 assert_spin_locked(&task_rq(p)->lock);
1353
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001354 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001355 return;
1356
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001357 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001358
1359 cpu = task_cpu(p);
1360 if (cpu == smp_processor_id())
1361 return;
1362
1363 /* NEED_RESCHED must be visible before we test polling */
1364 smp_mb();
1365 if (!tsk_is_polling(p))
1366 smp_send_reschedule(cpu);
1367}
1368
1369static void resched_cpu(int cpu)
1370{
1371 struct rq *rq = cpu_rq(cpu);
1372 unsigned long flags;
1373
1374 if (!spin_trylock_irqsave(&rq->lock, flags))
1375 return;
1376 resched_task(cpu_curr(cpu));
1377 spin_unlock_irqrestore(&rq->lock, flags);
1378}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001379
1380#ifdef CONFIG_NO_HZ
1381/*
1382 * When add_timer_on() enqueues a timer into the timer wheel of an
1383 * idle CPU then this timer might expire before the next timer event
1384 * which is scheduled to wake up that CPU. In case of a completely
1385 * idle system the next event might even be infinite time into the
1386 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1387 * leaves the inner idle loop so the newly added timer is taken into
1388 * account when the CPU goes back to idle and evaluates the timer
1389 * wheel for the next timer event.
1390 */
1391void wake_up_idle_cpu(int cpu)
1392{
1393 struct rq *rq = cpu_rq(cpu);
1394
1395 if (cpu == smp_processor_id())
1396 return;
1397
1398 /*
1399 * This is safe, as this function is called with the timer
1400 * wheel base lock of (cpu) held. When the CPU is on the way
1401 * to idle and has not yet set rq->curr to idle then it will
1402 * be serialized on the timer wheel base lock and take the new
1403 * timer into account automatically.
1404 */
1405 if (rq->curr != rq->idle)
1406 return;
1407
1408 /*
1409 * We can set TIF_RESCHED on the idle task of the other CPU
1410 * lockless. The worst case is that the other CPU runs the
1411 * idle task through an additional NOOP schedule()
1412 */
1413 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1414
1415 /* NEED_RESCHED must be visible before we test polling */
1416 smp_mb();
1417 if (!tsk_is_polling(rq->idle))
1418 smp_send_reschedule(cpu);
1419}
1420#endif
1421
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001422#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001423static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001424{
1425 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001426 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001427}
1428#endif
1429
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001430#if BITS_PER_LONG == 32
1431# define WMULT_CONST (~0UL)
1432#else
1433# define WMULT_CONST (1UL << 32)
1434#endif
1435
1436#define WMULT_SHIFT 32
1437
Ingo Molnar194081e2007-08-09 11:16:51 +02001438/*
1439 * Shift right and round:
1440 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001441#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001442
Peter Zijlstra8f1bc382008-04-19 19:45:00 +02001443/*
1444 * delta *= weight / lw
1445 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001446static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001447calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1448 struct load_weight *lw)
1449{
1450 u64 tmp;
1451
1452 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001453 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001454
1455 tmp = (u64)delta_exec * weight;
1456 /*
1457 * Check whether we'd overflow the 64-bit multiplication:
1458 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001459 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001460 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001461 WMULT_SHIFT/2);
1462 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001463 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001464
Ingo Molnarecf691d2007-08-02 17:41:40 +02001465 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001466}
1467
Ingo Molnar10919852007-10-15 17:00:04 +02001468static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001469{
1470 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001471 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001472}
1473
Ingo Molnar10919852007-10-15 17:00:04 +02001474static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001475{
1476 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001477 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001478}
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001481 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1482 * of tasks with abnormal "nice" values across CPUs the contribution that
1483 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001484 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001485 * scaled version of the new time slice allocation that they receive on time
1486 * slice expiry etc.
1487 */
1488
Ingo Molnardd41f592007-07-09 18:51:59 +02001489#define WEIGHT_IDLEPRIO 2
1490#define WMULT_IDLEPRIO (1 << 31)
1491
1492/*
1493 * Nice levels are multiplicative, with a gentle 10% change for every
1494 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1495 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1496 * that remained on nice 0.
1497 *
1498 * The "10% effect" is relative and cumulative: from _any_ nice level,
1499 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001500 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1501 * If a task goes up by ~10% and another task goes down by ~10% then
1502 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001503 */
1504static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001505 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1506 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1507 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1508 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1509 /* 0 */ 1024, 820, 655, 526, 423,
1510 /* 5 */ 335, 272, 215, 172, 137,
1511 /* 10 */ 110, 87, 70, 56, 45,
1512 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001513};
1514
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001515/*
1516 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1517 *
1518 * In cases where the weight does not change often, we can use the
1519 * precalculated inverse to speed up arithmetics by turning divisions
1520 * into multiplications:
1521 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001522static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001523 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1524 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1525 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1526 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1527 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1528 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1529 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1530 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001531};
Peter Williams2dd73a42006-06-27 02:54:34 -07001532
Ingo Molnardd41f592007-07-09 18:51:59 +02001533static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1534
1535/*
1536 * runqueue iterator, to support SMP load-balancing between different
1537 * scheduling classes, without having to expose their internal data
1538 * structures to the load-balancing proper:
1539 */
1540struct rq_iterator {
1541 void *arg;
1542 struct task_struct *(*start)(void *);
1543 struct task_struct *(*next)(void *);
1544};
1545
Peter Williamse1d14842007-10-24 18:23:51 +02001546#ifdef CONFIG_SMP
1547static unsigned long
1548balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1549 unsigned long max_load_move, struct sched_domain *sd,
1550 enum cpu_idle_type idle, int *all_pinned,
1551 int *this_best_prio, struct rq_iterator *iterator);
1552
1553static int
1554iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1555 struct sched_domain *sd, enum cpu_idle_type idle,
1556 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001557#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001558
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001559#ifdef CONFIG_CGROUP_CPUACCT
1560static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1561#else
1562static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1563#endif
1564
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001565static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1566{
1567 update_load_add(&rq->load, load);
1568}
1569
1570static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1571{
1572 update_load_sub(&rq->load, load);
1573}
1574
Gregory Haskinse7693a32008-01-25 21:08:09 +01001575#ifdef CONFIG_SMP
1576static unsigned long source_load(int cpu, int type);
1577static unsigned long target_load(int cpu, int type);
1578static unsigned long cpu_avg_load_per_task(int cpu);
1579static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001580
1581#ifdef CONFIG_FAIR_GROUP_SCHED
1582
1583/*
1584 * Group load balancing.
1585 *
1586 * We calculate a few balance domain wide aggregate numbers; load and weight.
1587 * Given the pictures below, and assuming each item has equal weight:
1588 *
1589 * root 1 - thread
1590 * / | \ A - group
1591 * A 1 B
1592 * /|\ / \
1593 * C 2 D 3 4
1594 * | |
1595 * 5 6
1596 *
1597 * load:
1598 * A and B get 1/3-rd of the total load. C and D get 1/3-rd of A's 1/3-rd,
1599 * which equals 1/9-th of the total load.
1600 *
1601 * shares:
1602 * The weight of this group on the selected cpus.
1603 *
1604 * rq_weight:
1605 * Direct sum of all the cpu's their rq weight, e.g. A would get 3 while
1606 * B would get 2.
1607 *
1608 * task_weight:
1609 * Part of the rq_weight contributed by tasks; all groups except B would
1610 * get 1, B gets 2.
1611 */
1612
1613static inline struct aggregate_struct *
1614aggregate(struct task_group *tg, struct sched_domain *sd)
1615{
1616 return &tg->cfs_rq[sd->first_cpu]->aggregate;
1617}
1618
1619typedef void (*aggregate_func)(struct task_group *, struct sched_domain *);
1620
1621/*
1622 * Iterate the full tree, calling @down when first entering a node and @up when
1623 * leaving it for the final time.
1624 */
1625static
1626void aggregate_walk_tree(aggregate_func down, aggregate_func up,
1627 struct sched_domain *sd)
1628{
1629 struct task_group *parent, *child;
1630
1631 rcu_read_lock();
1632 parent = &root_task_group;
1633down:
1634 (*down)(parent, sd);
1635 list_for_each_entry_rcu(child, &parent->children, siblings) {
1636 parent = child;
1637 goto down;
1638
1639up:
1640 continue;
1641 }
1642 (*up)(parent, sd);
1643
1644 child = parent;
1645 parent = parent->parent;
1646 if (parent)
1647 goto up;
1648 rcu_read_unlock();
1649}
1650
1651/*
1652 * Calculate the aggregate runqueue weight.
1653 */
1654static
1655void aggregate_group_weight(struct task_group *tg, struct sched_domain *sd)
1656{
1657 unsigned long rq_weight = 0;
1658 unsigned long task_weight = 0;
1659 int i;
1660
1661 for_each_cpu_mask(i, sd->span) {
1662 rq_weight += tg->cfs_rq[i]->load.weight;
1663 task_weight += tg->cfs_rq[i]->task_weight;
1664 }
1665
1666 aggregate(tg, sd)->rq_weight = rq_weight;
1667 aggregate(tg, sd)->task_weight = task_weight;
1668}
1669
1670/*
1671 * Redistribute tg->shares amongst all tg->cfs_rq[]s.
1672 */
1673static void __aggregate_redistribute_shares(struct task_group *tg)
1674{
1675 int i, max_cpu = smp_processor_id();
1676 unsigned long rq_weight = 0;
1677 unsigned long shares, max_shares = 0, shares_rem = tg->shares;
1678
1679 for_each_possible_cpu(i)
1680 rq_weight += tg->cfs_rq[i]->load.weight;
1681
1682 for_each_possible_cpu(i) {
1683 /*
1684 * divide shares proportional to the rq_weights.
1685 */
1686 shares = tg->shares * tg->cfs_rq[i]->load.weight;
1687 shares /= rq_weight + 1;
1688
1689 tg->cfs_rq[i]->shares = shares;
1690
1691 if (shares > max_shares) {
1692 max_shares = shares;
1693 max_cpu = i;
1694 }
1695 shares_rem -= shares;
1696 }
1697
1698 /*
1699 * Ensure it all adds up to tg->shares; we can loose a few
1700 * due to rounding down when computing the per-cpu shares.
1701 */
1702 if (shares_rem)
1703 tg->cfs_rq[max_cpu]->shares += shares_rem;
1704}
1705
1706/*
1707 * Compute the weight of this group on the given cpus.
1708 */
1709static
1710void aggregate_group_shares(struct task_group *tg, struct sched_domain *sd)
1711{
1712 unsigned long shares = 0;
1713 int i;
1714
1715again:
1716 for_each_cpu_mask(i, sd->span)
1717 shares += tg->cfs_rq[i]->shares;
1718
1719 /*
1720 * When the span doesn't have any shares assigned, but does have
1721 * tasks to run do a machine wide rebalance (should be rare).
1722 */
1723 if (unlikely(!shares && aggregate(tg, sd)->rq_weight)) {
1724 __aggregate_redistribute_shares(tg);
1725 goto again;
1726 }
1727
1728 aggregate(tg, sd)->shares = shares;
1729}
1730
1731/*
1732 * Compute the load fraction assigned to this group, relies on the aggregate
1733 * weight and this group's parent's load, i.e. top-down.
1734 */
1735static
1736void aggregate_group_load(struct task_group *tg, struct sched_domain *sd)
1737{
1738 unsigned long load;
1739
1740 if (!tg->parent) {
1741 int i;
1742
1743 load = 0;
1744 for_each_cpu_mask(i, sd->span)
1745 load += cpu_rq(i)->load.weight;
1746
1747 } else {
1748 load = aggregate(tg->parent, sd)->load;
1749
1750 /*
1751 * shares is our weight in the parent's rq so
1752 * shares/parent->rq_weight gives our fraction of the load
1753 */
1754 load *= aggregate(tg, sd)->shares;
1755 load /= aggregate(tg->parent, sd)->rq_weight + 1;
1756 }
1757
1758 aggregate(tg, sd)->load = load;
1759}
1760
1761static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1762
1763/*
1764 * Calculate and set the cpu's group shares.
1765 */
1766static void
1767__update_group_shares_cpu(struct task_group *tg, struct sched_domain *sd,
1768 int tcpu)
1769{
1770 int boost = 0;
1771 unsigned long shares;
1772 unsigned long rq_weight;
1773
1774 if (!tg->se[tcpu])
1775 return;
1776
1777 rq_weight = tg->cfs_rq[tcpu]->load.weight;
1778
1779 /*
1780 * If there are currently no tasks on the cpu pretend there is one of
1781 * average load so that when a new task gets to run here it will not
1782 * get delayed by group starvation.
1783 */
1784 if (!rq_weight) {
1785 boost = 1;
1786 rq_weight = NICE_0_LOAD;
1787 }
1788
1789 /*
1790 * \Sum shares * rq_weight
1791 * shares = -----------------------
1792 * \Sum rq_weight
1793 *
1794 */
1795 shares = aggregate(tg, sd)->shares * rq_weight;
1796 shares /= aggregate(tg, sd)->rq_weight + 1;
1797
1798 /*
1799 * record the actual number of shares, not the boosted amount.
1800 */
1801 tg->cfs_rq[tcpu]->shares = boost ? 0 : shares;
1802
1803 if (shares < MIN_SHARES)
1804 shares = MIN_SHARES;
1805
1806 __set_se_shares(tg->se[tcpu], shares);
1807}
1808
1809/*
1810 * Re-adjust the weights on the cpu the task came from and on the cpu the
1811 * task went to.
1812 */
1813static void
1814__move_group_shares(struct task_group *tg, struct sched_domain *sd,
1815 int scpu, int dcpu)
1816{
1817 unsigned long shares;
1818
1819 shares = tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1820
1821 __update_group_shares_cpu(tg, sd, scpu);
1822 __update_group_shares_cpu(tg, sd, dcpu);
1823
1824 /*
1825 * ensure we never loose shares due to rounding errors in the
1826 * above redistribution.
1827 */
1828 shares -= tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1829 if (shares)
1830 tg->cfs_rq[dcpu]->shares += shares;
1831}
1832
1833/*
1834 * Because changing a group's shares changes the weight of the super-group
1835 * we need to walk up the tree and change all shares until we hit the root.
1836 */
1837static void
1838move_group_shares(struct task_group *tg, struct sched_domain *sd,
1839 int scpu, int dcpu)
1840{
1841 while (tg) {
1842 __move_group_shares(tg, sd, scpu, dcpu);
1843 tg = tg->parent;
1844 }
1845}
1846
1847static
1848void aggregate_group_set_shares(struct task_group *tg, struct sched_domain *sd)
1849{
1850 unsigned long shares = aggregate(tg, sd)->shares;
1851 int i;
1852
1853 for_each_cpu_mask(i, sd->span) {
1854 struct rq *rq = cpu_rq(i);
1855 unsigned long flags;
1856
1857 spin_lock_irqsave(&rq->lock, flags);
1858 __update_group_shares_cpu(tg, sd, i);
1859 spin_unlock_irqrestore(&rq->lock, flags);
1860 }
1861
1862 aggregate_group_shares(tg, sd);
1863
1864 /*
1865 * ensure we never loose shares due to rounding errors in the
1866 * above redistribution.
1867 */
1868 shares -= aggregate(tg, sd)->shares;
1869 if (shares) {
1870 tg->cfs_rq[sd->first_cpu]->shares += shares;
1871 aggregate(tg, sd)->shares += shares;
1872 }
1873}
1874
1875/*
1876 * Calculate the accumulative weight and recursive load of each task group
1877 * while walking down the tree.
1878 */
1879static
1880void aggregate_get_down(struct task_group *tg, struct sched_domain *sd)
1881{
1882 aggregate_group_weight(tg, sd);
1883 aggregate_group_shares(tg, sd);
1884 aggregate_group_load(tg, sd);
1885}
1886
1887/*
1888 * Rebalance the cpu shares while walking back up the tree.
1889 */
1890static
1891void aggregate_get_up(struct task_group *tg, struct sched_domain *sd)
1892{
1893 aggregate_group_set_shares(tg, sd);
1894}
1895
1896static DEFINE_PER_CPU(spinlock_t, aggregate_lock);
1897
1898static void __init init_aggregate(void)
1899{
1900 int i;
1901
1902 for_each_possible_cpu(i)
1903 spin_lock_init(&per_cpu(aggregate_lock, i));
1904}
1905
1906static int get_aggregate(struct sched_domain *sd)
1907{
1908 if (!spin_trylock(&per_cpu(aggregate_lock, sd->first_cpu)))
1909 return 0;
1910
1911 aggregate_walk_tree(aggregate_get_down, aggregate_get_up, sd);
1912 return 1;
1913}
1914
1915static void put_aggregate(struct sched_domain *sd)
1916{
1917 spin_unlock(&per_cpu(aggregate_lock, sd->first_cpu));
1918}
1919
1920static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1921{
1922 cfs_rq->shares = shares;
1923}
1924
1925#else
1926
1927static inline void init_aggregate(void)
1928{
1929}
1930
1931static inline int get_aggregate(struct sched_domain *sd)
1932{
1933 return 0;
1934}
1935
1936static inline void put_aggregate(struct sched_domain *sd)
1937{
1938}
1939#endif
1940
1941#else /* CONFIG_SMP */
1942
1943#ifdef CONFIG_FAIR_GROUP_SCHED
1944static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1945{
1946}
1947#endif
1948
Gregory Haskinse7693a32008-01-25 21:08:09 +01001949#endif /* CONFIG_SMP */
1950
Ingo Molnardd41f592007-07-09 18:51:59 +02001951#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001952#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001953#include "sched_fair.c"
1954#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001955#ifdef CONFIG_SCHED_DEBUG
1956# include "sched_debug.c"
1957#endif
1958
1959#define sched_class_highest (&rt_sched_class)
1960
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001961static void inc_nr_running(struct rq *rq)
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001962{
1963 rq->nr_running++;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001964}
1965
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001966static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001967{
1968 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001969}
1970
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001971static void set_load_weight(struct task_struct *p)
1972{
1973 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001974 p->se.load.weight = prio_to_weight[0] * 2;
1975 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1976 return;
1977 }
1978
1979 /*
1980 * SCHED_IDLE tasks get minimal weight:
1981 */
1982 if (p->policy == SCHED_IDLE) {
1983 p->se.load.weight = WEIGHT_IDLEPRIO;
1984 p->se.load.inv_weight = WMULT_IDLEPRIO;
1985 return;
1986 }
1987
1988 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1989 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001990}
1991
Ingo Molnar8159f872007-08-09 11:16:49 +02001992static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001993{
1994 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001995 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001996 p->se.on_rq = 1;
1997}
1998
Ingo Molnar69be72c2007-08-09 11:16:49 +02001999static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02002000{
Ingo Molnarf02231e2007-08-09 11:16:48 +02002001 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02002002 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02002003}
2004
2005/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002006 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02002007 */
Ingo Molnar14531182007-07-09 18:51:59 +02002008static inline int __normal_prio(struct task_struct *p)
2009{
Ingo Molnardd41f592007-07-09 18:51:59 +02002010 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02002011}
2012
2013/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07002014 * Calculate the expected normal priority: i.e. priority
2015 * without taking RT-inheritance into account. Might be
2016 * boosted by interactivity modifiers. Changes upon fork,
2017 * setprio syscalls, and whenever the interactivity
2018 * estimator recalculates.
2019 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002020static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002021{
2022 int prio;
2023
Ingo Molnare05606d2007-07-09 18:51:59 +02002024 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07002025 prio = MAX_RT_PRIO-1 - p->rt_priority;
2026 else
2027 prio = __normal_prio(p);
2028 return prio;
2029}
2030
2031/*
2032 * Calculate the current priority, i.e. the priority
2033 * taken into account by the scheduler. This value might
2034 * be boosted by RT tasks, or might be boosted by
2035 * interactivity modifiers. Will be RT if the task got
2036 * RT-boosted. If not then it returns p->normal_prio.
2037 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002038static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002039{
2040 p->normal_prio = normal_prio(p);
2041 /*
2042 * If we are RT tasks or we were boosted to RT priority,
2043 * keep the priority unchanged. Otherwise, update priority
2044 * to the normal priority:
2045 */
2046 if (!rt_prio(p->prio))
2047 return p->normal_prio;
2048 return p->prio;
2049}
2050
2051/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002052 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002054static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002056 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02002057 rq->nr_uninterruptible--;
2058
Ingo Molnar8159f872007-08-09 11:16:49 +02002059 enqueue_task(rq, p, wakeup);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002060 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
2063/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * deactivate_task - remove a task from the runqueue.
2065 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002066static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002068 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02002069 rq->nr_uninterruptible++;
2070
Ingo Molnar69be72c2007-08-09 11:16:49 +02002071 dequeue_task(rq, p, sleep);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002072 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075/**
2076 * task_curr - is this task currently executing on a CPU?
2077 * @p: the task in question.
2078 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002079inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
2081 return cpu_curr(task_cpu(p)) == p;
2082}
2083
Peter Williams2dd73a42006-06-27 02:54:34 -07002084/* Used instead of source_load when we know the type == 0 */
2085unsigned long weighted_cpuload(const int cpu)
2086{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002087 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002088}
2089
2090static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
2091{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01002092 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002093#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01002094 /*
2095 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
2096 * successfuly executed on another CPU. We must ensure that updates of
2097 * per-task data have been completed by this moment.
2098 */
2099 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02002100 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002101#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07002102}
2103
Steven Rostedtcb469842008-01-25 21:08:22 +01002104static inline void check_class_changed(struct rq *rq, struct task_struct *p,
2105 const struct sched_class *prev_class,
2106 int oldprio, int running)
2107{
2108 if (prev_class != p->sched_class) {
2109 if (prev_class->switched_from)
2110 prev_class->switched_from(rq, p, running);
2111 p->sched_class->switched_to(rq, p, running);
2112 } else
2113 p->sched_class->prio_changed(rq, p, oldprio, running);
2114}
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02002117
Ingo Molnarcc367732007-10-15 17:00:18 +02002118/*
2119 * Is this task likely cache-hot:
2120 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002121static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002122task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2123{
2124 s64 delta;
2125
Ingo Molnarf540a602008-03-15 17:10:34 +01002126 /*
2127 * Buddy candidates are cache hot:
2128 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01002129 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01002130 return 1;
2131
Ingo Molnarcc367732007-10-15 17:00:18 +02002132 if (p->sched_class != &fair_sched_class)
2133 return 0;
2134
Ingo Molnar6bc16652007-10-15 17:00:18 +02002135 if (sysctl_sched_migration_cost == -1)
2136 return 1;
2137 if (sysctl_sched_migration_cost == 0)
2138 return 0;
2139
Ingo Molnarcc367732007-10-15 17:00:18 +02002140 delta = now - p->se.exec_start;
2141
2142 return delta < (s64)sysctl_sched_migration_cost;
2143}
2144
2145
Ingo Molnardd41f592007-07-09 18:51:59 +02002146void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002147{
Ingo Molnardd41f592007-07-09 18:51:59 +02002148 int old_cpu = task_cpu(p);
2149 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002150 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
2151 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02002152 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002153
2154 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002155
2156#ifdef CONFIG_SCHEDSTATS
2157 if (p->se.wait_start)
2158 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002159 if (p->se.sleep_start)
2160 p->se.sleep_start -= clock_offset;
2161 if (p->se.block_start)
2162 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02002163 if (old_cpu != new_cpu) {
2164 schedstat_inc(p, se.nr_migrations);
2165 if (task_hot(p, old_rq->clock, NULL))
2166 schedstat_inc(p, se.nr_forced2_migrations);
2167 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002168#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002169 p->se.vruntime -= old_cfsrq->min_vruntime -
2170 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02002171
2172 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002173}
2174
Ingo Molnar70b97a72006-07-03 00:25:42 -07002175struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Ingo Molnar36c8b582006-07-03 00:25:41 -07002178 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 int dest_cpu;
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002182};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184/*
2185 * The task's runqueue lock must be held.
2186 * Returns true if you have to wait for migration thread.
2187 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002188static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002189migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002191 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193 /*
2194 * If the task is not on a runqueue (and not running), then
2195 * it is sufficient to simply update the task's cpu field.
2196 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002197 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 set_task_cpu(p, dest_cpu);
2199 return 0;
2200 }
2201
2202 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 req->task = p;
2204 req->dest_cpu = dest_cpu;
2205 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return 1;
2208}
2209
2210/*
2211 * wait_task_inactive - wait for a thread to unschedule.
2212 *
2213 * The caller must ensure that the task *will* unschedule sometime soon,
2214 * else this function might spin for a *long* time. This function can't
2215 * be called with interrupts off, or it may introduce deadlock with
2216 * smp_call_function() if an IPI is sent by the same process we are
2217 * waiting to become inactive.
2218 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002219void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
2221 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002222 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002223 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Andi Kleen3a5c3592007-10-15 17:00:14 +02002225 for (;;) {
2226 /*
2227 * We do the initial early heuristics without holding
2228 * any task-queue locks at all. We'll only try to get
2229 * the runqueue lock when things look like they will
2230 * work out!
2231 */
2232 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002233
Andi Kleen3a5c3592007-10-15 17:00:14 +02002234 /*
2235 * If the task is actively running on another CPU
2236 * still, just relax and busy-wait without holding
2237 * any locks.
2238 *
2239 * NOTE! Since we don't hold any locks, it's not
2240 * even sure that "rq" stays as the right runqueue!
2241 * But we don't care, since "task_running()" will
2242 * return false if the runqueue has changed and p
2243 * is actually now running somewhere else!
2244 */
2245 while (task_running(rq, p))
2246 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002247
Andi Kleen3a5c3592007-10-15 17:00:14 +02002248 /*
2249 * Ok, time to look more closely! We need the rq
2250 * lock now, to be *sure*. If we're wrong, we'll
2251 * just go back and repeat.
2252 */
2253 rq = task_rq_lock(p, &flags);
2254 running = task_running(rq, p);
2255 on_rq = p->se.on_rq;
2256 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002257
Andi Kleen3a5c3592007-10-15 17:00:14 +02002258 /*
2259 * Was it really running after all now that we
2260 * checked with the proper locks actually held?
2261 *
2262 * Oops. Go back and try again..
2263 */
2264 if (unlikely(running)) {
2265 cpu_relax();
2266 continue;
2267 }
2268
2269 /*
2270 * It's not enough that it's not actively running,
2271 * it must be off the runqueue _entirely_, and not
2272 * preempted!
2273 *
2274 * So if it wa still runnable (but just not actively
2275 * running right now), it's preempted, and we should
2276 * yield - it could be a while.
2277 */
2278 if (unlikely(on_rq)) {
2279 schedule_timeout_uninterruptible(1);
2280 continue;
2281 }
2282
2283 /*
2284 * Ahh, all good. It wasn't running, and it wasn't
2285 * runnable, which means that it will never become
2286 * running in the future either. We're all done!
2287 */
2288 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290}
2291
2292/***
2293 * kick_process - kick a running thread to enter/exit the kernel
2294 * @p: the to-be-kicked thread
2295 *
2296 * Cause a process which is running on another CPU to enter
2297 * kernel-mode, without any delay. (to get signals handled.)
2298 *
2299 * NOTE: this function doesnt have to take the runqueue lock,
2300 * because all it wants to ensure is that the remote task enters
2301 * the kernel. If the IPI races and the task has been migrated
2302 * to another CPU then no harm is done and the purpose has been
2303 * achieved as well.
2304 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002305void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
2307 int cpu;
2308
2309 preempt_disable();
2310 cpu = task_cpu(p);
2311 if ((cpu != smp_processor_id()) && task_curr(p))
2312 smp_send_reschedule(cpu);
2313 preempt_enable();
2314}
2315
2316/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002317 * Return a low guess at the load of a migration-source cpu weighted
2318 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 *
2320 * We want to under-estimate the load of migration sources, to
2321 * balance conservatively.
2322 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002323static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002324{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002325 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002326 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002327
Peter Williams2dd73a42006-06-27 02:54:34 -07002328 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002329 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002330
Ingo Molnardd41f592007-07-09 18:51:59 +02002331 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333
2334/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002335 * Return a high guess at the load of a migration-target cpu weighted
2336 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002338static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002339{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002340 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002341 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002342
Peter Williams2dd73a42006-06-27 02:54:34 -07002343 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002344 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002345
Ingo Molnardd41f592007-07-09 18:51:59 +02002346 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002347}
2348
2349/*
2350 * Return the average load per task on the cpu's run queue
2351 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002352static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07002353{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002354 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002355 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002356 unsigned long n = rq->nr_running;
2357
Ingo Molnardd41f592007-07-09 18:51:59 +02002358 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359}
2360
Nick Piggin147cbb42005-06-25 14:57:19 -07002361/*
2362 * find_idlest_group finds and returns the least busy CPU group within the
2363 * domain.
2364 */
2365static struct sched_group *
2366find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2367{
2368 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2369 unsigned long min_load = ULONG_MAX, this_load = 0;
2370 int load_idx = sd->forkexec_idx;
2371 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2372
2373 do {
2374 unsigned long load, avg_load;
2375 int local_group;
2376 int i;
2377
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002378 /* Skip over this group if it has no CPUs allowed */
2379 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002380 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002381
Nick Piggin147cbb42005-06-25 14:57:19 -07002382 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002383
2384 /* Tally up the load of all CPUs in the group */
2385 avg_load = 0;
2386
2387 for_each_cpu_mask(i, group->cpumask) {
2388 /* Bias balancing toward cpus of our domain */
2389 if (local_group)
2390 load = source_load(i, load_idx);
2391 else
2392 load = target_load(i, load_idx);
2393
2394 avg_load += load;
2395 }
2396
2397 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002398 avg_load = sg_div_cpu_power(group,
2399 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002400
2401 if (local_group) {
2402 this_load = avg_load;
2403 this = group;
2404 } else if (avg_load < min_load) {
2405 min_load = avg_load;
2406 idlest = group;
2407 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002408 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002409
2410 if (!idlest || 100*this_load < imbalance*min_load)
2411 return NULL;
2412 return idlest;
2413}
2414
2415/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002416 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002417 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002418static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002419find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2420 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002421{
2422 unsigned long load, min_load = ULONG_MAX;
2423 int idlest = -1;
2424 int i;
2425
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002426 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002427 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002428
Mike Travis7c16ec52008-04-04 18:11:11 -07002429 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002430 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002431
2432 if (load < min_load || (load == min_load && i == this_cpu)) {
2433 min_load = load;
2434 idlest = i;
2435 }
2436 }
2437
2438 return idlest;
2439}
2440
Nick Piggin476d1392005-06-25 14:57:29 -07002441/*
2442 * sched_balance_self: balance the current task (running on cpu) in domains
2443 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2444 * SD_BALANCE_EXEC.
2445 *
2446 * Balance, ie. select the least loaded group.
2447 *
2448 * Returns the target CPU number, or the same CPU if no balancing is needed.
2449 *
2450 * preempt must be disabled.
2451 */
2452static int sched_balance_self(int cpu, int flag)
2453{
2454 struct task_struct *t = current;
2455 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002456
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002457 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002458 /*
2459 * If power savings logic is enabled for a domain, stop there.
2460 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002461 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2462 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002463 if (tmp->flags & flag)
2464 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002465 }
Nick Piggin476d1392005-06-25 14:57:29 -07002466
2467 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002468 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002469 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002470 int new_cpu, weight;
2471
2472 if (!(sd->flags & flag)) {
2473 sd = sd->child;
2474 continue;
2475 }
Nick Piggin476d1392005-06-25 14:57:29 -07002476
2477 span = sd->span;
2478 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002479 if (!group) {
2480 sd = sd->child;
2481 continue;
2482 }
Nick Piggin476d1392005-06-25 14:57:29 -07002483
Mike Travis7c16ec52008-04-04 18:11:11 -07002484 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002485 if (new_cpu == -1 || new_cpu == cpu) {
2486 /* Now try balancing at a lower domain level of cpu */
2487 sd = sd->child;
2488 continue;
2489 }
Nick Piggin476d1392005-06-25 14:57:29 -07002490
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002491 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002492 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002493 sd = NULL;
2494 weight = cpus_weight(span);
2495 for_each_domain(cpu, tmp) {
2496 if (weight <= cpus_weight(tmp->span))
2497 break;
2498 if (tmp->flags & flag)
2499 sd = tmp;
2500 }
2501 /* while loop will break here if sd == NULL */
2502 }
2503
2504 return cpu;
2505}
2506
2507#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509/***
2510 * try_to_wake_up - wake up a thread
2511 * @p: the to-be-woken-up thread
2512 * @state: the mask of task states that can be woken
2513 * @sync: do a synchronous wakeup?
2514 *
2515 * Put it on the run-queue if it's not already there. The "current"
2516 * thread is always on the run-queue (except when the actual
2517 * re-schedule is in progress), and as such you're allowed to do
2518 * the simpler "current->state = TASK_RUNNING" to mark yourself
2519 * runnable without the overhead of this.
2520 *
2521 * returns failure only if the task is already active.
2522 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002523static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Ingo Molnarcc367732007-10-15 17:00:18 +02002525 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 unsigned long flags;
2527 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002528 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Ingo Molnarb85d0662008-03-16 20:03:22 +01002530 if (!sched_feat(SYNC_WAKEUPS))
2531 sync = 0;
2532
Linus Torvalds04e2f172008-02-23 18:05:03 -08002533 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 rq = task_rq_lock(p, &flags);
2535 old_state = p->state;
2536 if (!(old_state & state))
2537 goto out;
2538
Ingo Molnardd41f592007-07-09 18:51:59 +02002539 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 goto out_running;
2541
2542 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002543 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 this_cpu = smp_processor_id();
2545
2546#ifdef CONFIG_SMP
2547 if (unlikely(task_running(rq, p)))
2548 goto out_activate;
2549
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002550 cpu = p->sched_class->select_task_rq(p, sync);
2551 if (cpu != orig_cpu) {
2552 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 task_rq_unlock(rq, &flags);
2554 /* might preempt at this point */
2555 rq = task_rq_lock(p, &flags);
2556 old_state = p->state;
2557 if (!(old_state & state))
2558 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002559 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 goto out_running;
2561
2562 this_cpu = smp_processor_id();
2563 cpu = task_cpu(p);
2564 }
2565
Gregory Haskinse7693a32008-01-25 21:08:09 +01002566#ifdef CONFIG_SCHEDSTATS
2567 schedstat_inc(rq, ttwu_count);
2568 if (cpu == this_cpu)
2569 schedstat_inc(rq, ttwu_local);
2570 else {
2571 struct sched_domain *sd;
2572 for_each_domain(this_cpu, sd) {
2573 if (cpu_isset(cpu, sd->span)) {
2574 schedstat_inc(sd, ttwu_wake_remote);
2575 break;
2576 }
2577 }
2578 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002579#endif
2580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581out_activate:
2582#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002583 schedstat_inc(p, se.nr_wakeups);
2584 if (sync)
2585 schedstat_inc(p, se.nr_wakeups_sync);
2586 if (orig_cpu != cpu)
2587 schedstat_inc(p, se.nr_wakeups_migrate);
2588 if (cpu == this_cpu)
2589 schedstat_inc(p, se.nr_wakeups_local);
2590 else
2591 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002592 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002593 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 success = 1;
2595
2596out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002597 check_preempt_curr(rq, p);
2598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002600#ifdef CONFIG_SMP
2601 if (p->sched_class->task_wake_up)
2602 p->sched_class->task_wake_up(rq, p);
2603#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604out:
2605 task_rq_unlock(rq, &flags);
2606
2607 return success;
2608}
2609
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002610int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002612 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614EXPORT_SYMBOL(wake_up_process);
2615
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002616int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
2618 return try_to_wake_up(p, state, 0);
2619}
2620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621/*
2622 * Perform scheduler related setup for a newly forked process p.
2623 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002624 *
2625 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002627static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
Ingo Molnardd41f592007-07-09 18:51:59 +02002629 p->se.exec_start = 0;
2630 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002631 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002632 p->se.last_wakeup = 0;
2633 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002634
2635#ifdef CONFIG_SCHEDSTATS
2636 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002637 p->se.sum_sleep_runtime = 0;
2638 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002639 p->se.block_start = 0;
2640 p->se.sleep_max = 0;
2641 p->se.block_max = 0;
2642 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002643 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002644 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002645#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002646
Peter Zijlstrafa717062008-01-25 21:08:27 +01002647 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002648 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002649 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002650
Avi Kivitye107be32007-07-26 13:40:43 +02002651#ifdef CONFIG_PREEMPT_NOTIFIERS
2652 INIT_HLIST_HEAD(&p->preempt_notifiers);
2653#endif
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 /*
2656 * We mark the process as running here, but have not actually
2657 * inserted it onto the runqueue yet. This guarantees that
2658 * nobody will actually run it, and a signal or other external
2659 * event cannot wake it up and insert it on the runqueue either.
2660 */
2661 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002662}
2663
2664/*
2665 * fork()/clone()-time setup:
2666 */
2667void sched_fork(struct task_struct *p, int clone_flags)
2668{
2669 int cpu = get_cpu();
2670
2671 __sched_fork(p);
2672
2673#ifdef CONFIG_SMP
2674 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2675#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002676 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002677
2678 /*
2679 * Make sure we do not leak PI boosting priority to the child:
2680 */
2681 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002682 if (!rt_prio(p->prio))
2683 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002684
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002685#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002686 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002687 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002689#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002690 p->oncpu = 0;
2691#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002693 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002694 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002696 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}
2698
2699/*
2700 * wake_up_new_task - wake up a newly created task for the first time.
2701 *
2702 * This function will do some initial scheduler statistics housekeeping
2703 * that must be done for every newly created context, then puts the task
2704 * on the runqueue and wakes it.
2705 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002706void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
2708 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002709 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002713 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 p->prio = effective_prio(p);
2716
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002717 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002718 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002721 * Let the scheduling class do new task startup
2722 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002724 p->sched_class->task_new(rq, p);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002725 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002727 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002728#ifdef CONFIG_SMP
2729 if (p->sched_class->task_wake_up)
2730 p->sched_class->task_wake_up(rq, p);
2731#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002732 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733}
2734
Avi Kivitye107be32007-07-26 13:40:43 +02002735#ifdef CONFIG_PREEMPT_NOTIFIERS
2736
2737/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002738 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2739 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002740 */
2741void preempt_notifier_register(struct preempt_notifier *notifier)
2742{
2743 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2744}
2745EXPORT_SYMBOL_GPL(preempt_notifier_register);
2746
2747/**
2748 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002749 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002750 *
2751 * This is safe to call from within a preemption notifier.
2752 */
2753void preempt_notifier_unregister(struct preempt_notifier *notifier)
2754{
2755 hlist_del(&notifier->link);
2756}
2757EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2758
2759static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2760{
2761 struct preempt_notifier *notifier;
2762 struct hlist_node *node;
2763
2764 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2765 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2766}
2767
2768static void
2769fire_sched_out_preempt_notifiers(struct task_struct *curr,
2770 struct task_struct *next)
2771{
2772 struct preempt_notifier *notifier;
2773 struct hlist_node *node;
2774
2775 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2776 notifier->ops->sched_out(notifier, next);
2777}
2778
2779#else
2780
2781static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2782{
2783}
2784
2785static void
2786fire_sched_out_preempt_notifiers(struct task_struct *curr,
2787 struct task_struct *next)
2788{
2789}
2790
2791#endif
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002794 * prepare_task_switch - prepare to switch tasks
2795 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002796 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002797 * @next: the task we are going to switch to.
2798 *
2799 * This is called with the rq lock held and interrupts off. It must
2800 * be paired with a subsequent finish_task_switch after the context
2801 * switch.
2802 *
2803 * prepare_task_switch sets up locking and calls architecture specific
2804 * hooks.
2805 */
Avi Kivitye107be32007-07-26 13:40:43 +02002806static inline void
2807prepare_task_switch(struct rq *rq, struct task_struct *prev,
2808 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002809{
Avi Kivitye107be32007-07-26 13:40:43 +02002810 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002811 prepare_lock_switch(rq, next);
2812 prepare_arch_switch(next);
2813}
2814
2815/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002817 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 * @prev: the thread we just switched away from.
2819 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002820 * finish_task_switch must be called after the context switch, paired
2821 * with a prepare_task_switch call before the context switch.
2822 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2823 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 *
2825 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002826 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 * with the lock held can cause deadlocks; see schedule() for
2828 * details.)
2829 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002830static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 __releases(rq->lock)
2832{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002834 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 rq->prev_mm = NULL;
2837
2838 /*
2839 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002840 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002841 * schedule one last time. The schedule call will never return, and
2842 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002843 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 * still held, otherwise prev could be scheduled on another cpu, die
2845 * there before we look at prev->state, and then the reference would
2846 * be dropped twice.
2847 * Manfred Spraul <manfred@colorfullife.com>
2848 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002849 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002850 finish_arch_switch(prev);
2851 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002852#ifdef CONFIG_SMP
2853 if (current->sched_class->post_schedule)
2854 current->sched_class->post_schedule(rq);
2855#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002856
Avi Kivitye107be32007-07-26 13:40:43 +02002857 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 if (mm)
2859 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002860 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002861 /*
2862 * Remove function-return probe instances associated with this
2863 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002864 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002865 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868}
2869
2870/**
2871 * schedule_tail - first thing a freshly forked thread must call.
2872 * @prev: the thread we just switched away from.
2873 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002874asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 __releases(rq->lock)
2876{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002877 struct rq *rq = this_rq();
2878
Nick Piggin4866cde2005-06-25 14:57:23 -07002879 finish_task_switch(rq, prev);
2880#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2881 /* In this case, finish_task_switch does not reenable preemption */
2882 preempt_enable();
2883#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002885 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886}
2887
2888/*
2889 * context_switch - switch to the new MM and the new
2890 * thread's register state.
2891 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002892static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002893context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002894 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
Ingo Molnardd41f592007-07-09 18:51:59 +02002896 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Avi Kivitye107be32007-07-26 13:40:43 +02002898 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002899 mm = next->mm;
2900 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002901 /*
2902 * For paravirt, this is coupled with an exit in switch_to to
2903 * combine the page table reload and the switch backend into
2904 * one hypercall.
2905 */
2906 arch_enter_lazy_cpu_mode();
2907
Ingo Molnardd41f592007-07-09 18:51:59 +02002908 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 next->active_mm = oldmm;
2910 atomic_inc(&oldmm->mm_count);
2911 enter_lazy_tlb(oldmm, next);
2912 } else
2913 switch_mm(oldmm, mm, next);
2914
Ingo Molnardd41f592007-07-09 18:51:59 +02002915 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 rq->prev_mm = oldmm;
2918 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002919 /*
2920 * Since the runqueue lock will be released by the next
2921 * task (which is an invalid locking op but in the case
2922 * of the scheduler it's an obvious special-case), so we
2923 * do an early lockdep release here:
2924 */
2925#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002926 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002927#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
2929 /* Here we just switch the register state and the stack. */
2930 switch_to(prev, next, prev);
2931
Ingo Molnardd41f592007-07-09 18:51:59 +02002932 barrier();
2933 /*
2934 * this_rq must be evaluated again because prev may have moved
2935 * CPUs since it called schedule(), thus the 'rq' on its stack
2936 * frame will be invalid.
2937 */
2938 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939}
2940
2941/*
2942 * nr_running, nr_uninterruptible and nr_context_switches:
2943 *
2944 * externally visible scheduler statistics: current number of runnable
2945 * threads, current number of uninterruptible-sleeping threads, total
2946 * number of context switches performed since bootup.
2947 */
2948unsigned long nr_running(void)
2949{
2950 unsigned long i, sum = 0;
2951
2952 for_each_online_cpu(i)
2953 sum += cpu_rq(i)->nr_running;
2954
2955 return sum;
2956}
2957
2958unsigned long nr_uninterruptible(void)
2959{
2960 unsigned long i, sum = 0;
2961
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002962 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 sum += cpu_rq(i)->nr_uninterruptible;
2964
2965 /*
2966 * Since we read the counters lockless, it might be slightly
2967 * inaccurate. Do not allow it to go below zero though:
2968 */
2969 if (unlikely((long)sum < 0))
2970 sum = 0;
2971
2972 return sum;
2973}
2974
2975unsigned long long nr_context_switches(void)
2976{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002977 int i;
2978 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002980 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 sum += cpu_rq(i)->nr_switches;
2982
2983 return sum;
2984}
2985
2986unsigned long nr_iowait(void)
2987{
2988 unsigned long i, sum = 0;
2989
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002990 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2992
2993 return sum;
2994}
2995
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002996unsigned long nr_active(void)
2997{
2998 unsigned long i, running = 0, uninterruptible = 0;
2999
3000 for_each_online_cpu(i) {
3001 running += cpu_rq(i)->nr_running;
3002 uninterruptible += cpu_rq(i)->nr_uninterruptible;
3003 }
3004
3005 if (unlikely((long)uninterruptible < 0))
3006 uninterruptible = 0;
3007
3008 return running + uninterruptible;
3009}
3010
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003012 * Update rq->cpu_load[] statistics. This function is usually called every
3013 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07003014 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003015static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003016{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02003017 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02003018 int i, scale;
3019
3020 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02003021
3022 /* Update our load: */
3023 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
3024 unsigned long old_load, new_load;
3025
3026 /* scale is effectively 1 << i now, and >> i divides by scale */
3027
3028 old_load = this_rq->cpu_load[i];
3029 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02003030 /*
3031 * Round up the averaging division if load is increasing. This
3032 * prevents us from getting stuck on 9 if the load is 10, for
3033 * example.
3034 */
3035 if (new_load > old_load)
3036 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003037 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
3038 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003039}
3040
Ingo Molnardd41f592007-07-09 18:51:59 +02003041#ifdef CONFIG_SMP
3042
Ingo Molnar48f24c42006-07-03 00:25:40 -07003043/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 * double_rq_lock - safely lock two runqueues
3045 *
3046 * Note this does not disable interrupts like task_rq_lock,
3047 * you need to do so manually before calling.
3048 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003049static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 __acquires(rq1->lock)
3051 __acquires(rq2->lock)
3052{
Kirill Korotaev054b9102006-12-10 02:20:11 -08003053 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 if (rq1 == rq2) {
3055 spin_lock(&rq1->lock);
3056 __acquire(rq2->lock); /* Fake it out ;) */
3057 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003058 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 spin_lock(&rq1->lock);
3060 spin_lock(&rq2->lock);
3061 } else {
3062 spin_lock(&rq2->lock);
3063 spin_lock(&rq1->lock);
3064 }
3065 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003066 update_rq_clock(rq1);
3067 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068}
3069
3070/*
3071 * double_rq_unlock - safely unlock two runqueues
3072 *
3073 * Note this does not restore interrupts like task_rq_unlock,
3074 * you need to do so manually after calling.
3075 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003076static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 __releases(rq1->lock)
3078 __releases(rq2->lock)
3079{
3080 spin_unlock(&rq1->lock);
3081 if (rq1 != rq2)
3082 spin_unlock(&rq2->lock);
3083 else
3084 __release(rq2->lock);
3085}
3086
3087/*
3088 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
3089 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01003090static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 __releases(this_rq->lock)
3092 __acquires(busiest->lock)
3093 __acquires(this_rq->lock)
3094{
Steven Rostedte8fa1362008-01-25 21:08:05 +01003095 int ret = 0;
3096
Kirill Korotaev054b9102006-12-10 02:20:11 -08003097 if (unlikely(!irqs_disabled())) {
3098 /* printk() doesn't work good under rq->lock */
3099 spin_unlock(&this_rq->lock);
3100 BUG_ON(1);
3101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003103 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 spin_unlock(&this_rq->lock);
3105 spin_lock(&busiest->lock);
3106 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01003107 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 } else
3109 spin_lock(&busiest->lock);
3110 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01003111 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112}
3113
3114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 * If dest_cpu is allowed for this process, migrate the task to it.
3116 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003117 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 * the cpu_allowed mask is restored.
3119 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003120static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003122 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003124 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
3126 rq = task_rq_lock(p, &flags);
3127 if (!cpu_isset(dest_cpu, p->cpus_allowed)
3128 || unlikely(cpu_is_offline(dest_cpu)))
3129 goto out;
3130
3131 /* force the process onto the specified CPU */
3132 if (migrate_task(p, dest_cpu, &req)) {
3133 /* Need to wait for migration thread (might exit: take ref). */
3134 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003135
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 get_task_struct(mt);
3137 task_rq_unlock(rq, &flags);
3138 wake_up_process(mt);
3139 put_task_struct(mt);
3140 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 return;
3143 }
3144out:
3145 task_rq_unlock(rq, &flags);
3146}
3147
3148/*
Nick Piggin476d1392005-06-25 14:57:29 -07003149 * sched_exec - execve() is a valuable balancing opportunity, because at
3150 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 */
3152void sched_exec(void)
3153{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003155 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003157 if (new_cpu != this_cpu)
3158 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159}
3160
3161/*
3162 * pull_task - move a task from a remote runqueue to the local runqueue.
3163 * Both runqueues must be locked.
3164 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003165static void pull_task(struct rq *src_rq, struct task_struct *p,
3166 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003168 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003170 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 /*
3172 * Note that idle threads have a prio of MAX_PRIO, for this test
3173 * to be always true for them.
3174 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003175 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176}
3177
3178/*
3179 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3180 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003181static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003182int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003183 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003184 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185{
3186 /*
3187 * We do not migrate tasks that are:
3188 * 1) running (obviously), or
3189 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3190 * 3) are cache-hot on their current CPU.
3191 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003192 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3193 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003195 }
Nick Piggin81026792005-06-25 14:57:07 -07003196 *all_pinned = 0;
3197
Ingo Molnarcc367732007-10-15 17:00:18 +02003198 if (task_running(rq, p)) {
3199 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003200 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Ingo Molnarda84d962007-10-15 17:00:18 +02003203 /*
3204 * Aggressive migration if:
3205 * 1) task is cache cold, or
3206 * 2) too many balance attempts have failed.
3207 */
3208
Ingo Molnar6bc16652007-10-15 17:00:18 +02003209 if (!task_hot(p, rq->clock, sd) ||
3210 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003211#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003212 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003213 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003214 schedstat_inc(p, se.nr_forced_migrations);
3215 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003216#endif
3217 return 1;
3218 }
3219
Ingo Molnarcc367732007-10-15 17:00:18 +02003220 if (task_hot(p, rq->clock, sd)) {
3221 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003222 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 return 1;
3225}
3226
Peter Williamse1d14842007-10-24 18:23:51 +02003227static unsigned long
3228balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3229 unsigned long max_load_move, struct sched_domain *sd,
3230 enum cpu_idle_type idle, int *all_pinned,
3231 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003232{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003233 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003234 struct task_struct *p;
3235 long rem_load_move = max_load_move;
3236
Peter Williamse1d14842007-10-24 18:23:51 +02003237 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003238 goto out;
3239
3240 pinned = 1;
3241
3242 /*
3243 * Start the load-balancing iterator:
3244 */
3245 p = iterator->start(iterator->arg);
3246next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003247 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003248 goto out;
3249 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003250 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003251 * skip a task if it will be the highest priority task (i.e. smallest
3252 * prio value) on its new queue regardless of its load weight
3253 */
3254 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3255 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003256 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003257 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003258 p = iterator->next(iterator->arg);
3259 goto next;
3260 }
3261
3262 pull_task(busiest, p, this_rq, this_cpu);
3263 pulled++;
3264 rem_load_move -= p->se.load.weight;
3265
3266 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003267 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003268 */
Peter Williamse1d14842007-10-24 18:23:51 +02003269 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003270 if (p->prio < *this_best_prio)
3271 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003272 p = iterator->next(iterator->arg);
3273 goto next;
3274 }
3275out:
3276 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003277 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003278 * so we can safely collect pull_task() stats here rather than
3279 * inside pull_task().
3280 */
3281 schedstat_add(sd, lb_gained[idle], pulled);
3282
3283 if (all_pinned)
3284 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003285
3286 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003287}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289/*
Peter Williams43010652007-08-09 11:16:46 +02003290 * move_tasks tries to move up to max_load_move weighted load from busiest to
3291 * this_rq, as part of a balancing operation within domain "sd".
3292 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 *
3294 * Called with both runqueues locked.
3295 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003296static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003297 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003298 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003299 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003301 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003302 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003303 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Ingo Molnardd41f592007-07-09 18:51:59 +02003305 do {
Peter Williams43010652007-08-09 11:16:46 +02003306 total_load_moved +=
3307 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003308 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003309 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003310 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003311 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Peter Williams43010652007-08-09 11:16:46 +02003313 return total_load_moved > 0;
3314}
3315
Peter Williamse1d14842007-10-24 18:23:51 +02003316static int
3317iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3318 struct sched_domain *sd, enum cpu_idle_type idle,
3319 struct rq_iterator *iterator)
3320{
3321 struct task_struct *p = iterator->start(iterator->arg);
3322 int pinned = 0;
3323
3324 while (p) {
3325 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3326 pull_task(busiest, p, this_rq, this_cpu);
3327 /*
3328 * Right now, this is only the second place pull_task()
3329 * is called, so we can safely collect pull_task()
3330 * stats here rather than inside pull_task().
3331 */
3332 schedstat_inc(sd, lb_gained[idle]);
3333
3334 return 1;
3335 }
3336 p = iterator->next(iterator->arg);
3337 }
3338
3339 return 0;
3340}
3341
Peter Williams43010652007-08-09 11:16:46 +02003342/*
3343 * move_one_task tries to move exactly one task from busiest to this_rq, as
3344 * part of active balancing operations within "domain".
3345 * Returns 1 if successful and 0 otherwise.
3346 *
3347 * Called with both runqueues locked.
3348 */
3349static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3350 struct sched_domain *sd, enum cpu_idle_type idle)
3351{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003352 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003353
3354 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003355 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003356 return 1;
3357
3358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359}
3360
3361/*
3362 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003363 * domain. It calculates and returns the amount of weighted load which
3364 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 */
3366static struct sched_group *
3367find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003368 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003369 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370{
3371 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3372 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003373 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003374 unsigned long busiest_load_per_task, busiest_nr_running;
3375 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003376 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003377#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3378 int power_savings_balance = 1;
3379 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3380 unsigned long min_nr_running = ULONG_MAX;
3381 struct sched_group *group_min = NULL, *group_leader = NULL;
3382#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
3384 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003385 busiest_load_per_task = busiest_nr_running = 0;
3386 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003387 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003388 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003389 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003390 load_idx = sd->newidle_idx;
3391 else
3392 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
3394 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003395 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 int local_group;
3397 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003398 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003399 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003400 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
3402 local_group = cpu_isset(this_cpu, group->cpumask);
3403
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003404 if (local_group)
3405 balance_cpu = first_cpu(group->cpumask);
3406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003408 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003409 max_cpu_load = 0;
3410 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
3412 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003413 struct rq *rq;
3414
3415 if (!cpu_isset(i, *cpus))
3416 continue;
3417
3418 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003419
Suresh Siddha9439aab2007-07-19 21:28:35 +02003420 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003421 *sd_idle = 0;
3422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003424 if (local_group) {
3425 if (idle_cpu(i) && !first_idle_cpu) {
3426 first_idle_cpu = 1;
3427 balance_cpu = i;
3428 }
3429
Nick Piggina2000572006-02-10 01:51:02 -08003430 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003431 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003432 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003433 if (load > max_cpu_load)
3434 max_cpu_load = load;
3435 if (min_cpu_load > load)
3436 min_cpu_load = load;
3437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
3439 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003440 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003441 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 }
3443
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003444 /*
3445 * First idle cpu or the first cpu(busiest) in this sched group
3446 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003447 * domains. In the newly idle case, we will allow all the cpu's
3448 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003449 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003450 if (idle != CPU_NEWLY_IDLE && local_group &&
3451 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003452 *balance = 0;
3453 goto ret;
3454 }
3455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003457 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
3459 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003460 avg_load = sg_div_cpu_power(group,
3461 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Ken Chen908a7c12007-10-17 16:55:11 +02003463 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3464 __group_imb = 1;
3465
Eric Dumazet5517d862007-05-08 00:32:57 -07003466 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 if (local_group) {
3469 this_load = avg_load;
3470 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003471 this_nr_running = sum_nr_running;
3472 this_load_per_task = sum_weighted_load;
3473 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003474 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 max_load = avg_load;
3476 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003477 busiest_nr_running = sum_nr_running;
3478 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003479 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003481
3482#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3483 /*
3484 * Busy processors will not participate in power savings
3485 * balance.
3486 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003487 if (idle == CPU_NOT_IDLE ||
3488 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3489 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003490
3491 /*
3492 * If the local group is idle or completely loaded
3493 * no need to do power savings balance at this domain
3494 */
3495 if (local_group && (this_nr_running >= group_capacity ||
3496 !this_nr_running))
3497 power_savings_balance = 0;
3498
Ingo Molnardd41f592007-07-09 18:51:59 +02003499 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003500 * If a group is already running at full capacity or idle,
3501 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003502 */
3503 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003504 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003505 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003506
Ingo Molnardd41f592007-07-09 18:51:59 +02003507 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003508 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003509 * This is the group from where we need to pick up the load
3510 * for saving power
3511 */
3512 if ((sum_nr_running < min_nr_running) ||
3513 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003514 first_cpu(group->cpumask) <
3515 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003516 group_min = group;
3517 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003518 min_load_per_task = sum_weighted_load /
3519 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003520 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003521
Ingo Molnardd41f592007-07-09 18:51:59 +02003522 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003523 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003524 * capacity but still has some space to pick up some load
3525 * from other group and save more power
3526 */
3527 if (sum_nr_running <= group_capacity - 1) {
3528 if (sum_nr_running > leader_nr_running ||
3529 (sum_nr_running == leader_nr_running &&
3530 first_cpu(group->cpumask) >
3531 first_cpu(group_leader->cpumask))) {
3532 group_leader = group;
3533 leader_nr_running = sum_nr_running;
3534 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003535 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003536group_next:
3537#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 group = group->next;
3539 } while (group != sd->groups);
3540
Peter Williams2dd73a42006-06-27 02:54:34 -07003541 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 goto out_balanced;
3543
3544 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3545
3546 if (this_load >= avg_load ||
3547 100*max_load <= sd->imbalance_pct*this_load)
3548 goto out_balanced;
3549
Peter Williams2dd73a42006-06-27 02:54:34 -07003550 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003551 if (group_imb)
3552 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 /*
3555 * We're trying to get all the cpus to the average_load, so we don't
3556 * want to push ourselves above the average load, nor do we wish to
3557 * reduce the max loaded cpu below the average load, as either of these
3558 * actions would just result in more rebalancing later, and ping-pong
3559 * tasks around. Thus we look for the minimum possible imbalance.
3560 * Negative imbalances (*we* are more loaded than anyone else) will
3561 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003562 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 * appear as very large values with unsigned longs.
3564 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003565 if (max_load <= busiest_load_per_task)
3566 goto out_balanced;
3567
3568 /*
3569 * In the presence of smp nice balancing, certain scenarios can have
3570 * max load less than avg load(as we skip the groups at or below
3571 * its cpu_power, while calculating max_load..)
3572 */
3573 if (max_load < avg_load) {
3574 *imbalance = 0;
3575 goto small_imbalance;
3576 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003577
3578 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003579 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003580
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003582 *imbalance = min(max_pull * busiest->__cpu_power,
3583 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 / SCHED_LOAD_SCALE;
3585
Peter Williams2dd73a42006-06-27 02:54:34 -07003586 /*
3587 * if *imbalance is less than the average load per runnable task
3588 * there is no gaurantee that any tasks will be moved so we'll have
3589 * a think about bumping its value to force at least one task to be
3590 * moved
3591 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003592 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003593 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003594 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Peter Williams2dd73a42006-06-27 02:54:34 -07003596small_imbalance:
3597 pwr_move = pwr_now = 0;
3598 imbn = 2;
3599 if (this_nr_running) {
3600 this_load_per_task /= this_nr_running;
3601 if (busiest_load_per_task > this_load_per_task)
3602 imbn = 1;
3603 } else
3604 this_load_per_task = SCHED_LOAD_SCALE;
3605
Ingo Molnardd41f592007-07-09 18:51:59 +02003606 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3607 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003608 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 return busiest;
3610 }
3611
3612 /*
3613 * OK, we don't have enough imbalance to justify moving tasks,
3614 * however we may be able to increase total CPU power used by
3615 * moving them.
3616 */
3617
Eric Dumazet5517d862007-05-08 00:32:57 -07003618 pwr_now += busiest->__cpu_power *
3619 min(busiest_load_per_task, max_load);
3620 pwr_now += this->__cpu_power *
3621 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 pwr_now /= SCHED_LOAD_SCALE;
3623
3624 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003625 tmp = sg_div_cpu_power(busiest,
3626 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003628 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003629 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
3631 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003632 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003633 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003634 tmp = sg_div_cpu_power(this,
3635 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003637 tmp = sg_div_cpu_power(this,
3638 busiest_load_per_task * SCHED_LOAD_SCALE);
3639 pwr_move += this->__cpu_power *
3640 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 pwr_move /= SCHED_LOAD_SCALE;
3642
3643 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003644 if (pwr_move > pwr_now)
3645 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 }
3647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 return busiest;
3649
3650out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003651#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003652 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003653 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003655 if (this == group_leader && group_leader != group_min) {
3656 *imbalance = min_load_per_task;
3657 return group_min;
3658 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003659#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003660ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 *imbalance = 0;
3662 return NULL;
3663}
3664
3665/*
3666 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3667 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003668static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003669find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003670 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003672 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003673 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 int i;
3675
3676 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003677 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003678
3679 if (!cpu_isset(i, *cpus))
3680 continue;
3681
Ingo Molnar48f24c42006-07-03 00:25:40 -07003682 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003683 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
Ingo Molnardd41f592007-07-09 18:51:59 +02003685 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003686 continue;
3687
Ingo Molnardd41f592007-07-09 18:51:59 +02003688 if (wl > max_load) {
3689 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003690 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 }
3692 }
3693
3694 return busiest;
3695}
3696
3697/*
Nick Piggin77391d72005-06-25 14:57:30 -07003698 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3699 * so long as it is large enough.
3700 */
3701#define MAX_PINNED_INTERVAL 512
3702
3703/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3705 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003707static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003708 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003709 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710{
Peter Williams43010652007-08-09 11:16:46 +02003711 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003714 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003715 unsigned long flags;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003716 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003717
Mike Travis7c16ec52008-04-04 18:11:11 -07003718 cpus_setall(*cpus);
3719
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003720 unlock_aggregate = get_aggregate(sd);
3721
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003722 /*
3723 * When power savings policy is enabled for the parent domain, idle
3724 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003725 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003726 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003727 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003728 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003729 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003730 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Ingo Molnar2d723762007-10-15 17:00:12 +02003732 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003734redo:
3735 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003736 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003737
Chen, Kenneth W06066712006-12-10 02:20:35 -08003738 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003739 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003740
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 if (!group) {
3742 schedstat_inc(sd, lb_nobusyg[idle]);
3743 goto out_balanced;
3744 }
3745
Mike Travis7c16ec52008-04-04 18:11:11 -07003746 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 if (!busiest) {
3748 schedstat_inc(sd, lb_nobusyq[idle]);
3749 goto out_balanced;
3750 }
3751
Nick Piggindb935db2005-06-25 14:57:11 -07003752 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
3754 schedstat_add(sd, lb_imbalance[idle], imbalance);
3755
Peter Williams43010652007-08-09 11:16:46 +02003756 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 if (busiest->nr_running > 1) {
3758 /*
3759 * Attempt to move tasks. If find_busiest_group has found
3760 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003761 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 * correctly treated as an imbalance.
3763 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003764 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003765 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003766 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003767 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003768 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003769 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003770
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003771 /*
3772 * some other cpu did the load balance for us.
3773 */
Peter Williams43010652007-08-09 11:16:46 +02003774 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003775 resched_cpu(this_cpu);
3776
Nick Piggin81026792005-06-25 14:57:07 -07003777 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003778 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003779 cpu_clear(cpu_of(busiest), *cpus);
3780 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003781 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003782 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 }
Nick Piggin81026792005-06-25 14:57:07 -07003785
Peter Williams43010652007-08-09 11:16:46 +02003786 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 schedstat_inc(sd, lb_failed[idle]);
3788 sd->nr_balance_failed++;
3789
3790 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003792 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003793
3794 /* don't kick the migration_thread, if the curr
3795 * task on busiest cpu can't be moved to this_cpu
3796 */
3797 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003798 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003799 all_pinned = 1;
3800 goto out_one_pinned;
3801 }
3802
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 if (!busiest->active_balance) {
3804 busiest->active_balance = 1;
3805 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003806 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003808 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003809 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 wake_up_process(busiest->migration_thread);
3811
3812 /*
3813 * We've kicked active balancing, reset the failure
3814 * counter.
3815 */
Nick Piggin39507452005-06-25 14:57:09 -07003816 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 }
Nick Piggin81026792005-06-25 14:57:07 -07003818 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 sd->nr_balance_failed = 0;
3820
Nick Piggin81026792005-06-25 14:57:07 -07003821 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 /* We were unbalanced, so reset the balancing interval */
3823 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003824 } else {
3825 /*
3826 * If we've begun active balancing, start to back off. This
3827 * case may not be covered by the all_pinned logic if there
3828 * is only 1 task on the busy runqueue (because we don't call
3829 * move_tasks).
3830 */
3831 if (sd->balance_interval < sd->max_interval)
3832 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 }
3834
Peter Williams43010652007-08-09 11:16:46 +02003835 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003836 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003837 ld_moved = -1;
3838
3839 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
3841out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 schedstat_inc(sd, lb_balanced[idle]);
3843
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003844 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003845
3846out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003848 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3849 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 sd->balance_interval *= 2;
3851
Ingo Molnar48f24c42006-07-03 00:25:40 -07003852 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003853 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003854 ld_moved = -1;
3855 else
3856 ld_moved = 0;
3857out:
3858 if (unlock_aggregate)
3859 put_aggregate(sd);
3860 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861}
3862
3863/*
3864 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3865 * tasks if there is an imbalance.
3866 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003867 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 * this_rq is locked.
3869 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003870static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003871load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3872 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873{
3874 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003875 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003877 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003878 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003879 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003880
3881 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003882
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003883 /*
3884 * When power savings policy is enabled for the parent domain, idle
3885 * sibling can pick up load irrespective of busy siblings. In this case,
3886 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003887 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003888 */
3889 if (sd->flags & SD_SHARE_CPUPOWER &&
3890 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003891 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Ingo Molnar2d723762007-10-15 17:00:12 +02003893 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003894redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003895 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003896 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003898 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003899 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 }
3901
Mike Travis7c16ec52008-04-04 18:11:11 -07003902 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003903 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003904 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003905 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 }
3907
Nick Piggindb935db2005-06-25 14:57:11 -07003908 BUG_ON(busiest == this_rq);
3909
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003910 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003911
Peter Williams43010652007-08-09 11:16:46 +02003912 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003913 if (busiest->nr_running > 1) {
3914 /* Attempt to move tasks */
3915 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003916 /* this_rq->clock is already updated */
3917 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003918 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003919 imbalance, sd, CPU_NEWLY_IDLE,
3920 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003921 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003922
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003923 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003924 cpu_clear(cpu_of(busiest), *cpus);
3925 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003926 goto redo;
3927 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003928 }
3929
Peter Williams43010652007-08-09 11:16:46 +02003930 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003931 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003932 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3933 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003934 return -1;
3935 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003936 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
Peter Williams43010652007-08-09 11:16:46 +02003938 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003939
3940out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003941 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003942 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003943 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003944 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003945 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003946
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003947 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948}
3949
3950/*
3951 * idle_balance is called by schedule() if this_cpu is about to become
3952 * idle. Attempts to pull tasks from other CPUs.
3953 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003954static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
3956 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003957 int pulled_task = -1;
3958 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003959 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
3961 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003962 unsigned long interval;
3963
3964 if (!(sd->flags & SD_LOAD_BALANCE))
3965 continue;
3966
3967 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003968 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003969 pulled_task = load_balance_newidle(this_cpu, this_rq,
3970 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003971
3972 interval = msecs_to_jiffies(sd->balance_interval);
3973 if (time_after(next_balance, sd->last_balance + interval))
3974 next_balance = sd->last_balance + interval;
3975 if (pulled_task)
3976 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003978 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003979 /*
3980 * We are going idle. next_balance may be set based on
3981 * a busy processor. So reset next_balance.
3982 */
3983 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985}
3986
3987/*
3988 * active_load_balance is run by migration threads. It pushes running tasks
3989 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3990 * running on each physical CPU where possible, and avoids physical /
3991 * logical imbalances.
3992 *
3993 * Called with busiest_rq locked.
3994 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003995static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996{
Nick Piggin39507452005-06-25 14:57:09 -07003997 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003998 struct sched_domain *sd;
3999 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07004000
Ingo Molnar48f24c42006-07-03 00:25:40 -07004001 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07004002 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07004003 return;
4004
4005 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
4007 /*
Nick Piggin39507452005-06-25 14:57:09 -07004008 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004009 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07004010 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 */
Nick Piggin39507452005-06-25 14:57:09 -07004012 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Nick Piggin39507452005-06-25 14:57:09 -07004014 /* move a task from busiest_rq to target_rq */
4015 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004016 update_rq_clock(busiest_rq);
4017 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Nick Piggin39507452005-06-25 14:57:09 -07004019 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07004020 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07004021 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004022 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07004023 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07004024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Ingo Molnar48f24c42006-07-03 00:25:40 -07004026 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004027 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
Peter Williams43010652007-08-09 11:16:46 +02004029 if (move_one_task(target_rq, target_cpu, busiest_rq,
4030 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07004031 schedstat_inc(sd, alb_pushed);
4032 else
4033 schedstat_inc(sd, alb_failed);
4034 }
Nick Piggin39507452005-06-25 14:57:09 -07004035 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036}
4037
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004038#ifdef CONFIG_NO_HZ
4039static struct {
4040 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004041 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004042} nohz ____cacheline_aligned = {
4043 .load_balancer = ATOMIC_INIT(-1),
4044 .cpu_mask = CPU_MASK_NONE,
4045};
4046
Christoph Lameter7835b982006-12-10 02:20:22 -08004047/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004048 * This routine will try to nominate the ilb (idle load balancing)
4049 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
4050 * load balancing on behalf of all those cpus. If all the cpus in the system
4051 * go into this tickless mode, then there will be no ilb owner (as there is
4052 * no need for one) and all the cpus will sleep till the next wakeup event
4053 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08004054 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004055 * For the ilb owner, tick is not stopped. And this tick will be used
4056 * for idle load balancing. ilb owner will still be part of
4057 * nohz.cpu_mask..
4058 *
4059 * While stopping the tick, this cpu will become the ilb owner if there
4060 * is no other owner. And will be the owner till that cpu becomes busy
4061 * or if all cpus in the system stop their ticks at which point
4062 * there is no need for ilb owner.
4063 *
4064 * When the ilb owner becomes busy, it nominates another owner, during the
4065 * next busy scheduler_tick()
4066 */
4067int select_nohz_load_balancer(int stop_tick)
4068{
4069 int cpu = smp_processor_id();
4070
4071 if (stop_tick) {
4072 cpu_set(cpu, nohz.cpu_mask);
4073 cpu_rq(cpu)->in_nohz_recently = 1;
4074
4075 /*
4076 * If we are going offline and still the leader, give up!
4077 */
4078 if (cpu_is_offline(cpu) &&
4079 atomic_read(&nohz.load_balancer) == cpu) {
4080 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4081 BUG();
4082 return 0;
4083 }
4084
4085 /* time for ilb owner also to sleep */
4086 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4087 if (atomic_read(&nohz.load_balancer) == cpu)
4088 atomic_set(&nohz.load_balancer, -1);
4089 return 0;
4090 }
4091
4092 if (atomic_read(&nohz.load_balancer) == -1) {
4093 /* make me the ilb owner */
4094 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
4095 return 1;
4096 } else if (atomic_read(&nohz.load_balancer) == cpu)
4097 return 1;
4098 } else {
4099 if (!cpu_isset(cpu, nohz.cpu_mask))
4100 return 0;
4101
4102 cpu_clear(cpu, nohz.cpu_mask);
4103
4104 if (atomic_read(&nohz.load_balancer) == cpu)
4105 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4106 BUG();
4107 }
4108 return 0;
4109}
4110#endif
4111
4112static DEFINE_SPINLOCK(balancing);
4113
4114/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004115 * It checks each scheduling domain to see if it is due to be balanced,
4116 * and initiates a balancing operation if so.
4117 *
4118 * Balancing parameters are set up in arch_init_sched_domains.
4119 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004120static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004121{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004122 int balance = 1;
4123 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004124 unsigned long interval;
4125 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004126 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004127 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004128 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07004129 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004131 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 if (!(sd->flags & SD_LOAD_BALANCE))
4133 continue;
4134
4135 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004136 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 interval *= sd->busy_factor;
4138
4139 /* scale ms to jiffies */
4140 interval = msecs_to_jiffies(interval);
4141 if (unlikely(!interval))
4142 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004143 if (interval > HZ*NR_CPUS/10)
4144 interval = HZ*NR_CPUS/10;
4145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
Christoph Lameter08c183f2006-12-10 02:20:29 -08004147 if (sd->flags & SD_SERIALIZE) {
4148 if (!spin_trylock(&balancing))
4149 goto out;
4150 }
4151
Christoph Lameterc9819f42006-12-10 02:20:25 -08004152 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07004153 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004154 /*
4155 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004156 * longer idle, or one of our SMT siblings is
4157 * not idle.
4158 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004159 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004161 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08004163 if (sd->flags & SD_SERIALIZE)
4164 spin_unlock(&balancing);
4165out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004166 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004167 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004168 update_next_balance = 1;
4169 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004170
4171 /*
4172 * Stop the load balance at this level. There is another
4173 * CPU in our sched group which is doing load balancing more
4174 * actively.
4175 */
4176 if (!balance)
4177 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004179
4180 /*
4181 * next_balance will be updated only when there is a need.
4182 * When the cpu is attached to null domain for ex, it will not be
4183 * updated.
4184 */
4185 if (likely(update_next_balance))
4186 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004187}
4188
4189/*
4190 * run_rebalance_domains is triggered when needed from the scheduler tick.
4191 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4192 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4193 */
4194static void run_rebalance_domains(struct softirq_action *h)
4195{
Ingo Molnardd41f592007-07-09 18:51:59 +02004196 int this_cpu = smp_processor_id();
4197 struct rq *this_rq = cpu_rq(this_cpu);
4198 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4199 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004200
Ingo Molnardd41f592007-07-09 18:51:59 +02004201 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004202
4203#ifdef CONFIG_NO_HZ
4204 /*
4205 * If this cpu is the owner for idle load balancing, then do the
4206 * balancing on behalf of the other idle cpus whose ticks are
4207 * stopped.
4208 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004209 if (this_rq->idle_at_tick &&
4210 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004211 cpumask_t cpus = nohz.cpu_mask;
4212 struct rq *rq;
4213 int balance_cpu;
4214
Ingo Molnardd41f592007-07-09 18:51:59 +02004215 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004216 for_each_cpu_mask(balance_cpu, cpus) {
4217 /*
4218 * If this cpu gets work to do, stop the load balancing
4219 * work being done for other cpus. Next load
4220 * balancing owner will pick it up.
4221 */
4222 if (need_resched())
4223 break;
4224
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004225 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004226
4227 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004228 if (time_after(this_rq->next_balance, rq->next_balance))
4229 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004230 }
4231 }
4232#endif
4233}
4234
4235/*
4236 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4237 *
4238 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4239 * idle load balancing owner or decide to stop the periodic load balancing,
4240 * if the whole system is idle.
4241 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004242static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004243{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004244#ifdef CONFIG_NO_HZ
4245 /*
4246 * If we were in the nohz mode recently and busy at the current
4247 * scheduler tick, then check if we need to nominate new idle
4248 * load balancer.
4249 */
4250 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4251 rq->in_nohz_recently = 0;
4252
4253 if (atomic_read(&nohz.load_balancer) == cpu) {
4254 cpu_clear(cpu, nohz.cpu_mask);
4255 atomic_set(&nohz.load_balancer, -1);
4256 }
4257
4258 if (atomic_read(&nohz.load_balancer) == -1) {
4259 /*
4260 * simple selection for now: Nominate the
4261 * first cpu in the nohz list to be the next
4262 * ilb owner.
4263 *
4264 * TBD: Traverse the sched domains and nominate
4265 * the nearest cpu in the nohz.cpu_mask.
4266 */
4267 int ilb = first_cpu(nohz.cpu_mask);
4268
Mike Travis434d53b2008-04-04 18:11:04 -07004269 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004270 resched_cpu(ilb);
4271 }
4272 }
4273
4274 /*
4275 * If this cpu is idle and doing idle load balancing for all the
4276 * cpus with ticks stopped, is it time for that to stop?
4277 */
4278 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4279 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4280 resched_cpu(cpu);
4281 return;
4282 }
4283
4284 /*
4285 * If this cpu is idle and the idle load balancing is done by
4286 * someone else, then no need raise the SCHED_SOFTIRQ
4287 */
4288 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4289 cpu_isset(cpu, nohz.cpu_mask))
4290 return;
4291#endif
4292 if (time_after_eq(jiffies, rq->next_balance))
4293 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294}
Ingo Molnardd41f592007-07-09 18:51:59 +02004295
4296#else /* CONFIG_SMP */
4297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298/*
4299 * on UP we do not need to balance between CPUs:
4300 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004301static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302{
4303}
Ingo Molnardd41f592007-07-09 18:51:59 +02004304
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305#endif
4306
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307DEFINE_PER_CPU(struct kernel_stat, kstat);
4308
4309EXPORT_PER_CPU_SYMBOL(kstat);
4310
4311/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004312 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4313 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004315unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004318 u64 ns, delta_exec;
4319 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004320
Ingo Molnar41b86e92007-07-09 18:51:58 +02004321 rq = task_rq_lock(p, &flags);
4322 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004323 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004324 update_rq_clock(rq);
4325 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004326 if ((s64)delta_exec > 0)
4327 ns += delta_exec;
4328 }
4329 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004330
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 return ns;
4332}
4333
4334/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 * Account user cpu time to a process.
4336 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 * @cputime: the cpu time spent in user space since the last update
4338 */
4339void account_user_time(struct task_struct *p, cputime_t cputime)
4340{
4341 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4342 cputime64_t tmp;
4343
4344 p->utime = cputime_add(p->utime, cputime);
4345
4346 /* Add user time to cpustat. */
4347 tmp = cputime_to_cputime64(cputime);
4348 if (TASK_NICE(p) > 0)
4349 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4350 else
4351 cpustat->user = cputime64_add(cpustat->user, tmp);
4352}
4353
4354/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004355 * Account guest cpu time to a process.
4356 * @p: the process that the cpu time gets accounted to
4357 * @cputime: the cpu time spent in virtual machine since the last update
4358 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004359static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004360{
4361 cputime64_t tmp;
4362 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4363
4364 tmp = cputime_to_cputime64(cputime);
4365
4366 p->utime = cputime_add(p->utime, cputime);
4367 p->gtime = cputime_add(p->gtime, cputime);
4368
4369 cpustat->user = cputime64_add(cpustat->user, tmp);
4370 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4371}
4372
4373/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004374 * Account scaled user cpu time to a process.
4375 * @p: the process that the cpu time gets accounted to
4376 * @cputime: the cpu time spent in user space since the last update
4377 */
4378void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4379{
4380 p->utimescaled = cputime_add(p->utimescaled, cputime);
4381}
4382
4383/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 * Account system cpu time to a process.
4385 * @p: the process that the cpu time gets accounted to
4386 * @hardirq_offset: the offset to subtract from hardirq_count()
4387 * @cputime: the cpu time spent in kernel space since the last update
4388 */
4389void account_system_time(struct task_struct *p, int hardirq_offset,
4390 cputime_t cputime)
4391{
4392 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004393 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 cputime64_t tmp;
4395
Christian Borntraeger97783852007-11-15 20:57:39 +01004396 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
4397 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02004398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 p->stime = cputime_add(p->stime, cputime);
4400
4401 /* Add system time to cpustat. */
4402 tmp = cputime_to_cputime64(cputime);
4403 if (hardirq_count() - hardirq_offset)
4404 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4405 else if (softirq_count())
4406 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004407 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004409 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4411 else
4412 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4413 /* Account for system time used */
4414 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415}
4416
4417/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004418 * Account scaled system cpu time to a process.
4419 * @p: the process that the cpu time gets accounted to
4420 * @hardirq_offset: the offset to subtract from hardirq_count()
4421 * @cputime: the cpu time spent in kernel space since the last update
4422 */
4423void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4424{
4425 p->stimescaled = cputime_add(p->stimescaled, cputime);
4426}
4427
4428/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 * Account for involuntary wait time.
4430 * @p: the process from which the cpu time has been stolen
4431 * @steal: the cpu time spent in involuntary wait
4432 */
4433void account_steal_time(struct task_struct *p, cputime_t steal)
4434{
4435 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4436 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004437 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
4439 if (p == rq->idle) {
4440 p->stime = cputime_add(p->stime, steal);
4441 if (atomic_read(&rq->nr_iowait) > 0)
4442 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4443 else
4444 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004445 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4447}
4448
Christoph Lameter7835b982006-12-10 02:20:22 -08004449/*
4450 * This function gets called by the timer code, with HZ frequency.
4451 * We call it with interrupts disabled.
4452 *
4453 * It also gets called by the fork code, when changing the parent's
4454 * timeslices.
4455 */
4456void scheduler_tick(void)
4457{
Christoph Lameter7835b982006-12-10 02:20:22 -08004458 int cpu = smp_processor_id();
4459 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004460 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02004461 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08004462
Ingo Molnardd41f592007-07-09 18:51:59 +02004463 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02004464 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02004465 /*
4466 * Let rq->clock advance by at least TICK_NSEC:
4467 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01004468 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02004469 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01004470 rq->clock_underflows++;
4471 }
Ingo Molnar529c7722007-08-10 23:05:11 +02004472 rq->tick_timestamp = rq->clock;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02004473 update_last_tick_seen(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004474 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004475 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004476 spin_unlock(&rq->lock);
4477
Christoph Lametere418e1c2006-12-10 02:20:23 -08004478#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004479 rq->idle_at_tick = idle_cpu(cpu);
4480 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004481#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482}
4483
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
4485
Srinivasa Ds43627582008-02-23 15:24:04 -08004486void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487{
4488 /*
4489 * Underflow?
4490 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004491 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4492 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 preempt_count() += val;
4494 /*
4495 * Spinlock count overflowing soon?
4496 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004497 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4498 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499}
4500EXPORT_SYMBOL(add_preempt_count);
4501
Srinivasa Ds43627582008-02-23 15:24:04 -08004502void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503{
4504 /*
4505 * Underflow?
4506 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004507 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4508 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 /*
4510 * Is the spinlock portion underflowing?
4511 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004512 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4513 !(preempt_count() & PREEMPT_MASK)))
4514 return;
4515
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 preempt_count() -= val;
4517}
4518EXPORT_SYMBOL(sub_preempt_count);
4519
4520#endif
4521
4522/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004523 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004525static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526{
Satyam Sharma838225b2007-10-24 18:23:50 +02004527 struct pt_regs *regs = get_irq_regs();
4528
4529 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4530 prev->comm, prev->pid, preempt_count());
4531
Ingo Molnardd41f592007-07-09 18:51:59 +02004532 debug_show_held_locks(prev);
4533 if (irqs_disabled())
4534 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004535
4536 if (regs)
4537 show_regs(regs);
4538 else
4539 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004540}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Ingo Molnardd41f592007-07-09 18:51:59 +02004542/*
4543 * Various schedule()-time debugging checks and statistics:
4544 */
4545static inline void schedule_debug(struct task_struct *prev)
4546{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004548 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 * schedule() atomically, we ignore that path for now.
4550 * Otherwise, whine if we are scheduling when we should not be.
4551 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004552 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
4553 __schedule_bug(prev);
4554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4556
Ingo Molnar2d723762007-10-15 17:00:12 +02004557 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004558#ifdef CONFIG_SCHEDSTATS
4559 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004560 schedstat_inc(this_rq(), bkl_count);
4561 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004562 }
4563#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004564}
4565
4566/*
4567 * Pick up the highest-prio task:
4568 */
4569static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004570pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004571{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004572 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004573 struct task_struct *p;
4574
4575 /*
4576 * Optimization: we know that if all tasks are in
4577 * the fair class we can call that function directly:
4578 */
4579 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004580 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004581 if (likely(p))
4582 return p;
4583 }
4584
4585 class = sched_class_highest;
4586 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004587 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004588 if (p)
4589 return p;
4590 /*
4591 * Will never be NULL as the idle class always
4592 * returns a non-NULL p:
4593 */
4594 class = class->next;
4595 }
4596}
4597
4598/*
4599 * schedule() is the main scheduler function.
4600 */
4601asmlinkage void __sched schedule(void)
4602{
4603 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004604 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004605 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004606 int cpu;
4607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608need_resched:
4609 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004610 cpu = smp_processor_id();
4611 rq = cpu_rq(cpu);
4612 rcu_qsctr_inc(cpu);
4613 prev = rq->curr;
4614 switch_count = &prev->nivcsw;
4615
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 release_kernel_lock(prev);
4617need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
Ingo Molnardd41f592007-07-09 18:51:59 +02004619 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004621 hrtick_clear(rq);
4622
Ingo Molnar1e819952007-10-15 17:00:13 +02004623 /*
4624 * Do the rq-clock update outside the rq lock:
4625 */
4626 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02004627 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004628 spin_lock(&rq->lock);
4629 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630
Ingo Molnardd41f592007-07-09 18:51:59 +02004631 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4632 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004633 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004634 prev->state = TASK_RUNNING;
4635 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004636 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004637 }
4638 switch_count = &prev->nvcsw;
4639 }
4640
Steven Rostedt9a897c52008-01-25 21:08:22 +01004641#ifdef CONFIG_SMP
4642 if (prev->sched_class->pre_schedule)
4643 prev->sched_class->pre_schedule(rq, prev);
4644#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004645
Ingo Molnardd41f592007-07-09 18:51:59 +02004646 if (unlikely(!rq->nr_running))
4647 idle_balance(cpu, rq);
4648
Ingo Molnar31ee5292007-08-09 11:16:49 +02004649 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004650 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
4652 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02004653
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 rq->nr_switches++;
4656 rq->curr = next;
4657 ++*switch_count;
4658
Ingo Molnardd41f592007-07-09 18:51:59 +02004659 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004660 /*
4661 * the context switch might have flipped the stack from under
4662 * us, hence refresh the local variables.
4663 */
4664 cpu = smp_processor_id();
4665 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 } else
4667 spin_unlock_irq(&rq->lock);
4668
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004669 hrtick_set(rq);
4670
4671 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004673
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 preempt_enable_no_resched();
4675 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4676 goto need_resched;
4677}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678EXPORT_SYMBOL(schedule);
4679
4680#ifdef CONFIG_PREEMPT
4681/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004682 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004683 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 * occur there and call schedule directly.
4685 */
4686asmlinkage void __sched preempt_schedule(void)
4687{
4688 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 struct task_struct *task = current;
4690 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004691
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 /*
4693 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004694 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004696 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 return;
4698
Andi Kleen3a5c3592007-10-15 17:00:14 +02004699 do {
4700 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Andi Kleen3a5c3592007-10-15 17:00:14 +02004702 /*
4703 * We keep the big kernel semaphore locked, but we
4704 * clear ->lock_depth so that schedule() doesnt
4705 * auto-release the semaphore:
4706 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004707 saved_lock_depth = task->lock_depth;
4708 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004709 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004710 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004711 sub_preempt_count(PREEMPT_ACTIVE);
4712
4713 /*
4714 * Check again in case we missed a preemption opportunity
4715 * between schedule and now.
4716 */
4717 barrier();
4718 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720EXPORT_SYMBOL(preempt_schedule);
4721
4722/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004723 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 * off of irq context.
4725 * Note, that this is called and return with irqs disabled. This will
4726 * protect us against recursive calling from irq.
4727 */
4728asmlinkage void __sched preempt_schedule_irq(void)
4729{
4730 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 struct task_struct *task = current;
4732 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004733
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004734 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 BUG_ON(ti->preempt_count || !irqs_disabled());
4736
Andi Kleen3a5c3592007-10-15 17:00:14 +02004737 do {
4738 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739
Andi Kleen3a5c3592007-10-15 17:00:14 +02004740 /*
4741 * We keep the big kernel semaphore locked, but we
4742 * clear ->lock_depth so that schedule() doesnt
4743 * auto-release the semaphore:
4744 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004745 saved_lock_depth = task->lock_depth;
4746 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004747 local_irq_enable();
4748 schedule();
4749 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004750 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004751 sub_preempt_count(PREEMPT_ACTIVE);
4752
4753 /*
4754 * Check again in case we missed a preemption opportunity
4755 * between schedule and now.
4756 */
4757 barrier();
4758 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759}
4760
4761#endif /* CONFIG_PREEMPT */
4762
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004763int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4764 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004766 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768EXPORT_SYMBOL(default_wake_function);
4769
4770/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004771 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4772 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 * number) then we wake all the non-exclusive tasks and one exclusive task.
4774 *
4775 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004776 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4778 */
4779static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4780 int nr_exclusive, int sync, void *key)
4781{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004782 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004784 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004785 unsigned flags = curr->flags;
4786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004788 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 break;
4790 }
4791}
4792
4793/**
4794 * __wake_up - wake up threads blocked on a waitqueue.
4795 * @q: the waitqueue
4796 * @mode: which threads
4797 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004798 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004800void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004801 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802{
4803 unsigned long flags;
4804
4805 spin_lock_irqsave(&q->lock, flags);
4806 __wake_up_common(q, mode, nr_exclusive, 0, key);
4807 spin_unlock_irqrestore(&q->lock, flags);
4808}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809EXPORT_SYMBOL(__wake_up);
4810
4811/*
4812 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4813 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004814void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815{
4816 __wake_up_common(q, mode, 1, 0, NULL);
4817}
4818
4819/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004820 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 * @q: the waitqueue
4822 * @mode: which threads
4823 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4824 *
4825 * The sync wakeup differs that the waker knows that it will schedule
4826 * away soon, so while the target thread will be woken up, it will not
4827 * be migrated to another CPU - ie. the two threads are 'synchronized'
4828 * with each other. This can prevent needless bouncing between CPUs.
4829 *
4830 * On UP it can prevent extra preemption.
4831 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004832void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004833__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834{
4835 unsigned long flags;
4836 int sync = 1;
4837
4838 if (unlikely(!q))
4839 return;
4840
4841 if (unlikely(!nr_exclusive))
4842 sync = 0;
4843
4844 spin_lock_irqsave(&q->lock, flags);
4845 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4846 spin_unlock_irqrestore(&q->lock, flags);
4847}
4848EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4849
Ingo Molnarb15136e2007-10-24 18:23:48 +02004850void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851{
4852 unsigned long flags;
4853
4854 spin_lock_irqsave(&x->wait.lock, flags);
4855 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004856 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 spin_unlock_irqrestore(&x->wait.lock, flags);
4858}
4859EXPORT_SYMBOL(complete);
4860
Ingo Molnarb15136e2007-10-24 18:23:48 +02004861void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862{
4863 unsigned long flags;
4864
4865 spin_lock_irqsave(&x->wait.lock, flags);
4866 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004867 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 spin_unlock_irqrestore(&x->wait.lock, flags);
4869}
4870EXPORT_SYMBOL(complete_all);
4871
Andi Kleen8cbbe862007-10-15 17:00:14 +02004872static inline long __sched
4873do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 if (!x->done) {
4876 DECLARE_WAITQUEUE(wait, current);
4877
4878 wait.flags |= WQ_FLAG_EXCLUSIVE;
4879 __add_wait_queue_tail(&x->wait, &wait);
4880 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004881 if ((state == TASK_INTERRUPTIBLE &&
4882 signal_pending(current)) ||
4883 (state == TASK_KILLABLE &&
4884 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004885 __remove_wait_queue(&x->wait, &wait);
4886 return -ERESTARTSYS;
4887 }
4888 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004890 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004892 if (!timeout) {
4893 __remove_wait_queue(&x->wait, &wait);
4894 return timeout;
4895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 } while (!x->done);
4897 __remove_wait_queue(&x->wait, &wait);
4898 }
4899 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004900 return timeout;
4901}
4902
4903static long __sched
4904wait_for_common(struct completion *x, long timeout, int state)
4905{
4906 might_sleep();
4907
4908 spin_lock_irq(&x->wait.lock);
4909 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004911 return timeout;
4912}
4913
Ingo Molnarb15136e2007-10-24 18:23:48 +02004914void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004915{
4916 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917}
4918EXPORT_SYMBOL(wait_for_completion);
4919
Ingo Molnarb15136e2007-10-24 18:23:48 +02004920unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4922{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004923 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924}
4925EXPORT_SYMBOL(wait_for_completion_timeout);
4926
Andi Kleen8cbbe862007-10-15 17:00:14 +02004927int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928{
Andi Kleen51e97992007-10-18 21:32:55 +02004929 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4930 if (t == -ERESTARTSYS)
4931 return t;
4932 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933}
4934EXPORT_SYMBOL(wait_for_completion_interruptible);
4935
Ingo Molnarb15136e2007-10-24 18:23:48 +02004936unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937wait_for_completion_interruptible_timeout(struct completion *x,
4938 unsigned long timeout)
4939{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004940 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941}
4942EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4943
Matthew Wilcox009e5772007-12-06 12:29:54 -05004944int __sched wait_for_completion_killable(struct completion *x)
4945{
4946 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4947 if (t == -ERESTARTSYS)
4948 return t;
4949 return 0;
4950}
4951EXPORT_SYMBOL(wait_for_completion_killable);
4952
Andi Kleen8cbbe862007-10-15 17:00:14 +02004953static long __sched
4954sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004955{
4956 unsigned long flags;
4957 wait_queue_t wait;
4958
4959 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
Andi Kleen8cbbe862007-10-15 17:00:14 +02004961 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
Andi Kleen8cbbe862007-10-15 17:00:14 +02004963 spin_lock_irqsave(&q->lock, flags);
4964 __add_wait_queue(q, &wait);
4965 spin_unlock(&q->lock);
4966 timeout = schedule_timeout(timeout);
4967 spin_lock_irq(&q->lock);
4968 __remove_wait_queue(q, &wait);
4969 spin_unlock_irqrestore(&q->lock, flags);
4970
4971 return timeout;
4972}
4973
4974void __sched interruptible_sleep_on(wait_queue_head_t *q)
4975{
4976 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978EXPORT_SYMBOL(interruptible_sleep_on);
4979
Ingo Molnar0fec1712007-07-09 18:52:01 +02004980long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004981interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004983 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4986
Ingo Molnar0fec1712007-07-09 18:52:01 +02004987void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004989 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991EXPORT_SYMBOL(sleep_on);
4992
Ingo Molnar0fec1712007-07-09 18:52:01 +02004993long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004995 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997EXPORT_SYMBOL(sleep_on_timeout);
4998
Ingo Molnarb29739f2006-06-27 02:54:51 -07004999#ifdef CONFIG_RT_MUTEXES
5000
5001/*
5002 * rt_mutex_setprio - set the current priority of a task
5003 * @p: task
5004 * @prio: prio value (kernel-internal form)
5005 *
5006 * This function changes the 'effective' priority of a task. It does
5007 * not touch ->normal_prio like __setscheduler().
5008 *
5009 * Used by the rt_mutex code to implement priority inheritance logic.
5010 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005011void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07005012{
5013 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005014 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005015 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01005016 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005017
5018 BUG_ON(prio < 0 || prio > MAX_PRIO);
5019
5020 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005021 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005022
Andrew Mortond5f9f942007-05-08 20:27:06 -07005023 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005024 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005025 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005026 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005027 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005028 if (running)
5029 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02005030
5031 if (rt_prio(prio))
5032 p->sched_class = &rt_sched_class;
5033 else
5034 p->sched_class = &fair_sched_class;
5035
Ingo Molnarb29739f2006-06-27 02:54:51 -07005036 p->prio = prio;
5037
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005038 if (running)
5039 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005040 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005041 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005042
5043 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005044 }
5045 task_rq_unlock(rq, &flags);
5046}
5047
5048#endif
5049
Ingo Molnar36c8b582006-07-03 00:25:41 -07005050void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051{
Ingo Molnardd41f592007-07-09 18:51:59 +02005052 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005054 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
5056 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
5057 return;
5058 /*
5059 * We have to be careful, if called from sys_setpriority(),
5060 * the task might be in the middle of scheduling on another CPU.
5061 */
5062 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005063 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064 /*
5065 * The RT priorities are set via sched_setscheduler(), but we still
5066 * allow the 'normal' nice value to be set - but as expected
5067 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02005068 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 */
Ingo Molnare05606d2007-07-09 18:51:59 +02005070 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 p->static_prio = NICE_TO_PRIO(nice);
5072 goto out_unlock;
5073 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005074 on_rq = p->se.on_rq;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02005075 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005076 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07005079 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005080 old_prio = p->prio;
5081 p->prio = effective_prio(p);
5082 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
Ingo Molnardd41f592007-07-09 18:51:59 +02005084 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005085 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005087 * If the task increased its priority or is running and
5088 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005090 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091 resched_task(rq->curr);
5092 }
5093out_unlock:
5094 task_rq_unlock(rq, &flags);
5095}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096EXPORT_SYMBOL(set_user_nice);
5097
Matt Mackalle43379f2005-05-01 08:59:00 -07005098/*
5099 * can_nice - check if a task can reduce its nice value
5100 * @p: task
5101 * @nice: nice value
5102 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005103int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005104{
Matt Mackall024f4742005-08-18 11:24:19 -07005105 /* convert nice value [19,-20] to rlimit style value [1,40] */
5106 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005107
Matt Mackalle43379f2005-05-01 08:59:00 -07005108 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5109 capable(CAP_SYS_NICE));
5110}
5111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112#ifdef __ARCH_WANT_SYS_NICE
5113
5114/*
5115 * sys_nice - change the priority of the current process.
5116 * @increment: priority increment
5117 *
5118 * sys_setpriority is a more generic, but much slower function that
5119 * does similar things.
5120 */
5121asmlinkage long sys_nice(int increment)
5122{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005123 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
5125 /*
5126 * Setpriority might change our priority at the same moment.
5127 * We don't have to worry. Conceptually one call occurs first
5128 * and we have a single winner.
5129 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005130 if (increment < -40)
5131 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 if (increment > 40)
5133 increment = 40;
5134
5135 nice = PRIO_TO_NICE(current->static_prio) + increment;
5136 if (nice < -20)
5137 nice = -20;
5138 if (nice > 19)
5139 nice = 19;
5140
Matt Mackalle43379f2005-05-01 08:59:00 -07005141 if (increment < 0 && !can_nice(current, nice))
5142 return -EPERM;
5143
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 retval = security_task_setnice(current, nice);
5145 if (retval)
5146 return retval;
5147
5148 set_user_nice(current, nice);
5149 return 0;
5150}
5151
5152#endif
5153
5154/**
5155 * task_prio - return the priority value of a given task.
5156 * @p: the task in question.
5157 *
5158 * This is the priority value as seen by users in /proc.
5159 * RT tasks are offset by -200. Normal tasks are centered
5160 * around 0, value goes from -16 to +15.
5161 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005162int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163{
5164 return p->prio - MAX_RT_PRIO;
5165}
5166
5167/**
5168 * task_nice - return the nice value of a given task.
5169 * @p: the task in question.
5170 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005171int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172{
5173 return TASK_NICE(p);
5174}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005175EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
5177/**
5178 * idle_cpu - is a given cpu idle currently?
5179 * @cpu: the processor in question.
5180 */
5181int idle_cpu(int cpu)
5182{
5183 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5184}
5185
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186/**
5187 * idle_task - return the idle task for a given cpu.
5188 * @cpu: the processor in question.
5189 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005190struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191{
5192 return cpu_rq(cpu)->idle;
5193}
5194
5195/**
5196 * find_process_by_pid - find a process with a matching PID value.
5197 * @pid: the pid in question.
5198 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005199static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005201 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202}
5203
5204/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005205static void
5206__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207{
Ingo Molnardd41f592007-07-09 18:51:59 +02005208 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005209
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005211 switch (p->policy) {
5212 case SCHED_NORMAL:
5213 case SCHED_BATCH:
5214 case SCHED_IDLE:
5215 p->sched_class = &fair_sched_class;
5216 break;
5217 case SCHED_FIFO:
5218 case SCHED_RR:
5219 p->sched_class = &rt_sched_class;
5220 break;
5221 }
5222
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005224 p->normal_prio = normal_prio(p);
5225 /* we are holding p->pi_lock already */
5226 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005227 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228}
5229
5230/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005231 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 * @p: the task in question.
5233 * @policy: new policy.
5234 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005235 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005236 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005238int sched_setscheduler(struct task_struct *p, int policy,
5239 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005241 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005243 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005244 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245
Steven Rostedt66e53932006-06-27 02:54:44 -07005246 /* may grab non-irq protected spin_locks */
5247 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248recheck:
5249 /* double check policy once rq lock held */
5250 if (policy < 0)
5251 policy = oldpolicy = p->policy;
5252 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005253 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5254 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005255 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 /*
5257 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005258 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5259 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 */
5261 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005262 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005263 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005265 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 return -EINVAL;
5267
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005268 /*
5269 * Allow unprivileged RT tasks to decrease priority:
5270 */
5271 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005272 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005273 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005274
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005275 if (!lock_task_sighand(p, &flags))
5276 return -ESRCH;
5277 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5278 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005279
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005280 /* can't set/change the rt policy */
5281 if (policy != p->policy && !rlim_rtprio)
5282 return -EPERM;
5283
5284 /* can't increase priority */
5285 if (param->sched_priority > p->rt_priority &&
5286 param->sched_priority > rlim_rtprio)
5287 return -EPERM;
5288 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005289 /*
5290 * Like positive nice levels, dont allow tasks to
5291 * move out of SCHED_IDLE either:
5292 */
5293 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5294 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005295
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005296 /* can't change other user's priorities */
5297 if ((current->euid != p->euid) &&
5298 (current->euid != p->uid))
5299 return -EPERM;
5300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005302#ifdef CONFIG_RT_GROUP_SCHED
5303 /*
5304 * Do not allow realtime tasks into groups that have no runtime
5305 * assigned.
5306 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005307 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005308 return -EPERM;
5309#endif
5310
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311 retval = security_task_setscheduler(p, policy, param);
5312 if (retval)
5313 return retval;
5314 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005315 * make sure no PI-waiters arrive (or leave) while we are
5316 * changing the priority of the task:
5317 */
5318 spin_lock_irqsave(&p->pi_lock, flags);
5319 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 * To be able to change p->policy safely, the apropriate
5321 * runqueue lock must be held.
5322 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005323 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 /* recheck policy now with rq lock held */
5325 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5326 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005327 __task_rq_unlock(rq);
5328 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 goto recheck;
5330 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005331 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005332 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005333 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005334 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005335 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005336 if (running)
5337 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005338
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005340 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005341
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005342 if (running)
5343 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005344 if (on_rq) {
5345 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005346
5347 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005349 __task_rq_unlock(rq);
5350 spin_unlock_irqrestore(&p->pi_lock, flags);
5351
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005352 rt_mutex_adjust_pi(p);
5353
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 return 0;
5355}
5356EXPORT_SYMBOL_GPL(sched_setscheduler);
5357
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005358static int
5359do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 struct sched_param lparam;
5362 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005363 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364
5365 if (!param || pid < 0)
5366 return -EINVAL;
5367 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5368 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005369
5370 rcu_read_lock();
5371 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005373 if (p != NULL)
5374 retval = sched_setscheduler(p, policy, &lparam);
5375 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005376
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 return retval;
5378}
5379
5380/**
5381 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5382 * @pid: the pid in question.
5383 * @policy: new policy.
5384 * @param: structure containing the new RT priority.
5385 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005386asmlinkage long
5387sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388{
Jason Baronc21761f2006-01-18 17:43:03 -08005389 /* negative values for policy are not valid */
5390 if (policy < 0)
5391 return -EINVAL;
5392
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 return do_sched_setscheduler(pid, policy, param);
5394}
5395
5396/**
5397 * sys_sched_setparam - set/change the RT priority of a thread
5398 * @pid: the pid in question.
5399 * @param: structure containing the new RT priority.
5400 */
5401asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5402{
5403 return do_sched_setscheduler(pid, -1, param);
5404}
5405
5406/**
5407 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5408 * @pid: the pid in question.
5409 */
5410asmlinkage long sys_sched_getscheduler(pid_t pid)
5411{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005412 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005413 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414
5415 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005416 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
5418 retval = -ESRCH;
5419 read_lock(&tasklist_lock);
5420 p = find_process_by_pid(pid);
5421 if (p) {
5422 retval = security_task_getscheduler(p);
5423 if (!retval)
5424 retval = p->policy;
5425 }
5426 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 return retval;
5428}
5429
5430/**
5431 * sys_sched_getscheduler - get the RT priority of a thread
5432 * @pid: the pid in question.
5433 * @param: structure containing the RT priority.
5434 */
5435asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5436{
5437 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005438 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005439 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
5441 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005442 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
5444 read_lock(&tasklist_lock);
5445 p = find_process_by_pid(pid);
5446 retval = -ESRCH;
5447 if (!p)
5448 goto out_unlock;
5449
5450 retval = security_task_getscheduler(p);
5451 if (retval)
5452 goto out_unlock;
5453
5454 lp.sched_priority = p->rt_priority;
5455 read_unlock(&tasklist_lock);
5456
5457 /*
5458 * This one might sleep, we cannot do it with a spinlock held ...
5459 */
5460 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5461
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 return retval;
5463
5464out_unlock:
5465 read_unlock(&tasklist_lock);
5466 return retval;
5467}
5468
Mike Travisb53e9212008-04-04 18:11:08 -07005469long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005472 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005473 struct task_struct *p;
5474 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005476 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477 read_lock(&tasklist_lock);
5478
5479 p = find_process_by_pid(pid);
5480 if (!p) {
5481 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005482 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 return -ESRCH;
5484 }
5485
5486 /*
5487 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005488 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 * usage count and then drop tasklist_lock.
5490 */
5491 get_task_struct(p);
5492 read_unlock(&tasklist_lock);
5493
5494 retval = -EPERM;
5495 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5496 !capable(CAP_SYS_NICE))
5497 goto out_unlock;
5498
David Quigleye7834f82006-06-23 02:03:59 -07005499 retval = security_task_setscheduler(p, 0, NULL);
5500 if (retval)
5501 goto out_unlock;
5502
Mike Travisf9a86fc2008-04-04 18:11:07 -07005503 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005505 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005506 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507
Paul Menage8707d8b2007-10-18 23:40:22 -07005508 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005509 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005510 if (!cpus_subset(new_mask, cpus_allowed)) {
5511 /*
5512 * We must have raced with a concurrent cpuset
5513 * update. Just reset the cpus_allowed to the
5514 * cpuset's cpus_allowed
5515 */
5516 new_mask = cpus_allowed;
5517 goto again;
5518 }
5519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520out_unlock:
5521 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005522 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523 return retval;
5524}
5525
5526static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5527 cpumask_t *new_mask)
5528{
5529 if (len < sizeof(cpumask_t)) {
5530 memset(new_mask, 0, sizeof(cpumask_t));
5531 } else if (len > sizeof(cpumask_t)) {
5532 len = sizeof(cpumask_t);
5533 }
5534 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5535}
5536
5537/**
5538 * sys_sched_setaffinity - set the cpu affinity of a process
5539 * @pid: pid of the process
5540 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5541 * @user_mask_ptr: user-space pointer to the new cpu mask
5542 */
5543asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5544 unsigned long __user *user_mask_ptr)
5545{
5546 cpumask_t new_mask;
5547 int retval;
5548
5549 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5550 if (retval)
5551 return retval;
5552
Mike Travisb53e9212008-04-04 18:11:08 -07005553 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554}
5555
5556/*
5557 * Represents all cpu's present in the system
5558 * In systems capable of hotplug, this map could dynamically grow
5559 * as new cpu's are detected in the system via any platform specific
5560 * method, such as ACPI for e.g.
5561 */
5562
Andi Kleen4cef0c62006-01-11 22:44:57 +01005563cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564EXPORT_SYMBOL(cpu_present_map);
5565
5566#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005567cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005568EXPORT_SYMBOL(cpu_online_map);
5569
Andi Kleen4cef0c62006-01-11 22:44:57 +01005570cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005571EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572#endif
5573
5574long sched_getaffinity(pid_t pid, cpumask_t *mask)
5575{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005576 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005579 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 read_lock(&tasklist_lock);
5581
5582 retval = -ESRCH;
5583 p = find_process_by_pid(pid);
5584 if (!p)
5585 goto out_unlock;
5586
David Quigleye7834f82006-06-23 02:03:59 -07005587 retval = security_task_getscheduler(p);
5588 if (retval)
5589 goto out_unlock;
5590
Jack Steiner2f7016d2006-02-01 03:05:18 -08005591 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
5593out_unlock:
5594 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005595 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
Ulrich Drepper9531b622007-08-09 11:16:46 +02005597 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598}
5599
5600/**
5601 * sys_sched_getaffinity - get the cpu affinity of a process
5602 * @pid: pid of the process
5603 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5604 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5605 */
5606asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5607 unsigned long __user *user_mask_ptr)
5608{
5609 int ret;
5610 cpumask_t mask;
5611
5612 if (len < sizeof(cpumask_t))
5613 return -EINVAL;
5614
5615 ret = sched_getaffinity(pid, &mask);
5616 if (ret < 0)
5617 return ret;
5618
5619 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5620 return -EFAULT;
5621
5622 return sizeof(cpumask_t);
5623}
5624
5625/**
5626 * sys_sched_yield - yield the current processor to other threads.
5627 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005628 * This function yields the current CPU to other tasks. If there are no
5629 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630 */
5631asmlinkage long sys_sched_yield(void)
5632{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005633 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634
Ingo Molnar2d723762007-10-15 17:00:12 +02005635 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005636 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637
5638 /*
5639 * Since we are going to call schedule() anyway, there's
5640 * no need to preempt or enable interrupts:
5641 */
5642 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005643 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644 _raw_spin_unlock(&rq->lock);
5645 preempt_enable_no_resched();
5646
5647 schedule();
5648
5649 return 0;
5650}
5651
Andrew Mortone7b38402006-06-30 01:56:00 -07005652static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005654#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5655 __might_sleep(__FILE__, __LINE__);
5656#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005657 /*
5658 * The BKS might be reacquired before we have dropped
5659 * PREEMPT_ACTIVE, which could trigger a second
5660 * cond_resched() call.
5661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662 do {
5663 add_preempt_count(PREEMPT_ACTIVE);
5664 schedule();
5665 sub_preempt_count(PREEMPT_ACTIVE);
5666 } while (need_resched());
5667}
5668
Herbert Xu02b67cc2008-01-25 21:08:28 +01005669#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
5670int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671{
Ingo Molnar94142322006-12-29 16:48:13 -08005672 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5673 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 __cond_resched();
5675 return 1;
5676 }
5677 return 0;
5678}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005679EXPORT_SYMBOL(_cond_resched);
5680#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
5682/*
5683 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5684 * call schedule, and on return reacquire the lock.
5685 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005686 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 * operations here to prevent schedule() from being called twice (once via
5688 * spin_unlock(), once by hand).
5689 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005690int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691{
Nick Piggin95c354f2008-01-30 13:31:20 +01005692 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005693 int ret = 0;
5694
Nick Piggin95c354f2008-01-30 13:31:20 +01005695 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005697 if (resched && need_resched())
5698 __cond_resched();
5699 else
5700 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005701 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005704 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706EXPORT_SYMBOL(cond_resched_lock);
5707
5708int __sched cond_resched_softirq(void)
5709{
5710 BUG_ON(!in_softirq());
5711
Ingo Molnar94142322006-12-29 16:48:13 -08005712 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07005713 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714 __cond_resched();
5715 local_bh_disable();
5716 return 1;
5717 }
5718 return 0;
5719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720EXPORT_SYMBOL(cond_resched_softirq);
5721
Linus Torvalds1da177e2005-04-16 15:20:36 -07005722/**
5723 * yield - yield the current processor to other threads.
5724 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005725 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 * thread runnable and calls sys_sched_yield().
5727 */
5728void __sched yield(void)
5729{
5730 set_current_state(TASK_RUNNING);
5731 sys_sched_yield();
5732}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733EXPORT_SYMBOL(yield);
5734
5735/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005736 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737 * that process accounting knows that this is a task in IO wait state.
5738 *
5739 * But don't do that if it is a deliberate, throttling IO wait (this task
5740 * has set its backing_dev_info: the queue against which it should throttle)
5741 */
5742void __sched io_schedule(void)
5743{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005744 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005746 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 atomic_inc(&rq->nr_iowait);
5748 schedule();
5749 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005750 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752EXPORT_SYMBOL(io_schedule);
5753
5754long __sched io_schedule_timeout(long timeout)
5755{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005756 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 long ret;
5758
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005759 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760 atomic_inc(&rq->nr_iowait);
5761 ret = schedule_timeout(timeout);
5762 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005763 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 return ret;
5765}
5766
5767/**
5768 * sys_sched_get_priority_max - return maximum RT priority.
5769 * @policy: scheduling class.
5770 *
5771 * this syscall returns the maximum rt_priority that can be used
5772 * by a given scheduling class.
5773 */
5774asmlinkage long sys_sched_get_priority_max(int policy)
5775{
5776 int ret = -EINVAL;
5777
5778 switch (policy) {
5779 case SCHED_FIFO:
5780 case SCHED_RR:
5781 ret = MAX_USER_RT_PRIO-1;
5782 break;
5783 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005784 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005785 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 ret = 0;
5787 break;
5788 }
5789 return ret;
5790}
5791
5792/**
5793 * sys_sched_get_priority_min - return minimum RT priority.
5794 * @policy: scheduling class.
5795 *
5796 * this syscall returns the minimum rt_priority that can be used
5797 * by a given scheduling class.
5798 */
5799asmlinkage long sys_sched_get_priority_min(int policy)
5800{
5801 int ret = -EINVAL;
5802
5803 switch (policy) {
5804 case SCHED_FIFO:
5805 case SCHED_RR:
5806 ret = 1;
5807 break;
5808 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005809 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005810 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 ret = 0;
5812 }
5813 return ret;
5814}
5815
5816/**
5817 * sys_sched_rr_get_interval - return the default timeslice of a process.
5818 * @pid: pid of the process.
5819 * @interval: userspace pointer to the timeslice value.
5820 *
5821 * this syscall writes the default timeslice value of a given process
5822 * into the user-space timespec buffer. A value of '0' means infinity.
5823 */
5824asmlinkage
5825long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5826{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005827 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005828 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005829 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831
5832 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005833 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834
5835 retval = -ESRCH;
5836 read_lock(&tasklist_lock);
5837 p = find_process_by_pid(pid);
5838 if (!p)
5839 goto out_unlock;
5840
5841 retval = security_task_getscheduler(p);
5842 if (retval)
5843 goto out_unlock;
5844
Ingo Molnar77034932007-12-04 17:04:39 +01005845 /*
5846 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5847 * tasks that are on an otherwise idle runqueue:
5848 */
5849 time_slice = 0;
5850 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005851 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005852 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005853 struct sched_entity *se = &p->se;
5854 unsigned long flags;
5855 struct rq *rq;
5856
5857 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005858 if (rq->cfs.load.weight)
5859 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005860 task_rq_unlock(rq, &flags);
5861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005863 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005866
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867out_unlock:
5868 read_unlock(&tasklist_lock);
5869 return retval;
5870}
5871
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005872static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005873
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005874void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005877 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005880 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005881 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005882#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005884 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005886 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887#else
5888 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005889 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005891 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892#endif
5893#ifdef CONFIG_DEBUG_STACK_USAGE
5894 {
Al Viro10ebffd2005-11-13 16:06:56 -08005895 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896 while (!*n)
5897 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005898 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899 }
5900#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005901 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005902 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005904 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905}
5906
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005907void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005909 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910
Ingo Molnar4bd77322007-07-11 21:21:47 +02005911#if BITS_PER_LONG == 32
5912 printk(KERN_INFO
5913 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005915 printk(KERN_INFO
5916 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917#endif
5918 read_lock(&tasklist_lock);
5919 do_each_thread(g, p) {
5920 /*
5921 * reset the NMI-timeout, listing all files on a slow
5922 * console might take alot of time:
5923 */
5924 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005925 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005926 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 } while_each_thread(g, p);
5928
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005929 touch_all_softlockup_watchdogs();
5930
Ingo Molnardd41f592007-07-09 18:51:59 +02005931#ifdef CONFIG_SCHED_DEBUG
5932 sysrq_sched_debug_show();
5933#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005935 /*
5936 * Only show locks if all tasks are dumped:
5937 */
5938 if (state_filter == -1)
5939 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940}
5941
Ingo Molnar1df21052007-07-09 18:51:58 +02005942void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5943{
Ingo Molnardd41f592007-07-09 18:51:59 +02005944 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005945}
5946
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005947/**
5948 * init_idle - set up an idle thread for a given CPU
5949 * @idle: task in question
5950 * @cpu: cpu the idle task belongs to
5951 *
5952 * NOTE: this function does not set the idle thread's NEED_RESCHED
5953 * flag, to make booting more robust.
5954 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005955void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005957 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958 unsigned long flags;
5959
Ingo Molnardd41f592007-07-09 18:51:59 +02005960 __sched_fork(idle);
5961 idle->se.exec_start = sched_clock();
5962
Ingo Molnarb29739f2006-06-27 02:54:51 -07005963 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005965 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966
5967 spin_lock_irqsave(&rq->lock, flags);
5968 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005969#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5970 idle->oncpu = 1;
5971#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972 spin_unlock_irqrestore(&rq->lock, flags);
5973
5974 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08005975 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005976
Ingo Molnardd41f592007-07-09 18:51:59 +02005977 /*
5978 * The idle tasks have their own, simple scheduling class:
5979 */
5980 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981}
5982
5983/*
5984 * In a system that switches off the HZ timer nohz_cpu_mask
5985 * indicates which cpus entered this state. This is used
5986 * in the rcu update to wait only for active cpus. For system
5987 * which do not switch off the HZ timer nohz_cpu_mask should
5988 * always be CPU_MASK_NONE.
5989 */
5990cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5991
Ingo Molnar19978ca2007-11-09 22:39:38 +01005992/*
5993 * Increase the granularity value when there are more CPUs,
5994 * because with more CPUs the 'effective latency' as visible
5995 * to users decreases. But the relationship is not linear,
5996 * so pick a second-best guess by going with the log2 of the
5997 * number of CPUs.
5998 *
5999 * This idea comes from the SD scheduler of Con Kolivas:
6000 */
6001static inline void sched_init_granularity(void)
6002{
6003 unsigned int factor = 1 + ilog2(num_online_cpus());
6004 const unsigned long limit = 200000000;
6005
6006 sysctl_sched_min_granularity *= factor;
6007 if (sysctl_sched_min_granularity > limit)
6008 sysctl_sched_min_granularity = limit;
6009
6010 sysctl_sched_latency *= factor;
6011 if (sysctl_sched_latency > limit)
6012 sysctl_sched_latency = limit;
6013
6014 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01006015}
6016
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017#ifdef CONFIG_SMP
6018/*
6019 * This is how migration works:
6020 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07006021 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 * runqueue and wake up that CPU's migration thread.
6023 * 2) we down() the locked semaphore => thread blocks.
6024 * 3) migration thread wakes up (implicitly it forces the migrated
6025 * thread off the CPU)
6026 * 4) it gets the migration request and checks whether the migrated
6027 * task is still in the wrong runqueue.
6028 * 5) if it's in the wrong runqueue then the migration thread removes
6029 * it and puts it into the right queue.
6030 * 6) migration thread up()s the semaphore.
6031 * 7) we wake up and the migration is done.
6032 */
6033
6034/*
6035 * Change a given task's CPU affinity. Migrate the thread to a
6036 * proper CPU and schedule it away if the CPU it's executing on
6037 * is removed from the allowed bitmask.
6038 *
6039 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006040 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 * call is not atomic; no spinlocks may be held.
6042 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006043int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006045 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006047 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006048 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049
6050 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006051 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 ret = -EINVAL;
6053 goto out;
6054 }
6055
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006056 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006057 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006058 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006059 p->cpus_allowed = *new_mask;
6060 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006061 }
6062
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006064 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065 goto out;
6066
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006067 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068 /* Need help from migration thread: drop lock and wait. */
6069 task_rq_unlock(rq, &flags);
6070 wake_up_process(rq->migration_thread);
6071 wait_for_completion(&req.done);
6072 tlb_migrate_finish(p->mm);
6073 return 0;
6074 }
6075out:
6076 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006077
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078 return ret;
6079}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006080EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081
6082/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006083 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084 * this because either it can't run here any more (set_cpus_allowed()
6085 * away from this CPU, or CPU going down), or because we're
6086 * attempting to rebalance this task on exec (sched_exec).
6087 *
6088 * So we race with normal scheduler movements, but that's OK, as long
6089 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006090 *
6091 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006093static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006095 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006096 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097
6098 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006099 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100
6101 rq_src = cpu_rq(src_cpu);
6102 rq_dest = cpu_rq(dest_cpu);
6103
6104 double_rq_lock(rq_src, rq_dest);
6105 /* Already moved. */
6106 if (task_cpu(p) != src_cpu)
6107 goto out;
6108 /* Affinity changed (again). */
6109 if (!cpu_isset(dest_cpu, p->cpus_allowed))
6110 goto out;
6111
Ingo Molnardd41f592007-07-09 18:51:59 +02006112 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006113 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006114 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006115
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006117 if (on_rq) {
6118 activate_task(rq_dest, p, 0);
6119 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07006121 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122out:
6123 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006124 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125}
6126
6127/*
6128 * migration_thread - this is a highprio system thread that performs
6129 * thread migration by bumping thread off CPU then 'pushing' onto
6130 * another runqueue.
6131 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006132static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006135 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136
6137 rq = cpu_rq(cpu);
6138 BUG_ON(rq->migration_thread != current);
6139
6140 set_current_state(TASK_INTERRUPTIBLE);
6141 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006142 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145 spin_lock_irq(&rq->lock);
6146
6147 if (cpu_is_offline(cpu)) {
6148 spin_unlock_irq(&rq->lock);
6149 goto wait_to_die;
6150 }
6151
6152 if (rq->active_balance) {
6153 active_load_balance(rq, cpu);
6154 rq->active_balance = 0;
6155 }
6156
6157 head = &rq->migration_queue;
6158
6159 if (list_empty(head)) {
6160 spin_unlock_irq(&rq->lock);
6161 schedule();
6162 set_current_state(TASK_INTERRUPTIBLE);
6163 continue;
6164 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006165 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166 list_del_init(head->next);
6167
Nick Piggin674311d2005-06-25 14:57:27 -07006168 spin_unlock(&rq->lock);
6169 __migrate_task(req->task, cpu, req->dest_cpu);
6170 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171
6172 complete(&req->done);
6173 }
6174 __set_current_state(TASK_RUNNING);
6175 return 0;
6176
6177wait_to_die:
6178 /* Wait for kthread_stop */
6179 set_current_state(TASK_INTERRUPTIBLE);
6180 while (!kthread_should_stop()) {
6181 schedule();
6182 set_current_state(TASK_INTERRUPTIBLE);
6183 }
6184 __set_current_state(TASK_RUNNING);
6185 return 0;
6186}
6187
6188#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006189
6190static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6191{
6192 int ret;
6193
6194 local_irq_disable();
6195 ret = __migrate_task(p, src_cpu, dest_cpu);
6196 local_irq_enable();
6197 return ret;
6198}
6199
Kirill Korotaev054b9102006-12-10 02:20:11 -08006200/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006201 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006202 * NOTE: interrupts should be disabled by the caller
6203 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006204static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006206 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006208 struct rq *rq;
6209 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210
Andi Kleen3a5c3592007-10-15 17:00:14 +02006211 do {
6212 /* On same node? */
6213 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6214 cpus_and(mask, mask, p->cpus_allowed);
6215 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
Andi Kleen3a5c3592007-10-15 17:00:14 +02006217 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006218 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006219 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220
Andi Kleen3a5c3592007-10-15 17:00:14 +02006221 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006222 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006223 cpumask_t cpus_allowed;
6224
6225 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07006226 /*
6227 * Try to stay on the same cpuset, where the
6228 * current cpuset may be a subset of all cpus.
6229 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006230 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07006231 * called within calls to cpuset_lock/cpuset_unlock.
6232 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006233 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07006234 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006235 dest_cpu = any_online_cpu(p->cpus_allowed);
6236 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237
Andi Kleen3a5c3592007-10-15 17:00:14 +02006238 /*
6239 * Don't tell them about moving exiting tasks or
6240 * kernel threads (both mm NULL), since they never
6241 * leave kernel.
6242 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006243 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006244 printk(KERN_INFO "process %d (%s) no "
6245 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006246 task_pid_nr(p), p->comm, dead_cpu);
6247 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006248 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006249 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250}
6251
6252/*
6253 * While a dead CPU has no uninterruptible tasks queued at this point,
6254 * it might still have a nonzero ->nr_uninterruptible counter, because
6255 * for performance reasons the counter is not stricly tracking tasks to
6256 * their home CPUs. So we just add the counter to another CPU's counter,
6257 * to keep the global sum constant after CPU-down:
6258 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006259static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260{
Mike Travis7c16ec52008-04-04 18:11:11 -07006261 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262 unsigned long flags;
6263
6264 local_irq_save(flags);
6265 double_rq_lock(rq_src, rq_dest);
6266 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6267 rq_src->nr_uninterruptible = 0;
6268 double_rq_unlock(rq_src, rq_dest);
6269 local_irq_restore(flags);
6270}
6271
6272/* Run through task list and migrate tasks from the dead cpu. */
6273static void migrate_live_tasks(int src_cpu)
6274{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006275 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006277 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
Ingo Molnar48f24c42006-07-03 00:25:40 -07006279 do_each_thread(t, p) {
6280 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281 continue;
6282
Ingo Molnar48f24c42006-07-03 00:25:40 -07006283 if (task_cpu(p) == src_cpu)
6284 move_task_off_dead_cpu(src_cpu, p);
6285 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006287 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288}
6289
Ingo Molnardd41f592007-07-09 18:51:59 +02006290/*
6291 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006292 * It does so by boosting its priority to highest possible.
6293 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 */
6295void sched_idle_next(void)
6296{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006297 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006298 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299 struct task_struct *p = rq->idle;
6300 unsigned long flags;
6301
6302 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006303 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304
Ingo Molnar48f24c42006-07-03 00:25:40 -07006305 /*
6306 * Strictly not necessary since rest of the CPUs are stopped by now
6307 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308 */
6309 spin_lock_irqsave(&rq->lock, flags);
6310
Ingo Molnardd41f592007-07-09 18:51:59 +02006311 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006312
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006313 update_rq_clock(rq);
6314 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315
6316 spin_unlock_irqrestore(&rq->lock, flags);
6317}
6318
Ingo Molnar48f24c42006-07-03 00:25:40 -07006319/*
6320 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321 * offline.
6322 */
6323void idle_task_exit(void)
6324{
6325 struct mm_struct *mm = current->active_mm;
6326
6327 BUG_ON(cpu_online(smp_processor_id()));
6328
6329 if (mm != &init_mm)
6330 switch_mm(mm, &init_mm, current);
6331 mmdrop(mm);
6332}
6333
Kirill Korotaev054b9102006-12-10 02:20:11 -08006334/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006335static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006337 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338
6339 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006340 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341
6342 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006343 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344
Ingo Molnar48f24c42006-07-03 00:25:40 -07006345 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346
6347 /*
6348 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006349 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350 * fine.
6351 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006352 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006353 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006354 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355
Ingo Molnar48f24c42006-07-03 00:25:40 -07006356 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357}
6358
6359/* release_task() removes task from tasklist, so we won't find dead tasks. */
6360static void migrate_dead_tasks(unsigned int dead_cpu)
6361{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006362 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006363 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364
Ingo Molnardd41f592007-07-09 18:51:59 +02006365 for ( ; ; ) {
6366 if (!rq->nr_running)
6367 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006368 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006369 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006370 if (!next)
6371 break;
6372 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006373
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374 }
6375}
6376#endif /* CONFIG_HOTPLUG_CPU */
6377
Nick Piggine692ab52007-07-26 13:40:43 +02006378#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6379
6380static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006381 {
6382 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006383 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006384 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006385 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006386};
6387
6388static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006389 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006390 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006391 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006392 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006393 .child = sd_ctl_dir,
6394 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006395 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006396};
6397
6398static struct ctl_table *sd_alloc_ctl_entry(int n)
6399{
6400 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006401 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006402
Nick Piggine692ab52007-07-26 13:40:43 +02006403 return entry;
6404}
6405
Milton Miller6382bc92007-10-15 17:00:19 +02006406static void sd_free_ctl_entry(struct ctl_table **tablep)
6407{
Milton Millercd790072007-10-17 16:55:11 +02006408 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006409
Milton Millercd790072007-10-17 16:55:11 +02006410 /*
6411 * In the intermediate directories, both the child directory and
6412 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006413 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02006414 * static strings and all have proc handlers.
6415 */
6416 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006417 if (entry->child)
6418 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02006419 if (entry->proc_handler == NULL)
6420 kfree(entry->procname);
6421 }
Milton Miller6382bc92007-10-15 17:00:19 +02006422
6423 kfree(*tablep);
6424 *tablep = NULL;
6425}
6426
Nick Piggine692ab52007-07-26 13:40:43 +02006427static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006428set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006429 const char *procname, void *data, int maxlen,
6430 mode_t mode, proc_handler *proc_handler)
6431{
Nick Piggine692ab52007-07-26 13:40:43 +02006432 entry->procname = procname;
6433 entry->data = data;
6434 entry->maxlen = maxlen;
6435 entry->mode = mode;
6436 entry->proc_handler = proc_handler;
6437}
6438
6439static struct ctl_table *
6440sd_alloc_ctl_domain_table(struct sched_domain *sd)
6441{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006442 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006443
Milton Millerad1cdc12007-10-15 17:00:19 +02006444 if (table == NULL)
6445 return NULL;
6446
Alexey Dobriyane0361852007-08-09 11:16:46 +02006447 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006448 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006449 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006450 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006451 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006452 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006453 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006454 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006455 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006456 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006457 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006458 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006459 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006460 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006461 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006462 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006463 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006464 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006465 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006466 &sd->cache_nice_tries,
6467 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006468 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006469 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006470 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006471
6472 return table;
6473}
6474
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006475static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006476{
6477 struct ctl_table *entry, *table;
6478 struct sched_domain *sd;
6479 int domain_num = 0, i;
6480 char buf[32];
6481
6482 for_each_domain(cpu, sd)
6483 domain_num++;
6484 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006485 if (table == NULL)
6486 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006487
6488 i = 0;
6489 for_each_domain(cpu, sd) {
6490 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006491 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006492 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006493 entry->child = sd_alloc_ctl_domain_table(sd);
6494 entry++;
6495 i++;
6496 }
6497 return table;
6498}
6499
6500static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006501static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006502{
6503 int i, cpu_num = num_online_cpus();
6504 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6505 char buf[32];
6506
Milton Miller73785472007-10-24 18:23:48 +02006507 WARN_ON(sd_ctl_dir[0].child);
6508 sd_ctl_dir[0].child = entry;
6509
Milton Millerad1cdc12007-10-15 17:00:19 +02006510 if (entry == NULL)
6511 return;
6512
Milton Miller97b6ea72007-10-15 17:00:19 +02006513 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006514 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006515 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006516 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006517 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006518 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006519 }
Milton Miller73785472007-10-24 18:23:48 +02006520
6521 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006522 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6523}
Milton Miller6382bc92007-10-15 17:00:19 +02006524
Milton Miller73785472007-10-24 18:23:48 +02006525/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006526static void unregister_sched_domain_sysctl(void)
6527{
Milton Miller73785472007-10-24 18:23:48 +02006528 if (sd_sysctl_header)
6529 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006530 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006531 if (sd_ctl_dir[0].child)
6532 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006533}
Nick Piggine692ab52007-07-26 13:40:43 +02006534#else
Milton Miller6382bc92007-10-15 17:00:19 +02006535static void register_sched_domain_sysctl(void)
6536{
6537}
6538static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006539{
6540}
6541#endif
6542
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543/*
6544 * migration_call - callback that gets triggered when a CPU is added.
6545 * Here we can start up the necessary migration thread for the new CPU.
6546 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006547static int __cpuinit
6548migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006551 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006553 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554
6555 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006556
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006558 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006559 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560 if (IS_ERR(p))
6561 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562 kthread_bind(p, cpu);
6563 /* Must be high prio: stop_machine expects to yield to it. */
6564 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006565 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 task_rq_unlock(rq, &flags);
6567 cpu_rq(cpu)->migration_thread = p;
6568 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006569
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006571 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006572 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006574
6575 /* Update our root-domain */
6576 rq = cpu_rq(cpu);
6577 spin_lock_irqsave(&rq->lock, flags);
6578 if (rq->rd) {
6579 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6580 cpu_set(cpu, rq->rd->online);
6581 }
6582 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006584
Linus Torvalds1da177e2005-04-16 15:20:36 -07006585#ifdef CONFIG_HOTPLUG_CPU
6586 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006587 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006588 if (!cpu_rq(cpu)->migration_thread)
6589 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006590 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006591 kthread_bind(cpu_rq(cpu)->migration_thread,
6592 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 kthread_stop(cpu_rq(cpu)->migration_thread);
6594 cpu_rq(cpu)->migration_thread = NULL;
6595 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006596
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006598 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006599 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600 migrate_live_tasks(cpu);
6601 rq = cpu_rq(cpu);
6602 kthread_stop(rq->migration_thread);
6603 rq->migration_thread = NULL;
6604 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006605 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006606 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006607 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006609 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6610 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006612 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006613 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614 migrate_nr_uninterruptible(rq);
6615 BUG_ON(rq->nr_running != 0);
6616
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006617 /*
6618 * No need to migrate the tasks: it was best-effort if
6619 * they didn't take sched_hotcpu_mutex. Just wake up
6620 * the requestors.
6621 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 spin_lock_irq(&rq->lock);
6623 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006624 struct migration_req *req;
6625
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006627 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 list_del_init(&req->list);
6629 complete(&req->done);
6630 }
6631 spin_unlock_irq(&rq->lock);
6632 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006633
Gregory Haskins08f503b2008-03-10 17:59:11 -04006634 case CPU_DYING:
6635 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006636 /* Update our root-domain */
6637 rq = cpu_rq(cpu);
6638 spin_lock_irqsave(&rq->lock, flags);
6639 if (rq->rd) {
6640 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6641 cpu_clear(cpu, rq->rd->online);
6642 }
6643 spin_unlock_irqrestore(&rq->lock, flags);
6644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645#endif
6646 }
6647 return NOTIFY_OK;
6648}
6649
6650/* Register at highest priority so that task migration (migrate_all_tasks)
6651 * happens before everything else.
6652 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006653static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654 .notifier_call = migration_call,
6655 .priority = 10
6656};
6657
Adrian Bunke6fe6642007-11-09 22:39:39 +01006658void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659{
6660 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006661 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006662
6663 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006664 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6665 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6667 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668}
6669#endif
6670
6671#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006672
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006673#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006674
Mike Travis7c16ec52008-04-04 18:11:11 -07006675static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6676 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006677{
6678 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006679 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006680
Mike Travis434d53b2008-04-04 18:11:04 -07006681 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006682 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006683
6684 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6685
6686 if (!(sd->flags & SD_LOAD_BALANCE)) {
6687 printk("does not load-balance\n");
6688 if (sd->parent)
6689 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6690 " has parent");
6691 return -1;
6692 }
6693
6694 printk(KERN_CONT "span %s\n", str);
6695
6696 if (!cpu_isset(cpu, sd->span)) {
6697 printk(KERN_ERR "ERROR: domain->span does not contain "
6698 "CPU%d\n", cpu);
6699 }
6700 if (!cpu_isset(cpu, group->cpumask)) {
6701 printk(KERN_ERR "ERROR: domain->groups does not contain"
6702 " CPU%d\n", cpu);
6703 }
6704
6705 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6706 do {
6707 if (!group) {
6708 printk("\n");
6709 printk(KERN_ERR "ERROR: group is NULL\n");
6710 break;
6711 }
6712
6713 if (!group->__cpu_power) {
6714 printk(KERN_CONT "\n");
6715 printk(KERN_ERR "ERROR: domain->cpu_power not "
6716 "set\n");
6717 break;
6718 }
6719
6720 if (!cpus_weight(group->cpumask)) {
6721 printk(KERN_CONT "\n");
6722 printk(KERN_ERR "ERROR: empty group\n");
6723 break;
6724 }
6725
Mike Travis7c16ec52008-04-04 18:11:11 -07006726 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006727 printk(KERN_CONT "\n");
6728 printk(KERN_ERR "ERROR: repeated CPUs\n");
6729 break;
6730 }
6731
Mike Travis7c16ec52008-04-04 18:11:11 -07006732 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006733
Mike Travis434d53b2008-04-04 18:11:04 -07006734 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006735 printk(KERN_CONT " %s", str);
6736
6737 group = group->next;
6738 } while (group != sd->groups);
6739 printk(KERN_CONT "\n");
6740
Mike Travis7c16ec52008-04-04 18:11:11 -07006741 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006742 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6743
Mike Travis7c16ec52008-04-04 18:11:11 -07006744 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006745 printk(KERN_ERR "ERROR: parent span is not a superset "
6746 "of domain->span\n");
6747 return 0;
6748}
6749
Linus Torvalds1da177e2005-04-16 15:20:36 -07006750static void sched_domain_debug(struct sched_domain *sd, int cpu)
6751{
Mike Travis7c16ec52008-04-04 18:11:11 -07006752 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753 int level = 0;
6754
Nick Piggin41c7ce92005-06-25 14:57:24 -07006755 if (!sd) {
6756 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6757 return;
6758 }
6759
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6761
Mike Travis7c16ec52008-04-04 18:11:11 -07006762 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6763 if (!groupmask) {
6764 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6765 return;
6766 }
6767
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006768 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006769 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771 level++;
6772 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006773 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006774 break;
6775 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006776 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777}
6778#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006779# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780#endif
6781
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006782static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006783{
6784 if (cpus_weight(sd->span) == 1)
6785 return 1;
6786
6787 /* Following flags need at least 2 groups */
6788 if (sd->flags & (SD_LOAD_BALANCE |
6789 SD_BALANCE_NEWIDLE |
6790 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006791 SD_BALANCE_EXEC |
6792 SD_SHARE_CPUPOWER |
6793 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006794 if (sd->groups != sd->groups->next)
6795 return 0;
6796 }
6797
6798 /* Following flags don't use groups */
6799 if (sd->flags & (SD_WAKE_IDLE |
6800 SD_WAKE_AFFINE |
6801 SD_WAKE_BALANCE))
6802 return 0;
6803
6804 return 1;
6805}
6806
Ingo Molnar48f24c42006-07-03 00:25:40 -07006807static int
6808sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006809{
6810 unsigned long cflags = sd->flags, pflags = parent->flags;
6811
6812 if (sd_degenerate(parent))
6813 return 1;
6814
6815 if (!cpus_equal(sd->span, parent->span))
6816 return 0;
6817
6818 /* Does parent contain flags not in child? */
6819 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6820 if (cflags & SD_WAKE_AFFINE)
6821 pflags &= ~SD_WAKE_BALANCE;
6822 /* Flags needing groups don't count if only 1 group in parent */
6823 if (parent->groups == parent->groups->next) {
6824 pflags &= ~(SD_LOAD_BALANCE |
6825 SD_BALANCE_NEWIDLE |
6826 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006827 SD_BALANCE_EXEC |
6828 SD_SHARE_CPUPOWER |
6829 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006830 }
6831 if (~cflags & pflags)
6832 return 0;
6833
6834 return 1;
6835}
6836
Gregory Haskins57d885f2008-01-25 21:08:18 +01006837static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6838{
6839 unsigned long flags;
6840 const struct sched_class *class;
6841
6842 spin_lock_irqsave(&rq->lock, flags);
6843
6844 if (rq->rd) {
6845 struct root_domain *old_rd = rq->rd;
6846
Ingo Molnar0eab9142008-01-25 21:08:19 +01006847 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006848 if (class->leave_domain)
6849 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006850 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006851
Gregory Haskinsdc938522008-01-25 21:08:26 +01006852 cpu_clear(rq->cpu, old_rd->span);
6853 cpu_clear(rq->cpu, old_rd->online);
6854
Gregory Haskins57d885f2008-01-25 21:08:18 +01006855 if (atomic_dec_and_test(&old_rd->refcount))
6856 kfree(old_rd);
6857 }
6858
6859 atomic_inc(&rd->refcount);
6860 rq->rd = rd;
6861
Gregory Haskinsdc938522008-01-25 21:08:26 +01006862 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006863 if (cpu_isset(rq->cpu, cpu_online_map))
6864 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006865
Ingo Molnar0eab9142008-01-25 21:08:19 +01006866 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006867 if (class->join_domain)
6868 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006869 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006870
6871 spin_unlock_irqrestore(&rq->lock, flags);
6872}
6873
Gregory Haskinsdc938522008-01-25 21:08:26 +01006874static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006875{
6876 memset(rd, 0, sizeof(*rd));
6877
Gregory Haskinsdc938522008-01-25 21:08:26 +01006878 cpus_clear(rd->span);
6879 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006880}
6881
6882static void init_defrootdomain(void)
6883{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006884 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006885 atomic_set(&def_root_domain.refcount, 1);
6886}
6887
Gregory Haskinsdc938522008-01-25 21:08:26 +01006888static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006889{
6890 struct root_domain *rd;
6891
6892 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6893 if (!rd)
6894 return NULL;
6895
Gregory Haskinsdc938522008-01-25 21:08:26 +01006896 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006897
6898 return rd;
6899}
6900
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006902 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903 * hold the hotplug lock.
6904 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006905static void
6906cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006908 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006909 struct sched_domain *tmp;
6910
6911 /* Remove the sched domains which do not contribute to scheduling. */
6912 for (tmp = sd; tmp; tmp = tmp->parent) {
6913 struct sched_domain *parent = tmp->parent;
6914 if (!parent)
6915 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006916 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006917 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006918 if (parent->parent)
6919 parent->parent->child = tmp;
6920 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006921 }
6922
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006923 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006924 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006925 if (sd)
6926 sd->child = NULL;
6927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928
6929 sched_domain_debug(sd, cpu);
6930
Gregory Haskins57d885f2008-01-25 21:08:18 +01006931 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006932 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933}
6934
6935/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006936static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937
6938/* Setup the mask of cpus configured for isolated domains */
6939static int __init isolated_cpu_setup(char *str)
6940{
6941 int ints[NR_CPUS], i;
6942
6943 str = get_options(str, ARRAY_SIZE(ints), ints);
6944 cpus_clear(cpu_isolated_map);
6945 for (i = 1; i <= ints[0]; i++)
6946 if (ints[i] < NR_CPUS)
6947 cpu_set(ints[i], cpu_isolated_map);
6948 return 1;
6949}
6950
Ingo Molnar8927f492007-10-15 17:00:13 +02006951__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952
6953/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006954 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6955 * to a function which identifies what group(along with sched group) a CPU
6956 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6957 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958 *
6959 * init_sched_build_groups will build a circular linked list of the groups
6960 * covered by the given span, and will set each group's ->cpumask correctly,
6961 * and ->cpu_power to 0.
6962 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006963static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006964init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006965 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006966 struct sched_group **sg,
6967 cpumask_t *tmpmask),
6968 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969{
6970 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971 int i;
6972
Mike Travis7c16ec52008-04-04 18:11:11 -07006973 cpus_clear(*covered);
6974
6975 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006976 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006977 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978 int j;
6979
Mike Travis7c16ec52008-04-04 18:11:11 -07006980 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006981 continue;
6982
Mike Travis7c16ec52008-04-04 18:11:11 -07006983 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006984 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985
Mike Travis7c16ec52008-04-04 18:11:11 -07006986 for_each_cpu_mask(j, *span) {
6987 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006988 continue;
6989
Mike Travis7c16ec52008-04-04 18:11:11 -07006990 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991 cpu_set(j, sg->cpumask);
6992 }
6993 if (!first)
6994 first = sg;
6995 if (last)
6996 last->next = sg;
6997 last = sg;
6998 }
6999 last->next = first;
7000}
7001
John Hawkes9c1cfda2005-09-06 15:18:14 -07007002#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003
John Hawkes9c1cfda2005-09-06 15:18:14 -07007004#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08007005
John Hawkes9c1cfda2005-09-06 15:18:14 -07007006/**
7007 * find_next_best_node - find the next node to include in a sched_domain
7008 * @node: node whose sched_domain we're building
7009 * @used_nodes: nodes already in the sched_domain
7010 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007011 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07007012 * finds the closest node not already in the @used_nodes map.
7013 *
7014 * Should use nodemask_t.
7015 */
Mike Travisc5f59f02008-04-04 18:11:10 -07007016static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007017{
7018 int i, n, val, min_val, best_node = 0;
7019
7020 min_val = INT_MAX;
7021
7022 for (i = 0; i < MAX_NUMNODES; i++) {
7023 /* Start at @node */
7024 n = (node + i) % MAX_NUMNODES;
7025
7026 if (!nr_cpus_node(n))
7027 continue;
7028
7029 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07007030 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007031 continue;
7032
7033 /* Simple min distance search */
7034 val = node_distance(node, n);
7035
7036 if (val < min_val) {
7037 min_val = val;
7038 best_node = n;
7039 }
7040 }
7041
Mike Travisc5f59f02008-04-04 18:11:10 -07007042 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007043 return best_node;
7044}
7045
7046/**
7047 * sched_domain_node_span - get a cpumask for a node's sched_domain
7048 * @node: node whose cpumask we're constructing
John Hawkes9c1cfda2005-09-06 15:18:14 -07007049 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007050 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07007051 * should be one that prevents unnecessary balancing, but also spreads tasks
7052 * out optimally.
7053 */
Mike Travis4bdbaad2008-04-15 16:35:52 -07007054static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007055{
Mike Travisc5f59f02008-04-04 18:11:10 -07007056 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07007057 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007058 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007059
Mike Travis4bdbaad2008-04-15 16:35:52 -07007060 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007061 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007062
Mike Travis4bdbaad2008-04-15 16:35:52 -07007063 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07007064 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007065
7066 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007067 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007068
Mike Travisc5f59f02008-04-04 18:11:10 -07007069 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad2008-04-15 16:35:52 -07007070 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007071 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007072}
7073#endif
7074
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007075int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007076
John Hawkes9c1cfda2005-09-06 15:18:14 -07007077/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07007078 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07007079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080#ifdef CONFIG_SCHED_SMT
7081static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007082static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007083
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007084static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007085cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7086 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007088 if (sg)
7089 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090 return cpu;
7091}
7092#endif
7093
Ingo Molnar48f24c42006-07-03 00:25:40 -07007094/*
7095 * multi-core sched-domains:
7096 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007097#ifdef CONFIG_SCHED_MC
7098static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007099static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007100#endif
7101
7102#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007103static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007104cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7105 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007106{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007107 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007108
7109 *mask = per_cpu(cpu_sibling_map, cpu);
7110 cpus_and(*mask, *mask, *cpu_map);
7111 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007112 if (sg)
7113 *sg = &per_cpu(sched_group_core, group);
7114 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007115}
7116#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007117static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007118cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7119 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007120{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007121 if (sg)
7122 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007123 return cpu;
7124}
7125#endif
7126
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007128static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007129
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007130static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007131cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7132 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007133{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007134 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007135#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07007136 *mask = cpu_coregroup_map(cpu);
7137 cpus_and(*mask, *mask, *cpu_map);
7138 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007139#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07007140 *mask = per_cpu(cpu_sibling_map, cpu);
7141 cpus_and(*mask, *mask, *cpu_map);
7142 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007143#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007144 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007145#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007146 if (sg)
7147 *sg = &per_cpu(sched_group_phys, group);
7148 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149}
7150
7151#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007152/*
7153 * The init_sched_build_groups can't handle what we want to do with node
7154 * groups, so roll our own. Now each node has its own list of groups which
7155 * gets dynamically allocated.
7156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007158static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007159
7160static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007161static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007162
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007163static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007164 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007166 int group;
7167
Mike Travis7c16ec52008-04-04 18:11:11 -07007168 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7169 cpus_and(*nodemask, *nodemask, *cpu_map);
7170 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007171
7172 if (sg)
7173 *sg = &per_cpu(sched_group_allnodes, group);
7174 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007175}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007176
Siddha, Suresh B08069032006-03-27 01:15:23 -08007177static void init_numa_sched_groups_power(struct sched_group *group_head)
7178{
7179 struct sched_group *sg = group_head;
7180 int j;
7181
7182 if (!sg)
7183 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007184 do {
7185 for_each_cpu_mask(j, sg->cpumask) {
7186 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007187
Andi Kleen3a5c3592007-10-15 17:00:14 +02007188 sd = &per_cpu(phys_domains, j);
7189 if (j != first_cpu(sd->groups->cpumask)) {
7190 /*
7191 * Only add "power" once for each
7192 * physical package.
7193 */
7194 continue;
7195 }
7196
7197 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007198 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007199 sg = sg->next;
7200 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007201}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202#endif
7203
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007204#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007205/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007206static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007207{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007208 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007209
7210 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007211 struct sched_group **sched_group_nodes
7212 = sched_group_nodes_bycpu[cpu];
7213
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007214 if (!sched_group_nodes)
7215 continue;
7216
7217 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007218 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7219
Mike Travis7c16ec52008-04-04 18:11:11 -07007220 *nodemask = node_to_cpumask(i);
7221 cpus_and(*nodemask, *nodemask, *cpu_map);
7222 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007223 continue;
7224
7225 if (sg == NULL)
7226 continue;
7227 sg = sg->next;
7228next_sg:
7229 oldsg = sg;
7230 sg = sg->next;
7231 kfree(oldsg);
7232 if (oldsg != sched_group_nodes[i])
7233 goto next_sg;
7234 }
7235 kfree(sched_group_nodes);
7236 sched_group_nodes_bycpu[cpu] = NULL;
7237 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007238}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007239#else
Mike Travis7c16ec52008-04-04 18:11:11 -07007240static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007241{
7242}
7243#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007244
Linus Torvalds1da177e2005-04-16 15:20:36 -07007245/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007246 * Initialize sched groups cpu_power.
7247 *
7248 * cpu_power indicates the capacity of sched group, which is used while
7249 * distributing the load between different sched groups in a sched domain.
7250 * Typically cpu_power for all the groups in a sched domain will be same unless
7251 * there are asymmetries in the topology. If there are asymmetries, group
7252 * having more cpu_power will pickup more load compared to the group having
7253 * less cpu_power.
7254 *
7255 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7256 * the maximum number of tasks a group can handle in the presence of other idle
7257 * or lightly loaded groups in the same sched domain.
7258 */
7259static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7260{
7261 struct sched_domain *child;
7262 struct sched_group *group;
7263
7264 WARN_ON(!sd || !sd->groups);
7265
7266 if (cpu != first_cpu(sd->groups->cpumask))
7267 return;
7268
7269 child = sd->child;
7270
Eric Dumazet5517d862007-05-08 00:32:57 -07007271 sd->groups->__cpu_power = 0;
7272
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007273 /*
7274 * For perf policy, if the groups in child domain share resources
7275 * (for example cores sharing some portions of the cache hierarchy
7276 * or SMT), then set this domain groups cpu_power such that each group
7277 * can handle only one task, when there are other idle groups in the
7278 * same sched domain.
7279 */
7280 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7281 (child->flags &
7282 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007283 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007284 return;
7285 }
7286
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007287 /*
7288 * add cpu_power of each child group to this groups cpu_power
7289 */
7290 group = child->groups;
7291 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007292 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007293 group = group->next;
7294 } while (group != child->groups);
7295}
7296
7297/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007298 * Initializers for schedule domains
7299 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7300 */
7301
7302#define SD_INIT(sd, type) sd_init_##type(sd)
7303#define SD_INIT_FUNC(type) \
7304static noinline void sd_init_##type(struct sched_domain *sd) \
7305{ \
7306 memset(sd, 0, sizeof(*sd)); \
7307 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007308 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007309}
7310
7311SD_INIT_FUNC(CPU)
7312#ifdef CONFIG_NUMA
7313 SD_INIT_FUNC(ALLNODES)
7314 SD_INIT_FUNC(NODE)
7315#endif
7316#ifdef CONFIG_SCHED_SMT
7317 SD_INIT_FUNC(SIBLING)
7318#endif
7319#ifdef CONFIG_SCHED_MC
7320 SD_INIT_FUNC(MC)
7321#endif
7322
7323/*
7324 * To minimize stack usage kmalloc room for cpumasks and share the
7325 * space as the usage in build_sched_domains() dictates. Used only
7326 * if the amount of space is significant.
7327 */
7328struct allmasks {
7329 cpumask_t tmpmask; /* make this one first */
7330 union {
7331 cpumask_t nodemask;
7332 cpumask_t this_sibling_map;
7333 cpumask_t this_core_map;
7334 };
7335 cpumask_t send_covered;
7336
7337#ifdef CONFIG_NUMA
7338 cpumask_t domainspan;
7339 cpumask_t covered;
7340 cpumask_t notcovered;
7341#endif
7342};
7343
7344#if NR_CPUS > 128
7345#define SCHED_CPUMASK_ALLOC 1
7346#define SCHED_CPUMASK_FREE(v) kfree(v)
7347#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7348#else
7349#define SCHED_CPUMASK_ALLOC 0
7350#define SCHED_CPUMASK_FREE(v)
7351#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7352#endif
7353
7354#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7355 ((unsigned long)(a) + offsetof(struct allmasks, v))
7356
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007357static int default_relax_domain_level = -1;
7358
7359static int __init setup_relax_domain_level(char *str)
7360{
7361 default_relax_domain_level = simple_strtoul(str, NULL, 0);
7362 return 1;
7363}
7364__setup("relax_domain_level=", setup_relax_domain_level);
7365
7366static void set_domain_attribute(struct sched_domain *sd,
7367 struct sched_domain_attr *attr)
7368{
7369 int request;
7370
7371 if (!attr || attr->relax_domain_level < 0) {
7372 if (default_relax_domain_level < 0)
7373 return;
7374 else
7375 request = default_relax_domain_level;
7376 } else
7377 request = attr->relax_domain_level;
7378 if (request < sd->level) {
7379 /* turn off idle balance on this domain */
7380 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7381 } else {
7382 /* turn on idle balance on this domain */
7383 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7384 }
7385}
7386
Mike Travis7c16ec52008-04-04 18:11:11 -07007387/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007388 * Build sched domains for a given set of cpus and attach the sched domains
7389 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007391static int __build_sched_domains(const cpumask_t *cpu_map,
7392 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393{
7394 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007395 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007396 SCHED_CPUMASK_DECLARE(allmasks);
7397 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007398#ifdef CONFIG_NUMA
7399 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007400 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007401
7402 /*
7403 * Allocate the per-node list of sched groups
7404 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007405 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007406 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007407 if (!sched_group_nodes) {
7408 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007409 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007410 }
John Hawkesd1b55132005-09-06 15:18:14 -07007411#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412
Gregory Haskinsdc938522008-01-25 21:08:26 +01007413 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007414 if (!rd) {
7415 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007416#ifdef CONFIG_NUMA
7417 kfree(sched_group_nodes);
7418#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007419 return -ENOMEM;
7420 }
7421
Mike Travis7c16ec52008-04-04 18:11:11 -07007422#if SCHED_CPUMASK_ALLOC
7423 /* get space for all scratch cpumask variables */
7424 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7425 if (!allmasks) {
7426 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7427 kfree(rd);
7428#ifdef CONFIG_NUMA
7429 kfree(sched_group_nodes);
7430#endif
7431 return -ENOMEM;
7432 }
7433#endif
7434 tmpmask = (cpumask_t *)allmasks;
7435
7436
7437#ifdef CONFIG_NUMA
7438 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7439#endif
7440
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007442 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007444 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007446 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
Mike Travis7c16ec52008-04-04 18:11:11 -07007448 *nodemask = node_to_cpumask(cpu_to_node(i));
7449 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450
7451#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007452 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007453 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007454 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007455 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007456 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007457 sd->span = *cpu_map;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007458 sd->first_cpu = first_cpu(sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07007459 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007460 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007461 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007462 } else
7463 p = NULL;
7464
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007466 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007467 set_domain_attribute(sd, attr);
Mike Travis4bdbaad2008-04-15 16:35:52 -07007468 sched_domain_node_span(cpu_to_node(i), &sd->span);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007469 sd->first_cpu = first_cpu(sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007470 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007471 if (p)
7472 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007473 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474#endif
7475
7476 p = sd;
7477 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007478 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007479 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007480 sd->span = *nodemask;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007481 sd->first_cpu = first_cpu(sd->span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007483 if (p)
7484 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007485 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007486
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007487#ifdef CONFIG_SCHED_MC
7488 p = sd;
7489 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007490 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007491 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007492 sd->span = cpu_coregroup_map(i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007493 sd->first_cpu = first_cpu(sd->span);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007494 cpus_and(sd->span, sd->span, *cpu_map);
7495 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007496 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007497 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007498#endif
7499
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500#ifdef CONFIG_SCHED_SMT
7501 p = sd;
7502 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007503 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007504 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007505 sd->span = per_cpu(cpu_sibling_map, i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007506 sd->first_cpu = first_cpu(sd->span);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007507 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007509 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007510 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007511#endif
7512 }
7513
7514#ifdef CONFIG_SCHED_SMT
7515 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007516 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007517 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7518 SCHED_CPUMASK_VAR(send_covered, allmasks);
7519
7520 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7521 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7522 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523 continue;
7524
Ingo Molnardd41f592007-07-09 18:51:59 +02007525 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007526 &cpu_to_cpu_group,
7527 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528 }
7529#endif
7530
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007531#ifdef CONFIG_SCHED_MC
7532 /* Set up multi-core groups */
7533 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007534 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7535 SCHED_CPUMASK_VAR(send_covered, allmasks);
7536
7537 *this_core_map = cpu_coregroup_map(i);
7538 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7539 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007540 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007541
Ingo Molnardd41f592007-07-09 18:51:59 +02007542 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007543 &cpu_to_core_group,
7544 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007545 }
7546#endif
7547
Linus Torvalds1da177e2005-04-16 15:20:36 -07007548 /* Set up physical groups */
7549 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007550 SCHED_CPUMASK_VAR(nodemask, allmasks);
7551 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552
Mike Travis7c16ec52008-04-04 18:11:11 -07007553 *nodemask = node_to_cpumask(i);
7554 cpus_and(*nodemask, *nodemask, *cpu_map);
7555 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007556 continue;
7557
Mike Travis7c16ec52008-04-04 18:11:11 -07007558 init_sched_build_groups(nodemask, cpu_map,
7559 &cpu_to_phys_group,
7560 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561 }
7562
7563#ifdef CONFIG_NUMA
7564 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007565 if (sd_allnodes) {
7566 SCHED_CPUMASK_VAR(send_covered, allmasks);
7567
7568 init_sched_build_groups(cpu_map, cpu_map,
7569 &cpu_to_allnodes_group,
7570 send_covered, tmpmask);
7571 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007572
7573 for (i = 0; i < MAX_NUMNODES; i++) {
7574 /* Set up node groups */
7575 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007576 SCHED_CPUMASK_VAR(nodemask, allmasks);
7577 SCHED_CPUMASK_VAR(domainspan, allmasks);
7578 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007579 int j;
7580
Mike Travis7c16ec52008-04-04 18:11:11 -07007581 *nodemask = node_to_cpumask(i);
7582 cpus_clear(*covered);
7583
7584 cpus_and(*nodemask, *nodemask, *cpu_map);
7585 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007586 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007587 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007588 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007589
Mike Travis4bdbaad2008-04-15 16:35:52 -07007590 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007591 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007592
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007593 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007594 if (!sg) {
7595 printk(KERN_WARNING "Can not alloc domain group for "
7596 "node %d\n", i);
7597 goto error;
7598 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007599 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007600 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007601 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007602
John Hawkes9c1cfda2005-09-06 15:18:14 -07007603 sd = &per_cpu(node_domains, j);
7604 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007605 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007606 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007607 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007608 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007609 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007610 prev = sg;
7611
7612 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007613 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007614 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007615 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007616
Mike Travis7c16ec52008-04-04 18:11:11 -07007617 cpus_complement(*notcovered, *covered);
7618 cpus_and(*tmpmask, *notcovered, *cpu_map);
7619 cpus_and(*tmpmask, *tmpmask, *domainspan);
7620 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007621 break;
7622
Mike Travis7c16ec52008-04-04 18:11:11 -07007623 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7624 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007625 continue;
7626
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007627 sg = kmalloc_node(sizeof(struct sched_group),
7628 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007629 if (!sg) {
7630 printk(KERN_WARNING
7631 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007632 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007633 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007634 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007635 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007636 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007637 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007638 prev->next = sg;
7639 prev = sg;
7640 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642#endif
7643
7644 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007645#ifdef CONFIG_SCHED_SMT
7646 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007647 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7648
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007649 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007650 }
7651#endif
7652#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007653 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007654 struct sched_domain *sd = &per_cpu(core_domains, i);
7655
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007656 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007657 }
7658#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007660 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007661 struct sched_domain *sd = &per_cpu(phys_domains, i);
7662
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007663 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664 }
7665
John Hawkes9c1cfda2005-09-06 15:18:14 -07007666#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007667 for (i = 0; i < MAX_NUMNODES; i++)
7668 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007669
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007670 if (sd_allnodes) {
7671 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007672
Mike Travis7c16ec52008-04-04 18:11:11 -07007673 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7674 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007675 init_numa_sched_groups_power(sg);
7676 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007677#endif
7678
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007680 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007681 struct sched_domain *sd;
7682#ifdef CONFIG_SCHED_SMT
7683 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007684#elif defined(CONFIG_SCHED_MC)
7685 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686#else
7687 sd = &per_cpu(phys_domains, i);
7688#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007689 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007691
Mike Travis7c16ec52008-04-04 18:11:11 -07007692 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007693 return 0;
7694
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007695#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007696error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007697 free_sched_groups(cpu_map, tmpmask);
7698 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007699 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007700#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701}
Paul Jackson029190c2007-10-18 23:40:20 -07007702
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007703static int build_sched_domains(const cpumask_t *cpu_map)
7704{
7705 return __build_sched_domains(cpu_map, NULL);
7706}
7707
Paul Jackson029190c2007-10-18 23:40:20 -07007708static cpumask_t *doms_cur; /* current sched domains */
7709static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007710static struct sched_domain_attr *dattr_cur; /* attribues of custom domains
7711 in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007712
7713/*
7714 * Special case: If a kmalloc of a doms_cur partition (array of
7715 * cpumask_t) fails, then fallback to a single sched domain,
7716 * as determined by the single cpumask_t fallback_doms.
7717 */
7718static cpumask_t fallback_doms;
7719
Heiko Carstens22e52b02008-03-12 18:31:59 +01007720void __attribute__((weak)) arch_update_cpu_topology(void)
7721{
7722}
7723
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007724/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007725 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007726 * For now this just excludes isolated cpus, but could be used to
7727 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007728 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007729static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007730{
Milton Miller73785472007-10-24 18:23:48 +02007731 int err;
7732
Heiko Carstens22e52b02008-03-12 18:31:59 +01007733 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007734 ndoms_cur = 1;
7735 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7736 if (!doms_cur)
7737 doms_cur = &fallback_doms;
7738 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007739 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007740 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007741 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007742
7743 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007744}
7745
Mike Travis7c16ec52008-04-04 18:11:11 -07007746static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7747 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748{
Mike Travis7c16ec52008-04-04 18:11:11 -07007749 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007750}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007752/*
7753 * Detach sched domains from a group of cpus specified in cpu_map
7754 * These cpus will now be attached to the NULL domain
7755 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007756static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007757{
Mike Travis7c16ec52008-04-04 18:11:11 -07007758 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007759 int i;
7760
Milton Miller6382bc92007-10-15 17:00:19 +02007761 unregister_sched_domain_sysctl();
7762
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007763 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007764 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007765 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007766 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007767}
7768
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007769/* handle null as "default" */
7770static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7771 struct sched_domain_attr *new, int idx_new)
7772{
7773 struct sched_domain_attr tmp;
7774
7775 /* fast path */
7776 if (!new && !cur)
7777 return 1;
7778
7779 tmp = SD_ATTR_INIT;
7780 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7781 new ? (new + idx_new) : &tmp,
7782 sizeof(struct sched_domain_attr));
7783}
7784
Paul Jackson029190c2007-10-18 23:40:20 -07007785/*
7786 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007787 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007788 * doms_new[] to the current sched domain partitioning, doms_cur[].
7789 * It destroys each deleted domain and builds each new domain.
7790 *
7791 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007792 * The masks don't intersect (don't overlap.) We should setup one
7793 * sched domain for each mask. CPUs not in any of the cpumasks will
7794 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007795 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7796 * it as it is.
7797 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007798 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7799 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007800 * failed the kmalloc call, then it can pass in doms_new == NULL,
7801 * and partition_sched_domains() will fallback to the single partition
7802 * 'fallback_doms'.
7803 *
7804 * Call with hotplug lock held
7805 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007806void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7807 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007808{
7809 int i, j;
7810
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007811 lock_doms_cur();
7812
Milton Miller73785472007-10-24 18:23:48 +02007813 /* always unregister in case we don't destroy any domains */
7814 unregister_sched_domain_sysctl();
7815
Paul Jackson029190c2007-10-18 23:40:20 -07007816 if (doms_new == NULL) {
7817 ndoms_new = 1;
7818 doms_new = &fallback_doms;
7819 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007820 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007821 }
7822
7823 /* Destroy deleted domains */
7824 for (i = 0; i < ndoms_cur; i++) {
7825 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007826 if (cpus_equal(doms_cur[i], doms_new[j])
7827 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007828 goto match1;
7829 }
7830 /* no match - a current sched domain not in new doms_new[] */
7831 detach_destroy_domains(doms_cur + i);
7832match1:
7833 ;
7834 }
7835
7836 /* Build new domains */
7837 for (i = 0; i < ndoms_new; i++) {
7838 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007839 if (cpus_equal(doms_new[i], doms_cur[j])
7840 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007841 goto match2;
7842 }
7843 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007844 __build_sched_domains(doms_new + i,
7845 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007846match2:
7847 ;
7848 }
7849
7850 /* Remember the new sched domains */
7851 if (doms_cur != &fallback_doms)
7852 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007853 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007854 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007855 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007856 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007857
7858 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007859
7860 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07007861}
7862
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007863#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007864int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007865{
7866 int err;
7867
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007868 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007869 detach_destroy_domains(&cpu_online_map);
7870 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007871 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007872
7873 return err;
7874}
7875
7876static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7877{
7878 int ret;
7879
7880 if (buf[0] != '0' && buf[0] != '1')
7881 return -EINVAL;
7882
7883 if (smt)
7884 sched_smt_power_savings = (buf[0] == '1');
7885 else
7886 sched_mc_power_savings = (buf[0] == '1');
7887
7888 ret = arch_reinit_sched_domains();
7889
7890 return ret ? ret : count;
7891}
7892
Adrian Bunk6707de002007-08-12 18:08:19 +02007893#ifdef CONFIG_SCHED_MC
7894static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7895{
7896 return sprintf(page, "%u\n", sched_mc_power_savings);
7897}
7898static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7899 const char *buf, size_t count)
7900{
7901 return sched_power_savings_store(buf, count, 0);
7902}
7903static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7904 sched_mc_power_savings_store);
7905#endif
7906
7907#ifdef CONFIG_SCHED_SMT
7908static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7909{
7910 return sprintf(page, "%u\n", sched_smt_power_savings);
7911}
7912static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7913 const char *buf, size_t count)
7914{
7915 return sched_power_savings_store(buf, count, 1);
7916}
7917static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7918 sched_smt_power_savings_store);
7919#endif
7920
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007921int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7922{
7923 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007924
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007925#ifdef CONFIG_SCHED_SMT
7926 if (smt_capable())
7927 err = sysfs_create_file(&cls->kset.kobj,
7928 &attr_sched_smt_power_savings.attr);
7929#endif
7930#ifdef CONFIG_SCHED_MC
7931 if (!err && mc_capable())
7932 err = sysfs_create_file(&cls->kset.kobj,
7933 &attr_sched_mc_power_savings.attr);
7934#endif
7935 return err;
7936}
7937#endif
7938
Linus Torvalds1da177e2005-04-16 15:20:36 -07007939/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007940 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007941 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007942 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007943 * which will prevent rebalancing while the sched domains are recalculated.
7944 */
7945static int update_sched_domains(struct notifier_block *nfb,
7946 unsigned long action, void *hcpu)
7947{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948 switch (action) {
7949 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007950 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007951 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007952 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007953 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954 return NOTIFY_OK;
7955
7956 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007957 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007959 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007960 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007961 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007962 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007963 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964 /*
7965 * Fall through and re-initialise the domains.
7966 */
7967 break;
7968 default:
7969 return NOTIFY_DONE;
7970 }
7971
7972 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007973 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974
7975 return NOTIFY_OK;
7976}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977
7978void __init sched_init_smp(void)
7979{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007980 cpumask_t non_isolated_cpus;
7981
Mike Travis434d53b2008-04-04 18:11:04 -07007982#if defined(CONFIG_NUMA)
7983 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7984 GFP_KERNEL);
7985 BUG_ON(sched_group_nodes_bycpu == NULL);
7986#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007987 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007988 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007989 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007990 if (cpus_empty(non_isolated_cpus))
7991 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007992 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993 /* XXX: Theoretical race here - CPU may be hotplugged now */
7994 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007995
7996 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007997 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007998 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007999 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000}
8001#else
8002void __init sched_init_smp(void)
8003{
Mike Travis434d53b2008-04-04 18:11:04 -07008004#if defined(CONFIG_NUMA)
8005 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
8006 GFP_KERNEL);
8007 BUG_ON(sched_group_nodes_bycpu == NULL);
8008#endif
Ingo Molnar19978ca2007-11-09 22:39:38 +01008009 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010}
8011#endif /* CONFIG_SMP */
8012
8013int in_sched_functions(unsigned long addr)
8014{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008015 return in_lock_functions(addr) ||
8016 (addr >= (unsigned long)__sched_text_start
8017 && addr < (unsigned long)__sched_text_end);
8018}
8019
Alexey Dobriyana9957442007-10-15 17:00:13 +02008020static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02008021{
8022 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02008023 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02008024#ifdef CONFIG_FAIR_GROUP_SCHED
8025 cfs_rq->rq = rq;
8026#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02008027 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02008028}
8029
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008030static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
8031{
8032 struct rt_prio_array *array;
8033 int i;
8034
8035 array = &rt_rq->active;
8036 for (i = 0; i < MAX_RT_PRIO; i++) {
8037 INIT_LIST_HEAD(array->queue + i);
8038 __clear_bit(i, array->bitmap);
8039 }
8040 /* delimiter for bitsearch: */
8041 __set_bit(MAX_RT_PRIO, array->bitmap);
8042
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008043#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01008044 rt_rq->highest_prio = MAX_RT_PRIO;
8045#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008046#ifdef CONFIG_SMP
8047 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008048 rt_rq->overloaded = 0;
8049#endif
8050
8051 rt_rq->rt_time = 0;
8052 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008053 rt_rq->rt_runtime = 0;
8054 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008055
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008056#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01008057 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008058 rt_rq->rq = rq;
8059#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008060}
8061
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008062#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008063static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8064 struct sched_entity *se, int cpu, int add,
8065 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008066{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008067 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008068 tg->cfs_rq[cpu] = cfs_rq;
8069 init_cfs_rq(cfs_rq, rq);
8070 cfs_rq->tg = tg;
8071 if (add)
8072 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8073
8074 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008075 /* se could be NULL for init_task_group */
8076 if (!se)
8077 return;
8078
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008079 if (!parent)
8080 se->cfs_rq = &rq->cfs;
8081 else
8082 se->cfs_rq = parent->my_q;
8083
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008084 se->my_q = cfs_rq;
8085 se->load.weight = tg->shares;
8086 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008087 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008088}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008089#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008090
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008091#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008092static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8093 struct sched_rt_entity *rt_se, int cpu, int add,
8094 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008095{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008096 struct rq *rq = cpu_rq(cpu);
8097
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008098 tg->rt_rq[cpu] = rt_rq;
8099 init_rt_rq(rt_rq, rq);
8100 rt_rq->tg = tg;
8101 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008102 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008103 if (add)
8104 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8105
8106 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008107 if (!rt_se)
8108 return;
8109
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008110 if (!parent)
8111 rt_se->rt_rq = &rq->rt;
8112 else
8113 rt_se->rt_rq = parent->my_q;
8114
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008115 rt_se->rt_rq = &rq->rt;
8116 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008117 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008118 INIT_LIST_HEAD(&rt_se->run_list);
8119}
8120#endif
8121
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122void __init sched_init(void)
8123{
Ingo Molnardd41f592007-07-09 18:51:59 +02008124 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008125 unsigned long alloc_size = 0, ptr;
8126
8127#ifdef CONFIG_FAIR_GROUP_SCHED
8128 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8129#endif
8130#ifdef CONFIG_RT_GROUP_SCHED
8131 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8132#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008133#ifdef CONFIG_USER_SCHED
8134 alloc_size *= 2;
8135#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008136 /*
8137 * As sched_init() is called before page_alloc is setup,
8138 * we use alloc_bootmem().
8139 */
8140 if (alloc_size) {
8141 ptr = (unsigned long)alloc_bootmem_low(alloc_size);
8142
8143#ifdef CONFIG_FAIR_GROUP_SCHED
8144 init_task_group.se = (struct sched_entity **)ptr;
8145 ptr += nr_cpu_ids * sizeof(void **);
8146
8147 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8148 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008149
8150#ifdef CONFIG_USER_SCHED
8151 root_task_group.se = (struct sched_entity **)ptr;
8152 ptr += nr_cpu_ids * sizeof(void **);
8153
8154 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8155 ptr += nr_cpu_ids * sizeof(void **);
8156#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008157#endif
8158#ifdef CONFIG_RT_GROUP_SCHED
8159 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8160 ptr += nr_cpu_ids * sizeof(void **);
8161
8162 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008163 ptr += nr_cpu_ids * sizeof(void **);
8164
8165#ifdef CONFIG_USER_SCHED
8166 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8167 ptr += nr_cpu_ids * sizeof(void **);
8168
8169 root_task_group.rt_rq = (struct rt_rq **)ptr;
8170 ptr += nr_cpu_ids * sizeof(void **);
8171#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008172#endif
8173 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008174
Gregory Haskins57d885f2008-01-25 21:08:18 +01008175#ifdef CONFIG_SMP
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008176 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008177 init_defrootdomain();
8178#endif
8179
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008180 init_rt_bandwidth(&def_rt_bandwidth,
8181 global_rt_period(), global_rt_runtime());
8182
8183#ifdef CONFIG_RT_GROUP_SCHED
8184 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8185 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008186#ifdef CONFIG_USER_SCHED
8187 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8188 global_rt_period(), RUNTIME_INF);
8189#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008190#endif
8191
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008192#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008193 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008194 INIT_LIST_HEAD(&init_task_group.children);
8195
8196#ifdef CONFIG_USER_SCHED
8197 INIT_LIST_HEAD(&root_task_group.children);
8198 init_task_group.parent = &root_task_group;
8199 list_add(&init_task_group.siblings, &root_task_group.children);
8200#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008201#endif
8202
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008203 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008204 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205
8206 rq = cpu_rq(i);
8207 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008208 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008209 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008210 rq->clock = 1;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02008211 update_last_tick_seen(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02008212 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008213 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008214#ifdef CONFIG_FAIR_GROUP_SCHED
8215 init_task_group.shares = init_task_group_load;
8216 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008217#ifdef CONFIG_CGROUP_SCHED
8218 /*
8219 * How much cpu bandwidth does init_task_group get?
8220 *
8221 * In case of task-groups formed thr' the cgroup filesystem, it
8222 * gets 100% of the cpu resources in the system. This overall
8223 * system cpu resource is divided among the tasks of
8224 * init_task_group and its child task-groups in a fair manner,
8225 * based on each entity's (task or task-group's) weight
8226 * (se->load.weight).
8227 *
8228 * In other words, if init_task_group has 10 tasks of weight
8229 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8230 * then A0's share of the cpu resource is:
8231 *
8232 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8233 *
8234 * We achieve this by letting init_task_group's tasks sit
8235 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8236 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008237 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008238#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008239 root_task_group.shares = NICE_0_LOAD;
8240 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008241 /*
8242 * In case of task-groups formed thr' the user id of tasks,
8243 * init_task_group represents tasks belonging to root user.
8244 * Hence it forms a sibling of all subsequent groups formed.
8245 * In this case, init_task_group gets only a fraction of overall
8246 * system cpu resource, based on the weight assigned to root
8247 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8248 * by letting tasks of init_task_group sit in a separate cfs_rq
8249 * (init_cfs_rq) and having one entity represent this group of
8250 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8251 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008252 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008253 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008254 &per_cpu(init_sched_entity, i), i, 1,
8255 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008256
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008257#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008258#endif /* CONFIG_FAIR_GROUP_SCHED */
8259
8260 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008261#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008262 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008263#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008264 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008265#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008266 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008267 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008268 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008269 &per_cpu(init_sched_rt_entity, i), i, 1,
8270 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008271#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008272#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273
Ingo Molnardd41f592007-07-09 18:51:59 +02008274 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8275 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008277 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008278 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008279 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008280 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008282 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283 rq->migration_thread = NULL;
8284 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008285 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008287 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289 }
8290
Peter Williams2dd73a42006-06-27 02:54:34 -07008291 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008292
Avi Kivitye107be32007-07-26 13:40:43 +02008293#ifdef CONFIG_PREEMPT_NOTIFIERS
8294 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8295#endif
8296
Christoph Lameterc9819f42006-12-10 02:20:25 -08008297#ifdef CONFIG_SMP
8298 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
8299#endif
8300
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008301#ifdef CONFIG_RT_MUTEXES
8302 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8303#endif
8304
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305 /*
8306 * The boot idle thread does lazy MMU switching as well:
8307 */
8308 atomic_inc(&init_mm.mm_count);
8309 enter_lazy_tlb(&init_mm, current);
8310
8311 /*
8312 * Make us the idle thread. Technically, schedule() should not be
8313 * called from this thread, however somewhere below it might be,
8314 * but because we are the idle thread, we just pick up running again
8315 * when this runqueue becomes "idle".
8316 */
8317 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008318 /*
8319 * During early bootup we pretend to be a normal task:
8320 */
8321 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008322
8323 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324}
8325
8326#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8327void __might_sleep(char *file, int line)
8328{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008329#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008330 static unsigned long prev_jiffy; /* ratelimiting */
8331
8332 if ((in_atomic() || irqs_disabled()) &&
8333 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8334 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8335 return;
8336 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008337 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338 " context at %s:%d\n", file, line);
8339 printk("in_atomic():%d, irqs_disabled():%d\n",
8340 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008341 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008342 if (irqs_disabled())
8343 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008344 dump_stack();
8345 }
8346#endif
8347}
8348EXPORT_SYMBOL(__might_sleep);
8349#endif
8350
8351#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008352static void normalize_task(struct rq *rq, struct task_struct *p)
8353{
8354 int on_rq;
8355 update_rq_clock(rq);
8356 on_rq = p->se.on_rq;
8357 if (on_rq)
8358 deactivate_task(rq, p, 0);
8359 __setscheduler(rq, p, SCHED_NORMAL, 0);
8360 if (on_rq) {
8361 activate_task(rq, p, 0);
8362 resched_task(rq->curr);
8363 }
8364}
8365
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366void normalize_rt_tasks(void)
8367{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008368 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008370 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008371
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008372 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008373 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008374 /*
8375 * Only normalize user tasks:
8376 */
8377 if (!p->mm)
8378 continue;
8379
Ingo Molnardd41f592007-07-09 18:51:59 +02008380 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008381#ifdef CONFIG_SCHEDSTATS
8382 p->se.wait_start = 0;
8383 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008384 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008385#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008386 task_rq(p)->clock = 0;
8387
8388 if (!rt_task(p)) {
8389 /*
8390 * Renice negative nice level userspace
8391 * tasks back to 0:
8392 */
8393 if (TASK_NICE(p) < 0 && p->mm)
8394 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008395 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008397
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008398 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008399 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400
Ingo Molnar178be792007-10-15 17:00:18 +02008401 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008402
Ingo Molnarb29739f2006-06-27 02:54:51 -07008403 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008404 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008405 } while_each_thread(g, p);
8406
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008407 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408}
8409
8410#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008411
8412#ifdef CONFIG_IA64
8413/*
8414 * These functions are only useful for the IA64 MCA handling.
8415 *
8416 * They can only be called when the whole system has been
8417 * stopped - every CPU needs to be quiescent, and no scheduling
8418 * activity can take place. Using them for anything else would
8419 * be a serious bug, and as a result, they aren't even visible
8420 * under any other configuration.
8421 */
8422
8423/**
8424 * curr_task - return the current task for a given cpu.
8425 * @cpu: the processor in question.
8426 *
8427 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8428 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008429struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008430{
8431 return cpu_curr(cpu);
8432}
8433
8434/**
8435 * set_curr_task - set the current task for a given cpu.
8436 * @cpu: the processor in question.
8437 * @p: the task pointer to set.
8438 *
8439 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008440 * are serviced on a separate stack. It allows the architecture to switch the
8441 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008442 * must be called with all CPU's synchronized, and interrupts disabled, the
8443 * and caller must save the original value of the current task (see
8444 * curr_task() above) and restore that value before reenabling interrupts and
8445 * re-starting the system.
8446 *
8447 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8448 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008449void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008450{
8451 cpu_curr(cpu) = p;
8452}
8453
8454#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008455
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008456#ifdef CONFIG_FAIR_GROUP_SCHED
8457static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008458{
8459 int i;
8460
8461 for_each_possible_cpu(i) {
8462 if (tg->cfs_rq)
8463 kfree(tg->cfs_rq[i]);
8464 if (tg->se)
8465 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008466 }
8467
8468 kfree(tg->cfs_rq);
8469 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008470}
8471
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008472static
8473int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008474{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008475 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008476 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008477 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008478 int i;
8479
Mike Travis434d53b2008-04-04 18:11:04 -07008480 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008481 if (!tg->cfs_rq)
8482 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008483 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008484 if (!tg->se)
8485 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008486
8487 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008488
8489 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008490 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008491
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008492 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8493 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008494 if (!cfs_rq)
8495 goto err;
8496
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008497 se = kmalloc_node(sizeof(struct sched_entity),
8498 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008499 if (!se)
8500 goto err;
8501
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008502 parent_se = parent ? parent->se[i] : NULL;
8503 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008504 }
8505
8506 return 1;
8507
8508 err:
8509 return 0;
8510}
8511
8512static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8513{
8514 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8515 &cpu_rq(cpu)->leaf_cfs_rq_list);
8516}
8517
8518static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8519{
8520 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8521}
8522#else
8523static inline void free_fair_sched_group(struct task_group *tg)
8524{
8525}
8526
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008527static inline
8528int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008529{
8530 return 1;
8531}
8532
8533static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8534{
8535}
8536
8537static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8538{
8539}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008540#endif
8541
8542#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008543static void free_rt_sched_group(struct task_group *tg)
8544{
8545 int i;
8546
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008547 destroy_rt_bandwidth(&tg->rt_bandwidth);
8548
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008549 for_each_possible_cpu(i) {
8550 if (tg->rt_rq)
8551 kfree(tg->rt_rq[i]);
8552 if (tg->rt_se)
8553 kfree(tg->rt_se[i]);
8554 }
8555
8556 kfree(tg->rt_rq);
8557 kfree(tg->rt_se);
8558}
8559
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008560static
8561int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008562{
8563 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008564 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008565 struct rq *rq;
8566 int i;
8567
Mike Travis434d53b2008-04-04 18:11:04 -07008568 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008569 if (!tg->rt_rq)
8570 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008571 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008572 if (!tg->rt_se)
8573 goto err;
8574
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008575 init_rt_bandwidth(&tg->rt_bandwidth,
8576 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008577
8578 for_each_possible_cpu(i) {
8579 rq = cpu_rq(i);
8580
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008581 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8582 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8583 if (!rt_rq)
8584 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008585
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008586 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8587 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8588 if (!rt_se)
8589 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008590
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008591 parent_se = parent ? parent->rt_se[i] : NULL;
8592 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008593 }
8594
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008595 return 1;
8596
8597 err:
8598 return 0;
8599}
8600
8601static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8602{
8603 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8604 &cpu_rq(cpu)->leaf_rt_rq_list);
8605}
8606
8607static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8608{
8609 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8610}
8611#else
8612static inline void free_rt_sched_group(struct task_group *tg)
8613{
8614}
8615
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008616static inline
8617int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008618{
8619 return 1;
8620}
8621
8622static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8623{
8624}
8625
8626static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8627{
8628}
8629#endif
8630
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008631#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008632static void free_sched_group(struct task_group *tg)
8633{
8634 free_fair_sched_group(tg);
8635 free_rt_sched_group(tg);
8636 kfree(tg);
8637}
8638
8639/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008640struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008641{
8642 struct task_group *tg;
8643 unsigned long flags;
8644 int i;
8645
8646 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8647 if (!tg)
8648 return ERR_PTR(-ENOMEM);
8649
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008650 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008651 goto err;
8652
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008653 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008654 goto err;
8655
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008656 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008657 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008658 register_fair_sched_group(tg, i);
8659 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008660 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008661 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008662
8663 WARN_ON(!parent); /* root should already exist */
8664
8665 tg->parent = parent;
8666 list_add_rcu(&tg->siblings, &parent->children);
8667 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008668 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008669
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008670 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008671
8672err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008673 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008674 return ERR_PTR(-ENOMEM);
8675}
8676
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008677/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008678static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008679{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008680 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008681 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008682}
8683
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008684/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008685void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008686{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008687 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008688 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008689
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008690 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008691 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008692 unregister_fair_sched_group(tg, i);
8693 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008694 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008695 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008696 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008697 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008698
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008699 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008700 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008701}
8702
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008703/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008704 * The caller of this function should have put the task in its new group
8705 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8706 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008707 */
8708void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008709{
8710 int on_rq, running;
8711 unsigned long flags;
8712 struct rq *rq;
8713
8714 rq = task_rq_lock(tsk, &flags);
8715
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008716 update_rq_clock(rq);
8717
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008718 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008719 on_rq = tsk->se.on_rq;
8720
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008721 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008722 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008723 if (unlikely(running))
8724 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008725
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008726 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008727
Peter Zijlstra810b3812008-02-29 15:21:01 -05008728#ifdef CONFIG_FAIR_GROUP_SCHED
8729 if (tsk->sched_class->moved_group)
8730 tsk->sched_class->moved_group(tsk);
8731#endif
8732
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008733 if (unlikely(running))
8734 tsk->sched_class->set_curr_task(rq);
8735 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008736 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008737
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008738 task_rq_unlock(rq, &flags);
8739}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008740#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008741
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008742#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008743static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008744{
8745 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008746 int on_rq;
8747
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008748 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008749 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008750 dequeue_entity(cfs_rq, se, 0);
8751
8752 se->load.weight = shares;
8753 se->load.inv_weight = div64_64((1ULL<<32), shares);
8754
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008755 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008756 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008757}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008758
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008759static void set_se_shares(struct sched_entity *se, unsigned long shares)
8760{
8761 struct cfs_rq *cfs_rq = se->cfs_rq;
8762 struct rq *rq = cfs_rq->rq;
8763 unsigned long flags;
8764
8765 spin_lock_irqsave(&rq->lock, flags);
8766 __set_se_shares(se, shares);
8767 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008768}
8769
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008770static DEFINE_MUTEX(shares_mutex);
8771
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008772int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008773{
8774 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008775 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008776
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008777 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008778 * We can't change the weight of the root cgroup.
8779 */
8780 if (!tg->se[0])
8781 return -EINVAL;
8782
8783 /*
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008784 * A weight of 0 or 1 can cause arithmetics problems.
8785 * (The default weight is 1024 - so there's no practical
8786 * limitation from this.)
8787 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008788 if (shares < MIN_SHARES)
8789 shares = MIN_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008790
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008791 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008792 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008793 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008794
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008795 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008796 for_each_possible_cpu(i)
8797 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008798 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008799 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008800
8801 /* wait for any ongoing reference to this group to finish */
8802 synchronize_sched();
8803
8804 /*
8805 * Now we are free to modify the group's share on each cpu
8806 * w/o tripping rebalance_share or load_balance_fair.
8807 */
8808 tg->shares = shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008809 for_each_possible_cpu(i) {
8810 /*
8811 * force a rebalance
8812 */
8813 cfs_rq_set_shares(tg->cfs_rq[i], 0);
8814 set_se_shares(tg->se[i], shares/nr_cpu_ids);
8815 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008816
8817 /*
8818 * Enable load balance activity on this group, by inserting it back on
8819 * each cpu's rq->leaf_cfs_rq_list.
8820 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008821 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008822 for_each_possible_cpu(i)
8823 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008824 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008825 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008826done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008827 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008828 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008829}
8830
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008831unsigned long sched_group_shares(struct task_group *tg)
8832{
8833 return tg->shares;
8834}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008835#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008836
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008837#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008838/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008839 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008840 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008841static DEFINE_MUTEX(rt_constraints_mutex);
8842
8843static unsigned long to_ratio(u64 period, u64 runtime)
8844{
8845 if (runtime == RUNTIME_INF)
8846 return 1ULL << 16;
8847
Peter Zijlstra2692a242008-02-27 12:00:46 +01008848 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008849}
8850
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008851#ifdef CONFIG_CGROUP_SCHED
8852static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8853{
8854 struct task_group *tgi, *parent = tg->parent;
8855 unsigned long total = 0;
8856
8857 if (!parent) {
8858 if (global_rt_period() < period)
8859 return 0;
8860
8861 return to_ratio(period, runtime) <
8862 to_ratio(global_rt_period(), global_rt_runtime());
8863 }
8864
8865 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8866 return 0;
8867
8868 rcu_read_lock();
8869 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8870 if (tgi == tg)
8871 continue;
8872
8873 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8874 tgi->rt_bandwidth.rt_runtime);
8875 }
8876 rcu_read_unlock();
8877
8878 return total + to_ratio(period, runtime) <
8879 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8880 parent->rt_bandwidth.rt_runtime);
8881}
8882#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008883static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008884{
8885 struct task_group *tgi;
8886 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008887 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008888 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008889
8890 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008891 list_for_each_entry_rcu(tgi, &task_groups, list) {
8892 if (tgi == tg)
8893 continue;
8894
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008895 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8896 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008897 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008898 rcu_read_unlock();
8899
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008900 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008901}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008902#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008903
Dhaval Giani521f1a242008-02-28 15:21:56 +05308904/* Must be called with tasklist_lock held */
8905static inline int tg_has_rt_tasks(struct task_group *tg)
8906{
8907 struct task_struct *g, *p;
8908 do_each_thread(g, p) {
8909 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8910 return 1;
8911 } while_each_thread(g, p);
8912 return 0;
8913}
8914
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008915static int tg_set_bandwidth(struct task_group *tg,
8916 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008917{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008918 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008919
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008920 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308921 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008922 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308923 err = -EBUSY;
8924 goto unlock;
8925 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008926 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8927 err = -EINVAL;
8928 goto unlock;
8929 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008930
8931 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008932 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8933 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008934
8935 for_each_possible_cpu(i) {
8936 struct rt_rq *rt_rq = tg->rt_rq[i];
8937
8938 spin_lock(&rt_rq->rt_runtime_lock);
8939 rt_rq->rt_runtime = rt_runtime;
8940 spin_unlock(&rt_rq->rt_runtime_lock);
8941 }
8942 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008943 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308944 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008945 mutex_unlock(&rt_constraints_mutex);
8946
8947 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008948}
8949
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008950int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8951{
8952 u64 rt_runtime, rt_period;
8953
8954 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8955 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8956 if (rt_runtime_us < 0)
8957 rt_runtime = RUNTIME_INF;
8958
8959 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8960}
8961
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008962long sched_group_rt_runtime(struct task_group *tg)
8963{
8964 u64 rt_runtime_us;
8965
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008966 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008967 return -1;
8968
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008969 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008970 do_div(rt_runtime_us, NSEC_PER_USEC);
8971 return rt_runtime_us;
8972}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008973
8974int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8975{
8976 u64 rt_runtime, rt_period;
8977
8978 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8979 rt_runtime = tg->rt_bandwidth.rt_runtime;
8980
8981 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8982}
8983
8984long sched_group_rt_period(struct task_group *tg)
8985{
8986 u64 rt_period_us;
8987
8988 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8989 do_div(rt_period_us, NSEC_PER_USEC);
8990 return rt_period_us;
8991}
8992
8993static int sched_rt_global_constraints(void)
8994{
8995 int ret = 0;
8996
8997 mutex_lock(&rt_constraints_mutex);
8998 if (!__rt_schedulable(NULL, 1, 0))
8999 ret = -EINVAL;
9000 mutex_unlock(&rt_constraints_mutex);
9001
9002 return ret;
9003}
9004#else
9005static int sched_rt_global_constraints(void)
9006{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009007 unsigned long flags;
9008 int i;
9009
9010 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
9011 for_each_possible_cpu(i) {
9012 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
9013
9014 spin_lock(&rt_rq->rt_runtime_lock);
9015 rt_rq->rt_runtime = global_rt_runtime();
9016 spin_unlock(&rt_rq->rt_runtime_lock);
9017 }
9018 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
9019
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009020 return 0;
9021}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009022#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009023
9024int sched_rt_handler(struct ctl_table *table, int write,
9025 struct file *filp, void __user *buffer, size_t *lenp,
9026 loff_t *ppos)
9027{
9028 int ret;
9029 int old_period, old_runtime;
9030 static DEFINE_MUTEX(mutex);
9031
9032 mutex_lock(&mutex);
9033 old_period = sysctl_sched_rt_period;
9034 old_runtime = sysctl_sched_rt_runtime;
9035
9036 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
9037
9038 if (!ret && write) {
9039 ret = sched_rt_global_constraints();
9040 if (ret) {
9041 sysctl_sched_rt_period = old_period;
9042 sysctl_sched_rt_runtime = old_runtime;
9043 } else {
9044 def_rt_bandwidth.rt_runtime = global_rt_runtime();
9045 def_rt_bandwidth.rt_period =
9046 ns_to_ktime(global_rt_period());
9047 }
9048 }
9049 mutex_unlock(&mutex);
9050
9051 return ret;
9052}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009053
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009054#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009055
9056/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009057static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009058{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009059 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9060 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009061}
9062
9063static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009064cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009065{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009066 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009067
Paul Menage2b01dfe2007-10-24 18:23:50 +02009068 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009069 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009070 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009071 return &init_task_group.css;
9072 }
9073
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009074 parent = cgroup_tg(cgrp->parent);
9075 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009076 if (IS_ERR(tg))
9077 return ERR_PTR(-ENOMEM);
9078
9079 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009080 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009081
9082 return &tg->css;
9083}
9084
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009085static void
9086cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009087{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009088 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009089
9090 sched_destroy_group(tg);
9091}
9092
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009093static int
9094cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9095 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009096{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009097#ifdef CONFIG_RT_GROUP_SCHED
9098 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009099 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009100 return -EINVAL;
9101#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009102 /* We don't support RT-tasks being in separate groups */
9103 if (tsk->sched_class != &fair_sched_class)
9104 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009105#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009106
9107 return 0;
9108}
9109
9110static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009111cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009112 struct cgroup *old_cont, struct task_struct *tsk)
9113{
9114 sched_move_task(tsk);
9115}
9116
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009117#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menage2b01dfe2007-10-24 18:23:50 +02009118static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9119 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009120{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009121 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009122}
9123
Paul Menage2b01dfe2007-10-24 18:23:50 +02009124static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009125{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009126 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009127
9128 return (u64) tg->shares;
9129}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009130#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009131
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009132#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009133static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009134 struct file *file,
9135 const char __user *userbuf,
9136 size_t nbytes, loff_t *unused_ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009137{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009138 char buffer[64];
9139 int retval = 0;
9140 s64 val;
9141 char *end;
9142
9143 if (!nbytes)
9144 return -EINVAL;
9145 if (nbytes >= sizeof(buffer))
9146 return -E2BIG;
9147 if (copy_from_user(buffer, userbuf, nbytes))
9148 return -EFAULT;
9149
9150 buffer[nbytes] = 0; /* nul-terminate */
9151
9152 /* strip newline if necessary */
9153 if (nbytes && (buffer[nbytes-1] == '\n'))
9154 buffer[nbytes-1] = 0;
9155 val = simple_strtoll(buffer, &end, 0);
9156 if (*end)
9157 return -EINVAL;
9158
9159 /* Pass to subsystem */
9160 retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
9161 if (!retval)
9162 retval = nbytes;
9163 return retval;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009164}
9165
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009166static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft,
9167 struct file *file,
9168 char __user *buf, size_t nbytes,
9169 loff_t *ppos)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009170{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009171 char tmp[64];
9172 long val = sched_group_rt_runtime(cgroup_tg(cgrp));
9173 int len = sprintf(tmp, "%ld\n", val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009174
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009175 return simple_read_from_buffer(buf, nbytes, ppos, tmp, len);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009176}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009177
9178static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9179 u64 rt_period_us)
9180{
9181 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9182}
9183
9184static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9185{
9186 return sched_group_rt_period(cgroup_tg(cgrp));
9187}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009188#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009189
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009190static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009191#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009192 {
9193 .name = "shares",
9194 .read_uint = cpu_shares_read_uint,
9195 .write_uint = cpu_shares_write_uint,
9196 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009197#endif
9198#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009199 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009200 .name = "rt_runtime_us",
9201 .read = cpu_rt_runtime_read,
9202 .write = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009203 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009204 {
9205 .name = "rt_period_us",
9206 .read_uint = cpu_rt_period_read_uint,
9207 .write_uint = cpu_rt_period_write_uint,
9208 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009209#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009210};
9211
9212static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9213{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009214 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009215}
9216
9217struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009218 .name = "cpu",
9219 .create = cpu_cgroup_create,
9220 .destroy = cpu_cgroup_destroy,
9221 .can_attach = cpu_cgroup_can_attach,
9222 .attach = cpu_cgroup_attach,
9223 .populate = cpu_cgroup_populate,
9224 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009225 .early_init = 1,
9226};
9227
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009228#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009229
9230#ifdef CONFIG_CGROUP_CPUACCT
9231
9232/*
9233 * CPU accounting code for task groups.
9234 *
9235 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9236 * (balbir@in.ibm.com).
9237 */
9238
9239/* track cpu usage of a group of tasks */
9240struct cpuacct {
9241 struct cgroup_subsys_state css;
9242 /* cpuusage holds pointer to a u64-type object on every cpu */
9243 u64 *cpuusage;
9244};
9245
9246struct cgroup_subsys cpuacct_subsys;
9247
9248/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309249static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009250{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309251 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009252 struct cpuacct, css);
9253}
9254
9255/* return cpu accounting group to which this task belongs */
9256static inline struct cpuacct *task_ca(struct task_struct *tsk)
9257{
9258 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9259 struct cpuacct, css);
9260}
9261
9262/* create a new cpu accounting group */
9263static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309264 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009265{
9266 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9267
9268 if (!ca)
9269 return ERR_PTR(-ENOMEM);
9270
9271 ca->cpuusage = alloc_percpu(u64);
9272 if (!ca->cpuusage) {
9273 kfree(ca);
9274 return ERR_PTR(-ENOMEM);
9275 }
9276
9277 return &ca->css;
9278}
9279
9280/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009281static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309282cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009283{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309284 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009285
9286 free_percpu(ca->cpuusage);
9287 kfree(ca);
9288}
9289
9290/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309291static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009292{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309293 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009294 u64 totalcpuusage = 0;
9295 int i;
9296
9297 for_each_possible_cpu(i) {
9298 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9299
9300 /*
9301 * Take rq->lock to make 64-bit addition safe on 32-bit
9302 * platforms.
9303 */
9304 spin_lock_irq(&cpu_rq(i)->lock);
9305 totalcpuusage += *cpuusage;
9306 spin_unlock_irq(&cpu_rq(i)->lock);
9307 }
9308
9309 return totalcpuusage;
9310}
9311
Dhaval Giani0297b802008-02-29 10:02:44 +05309312static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9313 u64 reset)
9314{
9315 struct cpuacct *ca = cgroup_ca(cgrp);
9316 int err = 0;
9317 int i;
9318
9319 if (reset) {
9320 err = -EINVAL;
9321 goto out;
9322 }
9323
9324 for_each_possible_cpu(i) {
9325 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9326
9327 spin_lock_irq(&cpu_rq(i)->lock);
9328 *cpuusage = 0;
9329 spin_unlock_irq(&cpu_rq(i)->lock);
9330 }
9331out:
9332 return err;
9333}
9334
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009335static struct cftype files[] = {
9336 {
9337 .name = "usage",
9338 .read_uint = cpuusage_read,
Dhaval Giani0297b802008-02-29 10:02:44 +05309339 .write_uint = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009340 },
9341};
9342
Dhaval Giani32cd7562008-02-29 10:02:43 +05309343static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009344{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309345 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009346}
9347
9348/*
9349 * charge this task's execution time to its accounting group.
9350 *
9351 * called with rq->lock held.
9352 */
9353static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9354{
9355 struct cpuacct *ca;
9356
9357 if (!cpuacct_subsys.active)
9358 return;
9359
9360 ca = task_ca(tsk);
9361 if (ca) {
9362 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9363
9364 *cpuusage += cputime;
9365 }
9366}
9367
9368struct cgroup_subsys cpuacct_subsys = {
9369 .name = "cpuacct",
9370 .create = cpuacct_create,
9371 .destroy = cpuacct_destroy,
9372 .populate = cpuacct_populate,
9373 .subsys_id = cpuacct_subsys_id,
9374};
9375#endif /* CONFIG_CGROUP_CPUACCT */