blob: e2f7f5acc80778328a892961d8e26faa7c4c8841 [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
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200795 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200796 }
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
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200825 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200826 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{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200858 debugfs_create_file("sched_features", 0644, NULL, NULL,
859 &sched_feat_fops);
860
861 return 0;
862}
863late_initcall(sched_init_debug);
864
865#endif
866
867#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200868
869/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100870 * Number of tasks to iterate in a single balance run.
871 * Limited because this is done with IRQs disabled.
872 */
873const_debug unsigned int sysctl_sched_nr_migrate = 32;
874
875/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100876 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100877 * default: 1s
878 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100879unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100880
Ingo Molnar6892b752008-02-13 14:02:36 +0100881static __read_mostly int scheduler_running;
882
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100883/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100884 * part of the period that we allow rt tasks to run in us.
885 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100886 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100887int sysctl_sched_rt_runtime = 950000;
888
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200889static inline u64 global_rt_period(void)
890{
891 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
892}
893
894static inline u64 global_rt_runtime(void)
895{
896 if (sysctl_sched_rt_period < 0)
897 return RUNTIME_INF;
898
899 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
900}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100901
Ingo Molnar27ec4402008-02-28 21:00:21 +0100902static const unsigned long long time_sync_thresh = 100000;
903
904static DEFINE_PER_CPU(unsigned long long, time_offset);
905static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
906
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100907/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100908 * Global lock which we take every now and then to synchronize
909 * the CPUs time. This method is not warp-safe, but it's good
910 * enough to synchronize slowly diverging time sources and thus
911 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200912 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100913static DEFINE_SPINLOCK(time_sync_lock);
914static unsigned long long prev_global_time;
915
916static unsigned long long __sync_cpu_clock(cycles_t time, int cpu)
917{
918 unsigned long flags;
919
920 spin_lock_irqsave(&time_sync_lock, flags);
921
922 if (time < prev_global_time) {
923 per_cpu(time_offset, cpu) += prev_global_time - time;
924 time = prev_global_time;
925 } else {
926 prev_global_time = time;
927 }
928
929 spin_unlock_irqrestore(&time_sync_lock, flags);
930
931 return time;
932}
933
934static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200935{
Ingo Molnare436d802007-07-19 21:28:35 +0200936 unsigned long long now;
937 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200938 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200939
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100940 /*
941 * Only call sched_clock() if the scheduler has already been
942 * initialized (some code might call cpu_clock() very early):
943 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100944 if (unlikely(!scheduler_running))
945 return 0;
946
947 local_irq_save(flags);
948 rq = cpu_rq(cpu);
949 update_rq_clock(rq);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200950 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200951 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200952
953 return now;
954}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100955
956/*
957 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
958 * clock constructed from sched_clock():
959 */
960unsigned long long cpu_clock(int cpu)
961{
962 unsigned long long prev_cpu_time, time, delta_time;
963
964 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
965 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
966 delta_time = time-prev_cpu_time;
967
968 if (unlikely(delta_time > time_sync_thresh))
969 time = __sync_cpu_clock(time, cpu);
970
971 return time;
972}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200973EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700976# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700978#ifndef finish_arch_switch
979# define finish_arch_switch(prev) do { } while (0)
980#endif
981
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100982static inline int task_current(struct rq *rq, struct task_struct *p)
983{
984 return rq->curr == p;
985}
986
Nick Piggin4866cde2005-06-25 14:57:23 -0700987#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700988static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700989{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100990 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700991}
992
Ingo Molnar70b97a72006-07-03 00:25:42 -0700993static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700994{
995}
996
Ingo Molnar70b97a72006-07-03 00:25:42 -0700997static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700998{
Ingo Molnarda04c032005-09-13 11:17:59 +0200999#ifdef CONFIG_DEBUG_SPINLOCK
1000 /* this is a valid case when another task releases the spinlock */
1001 rq->lock.owner = current;
1002#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001003 /*
1004 * If we are tracking spinlock dependencies then we have to
1005 * fix up the runqueue lock - which gets 'carried over' from
1006 * prev into current:
1007 */
1008 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
1009
Nick Piggin4866cde2005-06-25 14:57:23 -07001010 spin_unlock_irq(&rq->lock);
1011}
1012
1013#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001014static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -07001015{
1016#ifdef CONFIG_SMP
1017 return p->oncpu;
1018#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01001019 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -07001020#endif
1021}
1022
Ingo Molnar70b97a72006-07-03 00:25:42 -07001023static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001024{
1025#ifdef CONFIG_SMP
1026 /*
1027 * We can optimise this out completely for !SMP, because the
1028 * SMP rebalancing from interrupt is the only thing that cares
1029 * here.
1030 */
1031 next->oncpu = 1;
1032#endif
1033#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
1034 spin_unlock_irq(&rq->lock);
1035#else
1036 spin_unlock(&rq->lock);
1037#endif
1038}
1039
Ingo Molnar70b97a72006-07-03 00:25:42 -07001040static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -07001041{
1042#ifdef CONFIG_SMP
1043 /*
1044 * After ->oncpu is cleared, the task can be moved to a different CPU.
1045 * We must ensure this doesn't happen until the switch is completely
1046 * finished.
1047 */
1048 smp_wmb();
1049 prev->oncpu = 0;
1050#endif
1051#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
1052 local_irq_enable();
1053#endif
1054}
1055#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001058 * __task_rq_lock - lock the runqueue a given task resides on.
1059 * Must be called interrupts disabled.
1060 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001061static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001062 __acquires(rq->lock)
1063{
Andi Kleen3a5c3592007-10-15 17:00:14 +02001064 for (;;) {
1065 struct rq *rq = task_rq(p);
1066 spin_lock(&rq->lock);
1067 if (likely(rq == task_rq(p)))
1068 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001069 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001070 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001071}
1072
1073/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001075 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 * explicitly disabling preemption.
1077 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001078static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 __acquires(rq->lock)
1080{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001081 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Andi Kleen3a5c3592007-10-15 17:00:14 +02001083 for (;;) {
1084 local_irq_save(*flags);
1085 rq = task_rq(p);
1086 spin_lock(&rq->lock);
1087 if (likely(rq == task_rq(p)))
1088 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
Alexey Dobriyana9957442007-10-15 17:00:13 +02001093static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001094 __releases(rq->lock)
1095{
1096 spin_unlock(&rq->lock);
1097}
1098
Ingo Molnar70b97a72006-07-03 00:25:42 -07001099static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 __releases(rq->lock)
1101{
1102 spin_unlock_irqrestore(&rq->lock, *flags);
1103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001106 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001108static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 __acquires(rq->lock)
1110{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001111 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 local_irq_disable();
1114 rq = this_rq();
1115 spin_lock(&rq->lock);
1116
1117 return rq;
1118}
1119
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001120/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001121 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001122 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001123void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001124{
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001125 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001126
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001127 spin_lock(&rq->lock);
1128 __update_rq_clock(rq);
1129 spin_unlock(&rq->lock);
1130 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001131}
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001132EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
1133
1134/*
1135 * We just idled delta nanoseconds (called with irqs disabled):
1136 */
1137void sched_clock_idle_wakeup_event(u64 delta_ns)
1138{
1139 struct rq *rq = cpu_rq(smp_processor_id());
1140 u64 now = sched_clock();
1141
1142 rq->idle_clock += delta_ns;
1143 /*
1144 * Override the previous timestamp and ignore all
1145 * sched_clock() deltas that occured while we idled,
1146 * and use the PM-provided delta_ns to advance the
1147 * rq clock:
1148 */
1149 spin_lock(&rq->lock);
1150 rq->prev_clock_raw = now;
1151 rq->clock += delta_ns;
1152 spin_unlock(&rq->lock);
Guillaume Chazarain782daee2008-01-25 21:08:33 +01001153 touch_softlockup_watchdog();
Ingo Molnar2aa44d02007-08-23 15:18:02 +02001154}
1155EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001156
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001157static void __resched_task(struct task_struct *p, int tif_bit);
1158
1159static inline void resched_task(struct task_struct *p)
1160{
1161 __resched_task(p, TIF_NEED_RESCHED);
1162}
1163
1164#ifdef CONFIG_SCHED_HRTICK
1165/*
1166 * Use HR-timers to deliver accurate preemption points.
1167 *
1168 * Its all a bit involved since we cannot program an hrt while holding the
1169 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1170 * reschedule event.
1171 *
1172 * When we get rescheduled we reprogram the hrtick_timer outside of the
1173 * rq->lock.
1174 */
1175static inline void resched_hrt(struct task_struct *p)
1176{
1177 __resched_task(p, TIF_HRTICK_RESCHED);
1178}
1179
1180static inline void resched_rq(struct rq *rq)
1181{
1182 unsigned long flags;
1183
1184 spin_lock_irqsave(&rq->lock, flags);
1185 resched_task(rq->curr);
1186 spin_unlock_irqrestore(&rq->lock, flags);
1187}
1188
1189enum {
1190 HRTICK_SET, /* re-programm hrtick_timer */
1191 HRTICK_RESET, /* not a new slice */
1192};
1193
1194/*
1195 * Use hrtick when:
1196 * - enabled by features
1197 * - hrtimer is actually high res
1198 */
1199static inline int hrtick_enabled(struct rq *rq)
1200{
1201 if (!sched_feat(HRTICK))
1202 return 0;
1203 return hrtimer_is_hres_active(&rq->hrtick_timer);
1204}
1205
1206/*
1207 * Called to set the hrtick timer state.
1208 *
1209 * called with rq->lock held and irqs disabled
1210 */
1211static void hrtick_start(struct rq *rq, u64 delay, int reset)
1212{
1213 assert_spin_locked(&rq->lock);
1214
1215 /*
1216 * preempt at: now + delay
1217 */
1218 rq->hrtick_expire =
1219 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1220 /*
1221 * indicate we need to program the timer
1222 */
1223 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1224 if (reset)
1225 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1226
1227 /*
1228 * New slices are called from the schedule path and don't need a
1229 * forced reschedule.
1230 */
1231 if (reset)
1232 resched_hrt(rq->curr);
1233}
1234
1235static void hrtick_clear(struct rq *rq)
1236{
1237 if (hrtimer_active(&rq->hrtick_timer))
1238 hrtimer_cancel(&rq->hrtick_timer);
1239}
1240
1241/*
1242 * Update the timer from the possible pending state.
1243 */
1244static void hrtick_set(struct rq *rq)
1245{
1246 ktime_t time;
1247 int set, reset;
1248 unsigned long flags;
1249
1250 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1251
1252 spin_lock_irqsave(&rq->lock, flags);
1253 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1254 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1255 time = rq->hrtick_expire;
1256 clear_thread_flag(TIF_HRTICK_RESCHED);
1257 spin_unlock_irqrestore(&rq->lock, flags);
1258
1259 if (set) {
1260 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1261 if (reset && !hrtimer_active(&rq->hrtick_timer))
1262 resched_rq(rq);
1263 } else
1264 hrtick_clear(rq);
1265}
1266
1267/*
1268 * High-resolution timer tick.
1269 * Runs from hardirq context with interrupts disabled.
1270 */
1271static enum hrtimer_restart hrtick(struct hrtimer *timer)
1272{
1273 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1274
1275 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1276
1277 spin_lock(&rq->lock);
1278 __update_rq_clock(rq);
1279 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1280 spin_unlock(&rq->lock);
1281
1282 return HRTIMER_NORESTART;
1283}
1284
1285static inline void init_rq_hrtick(struct rq *rq)
1286{
1287 rq->hrtick_flags = 0;
1288 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1289 rq->hrtick_timer.function = hrtick;
1290 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1291}
1292
1293void hrtick_resched(void)
1294{
1295 struct rq *rq;
1296 unsigned long flags;
1297
1298 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1299 return;
1300
1301 local_irq_save(flags);
1302 rq = cpu_rq(smp_processor_id());
1303 hrtick_set(rq);
1304 local_irq_restore(flags);
1305}
1306#else
1307static inline void hrtick_clear(struct rq *rq)
1308{
1309}
1310
1311static inline void hrtick_set(struct rq *rq)
1312{
1313}
1314
1315static inline void init_rq_hrtick(struct rq *rq)
1316{
1317}
1318
1319void hrtick_resched(void)
1320{
1321}
1322#endif
1323
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001324/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001325 * resched_task - mark a task 'to be rescheduled now'.
1326 *
1327 * On UP this means the setting of the need_resched flag, on SMP it
1328 * might also involve a cross-CPU call to trigger the scheduler on
1329 * the target CPU.
1330 */
1331#ifdef CONFIG_SMP
1332
1333#ifndef tsk_is_polling
1334#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1335#endif
1336
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001337static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001338{
1339 int cpu;
1340
1341 assert_spin_locked(&task_rq(p)->lock);
1342
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001343 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001344 return;
1345
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001346 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001347
1348 cpu = task_cpu(p);
1349 if (cpu == smp_processor_id())
1350 return;
1351
1352 /* NEED_RESCHED must be visible before we test polling */
1353 smp_mb();
1354 if (!tsk_is_polling(p))
1355 smp_send_reschedule(cpu);
1356}
1357
1358static void resched_cpu(int cpu)
1359{
1360 struct rq *rq = cpu_rq(cpu);
1361 unsigned long flags;
1362
1363 if (!spin_trylock_irqsave(&rq->lock, flags))
1364 return;
1365 resched_task(cpu_curr(cpu));
1366 spin_unlock_irqrestore(&rq->lock, flags);
1367}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001368
1369#ifdef CONFIG_NO_HZ
1370/*
1371 * When add_timer_on() enqueues a timer into the timer wheel of an
1372 * idle CPU then this timer might expire before the next timer event
1373 * which is scheduled to wake up that CPU. In case of a completely
1374 * idle system the next event might even be infinite time into the
1375 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1376 * leaves the inner idle loop so the newly added timer is taken into
1377 * account when the CPU goes back to idle and evaluates the timer
1378 * wheel for the next timer event.
1379 */
1380void wake_up_idle_cpu(int cpu)
1381{
1382 struct rq *rq = cpu_rq(cpu);
1383
1384 if (cpu == smp_processor_id())
1385 return;
1386
1387 /*
1388 * This is safe, as this function is called with the timer
1389 * wheel base lock of (cpu) held. When the CPU is on the way
1390 * to idle and has not yet set rq->curr to idle then it will
1391 * be serialized on the timer wheel base lock and take the new
1392 * timer into account automatically.
1393 */
1394 if (rq->curr != rq->idle)
1395 return;
1396
1397 /*
1398 * We can set TIF_RESCHED on the idle task of the other CPU
1399 * lockless. The worst case is that the other CPU runs the
1400 * idle task through an additional NOOP schedule()
1401 */
1402 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1403
1404 /* NEED_RESCHED must be visible before we test polling */
1405 smp_mb();
1406 if (!tsk_is_polling(rq->idle))
1407 smp_send_reschedule(cpu);
1408}
1409#endif
1410
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001411#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001412static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001413{
1414 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001415 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001416}
1417#endif
1418
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001419#if BITS_PER_LONG == 32
1420# define WMULT_CONST (~0UL)
1421#else
1422# define WMULT_CONST (1UL << 32)
1423#endif
1424
1425#define WMULT_SHIFT 32
1426
Ingo Molnar194081e2007-08-09 11:16:51 +02001427/*
1428 * Shift right and round:
1429 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001430#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001431
Peter Zijlstra8f1bc3852008-04-19 19:45:00 +02001432/*
1433 * delta *= weight / lw
1434 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001435static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001436calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1437 struct load_weight *lw)
1438{
1439 u64 tmp;
1440
1441 if (unlikely(!lw->inv_weight))
Ingo Molnar27d11722008-03-14 22:20:01 +01001442 lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001443
1444 tmp = (u64)delta_exec * weight;
1445 /*
1446 * Check whether we'd overflow the 64-bit multiplication:
1447 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001448 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001449 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001450 WMULT_SHIFT/2);
1451 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001452 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001453
Ingo Molnarecf691d2007-08-02 17:41:40 +02001454 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001455}
1456
Ingo Molnar10919852007-10-15 17:00:04 +02001457static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001458{
1459 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001460 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001461}
1462
Ingo Molnar10919852007-10-15 17:00:04 +02001463static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001464{
1465 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001466 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001467}
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001470 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1471 * of tasks with abnormal "nice" values across CPUs the contribution that
1472 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001473 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001474 * scaled version of the new time slice allocation that they receive on time
1475 * slice expiry etc.
1476 */
1477
Ingo Molnardd41f592007-07-09 18:51:59 +02001478#define WEIGHT_IDLEPRIO 2
1479#define WMULT_IDLEPRIO (1 << 31)
1480
1481/*
1482 * Nice levels are multiplicative, with a gentle 10% change for every
1483 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1484 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1485 * that remained on nice 0.
1486 *
1487 * The "10% effect" is relative and cumulative: from _any_ nice level,
1488 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001489 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1490 * If a task goes up by ~10% and another task goes down by ~10% then
1491 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001492 */
1493static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001494 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1495 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1496 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1497 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1498 /* 0 */ 1024, 820, 655, 526, 423,
1499 /* 5 */ 335, 272, 215, 172, 137,
1500 /* 10 */ 110, 87, 70, 56, 45,
1501 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001502};
1503
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001504/*
1505 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1506 *
1507 * In cases where the weight does not change often, we can use the
1508 * precalculated inverse to speed up arithmetics by turning divisions
1509 * into multiplications:
1510 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001511static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001512 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1513 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1514 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1515 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1516 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1517 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1518 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1519 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001520};
Peter Williams2dd73a42006-06-27 02:54:34 -07001521
Ingo Molnardd41f592007-07-09 18:51:59 +02001522static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1523
1524/*
1525 * runqueue iterator, to support SMP load-balancing between different
1526 * scheduling classes, without having to expose their internal data
1527 * structures to the load-balancing proper:
1528 */
1529struct rq_iterator {
1530 void *arg;
1531 struct task_struct *(*start)(void *);
1532 struct task_struct *(*next)(void *);
1533};
1534
Peter Williamse1d14842007-10-24 18:23:51 +02001535#ifdef CONFIG_SMP
1536static unsigned long
1537balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1538 unsigned long max_load_move, struct sched_domain *sd,
1539 enum cpu_idle_type idle, int *all_pinned,
1540 int *this_best_prio, struct rq_iterator *iterator);
1541
1542static int
1543iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1544 struct sched_domain *sd, enum cpu_idle_type idle,
1545 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001546#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001547
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001548#ifdef CONFIG_CGROUP_CPUACCT
1549static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1550#else
1551static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1552#endif
1553
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001554static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1555{
1556 update_load_add(&rq->load, load);
1557}
1558
1559static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1560{
1561 update_load_sub(&rq->load, load);
1562}
1563
Gregory Haskinse7693a32008-01-25 21:08:09 +01001564#ifdef CONFIG_SMP
1565static unsigned long source_load(int cpu, int type);
1566static unsigned long target_load(int cpu, int type);
1567static unsigned long cpu_avg_load_per_task(int cpu);
1568static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001569
1570#ifdef CONFIG_FAIR_GROUP_SCHED
1571
1572/*
1573 * Group load balancing.
1574 *
1575 * We calculate a few balance domain wide aggregate numbers; load and weight.
1576 * Given the pictures below, and assuming each item has equal weight:
1577 *
1578 * root 1 - thread
1579 * / | \ A - group
1580 * A 1 B
1581 * /|\ / \
1582 * C 2 D 3 4
1583 * | |
1584 * 5 6
1585 *
1586 * load:
1587 * A and B get 1/3-rd of the total load. C and D get 1/3-rd of A's 1/3-rd,
1588 * which equals 1/9-th of the total load.
1589 *
1590 * shares:
1591 * The weight of this group on the selected cpus.
1592 *
1593 * rq_weight:
1594 * Direct sum of all the cpu's their rq weight, e.g. A would get 3 while
1595 * B would get 2.
1596 *
1597 * task_weight:
1598 * Part of the rq_weight contributed by tasks; all groups except B would
1599 * get 1, B gets 2.
1600 */
1601
1602static inline struct aggregate_struct *
1603aggregate(struct task_group *tg, struct sched_domain *sd)
1604{
1605 return &tg->cfs_rq[sd->first_cpu]->aggregate;
1606}
1607
1608typedef void (*aggregate_func)(struct task_group *, struct sched_domain *);
1609
1610/*
1611 * Iterate the full tree, calling @down when first entering a node and @up when
1612 * leaving it for the final time.
1613 */
1614static
1615void aggregate_walk_tree(aggregate_func down, aggregate_func up,
1616 struct sched_domain *sd)
1617{
1618 struct task_group *parent, *child;
1619
1620 rcu_read_lock();
1621 parent = &root_task_group;
1622down:
1623 (*down)(parent, sd);
1624 list_for_each_entry_rcu(child, &parent->children, siblings) {
1625 parent = child;
1626 goto down;
1627
1628up:
1629 continue;
1630 }
1631 (*up)(parent, sd);
1632
1633 child = parent;
1634 parent = parent->parent;
1635 if (parent)
1636 goto up;
1637 rcu_read_unlock();
1638}
1639
1640/*
1641 * Calculate the aggregate runqueue weight.
1642 */
1643static
1644void aggregate_group_weight(struct task_group *tg, struct sched_domain *sd)
1645{
1646 unsigned long rq_weight = 0;
1647 unsigned long task_weight = 0;
1648 int i;
1649
1650 for_each_cpu_mask(i, sd->span) {
1651 rq_weight += tg->cfs_rq[i]->load.weight;
1652 task_weight += tg->cfs_rq[i]->task_weight;
1653 }
1654
1655 aggregate(tg, sd)->rq_weight = rq_weight;
1656 aggregate(tg, sd)->task_weight = task_weight;
1657}
1658
1659/*
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001660 * Compute the weight of this group on the given cpus.
1661 */
1662static
1663void aggregate_group_shares(struct task_group *tg, struct sched_domain *sd)
1664{
1665 unsigned long shares = 0;
1666 int i;
1667
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001668 for_each_cpu_mask(i, sd->span)
1669 shares += tg->cfs_rq[i]->shares;
1670
Peter Zijlstra3f5087a2008-04-25 00:25:08 +02001671 if ((!shares && aggregate(tg, sd)->rq_weight) || shares > tg->shares)
1672 shares = tg->shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001673
1674 aggregate(tg, sd)->shares = shares;
1675}
1676
1677/*
1678 * Compute the load fraction assigned to this group, relies on the aggregate
1679 * weight and this group's parent's load, i.e. top-down.
1680 */
1681static
1682void aggregate_group_load(struct task_group *tg, struct sched_domain *sd)
1683{
1684 unsigned long load;
1685
1686 if (!tg->parent) {
1687 int i;
1688
1689 load = 0;
1690 for_each_cpu_mask(i, sd->span)
1691 load += cpu_rq(i)->load.weight;
1692
1693 } else {
1694 load = aggregate(tg->parent, sd)->load;
1695
1696 /*
1697 * shares is our weight in the parent's rq so
1698 * shares/parent->rq_weight gives our fraction of the load
1699 */
1700 load *= aggregate(tg, sd)->shares;
1701 load /= aggregate(tg->parent, sd)->rq_weight + 1;
1702 }
1703
1704 aggregate(tg, sd)->load = load;
1705}
1706
1707static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1708
1709/*
1710 * Calculate and set the cpu's group shares.
1711 */
1712static void
1713__update_group_shares_cpu(struct task_group *tg, struct sched_domain *sd,
1714 int tcpu)
1715{
1716 int boost = 0;
1717 unsigned long shares;
1718 unsigned long rq_weight;
1719
1720 if (!tg->se[tcpu])
1721 return;
1722
1723 rq_weight = tg->cfs_rq[tcpu]->load.weight;
1724
1725 /*
1726 * If there are currently no tasks on the cpu pretend there is one of
1727 * average load so that when a new task gets to run here it will not
1728 * get delayed by group starvation.
1729 */
1730 if (!rq_weight) {
1731 boost = 1;
1732 rq_weight = NICE_0_LOAD;
1733 }
1734
1735 /*
1736 * \Sum shares * rq_weight
1737 * shares = -----------------------
1738 * \Sum rq_weight
1739 *
1740 */
1741 shares = aggregate(tg, sd)->shares * rq_weight;
1742 shares /= aggregate(tg, sd)->rq_weight + 1;
1743
1744 /*
1745 * record the actual number of shares, not the boosted amount.
1746 */
1747 tg->cfs_rq[tcpu]->shares = boost ? 0 : shares;
1748
1749 if (shares < MIN_SHARES)
1750 shares = MIN_SHARES;
1751
1752 __set_se_shares(tg->se[tcpu], shares);
1753}
1754
1755/*
1756 * Re-adjust the weights on the cpu the task came from and on the cpu the
1757 * task went to.
1758 */
1759static void
1760__move_group_shares(struct task_group *tg, struct sched_domain *sd,
1761 int scpu, int dcpu)
1762{
1763 unsigned long shares;
1764
1765 shares = tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1766
1767 __update_group_shares_cpu(tg, sd, scpu);
1768 __update_group_shares_cpu(tg, sd, dcpu);
1769
1770 /*
1771 * ensure we never loose shares due to rounding errors in the
1772 * above redistribution.
1773 */
1774 shares -= tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1775 if (shares)
1776 tg->cfs_rq[dcpu]->shares += shares;
1777}
1778
1779/*
1780 * Because changing a group's shares changes the weight of the super-group
1781 * we need to walk up the tree and change all shares until we hit the root.
1782 */
1783static void
1784move_group_shares(struct task_group *tg, struct sched_domain *sd,
1785 int scpu, int dcpu)
1786{
1787 while (tg) {
1788 __move_group_shares(tg, sd, scpu, dcpu);
1789 tg = tg->parent;
1790 }
1791}
1792
1793static
1794void aggregate_group_set_shares(struct task_group *tg, struct sched_domain *sd)
1795{
1796 unsigned long shares = aggregate(tg, sd)->shares;
1797 int i;
1798
1799 for_each_cpu_mask(i, sd->span) {
1800 struct rq *rq = cpu_rq(i);
1801 unsigned long flags;
1802
1803 spin_lock_irqsave(&rq->lock, flags);
1804 __update_group_shares_cpu(tg, sd, i);
1805 spin_unlock_irqrestore(&rq->lock, flags);
1806 }
1807
1808 aggregate_group_shares(tg, sd);
1809
1810 /*
1811 * ensure we never loose shares due to rounding errors in the
1812 * above redistribution.
1813 */
1814 shares -= aggregate(tg, sd)->shares;
1815 if (shares) {
1816 tg->cfs_rq[sd->first_cpu]->shares += shares;
1817 aggregate(tg, sd)->shares += shares;
1818 }
1819}
1820
1821/*
1822 * Calculate the accumulative weight and recursive load of each task group
1823 * while walking down the tree.
1824 */
1825static
1826void aggregate_get_down(struct task_group *tg, struct sched_domain *sd)
1827{
1828 aggregate_group_weight(tg, sd);
1829 aggregate_group_shares(tg, sd);
1830 aggregate_group_load(tg, sd);
1831}
1832
1833/*
1834 * Rebalance the cpu shares while walking back up the tree.
1835 */
1836static
1837void aggregate_get_up(struct task_group *tg, struct sched_domain *sd)
1838{
1839 aggregate_group_set_shares(tg, sd);
1840}
1841
1842static DEFINE_PER_CPU(spinlock_t, aggregate_lock);
1843
1844static void __init init_aggregate(void)
1845{
1846 int i;
1847
1848 for_each_possible_cpu(i)
1849 spin_lock_init(&per_cpu(aggregate_lock, i));
1850}
1851
1852static int get_aggregate(struct sched_domain *sd)
1853{
1854 if (!spin_trylock(&per_cpu(aggregate_lock, sd->first_cpu)))
1855 return 0;
1856
1857 aggregate_walk_tree(aggregate_get_down, aggregate_get_up, sd);
1858 return 1;
1859}
1860
1861static void put_aggregate(struct sched_domain *sd)
1862{
1863 spin_unlock(&per_cpu(aggregate_lock, sd->first_cpu));
1864}
1865
1866static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1867{
1868 cfs_rq->shares = shares;
1869}
1870
1871#else
1872
1873static inline void init_aggregate(void)
1874{
1875}
1876
1877static inline int get_aggregate(struct sched_domain *sd)
1878{
1879 return 0;
1880}
1881
1882static inline void put_aggregate(struct sched_domain *sd)
1883{
1884}
1885#endif
1886
1887#else /* CONFIG_SMP */
1888
1889#ifdef CONFIG_FAIR_GROUP_SCHED
1890static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1891{
1892}
1893#endif
1894
Gregory Haskinse7693a32008-01-25 21:08:09 +01001895#endif /* CONFIG_SMP */
1896
Ingo Molnardd41f592007-07-09 18:51:59 +02001897#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001898#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001899#include "sched_fair.c"
1900#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001901#ifdef CONFIG_SCHED_DEBUG
1902# include "sched_debug.c"
1903#endif
1904
1905#define sched_class_highest (&rt_sched_class)
1906
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001907static void inc_nr_running(struct rq *rq)
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001908{
1909 rq->nr_running++;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001910}
1911
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001912static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001913{
1914 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001915}
1916
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001917static void set_load_weight(struct task_struct *p)
1918{
1919 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001920 p->se.load.weight = prio_to_weight[0] * 2;
1921 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1922 return;
1923 }
1924
1925 /*
1926 * SCHED_IDLE tasks get minimal weight:
1927 */
1928 if (p->policy == SCHED_IDLE) {
1929 p->se.load.weight = WEIGHT_IDLEPRIO;
1930 p->se.load.inv_weight = WMULT_IDLEPRIO;
1931 return;
1932 }
1933
1934 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1935 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001936}
1937
Ingo Molnar8159f872007-08-09 11:16:49 +02001938static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001939{
1940 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001941 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001942 p->se.on_rq = 1;
1943}
1944
Ingo Molnar69be72c2007-08-09 11:16:49 +02001945static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001946{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001947 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001948 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001949}
1950
1951/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001952 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001953 */
Ingo Molnar14531182007-07-09 18:51:59 +02001954static inline int __normal_prio(struct task_struct *p)
1955{
Ingo Molnardd41f592007-07-09 18:51:59 +02001956 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001957}
1958
1959/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001960 * Calculate the expected normal priority: i.e. priority
1961 * without taking RT-inheritance into account. Might be
1962 * boosted by interactivity modifiers. Changes upon fork,
1963 * setprio syscalls, and whenever the interactivity
1964 * estimator recalculates.
1965 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001966static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001967{
1968 int prio;
1969
Ingo Molnare05606d2007-07-09 18:51:59 +02001970 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001971 prio = MAX_RT_PRIO-1 - p->rt_priority;
1972 else
1973 prio = __normal_prio(p);
1974 return prio;
1975}
1976
1977/*
1978 * Calculate the current priority, i.e. the priority
1979 * taken into account by the scheduler. This value might
1980 * be boosted by RT tasks, or might be boosted by
1981 * interactivity modifiers. Will be RT if the task got
1982 * RT-boosted. If not then it returns p->normal_prio.
1983 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001984static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001985{
1986 p->normal_prio = normal_prio(p);
1987 /*
1988 * If we are RT tasks or we were boosted to RT priority,
1989 * keep the priority unchanged. Otherwise, update priority
1990 * to the normal priority:
1991 */
1992 if (!rt_prio(p->prio))
1993 return p->normal_prio;
1994 return p->prio;
1995}
1996
1997/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001998 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002000static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002002 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02002003 rq->nr_uninterruptible--;
2004
Ingo Molnar8159f872007-08-09 11:16:49 +02002005 enqueue_task(rq, p, wakeup);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002006 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
2009/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 * deactivate_task - remove a task from the runqueue.
2011 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002012static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002014 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02002015 rq->nr_uninterruptible++;
2016
Ingo Molnar69be72c2007-08-09 11:16:49 +02002017 dequeue_task(rq, p, sleep);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002018 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021/**
2022 * task_curr - is this task currently executing on a CPU?
2023 * @p: the task in question.
2024 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002025inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
2027 return cpu_curr(task_cpu(p)) == p;
2028}
2029
Peter Williams2dd73a42006-06-27 02:54:34 -07002030/* Used instead of source_load when we know the type == 0 */
2031unsigned long weighted_cpuload(const int cpu)
2032{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002033 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002034}
2035
2036static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
2037{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01002038 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002039#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01002040 /*
2041 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
2042 * successfuly executed on another CPU. We must ensure that updates of
2043 * per-task data have been completed by this moment.
2044 */
2045 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02002046 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02002047#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07002048}
2049
Steven Rostedtcb469842008-01-25 21:08:22 +01002050static inline void check_class_changed(struct rq *rq, struct task_struct *p,
2051 const struct sched_class *prev_class,
2052 int oldprio, int running)
2053{
2054 if (prev_class != p->sched_class) {
2055 if (prev_class->switched_from)
2056 prev_class->switched_from(rq, p, running);
2057 p->sched_class->switched_to(rq, p, running);
2058 } else
2059 p->sched_class->prio_changed(rq, p, oldprio, running);
2060}
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02002063
Ingo Molnarcc367732007-10-15 17:00:18 +02002064/*
2065 * Is this task likely cache-hot:
2066 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002067static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002068task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2069{
2070 s64 delta;
2071
Ingo Molnarf540a602008-03-15 17:10:34 +01002072 /*
2073 * Buddy candidates are cache hot:
2074 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01002075 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01002076 return 1;
2077
Ingo Molnarcc367732007-10-15 17:00:18 +02002078 if (p->sched_class != &fair_sched_class)
2079 return 0;
2080
Ingo Molnar6bc16652007-10-15 17:00:18 +02002081 if (sysctl_sched_migration_cost == -1)
2082 return 1;
2083 if (sysctl_sched_migration_cost == 0)
2084 return 0;
2085
Ingo Molnarcc367732007-10-15 17:00:18 +02002086 delta = now - p->se.exec_start;
2087
2088 return delta < (s64)sysctl_sched_migration_cost;
2089}
2090
2091
Ingo Molnardd41f592007-07-09 18:51:59 +02002092void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002093{
Ingo Molnardd41f592007-07-09 18:51:59 +02002094 int old_cpu = task_cpu(p);
2095 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002096 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
2097 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02002098 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002099
2100 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002101
2102#ifdef CONFIG_SCHEDSTATS
2103 if (p->se.wait_start)
2104 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002105 if (p->se.sleep_start)
2106 p->se.sleep_start -= clock_offset;
2107 if (p->se.block_start)
2108 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02002109 if (old_cpu != new_cpu) {
2110 schedstat_inc(p, se.nr_migrations);
2111 if (task_hot(p, old_rq->clock, NULL))
2112 schedstat_inc(p, se.nr_forced2_migrations);
2113 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002114#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002115 p->se.vruntime -= old_cfsrq->min_vruntime -
2116 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02002117
2118 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002119}
2120
Ingo Molnar70b97a72006-07-03 00:25:42 -07002121struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Ingo Molnar36c8b582006-07-03 00:25:41 -07002124 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 int dest_cpu;
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002128};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130/*
2131 * The task's runqueue lock must be held.
2132 * Returns true if you have to wait for migration thread.
2133 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002134static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002135migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002137 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139 /*
2140 * If the task is not on a runqueue (and not running), then
2141 * it is sufficient to simply update the task's cpu field.
2142 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002143 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 set_task_cpu(p, dest_cpu);
2145 return 0;
2146 }
2147
2148 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 req->task = p;
2150 req->dest_cpu = dest_cpu;
2151 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return 1;
2154}
2155
2156/*
2157 * wait_task_inactive - wait for a thread to unschedule.
2158 *
2159 * The caller must ensure that the task *will* unschedule sometime soon,
2160 * else this function might spin for a *long* time. This function can't
2161 * be called with interrupts off, or it may introduce deadlock with
2162 * smp_call_function() if an IPI is sent by the same process we are
2163 * waiting to become inactive.
2164 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002165void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002168 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002169 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Andi Kleen3a5c3592007-10-15 17:00:14 +02002171 for (;;) {
2172 /*
2173 * We do the initial early heuristics without holding
2174 * any task-queue locks at all. We'll only try to get
2175 * the runqueue lock when things look like they will
2176 * work out!
2177 */
2178 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002179
Andi Kleen3a5c3592007-10-15 17:00:14 +02002180 /*
2181 * If the task is actively running on another CPU
2182 * still, just relax and busy-wait without holding
2183 * any locks.
2184 *
2185 * NOTE! Since we don't hold any locks, it's not
2186 * even sure that "rq" stays as the right runqueue!
2187 * But we don't care, since "task_running()" will
2188 * return false if the runqueue has changed and p
2189 * is actually now running somewhere else!
2190 */
2191 while (task_running(rq, p))
2192 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002193
Andi Kleen3a5c3592007-10-15 17:00:14 +02002194 /*
2195 * Ok, time to look more closely! We need the rq
2196 * lock now, to be *sure*. If we're wrong, we'll
2197 * just go back and repeat.
2198 */
2199 rq = task_rq_lock(p, &flags);
2200 running = task_running(rq, p);
2201 on_rq = p->se.on_rq;
2202 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002203
Andi Kleen3a5c3592007-10-15 17:00:14 +02002204 /*
2205 * Was it really running after all now that we
2206 * checked with the proper locks actually held?
2207 *
2208 * Oops. Go back and try again..
2209 */
2210 if (unlikely(running)) {
2211 cpu_relax();
2212 continue;
2213 }
2214
2215 /*
2216 * It's not enough that it's not actively running,
2217 * it must be off the runqueue _entirely_, and not
2218 * preempted!
2219 *
2220 * So if it wa still runnable (but just not actively
2221 * running right now), it's preempted, and we should
2222 * yield - it could be a while.
2223 */
2224 if (unlikely(on_rq)) {
2225 schedule_timeout_uninterruptible(1);
2226 continue;
2227 }
2228
2229 /*
2230 * Ahh, all good. It wasn't running, and it wasn't
2231 * runnable, which means that it will never become
2232 * running in the future either. We're all done!
2233 */
2234 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
2238/***
2239 * kick_process - kick a running thread to enter/exit the kernel
2240 * @p: the to-be-kicked thread
2241 *
2242 * Cause a process which is running on another CPU to enter
2243 * kernel-mode, without any delay. (to get signals handled.)
2244 *
2245 * NOTE: this function doesnt have to take the runqueue lock,
2246 * because all it wants to ensure is that the remote task enters
2247 * the kernel. If the IPI races and the task has been migrated
2248 * to another CPU then no harm is done and the purpose has been
2249 * achieved as well.
2250 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002251void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
2253 int cpu;
2254
2255 preempt_disable();
2256 cpu = task_cpu(p);
2257 if ((cpu != smp_processor_id()) && task_curr(p))
2258 smp_send_reschedule(cpu);
2259 preempt_enable();
2260}
2261
2262/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002263 * Return a low guess at the load of a migration-source cpu weighted
2264 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 *
2266 * We want to under-estimate the load of migration sources, to
2267 * balance conservatively.
2268 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002269static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002270{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002271 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002272 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002273
Peter Williams2dd73a42006-06-27 02:54:34 -07002274 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002275 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002276
Ingo Molnardd41f592007-07-09 18:51:59 +02002277 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
2280/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002281 * Return a high guess at the load of a migration-target cpu weighted
2282 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002284static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002285{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002286 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002287 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002288
Peter Williams2dd73a42006-06-27 02:54:34 -07002289 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002290 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002291
Ingo Molnardd41f592007-07-09 18:51:59 +02002292 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002293}
2294
2295/*
2296 * Return the average load per task on the cpu's run queue
2297 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002298static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07002299{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002300 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002301 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002302 unsigned long n = rq->nr_running;
2303
Ingo Molnardd41f592007-07-09 18:51:59 +02002304 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305}
2306
Nick Piggin147cbb42005-06-25 14:57:19 -07002307/*
2308 * find_idlest_group finds and returns the least busy CPU group within the
2309 * domain.
2310 */
2311static struct sched_group *
2312find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2313{
2314 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2315 unsigned long min_load = ULONG_MAX, this_load = 0;
2316 int load_idx = sd->forkexec_idx;
2317 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2318
2319 do {
2320 unsigned long load, avg_load;
2321 int local_group;
2322 int i;
2323
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002324 /* Skip over this group if it has no CPUs allowed */
2325 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002326 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002327
Nick Piggin147cbb42005-06-25 14:57:19 -07002328 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002329
2330 /* Tally up the load of all CPUs in the group */
2331 avg_load = 0;
2332
2333 for_each_cpu_mask(i, group->cpumask) {
2334 /* Bias balancing toward cpus of our domain */
2335 if (local_group)
2336 load = source_load(i, load_idx);
2337 else
2338 load = target_load(i, load_idx);
2339
2340 avg_load += load;
2341 }
2342
2343 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002344 avg_load = sg_div_cpu_power(group,
2345 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002346
2347 if (local_group) {
2348 this_load = avg_load;
2349 this = group;
2350 } else if (avg_load < min_load) {
2351 min_load = avg_load;
2352 idlest = group;
2353 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002354 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002355
2356 if (!idlest || 100*this_load < imbalance*min_load)
2357 return NULL;
2358 return idlest;
2359}
2360
2361/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002362 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002363 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002364static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002365find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2366 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002367{
2368 unsigned long load, min_load = ULONG_MAX;
2369 int idlest = -1;
2370 int i;
2371
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002372 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002373 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002374
Mike Travis7c16ec52008-04-04 18:11:11 -07002375 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002376 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002377
2378 if (load < min_load || (load == min_load && i == this_cpu)) {
2379 min_load = load;
2380 idlest = i;
2381 }
2382 }
2383
2384 return idlest;
2385}
2386
Nick Piggin476d1392005-06-25 14:57:29 -07002387/*
2388 * sched_balance_self: balance the current task (running on cpu) in domains
2389 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2390 * SD_BALANCE_EXEC.
2391 *
2392 * Balance, ie. select the least loaded group.
2393 *
2394 * Returns the target CPU number, or the same CPU if no balancing is needed.
2395 *
2396 * preempt must be disabled.
2397 */
2398static int sched_balance_self(int cpu, int flag)
2399{
2400 struct task_struct *t = current;
2401 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002402
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002403 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002404 /*
2405 * If power savings logic is enabled for a domain, stop there.
2406 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002407 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2408 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002409 if (tmp->flags & flag)
2410 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002411 }
Nick Piggin476d1392005-06-25 14:57:29 -07002412
2413 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002414 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002415 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002416 int new_cpu, weight;
2417
2418 if (!(sd->flags & flag)) {
2419 sd = sd->child;
2420 continue;
2421 }
Nick Piggin476d1392005-06-25 14:57:29 -07002422
2423 span = sd->span;
2424 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002425 if (!group) {
2426 sd = sd->child;
2427 continue;
2428 }
Nick Piggin476d1392005-06-25 14:57:29 -07002429
Mike Travis7c16ec52008-04-04 18:11:11 -07002430 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002431 if (new_cpu == -1 || new_cpu == cpu) {
2432 /* Now try balancing at a lower domain level of cpu */
2433 sd = sd->child;
2434 continue;
2435 }
Nick Piggin476d1392005-06-25 14:57:29 -07002436
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002437 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002438 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002439 sd = NULL;
2440 weight = cpus_weight(span);
2441 for_each_domain(cpu, tmp) {
2442 if (weight <= cpus_weight(tmp->span))
2443 break;
2444 if (tmp->flags & flag)
2445 sd = tmp;
2446 }
2447 /* while loop will break here if sd == NULL */
2448 }
2449
2450 return cpu;
2451}
2452
2453#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455/***
2456 * try_to_wake_up - wake up a thread
2457 * @p: the to-be-woken-up thread
2458 * @state: the mask of task states that can be woken
2459 * @sync: do a synchronous wakeup?
2460 *
2461 * Put it on the run-queue if it's not already there. The "current"
2462 * thread is always on the run-queue (except when the actual
2463 * re-schedule is in progress), and as such you're allowed to do
2464 * the simpler "current->state = TASK_RUNNING" to mark yourself
2465 * runnable without the overhead of this.
2466 *
2467 * returns failure only if the task is already active.
2468 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002469static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470{
Ingo Molnarcc367732007-10-15 17:00:18 +02002471 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 unsigned long flags;
2473 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002474 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Ingo Molnarb85d0662008-03-16 20:03:22 +01002476 if (!sched_feat(SYNC_WAKEUPS))
2477 sync = 0;
2478
Linus Torvalds04e2f172008-02-23 18:05:03 -08002479 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 rq = task_rq_lock(p, &flags);
2481 old_state = p->state;
2482 if (!(old_state & state))
2483 goto out;
2484
Ingo Molnardd41f592007-07-09 18:51:59 +02002485 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 goto out_running;
2487
2488 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002489 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 this_cpu = smp_processor_id();
2491
2492#ifdef CONFIG_SMP
2493 if (unlikely(task_running(rq, p)))
2494 goto out_activate;
2495
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002496 cpu = p->sched_class->select_task_rq(p, sync);
2497 if (cpu != orig_cpu) {
2498 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 task_rq_unlock(rq, &flags);
2500 /* might preempt at this point */
2501 rq = task_rq_lock(p, &flags);
2502 old_state = p->state;
2503 if (!(old_state & state))
2504 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002505 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 goto out_running;
2507
2508 this_cpu = smp_processor_id();
2509 cpu = task_cpu(p);
2510 }
2511
Gregory Haskinse7693a32008-01-25 21:08:09 +01002512#ifdef CONFIG_SCHEDSTATS
2513 schedstat_inc(rq, ttwu_count);
2514 if (cpu == this_cpu)
2515 schedstat_inc(rq, ttwu_local);
2516 else {
2517 struct sched_domain *sd;
2518 for_each_domain(this_cpu, sd) {
2519 if (cpu_isset(cpu, sd->span)) {
2520 schedstat_inc(sd, ttwu_wake_remote);
2521 break;
2522 }
2523 }
2524 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002525#endif
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527out_activate:
2528#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002529 schedstat_inc(p, se.nr_wakeups);
2530 if (sync)
2531 schedstat_inc(p, se.nr_wakeups_sync);
2532 if (orig_cpu != cpu)
2533 schedstat_inc(p, se.nr_wakeups_migrate);
2534 if (cpu == this_cpu)
2535 schedstat_inc(p, se.nr_wakeups_local);
2536 else
2537 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002538 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002539 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 success = 1;
2541
2542out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002543 check_preempt_curr(rq, p);
2544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002546#ifdef CONFIG_SMP
2547 if (p->sched_class->task_wake_up)
2548 p->sched_class->task_wake_up(rq, p);
2549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550out:
2551 task_rq_unlock(rq, &flags);
2552
2553 return success;
2554}
2555
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002556int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002558 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560EXPORT_SYMBOL(wake_up_process);
2561
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002562int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
2564 return try_to_wake_up(p, state, 0);
2565}
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567/*
2568 * Perform scheduler related setup for a newly forked process p.
2569 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002570 *
2571 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002573static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
Ingo Molnardd41f592007-07-09 18:51:59 +02002575 p->se.exec_start = 0;
2576 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002577 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002578 p->se.last_wakeup = 0;
2579 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002580
2581#ifdef CONFIG_SCHEDSTATS
2582 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002583 p->se.sum_sleep_runtime = 0;
2584 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002585 p->se.block_start = 0;
2586 p->se.sleep_max = 0;
2587 p->se.block_max = 0;
2588 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002589 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002590 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002591#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002592
Peter Zijlstrafa717062008-01-25 21:08:27 +01002593 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002594 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002595 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002596
Avi Kivitye107be32007-07-26 13:40:43 +02002597#ifdef CONFIG_PREEMPT_NOTIFIERS
2598 INIT_HLIST_HEAD(&p->preempt_notifiers);
2599#endif
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 /*
2602 * We mark the process as running here, but have not actually
2603 * inserted it onto the runqueue yet. This guarantees that
2604 * nobody will actually run it, and a signal or other external
2605 * event cannot wake it up and insert it on the runqueue either.
2606 */
2607 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002608}
2609
2610/*
2611 * fork()/clone()-time setup:
2612 */
2613void sched_fork(struct task_struct *p, int clone_flags)
2614{
2615 int cpu = get_cpu();
2616
2617 __sched_fork(p);
2618
2619#ifdef CONFIG_SMP
2620 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2621#endif
Ingo Molnar02e4bac22007-10-15 17:00:11 +02002622 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002623
2624 /*
2625 * Make sure we do not leak PI boosting priority to the child:
2626 */
2627 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002628 if (!rt_prio(p->prio))
2629 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002630
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002631#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002632 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002633 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002635#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002636 p->oncpu = 0;
2637#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002639 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08002640 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002642 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643}
2644
2645/*
2646 * wake_up_new_task - wake up a newly created task for the first time.
2647 *
2648 * This function will do some initial scheduler statistics housekeeping
2649 * that must be done for every newly created context, then puts the task
2650 * on the runqueue and wakes it.
2651 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002652void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
2654 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002655 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002659 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 p->prio = effective_prio(p);
2662
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002663 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002664 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002667 * Let the scheduling class do new task startup
2668 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002670 p->sched_class->task_new(rq, p);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02002671 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002673 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002674#ifdef CONFIG_SMP
2675 if (p->sched_class->task_wake_up)
2676 p->sched_class->task_wake_up(rq, p);
2677#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002678 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679}
2680
Avi Kivitye107be32007-07-26 13:40:43 +02002681#ifdef CONFIG_PREEMPT_NOTIFIERS
2682
2683/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002684 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2685 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002686 */
2687void preempt_notifier_register(struct preempt_notifier *notifier)
2688{
2689 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2690}
2691EXPORT_SYMBOL_GPL(preempt_notifier_register);
2692
2693/**
2694 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002695 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002696 *
2697 * This is safe to call from within a preemption notifier.
2698 */
2699void preempt_notifier_unregister(struct preempt_notifier *notifier)
2700{
2701 hlist_del(&notifier->link);
2702}
2703EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2704
2705static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2706{
2707 struct preempt_notifier *notifier;
2708 struct hlist_node *node;
2709
2710 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2711 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2712}
2713
2714static void
2715fire_sched_out_preempt_notifiers(struct task_struct *curr,
2716 struct task_struct *next)
2717{
2718 struct preempt_notifier *notifier;
2719 struct hlist_node *node;
2720
2721 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2722 notifier->ops->sched_out(notifier, next);
2723}
2724
2725#else
2726
2727static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2728{
2729}
2730
2731static void
2732fire_sched_out_preempt_notifiers(struct task_struct *curr,
2733 struct task_struct *next)
2734{
2735}
2736
2737#endif
2738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002740 * prepare_task_switch - prepare to switch tasks
2741 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002742 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002743 * @next: the task we are going to switch to.
2744 *
2745 * This is called with the rq lock held and interrupts off. It must
2746 * be paired with a subsequent finish_task_switch after the context
2747 * switch.
2748 *
2749 * prepare_task_switch sets up locking and calls architecture specific
2750 * hooks.
2751 */
Avi Kivitye107be32007-07-26 13:40:43 +02002752static inline void
2753prepare_task_switch(struct rq *rq, struct task_struct *prev,
2754 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002755{
Avi Kivitye107be32007-07-26 13:40:43 +02002756 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002757 prepare_lock_switch(rq, next);
2758 prepare_arch_switch(next);
2759}
2760
2761/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002763 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 * @prev: the thread we just switched away from.
2765 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002766 * finish_task_switch must be called after the context switch, paired
2767 * with a prepare_task_switch call before the context switch.
2768 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2769 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 *
2771 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002772 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 * with the lock held can cause deadlocks; see schedule() for
2774 * details.)
2775 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002776static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 __releases(rq->lock)
2778{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002780 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 rq->prev_mm = NULL;
2783
2784 /*
2785 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002786 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002787 * schedule one last time. The schedule call will never return, and
2788 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002789 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 * still held, otherwise prev could be scheduled on another cpu, die
2791 * there before we look at prev->state, and then the reference would
2792 * be dropped twice.
2793 * Manfred Spraul <manfred@colorfullife.com>
2794 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002795 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002796 finish_arch_switch(prev);
2797 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002798#ifdef CONFIG_SMP
2799 if (current->sched_class->post_schedule)
2800 current->sched_class->post_schedule(rq);
2801#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002802
Avi Kivitye107be32007-07-26 13:40:43 +02002803 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 if (mm)
2805 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002806 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002807 /*
2808 * Remove function-return probe instances associated with this
2809 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002810 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002811 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
2816/**
2817 * schedule_tail - first thing a freshly forked thread must call.
2818 * @prev: the thread we just switched away from.
2819 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002820asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 __releases(rq->lock)
2822{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002823 struct rq *rq = this_rq();
2824
Nick Piggin4866cde2005-06-25 14:57:23 -07002825 finish_task_switch(rq, prev);
2826#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2827 /* In this case, finish_task_switch does not reenable preemption */
2828 preempt_enable();
2829#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002831 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832}
2833
2834/*
2835 * context_switch - switch to the new MM and the new
2836 * thread's register state.
2837 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002838static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002839context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002840 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Ingo Molnardd41f592007-07-09 18:51:59 +02002842 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Avi Kivitye107be32007-07-26 13:40:43 +02002844 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002845 mm = next->mm;
2846 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002847 /*
2848 * For paravirt, this is coupled with an exit in switch_to to
2849 * combine the page table reload and the switch backend into
2850 * one hypercall.
2851 */
2852 arch_enter_lazy_cpu_mode();
2853
Ingo Molnardd41f592007-07-09 18:51:59 +02002854 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 next->active_mm = oldmm;
2856 atomic_inc(&oldmm->mm_count);
2857 enter_lazy_tlb(oldmm, next);
2858 } else
2859 switch_mm(oldmm, mm, next);
2860
Ingo Molnardd41f592007-07-09 18:51:59 +02002861 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 rq->prev_mm = oldmm;
2864 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002865 /*
2866 * Since the runqueue lock will be released by the next
2867 * task (which is an invalid locking op but in the case
2868 * of the scheduler it's an obvious special-case), so we
2869 * do an early lockdep release here:
2870 */
2871#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002872 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002873#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
2875 /* Here we just switch the register state and the stack. */
2876 switch_to(prev, next, prev);
2877
Ingo Molnardd41f592007-07-09 18:51:59 +02002878 barrier();
2879 /*
2880 * this_rq must be evaluated again because prev may have moved
2881 * CPUs since it called schedule(), thus the 'rq' on its stack
2882 * frame will be invalid.
2883 */
2884 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885}
2886
2887/*
2888 * nr_running, nr_uninterruptible and nr_context_switches:
2889 *
2890 * externally visible scheduler statistics: current number of runnable
2891 * threads, current number of uninterruptible-sleeping threads, total
2892 * number of context switches performed since bootup.
2893 */
2894unsigned long nr_running(void)
2895{
2896 unsigned long i, sum = 0;
2897
2898 for_each_online_cpu(i)
2899 sum += cpu_rq(i)->nr_running;
2900
2901 return sum;
2902}
2903
2904unsigned long nr_uninterruptible(void)
2905{
2906 unsigned long i, sum = 0;
2907
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002908 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 sum += cpu_rq(i)->nr_uninterruptible;
2910
2911 /*
2912 * Since we read the counters lockless, it might be slightly
2913 * inaccurate. Do not allow it to go below zero though:
2914 */
2915 if (unlikely((long)sum < 0))
2916 sum = 0;
2917
2918 return sum;
2919}
2920
2921unsigned long long nr_context_switches(void)
2922{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002923 int i;
2924 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002926 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 sum += cpu_rq(i)->nr_switches;
2928
2929 return sum;
2930}
2931
2932unsigned long nr_iowait(void)
2933{
2934 unsigned long i, sum = 0;
2935
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002936 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2938
2939 return sum;
2940}
2941
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002942unsigned long nr_active(void)
2943{
2944 unsigned long i, running = 0, uninterruptible = 0;
2945
2946 for_each_online_cpu(i) {
2947 running += cpu_rq(i)->nr_running;
2948 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2949 }
2950
2951 if (unlikely((long)uninterruptible < 0))
2952 uninterruptible = 0;
2953
2954 return running + uninterruptible;
2955}
2956
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002958 * Update rq->cpu_load[] statistics. This function is usually called every
2959 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002960 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002961static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002962{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002963 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002964 int i, scale;
2965
2966 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002967
2968 /* Update our load: */
2969 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2970 unsigned long old_load, new_load;
2971
2972 /* scale is effectively 1 << i now, and >> i divides by scale */
2973
2974 old_load = this_rq->cpu_load[i];
2975 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002976 /*
2977 * Round up the averaging division if load is increasing. This
2978 * prevents us from getting stuck on 9 if the load is 10, for
2979 * example.
2980 */
2981 if (new_load > old_load)
2982 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002983 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2984 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002985}
2986
Ingo Molnardd41f592007-07-09 18:51:59 +02002987#ifdef CONFIG_SMP
2988
Ingo Molnar48f24c42006-07-03 00:25:40 -07002989/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 * double_rq_lock - safely lock two runqueues
2991 *
2992 * Note this does not disable interrupts like task_rq_lock,
2993 * you need to do so manually before calling.
2994 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002995static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 __acquires(rq1->lock)
2997 __acquires(rq2->lock)
2998{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002999 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if (rq1 == rq2) {
3001 spin_lock(&rq1->lock);
3002 __acquire(rq2->lock); /* Fake it out ;) */
3003 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003004 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 spin_lock(&rq1->lock);
3006 spin_lock(&rq2->lock);
3007 } else {
3008 spin_lock(&rq2->lock);
3009 spin_lock(&rq1->lock);
3010 }
3011 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003012 update_rq_clock(rq1);
3013 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014}
3015
3016/*
3017 * double_rq_unlock - safely unlock two runqueues
3018 *
3019 * Note this does not restore interrupts like task_rq_unlock,
3020 * you need to do so manually after calling.
3021 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003022static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 __releases(rq1->lock)
3024 __releases(rq2->lock)
3025{
3026 spin_unlock(&rq1->lock);
3027 if (rq1 != rq2)
3028 spin_unlock(&rq2->lock);
3029 else
3030 __release(rq2->lock);
3031}
3032
3033/*
3034 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
3035 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01003036static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 __releases(this_rq->lock)
3038 __acquires(busiest->lock)
3039 __acquires(this_rq->lock)
3040{
Steven Rostedte8fa1362008-01-25 21:08:05 +01003041 int ret = 0;
3042
Kirill Korotaev054b9102006-12-10 02:20:11 -08003043 if (unlikely(!irqs_disabled())) {
3044 /* printk() doesn't work good under rq->lock */
3045 spin_unlock(&this_rq->lock);
3046 BUG_ON(1);
3047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003049 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 spin_unlock(&this_rq->lock);
3051 spin_lock(&busiest->lock);
3052 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01003053 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 } else
3055 spin_lock(&busiest->lock);
3056 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01003057 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
3060/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 * If dest_cpu is allowed for this process, migrate the task to it.
3062 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003063 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 * the cpu_allowed mask is restored.
3065 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003066static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003068 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003070 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
3072 rq = task_rq_lock(p, &flags);
3073 if (!cpu_isset(dest_cpu, p->cpus_allowed)
3074 || unlikely(cpu_is_offline(dest_cpu)))
3075 goto out;
3076
3077 /* force the process onto the specified CPU */
3078 if (migrate_task(p, dest_cpu, &req)) {
3079 /* Need to wait for migration thread (might exit: take ref). */
3080 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 get_task_struct(mt);
3083 task_rq_unlock(rq, &flags);
3084 wake_up_process(mt);
3085 put_task_struct(mt);
3086 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 return;
3089 }
3090out:
3091 task_rq_unlock(rq, &flags);
3092}
3093
3094/*
Nick Piggin476d1392005-06-25 14:57:29 -07003095 * sched_exec - execve() is a valuable balancing opportunity, because at
3096 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 */
3098void sched_exec(void)
3099{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003101 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003103 if (new_cpu != this_cpu)
3104 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105}
3106
3107/*
3108 * pull_task - move a task from a remote runqueue to the local runqueue.
3109 * Both runqueues must be locked.
3110 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003111static void pull_task(struct rq *src_rq, struct task_struct *p,
3112 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003114 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003116 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 /*
3118 * Note that idle threads have a prio of MAX_PRIO, for this test
3119 * to be always true for them.
3120 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003121 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
3123
3124/*
3125 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3126 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003127static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003128int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003129 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003130 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131{
3132 /*
3133 * We do not migrate tasks that are:
3134 * 1) running (obviously), or
3135 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3136 * 3) are cache-hot on their current CPU.
3137 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003138 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3139 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003141 }
Nick Piggin81026792005-06-25 14:57:07 -07003142 *all_pinned = 0;
3143
Ingo Molnarcc367732007-10-15 17:00:18 +02003144 if (task_running(rq, p)) {
3145 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003146 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Ingo Molnarda84d962007-10-15 17:00:18 +02003149 /*
3150 * Aggressive migration if:
3151 * 1) task is cache cold, or
3152 * 2) too many balance attempts have failed.
3153 */
3154
Ingo Molnar6bc16652007-10-15 17:00:18 +02003155 if (!task_hot(p, rq->clock, sd) ||
3156 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003157#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003158 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003159 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003160 schedstat_inc(p, se.nr_forced_migrations);
3161 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003162#endif
3163 return 1;
3164 }
3165
Ingo Molnarcc367732007-10-15 17:00:18 +02003166 if (task_hot(p, rq->clock, sd)) {
3167 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003168 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 return 1;
3171}
3172
Peter Williamse1d14842007-10-24 18:23:51 +02003173static unsigned long
3174balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3175 unsigned long max_load_move, struct sched_domain *sd,
3176 enum cpu_idle_type idle, int *all_pinned,
3177 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003178{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003179 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003180 struct task_struct *p;
3181 long rem_load_move = max_load_move;
3182
Peter Williamse1d14842007-10-24 18:23:51 +02003183 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003184 goto out;
3185
3186 pinned = 1;
3187
3188 /*
3189 * Start the load-balancing iterator:
3190 */
3191 p = iterator->start(iterator->arg);
3192next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003193 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003194 goto out;
3195 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003196 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003197 * skip a task if it will be the highest priority task (i.e. smallest
3198 * prio value) on its new queue regardless of its load weight
3199 */
3200 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3201 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003202 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003203 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003204 p = iterator->next(iterator->arg);
3205 goto next;
3206 }
3207
3208 pull_task(busiest, p, this_rq, this_cpu);
3209 pulled++;
3210 rem_load_move -= p->se.load.weight;
3211
3212 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003213 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003214 */
Peter Williamse1d14842007-10-24 18:23:51 +02003215 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003216 if (p->prio < *this_best_prio)
3217 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003218 p = iterator->next(iterator->arg);
3219 goto next;
3220 }
3221out:
3222 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003223 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003224 * so we can safely collect pull_task() stats here rather than
3225 * inside pull_task().
3226 */
3227 schedstat_add(sd, lb_gained[idle], pulled);
3228
3229 if (all_pinned)
3230 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003231
3232 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003233}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003234
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235/*
Peter Williams43010652007-08-09 11:16:46 +02003236 * move_tasks tries to move up to max_load_move weighted load from busiest to
3237 * this_rq, as part of a balancing operation within domain "sd".
3238 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 *
3240 * Called with both runqueues locked.
3241 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003242static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003243 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003244 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003245 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003247 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003248 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003249 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Ingo Molnardd41f592007-07-09 18:51:59 +02003251 do {
Peter Williams43010652007-08-09 11:16:46 +02003252 total_load_moved +=
3253 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003254 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003255 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003256 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003257 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Peter Williams43010652007-08-09 11:16:46 +02003259 return total_load_moved > 0;
3260}
3261
Peter Williamse1d14842007-10-24 18:23:51 +02003262static int
3263iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3264 struct sched_domain *sd, enum cpu_idle_type idle,
3265 struct rq_iterator *iterator)
3266{
3267 struct task_struct *p = iterator->start(iterator->arg);
3268 int pinned = 0;
3269
3270 while (p) {
3271 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3272 pull_task(busiest, p, this_rq, this_cpu);
3273 /*
3274 * Right now, this is only the second place pull_task()
3275 * is called, so we can safely collect pull_task()
3276 * stats here rather than inside pull_task().
3277 */
3278 schedstat_inc(sd, lb_gained[idle]);
3279
3280 return 1;
3281 }
3282 p = iterator->next(iterator->arg);
3283 }
3284
3285 return 0;
3286}
3287
Peter Williams43010652007-08-09 11:16:46 +02003288/*
3289 * move_one_task tries to move exactly one task from busiest to this_rq, as
3290 * part of active balancing operations within "domain".
3291 * Returns 1 if successful and 0 otherwise.
3292 *
3293 * Called with both runqueues locked.
3294 */
3295static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3296 struct sched_domain *sd, enum cpu_idle_type idle)
3297{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003298 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003299
3300 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003301 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003302 return 1;
3303
3304 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
3307/*
3308 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003309 * domain. It calculates and returns the amount of weighted load which
3310 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 */
3312static struct sched_group *
3313find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003314 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003315 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
3317 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3318 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003319 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003320 unsigned long busiest_load_per_task, busiest_nr_running;
3321 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003322 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003323#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3324 int power_savings_balance = 1;
3325 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3326 unsigned long min_nr_running = ULONG_MAX;
3327 struct sched_group *group_min = NULL, *group_leader = NULL;
3328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
3330 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003331 busiest_load_per_task = busiest_nr_running = 0;
3332 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003333 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003334 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003335 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003336 load_idx = sd->newidle_idx;
3337 else
3338 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
3340 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003341 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 int local_group;
3343 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003344 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003345 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003346 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348 local_group = cpu_isset(this_cpu, group->cpumask);
3349
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003350 if (local_group)
3351 balance_cpu = first_cpu(group->cpumask);
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003354 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003355 max_cpu_load = 0;
3356 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
3358 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003359 struct rq *rq;
3360
3361 if (!cpu_isset(i, *cpus))
3362 continue;
3363
3364 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003365
Suresh Siddha9439aab2007-07-19 21:28:35 +02003366 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003367 *sd_idle = 0;
3368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003370 if (local_group) {
3371 if (idle_cpu(i) && !first_idle_cpu) {
3372 first_idle_cpu = 1;
3373 balance_cpu = i;
3374 }
3375
Nick Piggina2000572006-02-10 01:51:02 -08003376 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003377 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003378 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003379 if (load > max_cpu_load)
3380 max_cpu_load = load;
3381 if (min_cpu_load > load)
3382 min_cpu_load = load;
3383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
3385 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003386 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003387 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 }
3389
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003390 /*
3391 * First idle cpu or the first cpu(busiest) in this sched group
3392 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003393 * domains. In the newly idle case, we will allow all the cpu's
3394 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003395 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003396 if (idle != CPU_NEWLY_IDLE && local_group &&
3397 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003398 *balance = 0;
3399 goto ret;
3400 }
3401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003403 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
3405 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003406 avg_load = sg_div_cpu_power(group,
3407 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Ken Chen908a7c12007-10-17 16:55:11 +02003409 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3410 __group_imb = 1;
3411
Eric Dumazet5517d862007-05-08 00:32:57 -07003412 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003413
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 if (local_group) {
3415 this_load = avg_load;
3416 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003417 this_nr_running = sum_nr_running;
3418 this_load_per_task = sum_weighted_load;
3419 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003420 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 max_load = avg_load;
3422 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003423 busiest_nr_running = sum_nr_running;
3424 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003425 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003427
3428#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3429 /*
3430 * Busy processors will not participate in power savings
3431 * balance.
3432 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003433 if (idle == CPU_NOT_IDLE ||
3434 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3435 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003436
3437 /*
3438 * If the local group is idle or completely loaded
3439 * no need to do power savings balance at this domain
3440 */
3441 if (local_group && (this_nr_running >= group_capacity ||
3442 !this_nr_running))
3443 power_savings_balance = 0;
3444
Ingo Molnardd41f592007-07-09 18:51:59 +02003445 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003446 * If a group is already running at full capacity or idle,
3447 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003448 */
3449 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003450 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003451 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003452
Ingo Molnardd41f592007-07-09 18:51:59 +02003453 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003454 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003455 * This is the group from where we need to pick up the load
3456 * for saving power
3457 */
3458 if ((sum_nr_running < min_nr_running) ||
3459 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003460 first_cpu(group->cpumask) <
3461 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003462 group_min = group;
3463 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003464 min_load_per_task = sum_weighted_load /
3465 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003466 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003467
Ingo Molnardd41f592007-07-09 18:51:59 +02003468 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003469 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003470 * capacity but still has some space to pick up some load
3471 * from other group and save more power
3472 */
3473 if (sum_nr_running <= group_capacity - 1) {
3474 if (sum_nr_running > leader_nr_running ||
3475 (sum_nr_running == leader_nr_running &&
3476 first_cpu(group->cpumask) >
3477 first_cpu(group_leader->cpumask))) {
3478 group_leader = group;
3479 leader_nr_running = sum_nr_running;
3480 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003481 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003482group_next:
3483#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 group = group->next;
3485 } while (group != sd->groups);
3486
Peter Williams2dd73a42006-06-27 02:54:34 -07003487 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 goto out_balanced;
3489
3490 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3491
3492 if (this_load >= avg_load ||
3493 100*max_load <= sd->imbalance_pct*this_load)
3494 goto out_balanced;
3495
Peter Williams2dd73a42006-06-27 02:54:34 -07003496 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003497 if (group_imb)
3498 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 /*
3501 * We're trying to get all the cpus to the average_load, so we don't
3502 * want to push ourselves above the average load, nor do we wish to
3503 * reduce the max loaded cpu below the average load, as either of these
3504 * actions would just result in more rebalancing later, and ping-pong
3505 * tasks around. Thus we look for the minimum possible imbalance.
3506 * Negative imbalances (*we* are more loaded than anyone else) will
3507 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003508 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 * appear as very large values with unsigned longs.
3510 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003511 if (max_load <= busiest_load_per_task)
3512 goto out_balanced;
3513
3514 /*
3515 * In the presence of smp nice balancing, certain scenarios can have
3516 * max load less than avg load(as we skip the groups at or below
3517 * its cpu_power, while calculating max_load..)
3518 */
3519 if (max_load < avg_load) {
3520 *imbalance = 0;
3521 goto small_imbalance;
3522 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003523
3524 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003525 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003526
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003528 *imbalance = min(max_pull * busiest->__cpu_power,
3529 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 / SCHED_LOAD_SCALE;
3531
Peter Williams2dd73a42006-06-27 02:54:34 -07003532 /*
3533 * if *imbalance is less than the average load per runnable task
3534 * there is no gaurantee that any tasks will be moved so we'll have
3535 * a think about bumping its value to force at least one task to be
3536 * moved
3537 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003538 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003539 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003540 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
Peter Williams2dd73a42006-06-27 02:54:34 -07003542small_imbalance:
3543 pwr_move = pwr_now = 0;
3544 imbn = 2;
3545 if (this_nr_running) {
3546 this_load_per_task /= this_nr_running;
3547 if (busiest_load_per_task > this_load_per_task)
3548 imbn = 1;
3549 } else
3550 this_load_per_task = SCHED_LOAD_SCALE;
3551
Ingo Molnardd41f592007-07-09 18:51:59 +02003552 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3553 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003554 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 return busiest;
3556 }
3557
3558 /*
3559 * OK, we don't have enough imbalance to justify moving tasks,
3560 * however we may be able to increase total CPU power used by
3561 * moving them.
3562 */
3563
Eric Dumazet5517d862007-05-08 00:32:57 -07003564 pwr_now += busiest->__cpu_power *
3565 min(busiest_load_per_task, max_load);
3566 pwr_now += this->__cpu_power *
3567 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 pwr_now /= SCHED_LOAD_SCALE;
3569
3570 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003571 tmp = sg_div_cpu_power(busiest,
3572 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003574 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003575 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
3577 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003578 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003579 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003580 tmp = sg_div_cpu_power(this,
3581 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003583 tmp = sg_div_cpu_power(this,
3584 busiest_load_per_task * SCHED_LOAD_SCALE);
3585 pwr_move += this->__cpu_power *
3586 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 pwr_move /= SCHED_LOAD_SCALE;
3588
3589 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003590 if (pwr_move > pwr_now)
3591 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 }
3593
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 return busiest;
3595
3596out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003597#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003598 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003599 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003601 if (this == group_leader && group_leader != group_min) {
3602 *imbalance = min_load_per_task;
3603 return group_min;
3604 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003605#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003606ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 *imbalance = 0;
3608 return NULL;
3609}
3610
3611/*
3612 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3613 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003614static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003615find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003616 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003618 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003619 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 int i;
3621
3622 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003623 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003624
3625 if (!cpu_isset(i, *cpus))
3626 continue;
3627
Ingo Molnar48f24c42006-07-03 00:25:40 -07003628 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003629 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
Ingo Molnardd41f592007-07-09 18:51:59 +02003631 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003632 continue;
3633
Ingo Molnardd41f592007-07-09 18:51:59 +02003634 if (wl > max_load) {
3635 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003636 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 }
3638 }
3639
3640 return busiest;
3641}
3642
3643/*
Nick Piggin77391d72005-06-25 14:57:30 -07003644 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3645 * so long as it is large enough.
3646 */
3647#define MAX_PINNED_INTERVAL 512
3648
3649/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3651 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003653static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003654 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003655 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656{
Peter Williams43010652007-08-09 11:16:46 +02003657 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003660 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003661 unsigned long flags;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003662 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003663
Mike Travis7c16ec52008-04-04 18:11:11 -07003664 cpus_setall(*cpus);
3665
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003666 unlock_aggregate = get_aggregate(sd);
3667
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003668 /*
3669 * When power savings policy is enabled for the parent domain, idle
3670 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003671 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003672 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003673 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003674 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003675 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003676 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Ingo Molnar2d723762007-10-15 17:00:12 +02003678 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003680redo:
3681 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003682 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003683
Chen, Kenneth W06066712006-12-10 02:20:35 -08003684 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003685 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 if (!group) {
3688 schedstat_inc(sd, lb_nobusyg[idle]);
3689 goto out_balanced;
3690 }
3691
Mike Travis7c16ec52008-04-04 18:11:11 -07003692 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 if (!busiest) {
3694 schedstat_inc(sd, lb_nobusyq[idle]);
3695 goto out_balanced;
3696 }
3697
Nick Piggindb935db2005-06-25 14:57:11 -07003698 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
3700 schedstat_add(sd, lb_imbalance[idle], imbalance);
3701
Peter Williams43010652007-08-09 11:16:46 +02003702 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 if (busiest->nr_running > 1) {
3704 /*
3705 * Attempt to move tasks. If find_busiest_group has found
3706 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003707 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 * correctly treated as an imbalance.
3709 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003710 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003711 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003712 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003713 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003714 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003715 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003716
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003717 /*
3718 * some other cpu did the load balance for us.
3719 */
Peter Williams43010652007-08-09 11:16:46 +02003720 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003721 resched_cpu(this_cpu);
3722
Nick Piggin81026792005-06-25 14:57:07 -07003723 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003724 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003725 cpu_clear(cpu_of(busiest), *cpus);
3726 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003727 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003728 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 }
Nick Piggin81026792005-06-25 14:57:07 -07003731
Peter Williams43010652007-08-09 11:16:46 +02003732 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 schedstat_inc(sd, lb_failed[idle]);
3734 sd->nr_balance_failed++;
3735
3736 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003738 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003739
3740 /* don't kick the migration_thread, if the curr
3741 * task on busiest cpu can't be moved to this_cpu
3742 */
3743 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003744 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003745 all_pinned = 1;
3746 goto out_one_pinned;
3747 }
3748
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 if (!busiest->active_balance) {
3750 busiest->active_balance = 1;
3751 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003752 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003754 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003755 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 wake_up_process(busiest->migration_thread);
3757
3758 /*
3759 * We've kicked active balancing, reset the failure
3760 * counter.
3761 */
Nick Piggin39507452005-06-25 14:57:09 -07003762 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 }
Nick Piggin81026792005-06-25 14:57:07 -07003764 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 sd->nr_balance_failed = 0;
3766
Nick Piggin81026792005-06-25 14:57:07 -07003767 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 /* We were unbalanced, so reset the balancing interval */
3769 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003770 } else {
3771 /*
3772 * If we've begun active balancing, start to back off. This
3773 * case may not be covered by the all_pinned logic if there
3774 * is only 1 task on the busy runqueue (because we don't call
3775 * move_tasks).
3776 */
3777 if (sd->balance_interval < sd->max_interval)
3778 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 }
3780
Peter Williams43010652007-08-09 11:16:46 +02003781 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003782 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003783 ld_moved = -1;
3784
3785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
3787out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 schedstat_inc(sd, lb_balanced[idle]);
3789
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003790 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003791
3792out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003794 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3795 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 sd->balance_interval *= 2;
3797
Ingo Molnar48f24c42006-07-03 00:25:40 -07003798 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003799 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstra18d95a22008-04-19 19:45:00 +02003800 ld_moved = -1;
3801 else
3802 ld_moved = 0;
3803out:
3804 if (unlock_aggregate)
3805 put_aggregate(sd);
3806 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807}
3808
3809/*
3810 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3811 * tasks if there is an imbalance.
3812 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003813 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 * this_rq is locked.
3815 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003816static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003817load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3818 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819{
3820 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003821 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003823 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003824 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003825 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003826
3827 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003828
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003829 /*
3830 * When power savings policy is enabled for the parent domain, idle
3831 * sibling can pick up load irrespective of busy siblings. In this case,
3832 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003833 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003834 */
3835 if (sd->flags & SD_SHARE_CPUPOWER &&
3836 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003837 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Ingo Molnar2d723762007-10-15 17:00:12 +02003839 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003840redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003841 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003842 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003844 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003845 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 }
3847
Mike Travis7c16ec52008-04-04 18:11:11 -07003848 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003849 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003850 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003851 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 }
3853
Nick Piggindb935db2005-06-25 14:57:11 -07003854 BUG_ON(busiest == this_rq);
3855
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003856 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003857
Peter Williams43010652007-08-09 11:16:46 +02003858 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003859 if (busiest->nr_running > 1) {
3860 /* Attempt to move tasks */
3861 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003862 /* this_rq->clock is already updated */
3863 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003864 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003865 imbalance, sd, CPU_NEWLY_IDLE,
3866 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003867 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003868
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003869 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003870 cpu_clear(cpu_of(busiest), *cpus);
3871 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003872 goto redo;
3873 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003874 }
3875
Peter Williams43010652007-08-09 11:16:46 +02003876 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003877 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003878 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3879 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003880 return -1;
3881 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003882 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Peter Williams43010652007-08-09 11:16:46 +02003884 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003885
3886out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003887 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003888 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003889 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003890 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003891 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003892
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894}
3895
3896/*
3897 * idle_balance is called by schedule() if this_cpu is about to become
3898 * idle. Attempts to pull tasks from other CPUs.
3899 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003900static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901{
3902 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003903 int pulled_task = -1;
3904 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003905 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
3907 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003908 unsigned long interval;
3909
3910 if (!(sd->flags & SD_LOAD_BALANCE))
3911 continue;
3912
3913 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003914 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003915 pulled_task = load_balance_newidle(this_cpu, this_rq,
3916 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003917
3918 interval = msecs_to_jiffies(sd->balance_interval);
3919 if (time_after(next_balance, sd->last_balance + interval))
3920 next_balance = sd->last_balance + interval;
3921 if (pulled_task)
3922 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003924 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003925 /*
3926 * We are going idle. next_balance may be set based on
3927 * a busy processor. So reset next_balance.
3928 */
3929 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931}
3932
3933/*
3934 * active_load_balance is run by migration threads. It pushes running tasks
3935 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3936 * running on each physical CPU where possible, and avoids physical /
3937 * logical imbalances.
3938 *
3939 * Called with busiest_rq locked.
3940 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003941static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942{
Nick Piggin39507452005-06-25 14:57:09 -07003943 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003944 struct sched_domain *sd;
3945 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003946
Ingo Molnar48f24c42006-07-03 00:25:40 -07003947 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003948 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003949 return;
3950
3951 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
3953 /*
Nick Piggin39507452005-06-25 14:57:09 -07003954 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003955 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003956 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 */
Nick Piggin39507452005-06-25 14:57:09 -07003958 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
Nick Piggin39507452005-06-25 14:57:09 -07003960 /* move a task from busiest_rq to target_rq */
3961 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003962 update_rq_clock(busiest_rq);
3963 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Nick Piggin39507452005-06-25 14:57:09 -07003965 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003966 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003967 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003968 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003969 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
Ingo Molnar48f24c42006-07-03 00:25:40 -07003972 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003973 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
Peter Williams43010652007-08-09 11:16:46 +02003975 if (move_one_task(target_rq, target_cpu, busiest_rq,
3976 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003977 schedstat_inc(sd, alb_pushed);
3978 else
3979 schedstat_inc(sd, alb_failed);
3980 }
Nick Piggin39507452005-06-25 14:57:09 -07003981 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982}
3983
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003984#ifdef CONFIG_NO_HZ
3985static struct {
3986 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003987 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003988} nohz ____cacheline_aligned = {
3989 .load_balancer = ATOMIC_INIT(-1),
3990 .cpu_mask = CPU_MASK_NONE,
3991};
3992
Christoph Lameter7835b982006-12-10 02:20:22 -08003993/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003994 * This routine will try to nominate the ilb (idle load balancing)
3995 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3996 * load balancing on behalf of all those cpus. If all the cpus in the system
3997 * go into this tickless mode, then there will be no ilb owner (as there is
3998 * no need for one) and all the cpus will sleep till the next wakeup event
3999 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08004000 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004001 * For the ilb owner, tick is not stopped. And this tick will be used
4002 * for idle load balancing. ilb owner will still be part of
4003 * nohz.cpu_mask..
4004 *
4005 * While stopping the tick, this cpu will become the ilb owner if there
4006 * is no other owner. And will be the owner till that cpu becomes busy
4007 * or if all cpus in the system stop their ticks at which point
4008 * there is no need for ilb owner.
4009 *
4010 * When the ilb owner becomes busy, it nominates another owner, during the
4011 * next busy scheduler_tick()
4012 */
4013int select_nohz_load_balancer(int stop_tick)
4014{
4015 int cpu = smp_processor_id();
4016
4017 if (stop_tick) {
4018 cpu_set(cpu, nohz.cpu_mask);
4019 cpu_rq(cpu)->in_nohz_recently = 1;
4020
4021 /*
4022 * If we are going offline and still the leader, give up!
4023 */
4024 if (cpu_is_offline(cpu) &&
4025 atomic_read(&nohz.load_balancer) == cpu) {
4026 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4027 BUG();
4028 return 0;
4029 }
4030
4031 /* time for ilb owner also to sleep */
4032 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4033 if (atomic_read(&nohz.load_balancer) == cpu)
4034 atomic_set(&nohz.load_balancer, -1);
4035 return 0;
4036 }
4037
4038 if (atomic_read(&nohz.load_balancer) == -1) {
4039 /* make me the ilb owner */
4040 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
4041 return 1;
4042 } else if (atomic_read(&nohz.load_balancer) == cpu)
4043 return 1;
4044 } else {
4045 if (!cpu_isset(cpu, nohz.cpu_mask))
4046 return 0;
4047
4048 cpu_clear(cpu, nohz.cpu_mask);
4049
4050 if (atomic_read(&nohz.load_balancer) == cpu)
4051 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4052 BUG();
4053 }
4054 return 0;
4055}
4056#endif
4057
4058static DEFINE_SPINLOCK(balancing);
4059
4060/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004061 * It checks each scheduling domain to see if it is due to be balanced,
4062 * and initiates a balancing operation if so.
4063 *
4064 * Balancing parameters are set up in arch_init_sched_domains.
4065 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004066static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004067{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004068 int balance = 1;
4069 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004070 unsigned long interval;
4071 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004072 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004073 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004074 int update_next_balance = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07004075 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004077 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 if (!(sd->flags & SD_LOAD_BALANCE))
4079 continue;
4080
4081 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004082 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 interval *= sd->busy_factor;
4084
4085 /* scale ms to jiffies */
4086 interval = msecs_to_jiffies(interval);
4087 if (unlikely(!interval))
4088 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004089 if (interval > HZ*NR_CPUS/10)
4090 interval = HZ*NR_CPUS/10;
4091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
Christoph Lameter08c183f2006-12-10 02:20:29 -08004093 if (sd->flags & SD_SERIALIZE) {
4094 if (!spin_trylock(&balancing))
4095 goto out;
4096 }
4097
Christoph Lameterc9819f42006-12-10 02:20:25 -08004098 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07004099 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004100 /*
4101 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004102 * longer idle, or one of our SMT siblings is
4103 * not idle.
4104 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004105 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004107 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08004109 if (sd->flags & SD_SERIALIZE)
4110 spin_unlock(&balancing);
4111out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004112 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004113 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004114 update_next_balance = 1;
4115 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004116
4117 /*
4118 * Stop the load balance at this level. There is another
4119 * CPU in our sched group which is doing load balancing more
4120 * actively.
4121 */
4122 if (!balance)
4123 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004125
4126 /*
4127 * next_balance will be updated only when there is a need.
4128 * When the cpu is attached to null domain for ex, it will not be
4129 * updated.
4130 */
4131 if (likely(update_next_balance))
4132 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004133}
4134
4135/*
4136 * run_rebalance_domains is triggered when needed from the scheduler tick.
4137 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4138 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4139 */
4140static void run_rebalance_domains(struct softirq_action *h)
4141{
Ingo Molnardd41f592007-07-09 18:51:59 +02004142 int this_cpu = smp_processor_id();
4143 struct rq *this_rq = cpu_rq(this_cpu);
4144 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4145 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004146
Ingo Molnardd41f592007-07-09 18:51:59 +02004147 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004148
4149#ifdef CONFIG_NO_HZ
4150 /*
4151 * If this cpu is the owner for idle load balancing, then do the
4152 * balancing on behalf of the other idle cpus whose ticks are
4153 * stopped.
4154 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004155 if (this_rq->idle_at_tick &&
4156 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004157 cpumask_t cpus = nohz.cpu_mask;
4158 struct rq *rq;
4159 int balance_cpu;
4160
Ingo Molnardd41f592007-07-09 18:51:59 +02004161 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004162 for_each_cpu_mask(balance_cpu, cpus) {
4163 /*
4164 * If this cpu gets work to do, stop the load balancing
4165 * work being done for other cpus. Next load
4166 * balancing owner will pick it up.
4167 */
4168 if (need_resched())
4169 break;
4170
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004171 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004172
4173 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004174 if (time_after(this_rq->next_balance, rq->next_balance))
4175 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004176 }
4177 }
4178#endif
4179}
4180
4181/*
4182 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4183 *
4184 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4185 * idle load balancing owner or decide to stop the periodic load balancing,
4186 * if the whole system is idle.
4187 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004188static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004189{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004190#ifdef CONFIG_NO_HZ
4191 /*
4192 * If we were in the nohz mode recently and busy at the current
4193 * scheduler tick, then check if we need to nominate new idle
4194 * load balancer.
4195 */
4196 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4197 rq->in_nohz_recently = 0;
4198
4199 if (atomic_read(&nohz.load_balancer) == cpu) {
4200 cpu_clear(cpu, nohz.cpu_mask);
4201 atomic_set(&nohz.load_balancer, -1);
4202 }
4203
4204 if (atomic_read(&nohz.load_balancer) == -1) {
4205 /*
4206 * simple selection for now: Nominate the
4207 * first cpu in the nohz list to be the next
4208 * ilb owner.
4209 *
4210 * TBD: Traverse the sched domains and nominate
4211 * the nearest cpu in the nohz.cpu_mask.
4212 */
4213 int ilb = first_cpu(nohz.cpu_mask);
4214
Mike Travis434d53b2008-04-04 18:11:04 -07004215 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004216 resched_cpu(ilb);
4217 }
4218 }
4219
4220 /*
4221 * If this cpu is idle and doing idle load balancing for all the
4222 * cpus with ticks stopped, is it time for that to stop?
4223 */
4224 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4225 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4226 resched_cpu(cpu);
4227 return;
4228 }
4229
4230 /*
4231 * If this cpu is idle and the idle load balancing is done by
4232 * someone else, then no need raise the SCHED_SOFTIRQ
4233 */
4234 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4235 cpu_isset(cpu, nohz.cpu_mask))
4236 return;
4237#endif
4238 if (time_after_eq(jiffies, rq->next_balance))
4239 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240}
Ingo Molnardd41f592007-07-09 18:51:59 +02004241
4242#else /* CONFIG_SMP */
4243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244/*
4245 * on UP we do not need to balance between CPUs:
4246 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004247static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248{
4249}
Ingo Molnardd41f592007-07-09 18:51:59 +02004250
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251#endif
4252
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253DEFINE_PER_CPU(struct kernel_stat, kstat);
4254
4255EXPORT_PER_CPU_SYMBOL(kstat);
4256
4257/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004258 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4259 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004261unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004264 u64 ns, delta_exec;
4265 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004266
Ingo Molnar41b86e92007-07-09 18:51:58 +02004267 rq = task_rq_lock(p, &flags);
4268 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004269 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004270 update_rq_clock(rq);
4271 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004272 if ((s64)delta_exec > 0)
4273 ns += delta_exec;
4274 }
4275 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004276
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 return ns;
4278}
4279
4280/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 * Account user cpu time to a process.
4282 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 * @cputime: the cpu time spent in user space since the last update
4284 */
4285void account_user_time(struct task_struct *p, cputime_t cputime)
4286{
4287 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4288 cputime64_t tmp;
4289
4290 p->utime = cputime_add(p->utime, cputime);
4291
4292 /* Add user time to cpustat. */
4293 tmp = cputime_to_cputime64(cputime);
4294 if (TASK_NICE(p) > 0)
4295 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4296 else
4297 cpustat->user = cputime64_add(cpustat->user, tmp);
4298}
4299
4300/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004301 * Account guest cpu time to a process.
4302 * @p: the process that the cpu time gets accounted to
4303 * @cputime: the cpu time spent in virtual machine since the last update
4304 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004305static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004306{
4307 cputime64_t tmp;
4308 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4309
4310 tmp = cputime_to_cputime64(cputime);
4311
4312 p->utime = cputime_add(p->utime, cputime);
4313 p->gtime = cputime_add(p->gtime, cputime);
4314
4315 cpustat->user = cputime64_add(cpustat->user, tmp);
4316 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4317}
4318
4319/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004320 * Account scaled user cpu time to a process.
4321 * @p: the process that the cpu time gets accounted to
4322 * @cputime: the cpu time spent in user space since the last update
4323 */
4324void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4325{
4326 p->utimescaled = cputime_add(p->utimescaled, cputime);
4327}
4328
4329/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 * Account system cpu time to a process.
4331 * @p: the process that the cpu time gets accounted to
4332 * @hardirq_offset: the offset to subtract from hardirq_count()
4333 * @cputime: the cpu time spent in kernel space since the last update
4334 */
4335void account_system_time(struct task_struct *p, int hardirq_offset,
4336 cputime_t cputime)
4337{
4338 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004339 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 cputime64_t tmp;
4341
Christian Borntraeger97783852007-11-15 20:57:39 +01004342 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0))
4343 return account_guest_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02004344
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 p->stime = cputime_add(p->stime, cputime);
4346
4347 /* Add system time to cpustat. */
4348 tmp = cputime_to_cputime64(cputime);
4349 if (hardirq_count() - hardirq_offset)
4350 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4351 else if (softirq_count())
4352 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004353 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004355 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4357 else
4358 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4359 /* Account for system time used */
4360 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361}
4362
4363/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004364 * Account scaled system cpu time to a process.
4365 * @p: the process that the cpu time gets accounted to
4366 * @hardirq_offset: the offset to subtract from hardirq_count()
4367 * @cputime: the cpu time spent in kernel space since the last update
4368 */
4369void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4370{
4371 p->stimescaled = cputime_add(p->stimescaled, cputime);
4372}
4373
4374/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 * Account for involuntary wait time.
4376 * @p: the process from which the cpu time has been stolen
4377 * @steal: the cpu time spent in involuntary wait
4378 */
4379void account_steal_time(struct task_struct *p, cputime_t steal)
4380{
4381 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4382 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004383 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
4385 if (p == rq->idle) {
4386 p->stime = cputime_add(p->stime, steal);
4387 if (atomic_read(&rq->nr_iowait) > 0)
4388 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4389 else
4390 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004391 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4393}
4394
Christoph Lameter7835b982006-12-10 02:20:22 -08004395/*
4396 * This function gets called by the timer code, with HZ frequency.
4397 * We call it with interrupts disabled.
4398 *
4399 * It also gets called by the fork code, when changing the parent's
4400 * timeslices.
4401 */
4402void scheduler_tick(void)
4403{
Christoph Lameter7835b982006-12-10 02:20:22 -08004404 int cpu = smp_processor_id();
4405 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004406 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02004407 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08004408
Ingo Molnardd41f592007-07-09 18:51:59 +02004409 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02004410 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02004411 /*
4412 * Let rq->clock advance by at least TICK_NSEC:
4413 */
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01004414 if (unlikely(rq->clock < next_tick)) {
Ingo Molnar529c7722007-08-10 23:05:11 +02004415 rq->clock = next_tick;
Guillaume Chazaraincc203d22008-01-25 21:08:34 +01004416 rq->clock_underflows++;
4417 }
Ingo Molnar529c7722007-08-10 23:05:11 +02004418 rq->tick_timestamp = rq->clock;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02004419 update_last_tick_seen(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004420 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004421 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004422 spin_unlock(&rq->lock);
4423
Christoph Lametere418e1c2006-12-10 02:20:23 -08004424#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004425 rq->idle_at_tick = idle_cpu(cpu);
4426 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004427#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428}
4429
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
4431
Srinivasa Ds43627582008-02-23 15:24:04 -08004432void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433{
4434 /*
4435 * Underflow?
4436 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004437 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4438 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 preempt_count() += val;
4440 /*
4441 * Spinlock count overflowing soon?
4442 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004443 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4444 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445}
4446EXPORT_SYMBOL(add_preempt_count);
4447
Srinivasa Ds43627582008-02-23 15:24:04 -08004448void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449{
4450 /*
4451 * Underflow?
4452 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004453 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4454 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 /*
4456 * Is the spinlock portion underflowing?
4457 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004458 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4459 !(preempt_count() & PREEMPT_MASK)))
4460 return;
4461
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 preempt_count() -= val;
4463}
4464EXPORT_SYMBOL(sub_preempt_count);
4465
4466#endif
4467
4468/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004469 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004471static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472{
Satyam Sharma838225b2007-10-24 18:23:50 +02004473 struct pt_regs *regs = get_irq_regs();
4474
4475 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4476 prev->comm, prev->pid, preempt_count());
4477
Ingo Molnardd41f592007-07-09 18:51:59 +02004478 debug_show_held_locks(prev);
4479 if (irqs_disabled())
4480 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004481
4482 if (regs)
4483 show_regs(regs);
4484 else
4485 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004486}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
Ingo Molnardd41f592007-07-09 18:51:59 +02004488/*
4489 * Various schedule()-time debugging checks and statistics:
4490 */
4491static inline void schedule_debug(struct task_struct *prev)
4492{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004494 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 * schedule() atomically, we ignore that path for now.
4496 * Otherwise, whine if we are scheduling when we should not be.
4497 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004498 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
4499 __schedule_bug(prev);
4500
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4502
Ingo Molnar2d723762007-10-15 17:00:12 +02004503 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004504#ifdef CONFIG_SCHEDSTATS
4505 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004506 schedstat_inc(this_rq(), bkl_count);
4507 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004508 }
4509#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004510}
4511
4512/*
4513 * Pick up the highest-prio task:
4514 */
4515static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004516pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004517{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004518 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004519 struct task_struct *p;
4520
4521 /*
4522 * Optimization: we know that if all tasks are in
4523 * the fair class we can call that function directly:
4524 */
4525 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004526 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004527 if (likely(p))
4528 return p;
4529 }
4530
4531 class = sched_class_highest;
4532 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004533 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004534 if (p)
4535 return p;
4536 /*
4537 * Will never be NULL as the idle class always
4538 * returns a non-NULL p:
4539 */
4540 class = class->next;
4541 }
4542}
4543
4544/*
4545 * schedule() is the main scheduler function.
4546 */
4547asmlinkage void __sched schedule(void)
4548{
4549 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004550 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004551 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02004552 int cpu;
4553
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554need_resched:
4555 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004556 cpu = smp_processor_id();
4557 rq = cpu_rq(cpu);
4558 rcu_qsctr_inc(cpu);
4559 prev = rq->curr;
4560 switch_count = &prev->nivcsw;
4561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 release_kernel_lock(prev);
4563need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Ingo Molnardd41f592007-07-09 18:51:59 +02004565 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004567 hrtick_clear(rq);
4568
Ingo Molnar1e819952007-10-15 17:00:13 +02004569 /*
4570 * Do the rq-clock update outside the rq lock:
4571 */
4572 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02004573 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004574 spin_lock(&rq->lock);
4575 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576
Ingo Molnardd41f592007-07-09 18:51:59 +02004577 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4578 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004579 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004580 prev->state = TASK_RUNNING;
4581 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004582 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004583 }
4584 switch_count = &prev->nvcsw;
4585 }
4586
Steven Rostedt9a897c52008-01-25 21:08:22 +01004587#ifdef CONFIG_SMP
4588 if (prev->sched_class->pre_schedule)
4589 prev->sched_class->pre_schedule(rq, prev);
4590#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004591
Ingo Molnardd41f592007-07-09 18:51:59 +02004592 if (unlikely(!rq->nr_running))
4593 idle_balance(cpu, rq);
4594
Ingo Molnar31ee5292007-08-09 11:16:49 +02004595 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004596 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
4598 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02004599
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 rq->nr_switches++;
4602 rq->curr = next;
4603 ++*switch_count;
4604
Ingo Molnardd41f592007-07-09 18:51:59 +02004605 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004606 /*
4607 * the context switch might have flipped the stack from under
4608 * us, hence refresh the local variables.
4609 */
4610 cpu = smp_processor_id();
4611 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 } else
4613 spin_unlock_irq(&rq->lock);
4614
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004615 hrtick_set(rq);
4616
4617 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004619
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 preempt_enable_no_resched();
4621 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4622 goto need_resched;
4623}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624EXPORT_SYMBOL(schedule);
4625
4626#ifdef CONFIG_PREEMPT
4627/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004628 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004629 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 * occur there and call schedule directly.
4631 */
4632asmlinkage void __sched preempt_schedule(void)
4633{
4634 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 struct task_struct *task = current;
4636 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004637
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 /*
4639 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004640 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004642 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 return;
4644
Andi Kleen3a5c3592007-10-15 17:00:14 +02004645 do {
4646 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
Andi Kleen3a5c3592007-10-15 17:00:14 +02004648 /*
4649 * We keep the big kernel semaphore locked, but we
4650 * clear ->lock_depth so that schedule() doesnt
4651 * auto-release the semaphore:
4652 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004653 saved_lock_depth = task->lock_depth;
4654 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004655 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004656 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004657 sub_preempt_count(PREEMPT_ACTIVE);
4658
4659 /*
4660 * Check again in case we missed a preemption opportunity
4661 * between schedule and now.
4662 */
4663 barrier();
4664 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666EXPORT_SYMBOL(preempt_schedule);
4667
4668/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004669 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 * off of irq context.
4671 * Note, that this is called and return with irqs disabled. This will
4672 * protect us against recursive calling from irq.
4673 */
4674asmlinkage void __sched preempt_schedule_irq(void)
4675{
4676 struct thread_info *ti = current_thread_info();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 struct task_struct *task = current;
4678 int saved_lock_depth;
Ingo Molnar6478d882008-01-25 21:08:33 +01004679
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004680 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 BUG_ON(ti->preempt_count || !irqs_disabled());
4682
Andi Kleen3a5c3592007-10-15 17:00:14 +02004683 do {
4684 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685
Andi Kleen3a5c3592007-10-15 17:00:14 +02004686 /*
4687 * We keep the big kernel semaphore locked, but we
4688 * clear ->lock_depth so that schedule() doesnt
4689 * auto-release the semaphore:
4690 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02004691 saved_lock_depth = task->lock_depth;
4692 task->lock_depth = -1;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004693 local_irq_enable();
4694 schedule();
4695 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004696 task->lock_depth = saved_lock_depth;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004697 sub_preempt_count(PREEMPT_ACTIVE);
4698
4699 /*
4700 * Check again in case we missed a preemption opportunity
4701 * between schedule and now.
4702 */
4703 barrier();
4704 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705}
4706
4707#endif /* CONFIG_PREEMPT */
4708
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004709int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4710 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004712 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714EXPORT_SYMBOL(default_wake_function);
4715
4716/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004717 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4718 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 * number) then we wake all the non-exclusive tasks and one exclusive task.
4720 *
4721 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004722 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4724 */
4725static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4726 int nr_exclusive, int sync, void *key)
4727{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004728 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004730 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004731 unsigned flags = curr->flags;
4732
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004734 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 break;
4736 }
4737}
4738
4739/**
4740 * __wake_up - wake up threads blocked on a waitqueue.
4741 * @q: the waitqueue
4742 * @mode: which threads
4743 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004744 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004746void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004747 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748{
4749 unsigned long flags;
4750
4751 spin_lock_irqsave(&q->lock, flags);
4752 __wake_up_common(q, mode, nr_exclusive, 0, key);
4753 spin_unlock_irqrestore(&q->lock, flags);
4754}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755EXPORT_SYMBOL(__wake_up);
4756
4757/*
4758 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4759 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004760void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761{
4762 __wake_up_common(q, mode, 1, 0, NULL);
4763}
4764
4765/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004766 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 * @q: the waitqueue
4768 * @mode: which threads
4769 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4770 *
4771 * The sync wakeup differs that the waker knows that it will schedule
4772 * away soon, so while the target thread will be woken up, it will not
4773 * be migrated to another CPU - ie. the two threads are 'synchronized'
4774 * with each other. This can prevent needless bouncing between CPUs.
4775 *
4776 * On UP it can prevent extra preemption.
4777 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004778void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004779__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780{
4781 unsigned long flags;
4782 int sync = 1;
4783
4784 if (unlikely(!q))
4785 return;
4786
4787 if (unlikely(!nr_exclusive))
4788 sync = 0;
4789
4790 spin_lock_irqsave(&q->lock, flags);
4791 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4792 spin_unlock_irqrestore(&q->lock, flags);
4793}
4794EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4795
Ingo Molnarb15136e2007-10-24 18:23:48 +02004796void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797{
4798 unsigned long flags;
4799
4800 spin_lock_irqsave(&x->wait.lock, flags);
4801 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004802 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 spin_unlock_irqrestore(&x->wait.lock, flags);
4804}
4805EXPORT_SYMBOL(complete);
4806
Ingo Molnarb15136e2007-10-24 18:23:48 +02004807void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808{
4809 unsigned long flags;
4810
4811 spin_lock_irqsave(&x->wait.lock, flags);
4812 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004813 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 spin_unlock_irqrestore(&x->wait.lock, flags);
4815}
4816EXPORT_SYMBOL(complete_all);
4817
Andi Kleen8cbbe862007-10-15 17:00:14 +02004818static inline long __sched
4819do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 if (!x->done) {
4822 DECLARE_WAITQUEUE(wait, current);
4823
4824 wait.flags |= WQ_FLAG_EXCLUSIVE;
4825 __add_wait_queue_tail(&x->wait, &wait);
4826 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004827 if ((state == TASK_INTERRUPTIBLE &&
4828 signal_pending(current)) ||
4829 (state == TASK_KILLABLE &&
4830 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004831 __remove_wait_queue(&x->wait, &wait);
4832 return -ERESTARTSYS;
4833 }
4834 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004836 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004838 if (!timeout) {
4839 __remove_wait_queue(&x->wait, &wait);
4840 return timeout;
4841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 } while (!x->done);
4843 __remove_wait_queue(&x->wait, &wait);
4844 }
4845 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004846 return timeout;
4847}
4848
4849static long __sched
4850wait_for_common(struct completion *x, long timeout, int state)
4851{
4852 might_sleep();
4853
4854 spin_lock_irq(&x->wait.lock);
4855 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004857 return timeout;
4858}
4859
Ingo Molnarb15136e2007-10-24 18:23:48 +02004860void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004861{
4862 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863}
4864EXPORT_SYMBOL(wait_for_completion);
4865
Ingo Molnarb15136e2007-10-24 18:23:48 +02004866unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4868{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004869 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870}
4871EXPORT_SYMBOL(wait_for_completion_timeout);
4872
Andi Kleen8cbbe862007-10-15 17:00:14 +02004873int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874{
Andi Kleen51e97992007-10-18 21:32:55 +02004875 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4876 if (t == -ERESTARTSYS)
4877 return t;
4878 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879}
4880EXPORT_SYMBOL(wait_for_completion_interruptible);
4881
Ingo Molnarb15136e2007-10-24 18:23:48 +02004882unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883wait_for_completion_interruptible_timeout(struct completion *x,
4884 unsigned long timeout)
4885{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004886 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887}
4888EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4889
Matthew Wilcox009e5772007-12-06 12:29:54 -05004890int __sched wait_for_completion_killable(struct completion *x)
4891{
4892 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4893 if (t == -ERESTARTSYS)
4894 return t;
4895 return 0;
4896}
4897EXPORT_SYMBOL(wait_for_completion_killable);
4898
Andi Kleen8cbbe862007-10-15 17:00:14 +02004899static long __sched
4900sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004901{
4902 unsigned long flags;
4903 wait_queue_t wait;
4904
4905 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906
Andi Kleen8cbbe862007-10-15 17:00:14 +02004907 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908
Andi Kleen8cbbe862007-10-15 17:00:14 +02004909 spin_lock_irqsave(&q->lock, flags);
4910 __add_wait_queue(q, &wait);
4911 spin_unlock(&q->lock);
4912 timeout = schedule_timeout(timeout);
4913 spin_lock_irq(&q->lock);
4914 __remove_wait_queue(q, &wait);
4915 spin_unlock_irqrestore(&q->lock, flags);
4916
4917 return timeout;
4918}
4919
4920void __sched interruptible_sleep_on(wait_queue_head_t *q)
4921{
4922 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924EXPORT_SYMBOL(interruptible_sleep_on);
4925
Ingo Molnar0fec1712007-07-09 18:52:01 +02004926long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004927interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004929 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4932
Ingo Molnar0fec1712007-07-09 18:52:01 +02004933void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004935 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937EXPORT_SYMBOL(sleep_on);
4938
Ingo Molnar0fec1712007-07-09 18:52:01 +02004939long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004941 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943EXPORT_SYMBOL(sleep_on_timeout);
4944
Ingo Molnarb29739f2006-06-27 02:54:51 -07004945#ifdef CONFIG_RT_MUTEXES
4946
4947/*
4948 * rt_mutex_setprio - set the current priority of a task
4949 * @p: task
4950 * @prio: prio value (kernel-internal form)
4951 *
4952 * This function changes the 'effective' priority of a task. It does
4953 * not touch ->normal_prio like __setscheduler().
4954 *
4955 * Used by the rt_mutex code to implement priority inheritance logic.
4956 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004957void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004958{
4959 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004960 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004961 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004962 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004963
4964 BUG_ON(prio < 0 || prio > MAX_PRIO);
4965
4966 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004967 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004968
Andrew Mortond5f9f942007-05-08 20:27:06 -07004969 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004970 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004971 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004972 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004973 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004974 if (running)
4975 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004976
4977 if (rt_prio(prio))
4978 p->sched_class = &rt_sched_class;
4979 else
4980 p->sched_class = &fair_sched_class;
4981
Ingo Molnarb29739f2006-06-27 02:54:51 -07004982 p->prio = prio;
4983
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004984 if (running)
4985 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004986 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004987 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004988
4989 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004990 }
4991 task_rq_unlock(rq, &flags);
4992}
4993
4994#endif
4995
Ingo Molnar36c8b582006-07-03 00:25:41 -07004996void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997{
Ingo Molnardd41f592007-07-09 18:51:59 +02004998 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005000 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001
5002 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
5003 return;
5004 /*
5005 * We have to be careful, if called from sys_setpriority(),
5006 * the task might be in the middle of scheduling on another CPU.
5007 */
5008 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005009 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 /*
5011 * The RT priorities are set via sched_setscheduler(), but we still
5012 * allow the 'normal' nice value to be set - but as expected
5013 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02005014 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 */
Ingo Molnare05606d2007-07-09 18:51:59 +02005016 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 p->static_prio = NICE_TO_PRIO(nice);
5018 goto out_unlock;
5019 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005020 on_rq = p->se.on_rq;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02005021 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005022 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07005025 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005026 old_prio = p->prio;
5027 p->prio = effective_prio(p);
5028 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029
Ingo Molnardd41f592007-07-09 18:51:59 +02005030 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02005031 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005033 * If the task increased its priority or is running and
5034 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005036 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 resched_task(rq->curr);
5038 }
5039out_unlock:
5040 task_rq_unlock(rq, &flags);
5041}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042EXPORT_SYMBOL(set_user_nice);
5043
Matt Mackalle43379f2005-05-01 08:59:00 -07005044/*
5045 * can_nice - check if a task can reduce its nice value
5046 * @p: task
5047 * @nice: nice value
5048 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005049int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005050{
Matt Mackall024f4742005-08-18 11:24:19 -07005051 /* convert nice value [19,-20] to rlimit style value [1,40] */
5052 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005053
Matt Mackalle43379f2005-05-01 08:59:00 -07005054 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
5055 capable(CAP_SYS_NICE));
5056}
5057
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058#ifdef __ARCH_WANT_SYS_NICE
5059
5060/*
5061 * sys_nice - change the priority of the current process.
5062 * @increment: priority increment
5063 *
5064 * sys_setpriority is a more generic, but much slower function that
5065 * does similar things.
5066 */
5067asmlinkage long sys_nice(int increment)
5068{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005069 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070
5071 /*
5072 * Setpriority might change our priority at the same moment.
5073 * We don't have to worry. Conceptually one call occurs first
5074 * and we have a single winner.
5075 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005076 if (increment < -40)
5077 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 if (increment > 40)
5079 increment = 40;
5080
5081 nice = PRIO_TO_NICE(current->static_prio) + increment;
5082 if (nice < -20)
5083 nice = -20;
5084 if (nice > 19)
5085 nice = 19;
5086
Matt Mackalle43379f2005-05-01 08:59:00 -07005087 if (increment < 0 && !can_nice(current, nice))
5088 return -EPERM;
5089
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 retval = security_task_setnice(current, nice);
5091 if (retval)
5092 return retval;
5093
5094 set_user_nice(current, nice);
5095 return 0;
5096}
5097
5098#endif
5099
5100/**
5101 * task_prio - return the priority value of a given task.
5102 * @p: the task in question.
5103 *
5104 * This is the priority value as seen by users in /proc.
5105 * RT tasks are offset by -200. Normal tasks are centered
5106 * around 0, value goes from -16 to +15.
5107 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005108int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109{
5110 return p->prio - MAX_RT_PRIO;
5111}
5112
5113/**
5114 * task_nice - return the nice value of a given task.
5115 * @p: the task in question.
5116 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005117int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118{
5119 return TASK_NICE(p);
5120}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005121EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
5123/**
5124 * idle_cpu - is a given cpu idle currently?
5125 * @cpu: the processor in question.
5126 */
5127int idle_cpu(int cpu)
5128{
5129 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5130}
5131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132/**
5133 * idle_task - return the idle task for a given cpu.
5134 * @cpu: the processor in question.
5135 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005136struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137{
5138 return cpu_rq(cpu)->idle;
5139}
5140
5141/**
5142 * find_process_by_pid - find a process with a matching PID value.
5143 * @pid: the pid in question.
5144 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005145static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005147 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148}
5149
5150/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005151static void
5152__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153{
Ingo Molnardd41f592007-07-09 18:51:59 +02005154 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005155
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005157 switch (p->policy) {
5158 case SCHED_NORMAL:
5159 case SCHED_BATCH:
5160 case SCHED_IDLE:
5161 p->sched_class = &fair_sched_class;
5162 break;
5163 case SCHED_FIFO:
5164 case SCHED_RR:
5165 p->sched_class = &rt_sched_class;
5166 break;
5167 }
5168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005170 p->normal_prio = normal_prio(p);
5171 /* we are holding p->pi_lock already */
5172 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005173 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174}
5175
5176/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005177 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 * @p: the task in question.
5179 * @policy: new policy.
5180 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005181 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005182 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005184int sched_setscheduler(struct task_struct *p, int policy,
5185 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005187 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005189 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005190 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191
Steven Rostedt66e53932006-06-27 02:54:44 -07005192 /* may grab non-irq protected spin_locks */
5193 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194recheck:
5195 /* double check policy once rq lock held */
5196 if (policy < 0)
5197 policy = oldpolicy = p->policy;
5198 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005199 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5200 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005201 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 /*
5203 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005204 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5205 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206 */
5207 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005208 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005209 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005211 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 return -EINVAL;
5213
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005214 /*
5215 * Allow unprivileged RT tasks to decrease priority:
5216 */
5217 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005218 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005219 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005220
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005221 if (!lock_task_sighand(p, &flags))
5222 return -ESRCH;
5223 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5224 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005225
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005226 /* can't set/change the rt policy */
5227 if (policy != p->policy && !rlim_rtprio)
5228 return -EPERM;
5229
5230 /* can't increase priority */
5231 if (param->sched_priority > p->rt_priority &&
5232 param->sched_priority > rlim_rtprio)
5233 return -EPERM;
5234 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005235 /*
5236 * Like positive nice levels, dont allow tasks to
5237 * move out of SCHED_IDLE either:
5238 */
5239 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5240 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005241
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005242 /* can't change other user's priorities */
5243 if ((current->euid != p->euid) &&
5244 (current->euid != p->uid))
5245 return -EPERM;
5246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005248#ifdef CONFIG_RT_GROUP_SCHED
5249 /*
5250 * Do not allow realtime tasks into groups that have no runtime
5251 * assigned.
5252 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005253 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005254 return -EPERM;
5255#endif
5256
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 retval = security_task_setscheduler(p, policy, param);
5258 if (retval)
5259 return retval;
5260 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005261 * make sure no PI-waiters arrive (or leave) while we are
5262 * changing the priority of the task:
5263 */
5264 spin_lock_irqsave(&p->pi_lock, flags);
5265 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 * To be able to change p->policy safely, the apropriate
5267 * runqueue lock must be held.
5268 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005269 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 /* recheck policy now with rq lock held */
5271 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5272 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005273 __task_rq_unlock(rq);
5274 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 goto recheck;
5276 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005277 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005278 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005279 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005280 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005281 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005282 if (running)
5283 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005284
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005286 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02005287
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005288 if (running)
5289 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005290 if (on_rq) {
5291 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005292
5293 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005295 __task_rq_unlock(rq);
5296 spin_unlock_irqrestore(&p->pi_lock, flags);
5297
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005298 rt_mutex_adjust_pi(p);
5299
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 return 0;
5301}
5302EXPORT_SYMBOL_GPL(sched_setscheduler);
5303
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005304static int
5305do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 struct sched_param lparam;
5308 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005309 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310
5311 if (!param || pid < 0)
5312 return -EINVAL;
5313 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5314 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005315
5316 rcu_read_lock();
5317 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005319 if (p != NULL)
5320 retval = sched_setscheduler(p, policy, &lparam);
5321 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005322
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 return retval;
5324}
5325
5326/**
5327 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5328 * @pid: the pid in question.
5329 * @policy: new policy.
5330 * @param: structure containing the new RT priority.
5331 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005332asmlinkage long
5333sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334{
Jason Baronc21761f2006-01-18 17:43:03 -08005335 /* negative values for policy are not valid */
5336 if (policy < 0)
5337 return -EINVAL;
5338
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 return do_sched_setscheduler(pid, policy, param);
5340}
5341
5342/**
5343 * sys_sched_setparam - set/change the RT priority of a thread
5344 * @pid: the pid in question.
5345 * @param: structure containing the new RT priority.
5346 */
5347asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5348{
5349 return do_sched_setscheduler(pid, -1, param);
5350}
5351
5352/**
5353 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5354 * @pid: the pid in question.
5355 */
5356asmlinkage long sys_sched_getscheduler(pid_t pid)
5357{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005358 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005359 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360
5361 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005362 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363
5364 retval = -ESRCH;
5365 read_lock(&tasklist_lock);
5366 p = find_process_by_pid(pid);
5367 if (p) {
5368 retval = security_task_getscheduler(p);
5369 if (!retval)
5370 retval = p->policy;
5371 }
5372 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373 return retval;
5374}
5375
5376/**
5377 * sys_sched_getscheduler - get the RT priority of a thread
5378 * @pid: the pid in question.
5379 * @param: structure containing the RT priority.
5380 */
5381asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5382{
5383 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005384 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005385 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
5387 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005388 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
5390 read_lock(&tasklist_lock);
5391 p = find_process_by_pid(pid);
5392 retval = -ESRCH;
5393 if (!p)
5394 goto out_unlock;
5395
5396 retval = security_task_getscheduler(p);
5397 if (retval)
5398 goto out_unlock;
5399
5400 lp.sched_priority = p->rt_priority;
5401 read_unlock(&tasklist_lock);
5402
5403 /*
5404 * This one might sleep, we cannot do it with a spinlock held ...
5405 */
5406 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5407
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 return retval;
5409
5410out_unlock:
5411 read_unlock(&tasklist_lock);
5412 return retval;
5413}
5414
Mike Travisb53e9212008-04-04 18:11:08 -07005415long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005418 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005419 struct task_struct *p;
5420 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005422 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 read_lock(&tasklist_lock);
5424
5425 p = find_process_by_pid(pid);
5426 if (!p) {
5427 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005428 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 return -ESRCH;
5430 }
5431
5432 /*
5433 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005434 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435 * usage count and then drop tasklist_lock.
5436 */
5437 get_task_struct(p);
5438 read_unlock(&tasklist_lock);
5439
5440 retval = -EPERM;
5441 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5442 !capable(CAP_SYS_NICE))
5443 goto out_unlock;
5444
David Quigleye7834f82006-06-23 02:03:59 -07005445 retval = security_task_setscheduler(p, 0, NULL);
5446 if (retval)
5447 goto out_unlock;
5448
Mike Travisf9a86fc2008-04-04 18:11:07 -07005449 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005451 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005452 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
Paul Menage8707d8b2007-10-18 23:40:22 -07005454 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005455 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005456 if (!cpus_subset(new_mask, cpus_allowed)) {
5457 /*
5458 * We must have raced with a concurrent cpuset
5459 * update. Just reset the cpus_allowed to the
5460 * cpuset's cpus_allowed
5461 */
5462 new_mask = cpus_allowed;
5463 goto again;
5464 }
5465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466out_unlock:
5467 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005468 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 return retval;
5470}
5471
5472static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5473 cpumask_t *new_mask)
5474{
5475 if (len < sizeof(cpumask_t)) {
5476 memset(new_mask, 0, sizeof(cpumask_t));
5477 } else if (len > sizeof(cpumask_t)) {
5478 len = sizeof(cpumask_t);
5479 }
5480 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5481}
5482
5483/**
5484 * sys_sched_setaffinity - set the cpu affinity of a process
5485 * @pid: pid of the process
5486 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5487 * @user_mask_ptr: user-space pointer to the new cpu mask
5488 */
5489asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5490 unsigned long __user *user_mask_ptr)
5491{
5492 cpumask_t new_mask;
5493 int retval;
5494
5495 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5496 if (retval)
5497 return retval;
5498
Mike Travisb53e9212008-04-04 18:11:08 -07005499 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500}
5501
5502/*
5503 * Represents all cpu's present in the system
5504 * In systems capable of hotplug, this map could dynamically grow
5505 * as new cpu's are detected in the system via any platform specific
5506 * method, such as ACPI for e.g.
5507 */
5508
Andi Kleen4cef0c62006-01-11 22:44:57 +01005509cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510EXPORT_SYMBOL(cpu_present_map);
5511
5512#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005513cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005514EXPORT_SYMBOL(cpu_online_map);
5515
Andi Kleen4cef0c62006-01-11 22:44:57 +01005516cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005517EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518#endif
5519
5520long sched_getaffinity(pid_t pid, cpumask_t *mask)
5521{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005522 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005525 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526 read_lock(&tasklist_lock);
5527
5528 retval = -ESRCH;
5529 p = find_process_by_pid(pid);
5530 if (!p)
5531 goto out_unlock;
5532
David Quigleye7834f82006-06-23 02:03:59 -07005533 retval = security_task_getscheduler(p);
5534 if (retval)
5535 goto out_unlock;
5536
Jack Steiner2f7016d2006-02-01 03:05:18 -08005537 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538
5539out_unlock:
5540 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005541 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
Ulrich Drepper9531b622007-08-09 11:16:46 +02005543 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544}
5545
5546/**
5547 * sys_sched_getaffinity - get the cpu affinity of a process
5548 * @pid: pid of the process
5549 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5550 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5551 */
5552asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5553 unsigned long __user *user_mask_ptr)
5554{
5555 int ret;
5556 cpumask_t mask;
5557
5558 if (len < sizeof(cpumask_t))
5559 return -EINVAL;
5560
5561 ret = sched_getaffinity(pid, &mask);
5562 if (ret < 0)
5563 return ret;
5564
5565 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5566 return -EFAULT;
5567
5568 return sizeof(cpumask_t);
5569}
5570
5571/**
5572 * sys_sched_yield - yield the current processor to other threads.
5573 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005574 * This function yields the current CPU to other tasks. If there are no
5575 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576 */
5577asmlinkage long sys_sched_yield(void)
5578{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005579 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580
Ingo Molnar2d723762007-10-15 17:00:12 +02005581 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005582 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583
5584 /*
5585 * Since we are going to call schedule() anyway, there's
5586 * no need to preempt or enable interrupts:
5587 */
5588 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005589 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 _raw_spin_unlock(&rq->lock);
5591 preempt_enable_no_resched();
5592
5593 schedule();
5594
5595 return 0;
5596}
5597
Andrew Mortone7b38402006-06-30 01:56:00 -07005598static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005600#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5601 __might_sleep(__FILE__, __LINE__);
5602#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005603 /*
5604 * The BKS might be reacquired before we have dropped
5605 * PREEMPT_ACTIVE, which could trigger a second
5606 * cond_resched() call.
5607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608 do {
5609 add_preempt_count(PREEMPT_ACTIVE);
5610 schedule();
5611 sub_preempt_count(PREEMPT_ACTIVE);
5612 } while (need_resched());
5613}
5614
Herbert Xu02b67cc32008-01-25 21:08:28 +01005615#if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY)
5616int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617{
Ingo Molnar94142322006-12-29 16:48:13 -08005618 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5619 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620 __cond_resched();
5621 return 1;
5622 }
5623 return 0;
5624}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005625EXPORT_SYMBOL(_cond_resched);
5626#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627
5628/*
5629 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5630 * call schedule, and on return reacquire the lock.
5631 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005632 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633 * operations here to prevent schedule() from being called twice (once via
5634 * spin_unlock(), once by hand).
5635 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005636int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637{
Nick Piggin95c354f2008-01-30 13:31:20 +01005638 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005639 int ret = 0;
5640
Nick Piggin95c354f2008-01-30 13:31:20 +01005641 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005643 if (resched && need_resched())
5644 __cond_resched();
5645 else
5646 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005647 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005650 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652EXPORT_SYMBOL(cond_resched_lock);
5653
5654int __sched cond_resched_softirq(void)
5655{
5656 BUG_ON(!in_softirq());
5657
Ingo Molnar94142322006-12-29 16:48:13 -08005658 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005659 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660 __cond_resched();
5661 local_bh_disable();
5662 return 1;
5663 }
5664 return 0;
5665}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666EXPORT_SYMBOL(cond_resched_softirq);
5667
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668/**
5669 * yield - yield the current processor to other threads.
5670 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005671 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 * thread runnable and calls sys_sched_yield().
5673 */
5674void __sched yield(void)
5675{
5676 set_current_state(TASK_RUNNING);
5677 sys_sched_yield();
5678}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679EXPORT_SYMBOL(yield);
5680
5681/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005682 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 * that process accounting knows that this is a task in IO wait state.
5684 *
5685 * But don't do that if it is a deliberate, throttling IO wait (this task
5686 * has set its backing_dev_info: the queue against which it should throttle)
5687 */
5688void __sched io_schedule(void)
5689{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005690 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005692 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693 atomic_inc(&rq->nr_iowait);
5694 schedule();
5695 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005696 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698EXPORT_SYMBOL(io_schedule);
5699
5700long __sched io_schedule_timeout(long timeout)
5701{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005702 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 long ret;
5704
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005705 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706 atomic_inc(&rq->nr_iowait);
5707 ret = schedule_timeout(timeout);
5708 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005709 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 return ret;
5711}
5712
5713/**
5714 * sys_sched_get_priority_max - return maximum RT priority.
5715 * @policy: scheduling class.
5716 *
5717 * this syscall returns the maximum rt_priority that can be used
5718 * by a given scheduling class.
5719 */
5720asmlinkage long sys_sched_get_priority_max(int policy)
5721{
5722 int ret = -EINVAL;
5723
5724 switch (policy) {
5725 case SCHED_FIFO:
5726 case SCHED_RR:
5727 ret = MAX_USER_RT_PRIO-1;
5728 break;
5729 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005730 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005731 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 ret = 0;
5733 break;
5734 }
5735 return ret;
5736}
5737
5738/**
5739 * sys_sched_get_priority_min - return minimum RT priority.
5740 * @policy: scheduling class.
5741 *
5742 * this syscall returns the minimum rt_priority that can be used
5743 * by a given scheduling class.
5744 */
5745asmlinkage long sys_sched_get_priority_min(int policy)
5746{
5747 int ret = -EINVAL;
5748
5749 switch (policy) {
5750 case SCHED_FIFO:
5751 case SCHED_RR:
5752 ret = 1;
5753 break;
5754 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005755 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005756 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 ret = 0;
5758 }
5759 return ret;
5760}
5761
5762/**
5763 * sys_sched_rr_get_interval - return the default timeslice of a process.
5764 * @pid: pid of the process.
5765 * @interval: userspace pointer to the timeslice value.
5766 *
5767 * this syscall writes the default timeslice value of a given process
5768 * into the user-space timespec buffer. A value of '0' means infinity.
5769 */
5770asmlinkage
5771long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5772{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005773 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005774 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005775 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777
5778 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005779 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780
5781 retval = -ESRCH;
5782 read_lock(&tasklist_lock);
5783 p = find_process_by_pid(pid);
5784 if (!p)
5785 goto out_unlock;
5786
5787 retval = security_task_getscheduler(p);
5788 if (retval)
5789 goto out_unlock;
5790
Ingo Molnar77034932007-12-04 17:04:39 +01005791 /*
5792 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5793 * tasks that are on an otherwise idle runqueue:
5794 */
5795 time_slice = 0;
5796 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005797 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005798 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005799 struct sched_entity *se = &p->se;
5800 unsigned long flags;
5801 struct rq *rq;
5802
5803 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005804 if (rq->cfs.load.weight)
5805 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005806 task_rq_unlock(rq, &flags);
5807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005809 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005812
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813out_unlock:
5814 read_unlock(&tasklist_lock);
5815 return retval;
5816}
5817
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005818static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005819
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005820void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005823 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005826 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005827 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005828#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005830 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005832 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833#else
5834 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005835 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005837 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838#endif
5839#ifdef CONFIG_DEBUG_STACK_USAGE
5840 {
Al Viro10ebffd2005-11-13 16:06:56 -08005841 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 while (!*n)
5843 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005844 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845 }
5846#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005847 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005848 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005850 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851}
5852
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005853void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005855 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Ingo Molnar4bd77322007-07-11 21:21:47 +02005857#if BITS_PER_LONG == 32
5858 printk(KERN_INFO
5859 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005861 printk(KERN_INFO
5862 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863#endif
5864 read_lock(&tasklist_lock);
5865 do_each_thread(g, p) {
5866 /*
5867 * reset the NMI-timeout, listing all files on a slow
5868 * console might take alot of time:
5869 */
5870 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005871 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005872 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873 } while_each_thread(g, p);
5874
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005875 touch_all_softlockup_watchdogs();
5876
Ingo Molnardd41f592007-07-09 18:51:59 +02005877#ifdef CONFIG_SCHED_DEBUG
5878 sysrq_sched_debug_show();
5879#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005881 /*
5882 * Only show locks if all tasks are dumped:
5883 */
5884 if (state_filter == -1)
5885 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886}
5887
Ingo Molnar1df21052007-07-09 18:51:58 +02005888void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5889{
Ingo Molnardd41f592007-07-09 18:51:59 +02005890 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005891}
5892
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005893/**
5894 * init_idle - set up an idle thread for a given CPU
5895 * @idle: task in question
5896 * @cpu: cpu the idle task belongs to
5897 *
5898 * NOTE: this function does not set the idle thread's NEED_RESCHED
5899 * flag, to make booting more robust.
5900 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005901void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005903 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904 unsigned long flags;
5905
Ingo Molnardd41f592007-07-09 18:51:59 +02005906 __sched_fork(idle);
5907 idle->se.exec_start = sched_clock();
5908
Ingo Molnarb29739f2006-06-27 02:54:51 -07005909 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005911 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912
5913 spin_lock_irqsave(&rq->lock, flags);
5914 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005915#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5916 idle->oncpu = 1;
5917#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918 spin_unlock_irqrestore(&rq->lock, flags);
5919
5920 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f542005-11-13 16:06:55 -08005921 task_thread_info(idle)->preempt_count = 0;
Ingo Molnar6478d882008-01-25 21:08:33 +01005922
Ingo Molnardd41f592007-07-09 18:51:59 +02005923 /*
5924 * The idle tasks have their own, simple scheduling class:
5925 */
5926 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927}
5928
5929/*
5930 * In a system that switches off the HZ timer nohz_cpu_mask
5931 * indicates which cpus entered this state. This is used
5932 * in the rcu update to wait only for active cpus. For system
5933 * which do not switch off the HZ timer nohz_cpu_mask should
5934 * always be CPU_MASK_NONE.
5935 */
5936cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5937
Ingo Molnar19978ca2007-11-09 22:39:38 +01005938/*
5939 * Increase the granularity value when there are more CPUs,
5940 * because with more CPUs the 'effective latency' as visible
5941 * to users decreases. But the relationship is not linear,
5942 * so pick a second-best guess by going with the log2 of the
5943 * number of CPUs.
5944 *
5945 * This idea comes from the SD scheduler of Con Kolivas:
5946 */
5947static inline void sched_init_granularity(void)
5948{
5949 unsigned int factor = 1 + ilog2(num_online_cpus());
5950 const unsigned long limit = 200000000;
5951
5952 sysctl_sched_min_granularity *= factor;
5953 if (sysctl_sched_min_granularity > limit)
5954 sysctl_sched_min_granularity = limit;
5955
5956 sysctl_sched_latency *= factor;
5957 if (sysctl_sched_latency > limit)
5958 sysctl_sched_latency = limit;
5959
5960 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005961}
5962
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963#ifdef CONFIG_SMP
5964/*
5965 * This is how migration works:
5966 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005967 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 * runqueue and wake up that CPU's migration thread.
5969 * 2) we down() the locked semaphore => thread blocks.
5970 * 3) migration thread wakes up (implicitly it forces the migrated
5971 * thread off the CPU)
5972 * 4) it gets the migration request and checks whether the migrated
5973 * task is still in the wrong runqueue.
5974 * 5) if it's in the wrong runqueue then the migration thread removes
5975 * it and puts it into the right queue.
5976 * 6) migration thread up()s the semaphore.
5977 * 7) we wake up and the migration is done.
5978 */
5979
5980/*
5981 * Change a given task's CPU affinity. Migrate the thread to a
5982 * proper CPU and schedule it away if the CPU it's executing on
5983 * is removed from the allowed bitmask.
5984 *
5985 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005986 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 * call is not atomic; no spinlocks may be held.
5988 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005989int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005991 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005993 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005994 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995
5996 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005997 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 ret = -EINVAL;
5999 goto out;
6000 }
6001
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006002 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006003 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006004 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006005 p->cpus_allowed = *new_mask;
6006 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006007 }
6008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006010 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 goto out;
6012
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006013 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014 /* Need help from migration thread: drop lock and wait. */
6015 task_rq_unlock(rq, &flags);
6016 wake_up_process(rq->migration_thread);
6017 wait_for_completion(&req.done);
6018 tlb_migrate_finish(p->mm);
6019 return 0;
6020 }
6021out:
6022 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006023
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 return ret;
6025}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006026EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027
6028/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006029 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030 * this because either it can't run here any more (set_cpus_allowed()
6031 * away from this CPU, or CPU going down), or because we're
6032 * attempting to rebalance this task on exec (sched_exec).
6033 *
6034 * So we race with normal scheduler movements, but that's OK, as long
6035 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006036 *
6037 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006039static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006041 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02006042 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043
6044 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006045 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046
6047 rq_src = cpu_rq(src_cpu);
6048 rq_dest = cpu_rq(dest_cpu);
6049
6050 double_rq_lock(rq_src, rq_dest);
6051 /* Already moved. */
6052 if (task_cpu(p) != src_cpu)
6053 goto out;
6054 /* Affinity changed (again). */
6055 if (!cpu_isset(dest_cpu, p->cpus_allowed))
6056 goto out;
6057
Ingo Molnardd41f592007-07-09 18:51:59 +02006058 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006059 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006060 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02006061
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006063 if (on_rq) {
6064 activate_task(rq_dest, p, 0);
6065 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07006067 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068out:
6069 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006070 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071}
6072
6073/*
6074 * migration_thread - this is a highprio system thread that performs
6075 * thread migration by bumping thread off CPU then 'pushing' onto
6076 * another runqueue.
6077 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07006078static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006081 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
6083 rq = cpu_rq(cpu);
6084 BUG_ON(rq->migration_thread != current);
6085
6086 set_current_state(TASK_INTERRUPTIBLE);
6087 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006088 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091 spin_lock_irq(&rq->lock);
6092
6093 if (cpu_is_offline(cpu)) {
6094 spin_unlock_irq(&rq->lock);
6095 goto wait_to_die;
6096 }
6097
6098 if (rq->active_balance) {
6099 active_load_balance(rq, cpu);
6100 rq->active_balance = 0;
6101 }
6102
6103 head = &rq->migration_queue;
6104
6105 if (list_empty(head)) {
6106 spin_unlock_irq(&rq->lock);
6107 schedule();
6108 set_current_state(TASK_INTERRUPTIBLE);
6109 continue;
6110 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006111 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 list_del_init(head->next);
6113
Nick Piggin674311d2005-06-25 14:57:27 -07006114 spin_unlock(&rq->lock);
6115 __migrate_task(req->task, cpu, req->dest_cpu);
6116 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117
6118 complete(&req->done);
6119 }
6120 __set_current_state(TASK_RUNNING);
6121 return 0;
6122
6123wait_to_die:
6124 /* Wait for kthread_stop */
6125 set_current_state(TASK_INTERRUPTIBLE);
6126 while (!kthread_should_stop()) {
6127 schedule();
6128 set_current_state(TASK_INTERRUPTIBLE);
6129 }
6130 __set_current_state(TASK_RUNNING);
6131 return 0;
6132}
6133
6134#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006135
6136static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6137{
6138 int ret;
6139
6140 local_irq_disable();
6141 ret = __migrate_task(p, src_cpu, dest_cpu);
6142 local_irq_enable();
6143 return ret;
6144}
6145
Kirill Korotaev054b9102006-12-10 02:20:11 -08006146/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006147 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006148 * NOTE: interrupts should be disabled by the caller
6149 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006150static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006152 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006154 struct rq *rq;
6155 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156
Andi Kleen3a5c3592007-10-15 17:00:14 +02006157 do {
6158 /* On same node? */
6159 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6160 cpus_and(mask, mask, p->cpus_allowed);
6161 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162
Andi Kleen3a5c3592007-10-15 17:00:14 +02006163 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006164 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006165 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166
Andi Kleen3a5c3592007-10-15 17:00:14 +02006167 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006168 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006169 cpumask_t cpus_allowed;
6170
6171 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07006172 /*
6173 * Try to stay on the same cpuset, where the
6174 * current cpuset may be a subset of all cpus.
6175 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006176 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07006177 * called within calls to cpuset_lock/cpuset_unlock.
6178 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006179 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07006180 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006181 dest_cpu = any_online_cpu(p->cpus_allowed);
6182 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183
Andi Kleen3a5c3592007-10-15 17:00:14 +02006184 /*
6185 * Don't tell them about moving exiting tasks or
6186 * kernel threads (both mm NULL), since they never
6187 * leave kernel.
6188 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006189 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006190 printk(KERN_INFO "process %d (%s) no "
6191 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006192 task_pid_nr(p), p->comm, dead_cpu);
6193 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006194 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006195 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196}
6197
6198/*
6199 * While a dead CPU has no uninterruptible tasks queued at this point,
6200 * it might still have a nonzero ->nr_uninterruptible counter, because
6201 * for performance reasons the counter is not stricly tracking tasks to
6202 * their home CPUs. So we just add the counter to another CPU's counter,
6203 * to keep the global sum constant after CPU-down:
6204 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006205static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206{
Mike Travis7c16ec52008-04-04 18:11:11 -07006207 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208 unsigned long flags;
6209
6210 local_irq_save(flags);
6211 double_rq_lock(rq_src, rq_dest);
6212 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6213 rq_src->nr_uninterruptible = 0;
6214 double_rq_unlock(rq_src, rq_dest);
6215 local_irq_restore(flags);
6216}
6217
6218/* Run through task list and migrate tasks from the dead cpu. */
6219static void migrate_live_tasks(int src_cpu)
6220{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006221 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006223 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224
Ingo Molnar48f24c42006-07-03 00:25:40 -07006225 do_each_thread(t, p) {
6226 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227 continue;
6228
Ingo Molnar48f24c42006-07-03 00:25:40 -07006229 if (task_cpu(p) == src_cpu)
6230 move_task_off_dead_cpu(src_cpu, p);
6231 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006232
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006233 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234}
6235
Ingo Molnardd41f592007-07-09 18:51:59 +02006236/*
6237 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006238 * It does so by boosting its priority to highest possible.
6239 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 */
6241void sched_idle_next(void)
6242{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006243 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006244 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245 struct task_struct *p = rq->idle;
6246 unsigned long flags;
6247
6248 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006249 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250
Ingo Molnar48f24c42006-07-03 00:25:40 -07006251 /*
6252 * Strictly not necessary since rest of the CPUs are stopped by now
6253 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254 */
6255 spin_lock_irqsave(&rq->lock, flags);
6256
Ingo Molnardd41f592007-07-09 18:51:59 +02006257 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006258
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006259 update_rq_clock(rq);
6260 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261
6262 spin_unlock_irqrestore(&rq->lock, flags);
6263}
6264
Ingo Molnar48f24c42006-07-03 00:25:40 -07006265/*
6266 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267 * offline.
6268 */
6269void idle_task_exit(void)
6270{
6271 struct mm_struct *mm = current->active_mm;
6272
6273 BUG_ON(cpu_online(smp_processor_id()));
6274
6275 if (mm != &init_mm)
6276 switch_mm(mm, &init_mm, current);
6277 mmdrop(mm);
6278}
6279
Kirill Korotaev054b9102006-12-10 02:20:11 -08006280/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006281static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006283 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284
6285 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006286 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
6288 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006289 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290
Ingo Molnar48f24c42006-07-03 00:25:40 -07006291 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292
6293 /*
6294 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006295 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296 * fine.
6297 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006298 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006299 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006300 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301
Ingo Molnar48f24c42006-07-03 00:25:40 -07006302 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303}
6304
6305/* release_task() removes task from tasklist, so we won't find dead tasks. */
6306static void migrate_dead_tasks(unsigned int dead_cpu)
6307{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006308 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006309 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
Ingo Molnardd41f592007-07-09 18:51:59 +02006311 for ( ; ; ) {
6312 if (!rq->nr_running)
6313 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006314 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006315 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006316 if (!next)
6317 break;
6318 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006319
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320 }
6321}
6322#endif /* CONFIG_HOTPLUG_CPU */
6323
Nick Piggine692ab52007-07-26 13:40:43 +02006324#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6325
6326static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006327 {
6328 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006329 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006330 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006331 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006332};
6333
6334static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006335 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006336 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006337 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006338 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006339 .child = sd_ctl_dir,
6340 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006341 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006342};
6343
6344static struct ctl_table *sd_alloc_ctl_entry(int n)
6345{
6346 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006347 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006348
Nick Piggine692ab52007-07-26 13:40:43 +02006349 return entry;
6350}
6351
Milton Miller6382bc92007-10-15 17:00:19 +02006352static void sd_free_ctl_entry(struct ctl_table **tablep)
6353{
Milton Millercd7900762007-10-17 16:55:11 +02006354 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006355
Milton Millercd7900762007-10-17 16:55:11 +02006356 /*
6357 * In the intermediate directories, both the child directory and
6358 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006359 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006360 * static strings and all have proc handlers.
6361 */
6362 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006363 if (entry->child)
6364 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006365 if (entry->proc_handler == NULL)
6366 kfree(entry->procname);
6367 }
Milton Miller6382bc92007-10-15 17:00:19 +02006368
6369 kfree(*tablep);
6370 *tablep = NULL;
6371}
6372
Nick Piggine692ab52007-07-26 13:40:43 +02006373static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006374set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006375 const char *procname, void *data, int maxlen,
6376 mode_t mode, proc_handler *proc_handler)
6377{
Nick Piggine692ab52007-07-26 13:40:43 +02006378 entry->procname = procname;
6379 entry->data = data;
6380 entry->maxlen = maxlen;
6381 entry->mode = mode;
6382 entry->proc_handler = proc_handler;
6383}
6384
6385static struct ctl_table *
6386sd_alloc_ctl_domain_table(struct sched_domain *sd)
6387{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006388 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006389
Milton Millerad1cdc12007-10-15 17:00:19 +02006390 if (table == NULL)
6391 return NULL;
6392
Alexey Dobriyane0361852007-08-09 11:16:46 +02006393 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006394 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006395 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006396 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006397 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006398 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006399 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006400 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006401 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006402 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006403 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006404 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006405 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006406 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006407 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006408 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006409 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006410 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006411 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006412 &sd->cache_nice_tries,
6413 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006414 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006415 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006416 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006417
6418 return table;
6419}
6420
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006421static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006422{
6423 struct ctl_table *entry, *table;
6424 struct sched_domain *sd;
6425 int domain_num = 0, i;
6426 char buf[32];
6427
6428 for_each_domain(cpu, sd)
6429 domain_num++;
6430 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006431 if (table == NULL)
6432 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006433
6434 i = 0;
6435 for_each_domain(cpu, sd) {
6436 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006437 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006438 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006439 entry->child = sd_alloc_ctl_domain_table(sd);
6440 entry++;
6441 i++;
6442 }
6443 return table;
6444}
6445
6446static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006447static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006448{
6449 int i, cpu_num = num_online_cpus();
6450 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6451 char buf[32];
6452
Milton Miller73785472007-10-24 18:23:48 +02006453 WARN_ON(sd_ctl_dir[0].child);
6454 sd_ctl_dir[0].child = entry;
6455
Milton Millerad1cdc12007-10-15 17:00:19 +02006456 if (entry == NULL)
6457 return;
6458
Milton Miller97b6ea72007-10-15 17:00:19 +02006459 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006460 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006461 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006462 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006463 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006464 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006465 }
Milton Miller73785472007-10-24 18:23:48 +02006466
6467 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006468 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6469}
Milton Miller6382bc92007-10-15 17:00:19 +02006470
Milton Miller73785472007-10-24 18:23:48 +02006471/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006472static void unregister_sched_domain_sysctl(void)
6473{
Milton Miller73785472007-10-24 18:23:48 +02006474 if (sd_sysctl_header)
6475 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006476 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006477 if (sd_ctl_dir[0].child)
6478 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006479}
Nick Piggine692ab52007-07-26 13:40:43 +02006480#else
Milton Miller6382bc92007-10-15 17:00:19 +02006481static void register_sched_domain_sysctl(void)
6482{
6483}
6484static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006485{
6486}
6487#endif
6488
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489/*
6490 * migration_call - callback that gets triggered when a CPU is added.
6491 * Here we can start up the necessary migration thread for the new CPU.
6492 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006493static int __cpuinit
6494migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006497 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006499 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500
6501 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006502
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006504 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006505 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506 if (IS_ERR(p))
6507 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508 kthread_bind(p, cpu);
6509 /* Must be high prio: stop_machine expects to yield to it. */
6510 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006511 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512 task_rq_unlock(rq, &flags);
6513 cpu_rq(cpu)->migration_thread = p;
6514 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006515
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006517 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006518 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006520
6521 /* Update our root-domain */
6522 rq = cpu_rq(cpu);
6523 spin_lock_irqsave(&rq->lock, flags);
6524 if (rq->rd) {
6525 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6526 cpu_set(cpu, rq->rd->online);
6527 }
6528 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006530
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531#ifdef CONFIG_HOTPLUG_CPU
6532 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006533 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006534 if (!cpu_rq(cpu)->migration_thread)
6535 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006536 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006537 kthread_bind(cpu_rq(cpu)->migration_thread,
6538 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 kthread_stop(cpu_rq(cpu)->migration_thread);
6540 cpu_rq(cpu)->migration_thread = NULL;
6541 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006542
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006544 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006545 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546 migrate_live_tasks(cpu);
6547 rq = cpu_rq(cpu);
6548 kthread_stop(rq->migration_thread);
6549 rq->migration_thread = NULL;
6550 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006551 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006552 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006553 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006555 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6556 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006558 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006559 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560 migrate_nr_uninterruptible(rq);
6561 BUG_ON(rq->nr_running != 0);
6562
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006563 /*
6564 * No need to migrate the tasks: it was best-effort if
6565 * they didn't take sched_hotcpu_mutex. Just wake up
6566 * the requestors.
6567 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 spin_lock_irq(&rq->lock);
6569 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006570 struct migration_req *req;
6571
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006573 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574 list_del_init(&req->list);
6575 complete(&req->done);
6576 }
6577 spin_unlock_irq(&rq->lock);
6578 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006579
Gregory Haskins08f503b2008-03-10 17:59:11 -04006580 case CPU_DYING:
6581 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006582 /* Update our root-domain */
6583 rq = cpu_rq(cpu);
6584 spin_lock_irqsave(&rq->lock, flags);
6585 if (rq->rd) {
6586 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6587 cpu_clear(cpu, rq->rd->online);
6588 }
6589 spin_unlock_irqrestore(&rq->lock, flags);
6590 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591#endif
6592 }
6593 return NOTIFY_OK;
6594}
6595
6596/* Register at highest priority so that task migration (migrate_all_tasks)
6597 * happens before everything else.
6598 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006599static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600 .notifier_call = migration_call,
6601 .priority = 10
6602};
6603
Adrian Bunke6fe6642007-11-09 22:39:39 +01006604void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605{
6606 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006607 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006608
6609 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006610 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6611 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6613 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614}
6615#endif
6616
6617#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006618
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006619#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006620
Mike Travis7c16ec52008-04-04 18:11:11 -07006621static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6622 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006623{
6624 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006625 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006626
Mike Travis434d53b2008-04-04 18:11:04 -07006627 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006628 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006629
6630 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6631
6632 if (!(sd->flags & SD_LOAD_BALANCE)) {
6633 printk("does not load-balance\n");
6634 if (sd->parent)
6635 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6636 " has parent");
6637 return -1;
6638 }
6639
6640 printk(KERN_CONT "span %s\n", str);
6641
6642 if (!cpu_isset(cpu, sd->span)) {
6643 printk(KERN_ERR "ERROR: domain->span does not contain "
6644 "CPU%d\n", cpu);
6645 }
6646 if (!cpu_isset(cpu, group->cpumask)) {
6647 printk(KERN_ERR "ERROR: domain->groups does not contain"
6648 " CPU%d\n", cpu);
6649 }
6650
6651 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6652 do {
6653 if (!group) {
6654 printk("\n");
6655 printk(KERN_ERR "ERROR: group is NULL\n");
6656 break;
6657 }
6658
6659 if (!group->__cpu_power) {
6660 printk(KERN_CONT "\n");
6661 printk(KERN_ERR "ERROR: domain->cpu_power not "
6662 "set\n");
6663 break;
6664 }
6665
6666 if (!cpus_weight(group->cpumask)) {
6667 printk(KERN_CONT "\n");
6668 printk(KERN_ERR "ERROR: empty group\n");
6669 break;
6670 }
6671
Mike Travis7c16ec52008-04-04 18:11:11 -07006672 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006673 printk(KERN_CONT "\n");
6674 printk(KERN_ERR "ERROR: repeated CPUs\n");
6675 break;
6676 }
6677
Mike Travis7c16ec52008-04-04 18:11:11 -07006678 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006679
Mike Travis434d53b2008-04-04 18:11:04 -07006680 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006681 printk(KERN_CONT " %s", str);
6682
6683 group = group->next;
6684 } while (group != sd->groups);
6685 printk(KERN_CONT "\n");
6686
Mike Travis7c16ec52008-04-04 18:11:11 -07006687 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006688 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6689
Mike Travis7c16ec52008-04-04 18:11:11 -07006690 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006691 printk(KERN_ERR "ERROR: parent span is not a superset "
6692 "of domain->span\n");
6693 return 0;
6694}
6695
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696static void sched_domain_debug(struct sched_domain *sd, int cpu)
6697{
Mike Travis7c16ec52008-04-04 18:11:11 -07006698 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699 int level = 0;
6700
Nick Piggin41c7ce92005-06-25 14:57:24 -07006701 if (!sd) {
6702 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6703 return;
6704 }
6705
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6707
Mike Travis7c16ec52008-04-04 18:11:11 -07006708 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6709 if (!groupmask) {
6710 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6711 return;
6712 }
6713
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006714 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006715 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717 level++;
6718 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006719 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006720 break;
6721 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006722 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723}
6724#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006725# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726#endif
6727
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006728static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006729{
6730 if (cpus_weight(sd->span) == 1)
6731 return 1;
6732
6733 /* Following flags need at least 2 groups */
6734 if (sd->flags & (SD_LOAD_BALANCE |
6735 SD_BALANCE_NEWIDLE |
6736 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006737 SD_BALANCE_EXEC |
6738 SD_SHARE_CPUPOWER |
6739 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006740 if (sd->groups != sd->groups->next)
6741 return 0;
6742 }
6743
6744 /* Following flags don't use groups */
6745 if (sd->flags & (SD_WAKE_IDLE |
6746 SD_WAKE_AFFINE |
6747 SD_WAKE_BALANCE))
6748 return 0;
6749
6750 return 1;
6751}
6752
Ingo Molnar48f24c42006-07-03 00:25:40 -07006753static int
6754sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006755{
6756 unsigned long cflags = sd->flags, pflags = parent->flags;
6757
6758 if (sd_degenerate(parent))
6759 return 1;
6760
6761 if (!cpus_equal(sd->span, parent->span))
6762 return 0;
6763
6764 /* Does parent contain flags not in child? */
6765 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6766 if (cflags & SD_WAKE_AFFINE)
6767 pflags &= ~SD_WAKE_BALANCE;
6768 /* Flags needing groups don't count if only 1 group in parent */
6769 if (parent->groups == parent->groups->next) {
6770 pflags &= ~(SD_LOAD_BALANCE |
6771 SD_BALANCE_NEWIDLE |
6772 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006773 SD_BALANCE_EXEC |
6774 SD_SHARE_CPUPOWER |
6775 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006776 }
6777 if (~cflags & pflags)
6778 return 0;
6779
6780 return 1;
6781}
6782
Gregory Haskins57d885f2008-01-25 21:08:18 +01006783static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6784{
6785 unsigned long flags;
6786 const struct sched_class *class;
6787
6788 spin_lock_irqsave(&rq->lock, flags);
6789
6790 if (rq->rd) {
6791 struct root_domain *old_rd = rq->rd;
6792
Ingo Molnar0eab9142008-01-25 21:08:19 +01006793 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006794 if (class->leave_domain)
6795 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006796 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006797
Gregory Haskinsdc938522008-01-25 21:08:26 +01006798 cpu_clear(rq->cpu, old_rd->span);
6799 cpu_clear(rq->cpu, old_rd->online);
6800
Gregory Haskins57d885f2008-01-25 21:08:18 +01006801 if (atomic_dec_and_test(&old_rd->refcount))
6802 kfree(old_rd);
6803 }
6804
6805 atomic_inc(&rd->refcount);
6806 rq->rd = rd;
6807
Gregory Haskinsdc938522008-01-25 21:08:26 +01006808 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006809 if (cpu_isset(rq->cpu, cpu_online_map))
6810 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006811
Ingo Molnar0eab9142008-01-25 21:08:19 +01006812 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006813 if (class->join_domain)
6814 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006815 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006816
6817 spin_unlock_irqrestore(&rq->lock, flags);
6818}
6819
Gregory Haskinsdc938522008-01-25 21:08:26 +01006820static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006821{
6822 memset(rd, 0, sizeof(*rd));
6823
Gregory Haskinsdc938522008-01-25 21:08:26 +01006824 cpus_clear(rd->span);
6825 cpus_clear(rd->online);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006826}
6827
6828static void init_defrootdomain(void)
6829{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006830 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006831 atomic_set(&def_root_domain.refcount, 1);
6832}
6833
Gregory Haskinsdc938522008-01-25 21:08:26 +01006834static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006835{
6836 struct root_domain *rd;
6837
6838 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6839 if (!rd)
6840 return NULL;
6841
Gregory Haskinsdc938522008-01-25 21:08:26 +01006842 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006843
6844 return rd;
6845}
6846
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006848 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849 * hold the hotplug lock.
6850 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006851static void
6852cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006854 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006855 struct sched_domain *tmp;
6856
6857 /* Remove the sched domains which do not contribute to scheduling. */
6858 for (tmp = sd; tmp; tmp = tmp->parent) {
6859 struct sched_domain *parent = tmp->parent;
6860 if (!parent)
6861 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006862 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006863 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006864 if (parent->parent)
6865 parent->parent->child = tmp;
6866 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006867 }
6868
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006869 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006870 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006871 if (sd)
6872 sd->child = NULL;
6873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874
6875 sched_domain_debug(sd, cpu);
6876
Gregory Haskins57d885f2008-01-25 21:08:18 +01006877 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006878 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879}
6880
6881/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006882static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883
6884/* Setup the mask of cpus configured for isolated domains */
6885static int __init isolated_cpu_setup(char *str)
6886{
6887 int ints[NR_CPUS], i;
6888
6889 str = get_options(str, ARRAY_SIZE(ints), ints);
6890 cpus_clear(cpu_isolated_map);
6891 for (i = 1; i <= ints[0]; i++)
6892 if (ints[i] < NR_CPUS)
6893 cpu_set(ints[i], cpu_isolated_map);
6894 return 1;
6895}
6896
Ingo Molnar8927f492007-10-15 17:00:13 +02006897__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898
6899/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006900 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6901 * to a function which identifies what group(along with sched group) a CPU
6902 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6903 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904 *
6905 * init_sched_build_groups will build a circular linked list of the groups
6906 * covered by the given span, and will set each group's ->cpumask correctly,
6907 * and ->cpu_power to 0.
6908 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006909static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006910init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006911 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006912 struct sched_group **sg,
6913 cpumask_t *tmpmask),
6914 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915{
6916 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917 int i;
6918
Mike Travis7c16ec52008-04-04 18:11:11 -07006919 cpus_clear(*covered);
6920
6921 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006922 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006923 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924 int j;
6925
Mike Travis7c16ec52008-04-04 18:11:11 -07006926 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927 continue;
6928
Mike Travis7c16ec52008-04-04 18:11:11 -07006929 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006930 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931
Mike Travis7c16ec52008-04-04 18:11:11 -07006932 for_each_cpu_mask(j, *span) {
6933 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934 continue;
6935
Mike Travis7c16ec52008-04-04 18:11:11 -07006936 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937 cpu_set(j, sg->cpumask);
6938 }
6939 if (!first)
6940 first = sg;
6941 if (last)
6942 last->next = sg;
6943 last = sg;
6944 }
6945 last->next = first;
6946}
6947
John Hawkes9c1cfda2005-09-06 15:18:14 -07006948#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949
John Hawkes9c1cfda2005-09-06 15:18:14 -07006950#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006951
John Hawkes9c1cfda2005-09-06 15:18:14 -07006952/**
6953 * find_next_best_node - find the next node to include in a sched_domain
6954 * @node: node whose sched_domain we're building
6955 * @used_nodes: nodes already in the sched_domain
6956 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006957 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006958 * finds the closest node not already in the @used_nodes map.
6959 *
6960 * Should use nodemask_t.
6961 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006962static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006963{
6964 int i, n, val, min_val, best_node = 0;
6965
6966 min_val = INT_MAX;
6967
6968 for (i = 0; i < MAX_NUMNODES; i++) {
6969 /* Start at @node */
6970 n = (node + i) % MAX_NUMNODES;
6971
6972 if (!nr_cpus_node(n))
6973 continue;
6974
6975 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006976 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006977 continue;
6978
6979 /* Simple min distance search */
6980 val = node_distance(node, n);
6981
6982 if (val < min_val) {
6983 min_val = val;
6984 best_node = n;
6985 }
6986 }
6987
Mike Travisc5f59f02008-04-04 18:11:10 -07006988 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006989 return best_node;
6990}
6991
6992/**
6993 * sched_domain_node_span - get a cpumask for a node's sched_domain
6994 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006995 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006996 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006997 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006998 * should be one that prevents unnecessary balancing, but also spreads tasks
6999 * out optimally.
7000 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07007001static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007002{
Mike Travisc5f59f02008-04-04 18:11:10 -07007003 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07007004 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007005 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007006
Mike Travis4bdbaad32008-04-15 16:35:52 -07007007 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007008 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007009
Mike Travis4bdbaad32008-04-15 16:35:52 -07007010 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07007011 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007012
7013 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007014 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007015
Mike Travisc5f59f02008-04-04 18:11:10 -07007016 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007017 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007018 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007019}
7020#endif
7021
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007022int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007023
John Hawkes9c1cfda2005-09-06 15:18:14 -07007024/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07007025 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07007026 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027#ifdef CONFIG_SCHED_SMT
7028static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007029static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007030
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007031static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007032cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7033 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007035 if (sg)
7036 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037 return cpu;
7038}
7039#endif
7040
Ingo Molnar48f24c42006-07-03 00:25:40 -07007041/*
7042 * multi-core sched-domains:
7043 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007044#ifdef CONFIG_SCHED_MC
7045static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007046static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007047#endif
7048
7049#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007050static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007051cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7052 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007053{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007054 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007055
7056 *mask = per_cpu(cpu_sibling_map, cpu);
7057 cpus_and(*mask, *mask, *cpu_map);
7058 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007059 if (sg)
7060 *sg = &per_cpu(sched_group_core, group);
7061 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007062}
7063#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007064static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007065cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7066 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007067{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007068 if (sg)
7069 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007070 return cpu;
7071}
7072#endif
7073
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007075static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007076
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007077static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007078cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7079 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007080{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007081 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007082#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07007083 *mask = cpu_coregroup_map(cpu);
7084 cpus_and(*mask, *mask, *cpu_map);
7085 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007086#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07007087 *mask = per_cpu(cpu_sibling_map, cpu);
7088 cpus_and(*mask, *mask, *cpu_map);
7089 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007091 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007093 if (sg)
7094 *sg = &per_cpu(sched_group_phys, group);
7095 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007096}
7097
7098#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007099/*
7100 * The init_sched_build_groups can't handle what we want to do with node
7101 * groups, so roll our own. Now each node has its own list of groups which
7102 * gets dynamically allocated.
7103 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007104static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007105static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007106
7107static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007108static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007109
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007110static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007111 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007113 int group;
7114
Mike Travis7c16ec52008-04-04 18:11:11 -07007115 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7116 cpus_and(*nodemask, *nodemask, *cpu_map);
7117 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007118
7119 if (sg)
7120 *sg = &per_cpu(sched_group_allnodes, group);
7121 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007123
Siddha, Suresh B08069032006-03-27 01:15:23 -08007124static void init_numa_sched_groups_power(struct sched_group *group_head)
7125{
7126 struct sched_group *sg = group_head;
7127 int j;
7128
7129 if (!sg)
7130 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007131 do {
7132 for_each_cpu_mask(j, sg->cpumask) {
7133 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007134
Andi Kleen3a5c3592007-10-15 17:00:14 +02007135 sd = &per_cpu(phys_domains, j);
7136 if (j != first_cpu(sd->groups->cpumask)) {
7137 /*
7138 * Only add "power" once for each
7139 * physical package.
7140 */
7141 continue;
7142 }
7143
7144 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007145 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007146 sg = sg->next;
7147 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007148}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149#endif
7150
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007151#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007152/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007153static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007154{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007155 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007156
7157 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007158 struct sched_group **sched_group_nodes
7159 = sched_group_nodes_bycpu[cpu];
7160
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007161 if (!sched_group_nodes)
7162 continue;
7163
7164 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007165 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7166
Mike Travis7c16ec52008-04-04 18:11:11 -07007167 *nodemask = node_to_cpumask(i);
7168 cpus_and(*nodemask, *nodemask, *cpu_map);
7169 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007170 continue;
7171
7172 if (sg == NULL)
7173 continue;
7174 sg = sg->next;
7175next_sg:
7176 oldsg = sg;
7177 sg = sg->next;
7178 kfree(oldsg);
7179 if (oldsg != sched_group_nodes[i])
7180 goto next_sg;
7181 }
7182 kfree(sched_group_nodes);
7183 sched_group_nodes_bycpu[cpu] = NULL;
7184 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007185}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007186#else
Mike Travis7c16ec52008-04-04 18:11:11 -07007187static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007188{
7189}
7190#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007191
Linus Torvalds1da177e2005-04-16 15:20:36 -07007192/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007193 * Initialize sched groups cpu_power.
7194 *
7195 * cpu_power indicates the capacity of sched group, which is used while
7196 * distributing the load between different sched groups in a sched domain.
7197 * Typically cpu_power for all the groups in a sched domain will be same unless
7198 * there are asymmetries in the topology. If there are asymmetries, group
7199 * having more cpu_power will pickup more load compared to the group having
7200 * less cpu_power.
7201 *
7202 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7203 * the maximum number of tasks a group can handle in the presence of other idle
7204 * or lightly loaded groups in the same sched domain.
7205 */
7206static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7207{
7208 struct sched_domain *child;
7209 struct sched_group *group;
7210
7211 WARN_ON(!sd || !sd->groups);
7212
7213 if (cpu != first_cpu(sd->groups->cpumask))
7214 return;
7215
7216 child = sd->child;
7217
Eric Dumazet5517d862007-05-08 00:32:57 -07007218 sd->groups->__cpu_power = 0;
7219
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007220 /*
7221 * For perf policy, if the groups in child domain share resources
7222 * (for example cores sharing some portions of the cache hierarchy
7223 * or SMT), then set this domain groups cpu_power such that each group
7224 * can handle only one task, when there are other idle groups in the
7225 * same sched domain.
7226 */
7227 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7228 (child->flags &
7229 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007230 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007231 return;
7232 }
7233
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007234 /*
7235 * add cpu_power of each child group to this groups cpu_power
7236 */
7237 group = child->groups;
7238 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007239 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007240 group = group->next;
7241 } while (group != child->groups);
7242}
7243
7244/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007245 * Initializers for schedule domains
7246 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7247 */
7248
7249#define SD_INIT(sd, type) sd_init_##type(sd)
7250#define SD_INIT_FUNC(type) \
7251static noinline void sd_init_##type(struct sched_domain *sd) \
7252{ \
7253 memset(sd, 0, sizeof(*sd)); \
7254 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007255 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007256}
7257
7258SD_INIT_FUNC(CPU)
7259#ifdef CONFIG_NUMA
7260 SD_INIT_FUNC(ALLNODES)
7261 SD_INIT_FUNC(NODE)
7262#endif
7263#ifdef CONFIG_SCHED_SMT
7264 SD_INIT_FUNC(SIBLING)
7265#endif
7266#ifdef CONFIG_SCHED_MC
7267 SD_INIT_FUNC(MC)
7268#endif
7269
7270/*
7271 * To minimize stack usage kmalloc room for cpumasks and share the
7272 * space as the usage in build_sched_domains() dictates. Used only
7273 * if the amount of space is significant.
7274 */
7275struct allmasks {
7276 cpumask_t tmpmask; /* make this one first */
7277 union {
7278 cpumask_t nodemask;
7279 cpumask_t this_sibling_map;
7280 cpumask_t this_core_map;
7281 };
7282 cpumask_t send_covered;
7283
7284#ifdef CONFIG_NUMA
7285 cpumask_t domainspan;
7286 cpumask_t covered;
7287 cpumask_t notcovered;
7288#endif
7289};
7290
7291#if NR_CPUS > 128
7292#define SCHED_CPUMASK_ALLOC 1
7293#define SCHED_CPUMASK_FREE(v) kfree(v)
7294#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7295#else
7296#define SCHED_CPUMASK_ALLOC 0
7297#define SCHED_CPUMASK_FREE(v)
7298#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7299#endif
7300
7301#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7302 ((unsigned long)(a) + offsetof(struct allmasks, v))
7303
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007304static int default_relax_domain_level = -1;
7305
7306static int __init setup_relax_domain_level(char *str)
7307{
7308 default_relax_domain_level = simple_strtoul(str, NULL, 0);
7309 return 1;
7310}
7311__setup("relax_domain_level=", setup_relax_domain_level);
7312
7313static void set_domain_attribute(struct sched_domain *sd,
7314 struct sched_domain_attr *attr)
7315{
7316 int request;
7317
7318 if (!attr || attr->relax_domain_level < 0) {
7319 if (default_relax_domain_level < 0)
7320 return;
7321 else
7322 request = default_relax_domain_level;
7323 } else
7324 request = attr->relax_domain_level;
7325 if (request < sd->level) {
7326 /* turn off idle balance on this domain */
7327 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7328 } else {
7329 /* turn on idle balance on this domain */
7330 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7331 }
7332}
7333
Mike Travis7c16ec52008-04-04 18:11:11 -07007334/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007335 * Build sched domains for a given set of cpus and attach the sched domains
7336 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007338static int __build_sched_domains(const cpumask_t *cpu_map,
7339 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340{
7341 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007342 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007343 SCHED_CPUMASK_DECLARE(allmasks);
7344 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007345#ifdef CONFIG_NUMA
7346 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007347 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007348
7349 /*
7350 * Allocate the per-node list of sched groups
7351 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007352 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007353 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007354 if (!sched_group_nodes) {
7355 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007356 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007357 }
John Hawkesd1b55132005-09-06 15:18:14 -07007358#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359
Gregory Haskinsdc938522008-01-25 21:08:26 +01007360 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007361 if (!rd) {
7362 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007363#ifdef CONFIG_NUMA
7364 kfree(sched_group_nodes);
7365#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007366 return -ENOMEM;
7367 }
7368
Mike Travis7c16ec52008-04-04 18:11:11 -07007369#if SCHED_CPUMASK_ALLOC
7370 /* get space for all scratch cpumask variables */
7371 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7372 if (!allmasks) {
7373 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7374 kfree(rd);
7375#ifdef CONFIG_NUMA
7376 kfree(sched_group_nodes);
7377#endif
7378 return -ENOMEM;
7379 }
7380#endif
7381 tmpmask = (cpumask_t *)allmasks;
7382
7383
7384#ifdef CONFIG_NUMA
7385 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7386#endif
7387
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007389 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007390 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007391 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007393 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394
Mike Travis7c16ec52008-04-04 18:11:11 -07007395 *nodemask = node_to_cpumask(cpu_to_node(i));
7396 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397
7398#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007399 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007400 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007401 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007402 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007403 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007404 sd->span = *cpu_map;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007405 sd->first_cpu = first_cpu(sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07007406 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007407 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007408 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007409 } else
7410 p = NULL;
7411
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007413 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007414 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007415 sched_domain_node_span(cpu_to_node(i), &sd->span);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007416 sd->first_cpu = first_cpu(sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007417 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007418 if (p)
7419 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007420 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007421#endif
7422
7423 p = sd;
7424 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007425 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007426 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007427 sd->span = *nodemask;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007428 sd->first_cpu = first_cpu(sd->span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007430 if (p)
7431 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007432 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007434#ifdef CONFIG_SCHED_MC
7435 p = sd;
7436 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007437 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007438 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007439 sd->span = cpu_coregroup_map(i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007440 sd->first_cpu = first_cpu(sd->span);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007441 cpus_and(sd->span, sd->span, *cpu_map);
7442 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007443 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007444 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007445#endif
7446
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447#ifdef CONFIG_SCHED_SMT
7448 p = sd;
7449 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007450 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007451 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007452 sd->span = per_cpu(cpu_sibling_map, i);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02007453 sd->first_cpu = first_cpu(sd->span);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007454 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007455 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007456 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007457 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458#endif
7459 }
7460
7461#ifdef CONFIG_SCHED_SMT
7462 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007463 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007464 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7465 SCHED_CPUMASK_VAR(send_covered, allmasks);
7466
7467 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7468 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7469 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470 continue;
7471
Ingo Molnardd41f592007-07-09 18:51:59 +02007472 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007473 &cpu_to_cpu_group,
7474 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475 }
7476#endif
7477
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007478#ifdef CONFIG_SCHED_MC
7479 /* Set up multi-core groups */
7480 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007481 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7482 SCHED_CPUMASK_VAR(send_covered, allmasks);
7483
7484 *this_core_map = cpu_coregroup_map(i);
7485 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7486 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007487 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007488
Ingo Molnardd41f592007-07-09 18:51:59 +02007489 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007490 &cpu_to_core_group,
7491 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007492 }
7493#endif
7494
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495 /* Set up physical groups */
7496 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007497 SCHED_CPUMASK_VAR(nodemask, allmasks);
7498 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
Mike Travis7c16ec52008-04-04 18:11:11 -07007500 *nodemask = node_to_cpumask(i);
7501 cpus_and(*nodemask, *nodemask, *cpu_map);
7502 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503 continue;
7504
Mike Travis7c16ec52008-04-04 18:11:11 -07007505 init_sched_build_groups(nodemask, cpu_map,
7506 &cpu_to_phys_group,
7507 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508 }
7509
7510#ifdef CONFIG_NUMA
7511 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007512 if (sd_allnodes) {
7513 SCHED_CPUMASK_VAR(send_covered, allmasks);
7514
7515 init_sched_build_groups(cpu_map, cpu_map,
7516 &cpu_to_allnodes_group,
7517 send_covered, tmpmask);
7518 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007519
7520 for (i = 0; i < MAX_NUMNODES; i++) {
7521 /* Set up node groups */
7522 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007523 SCHED_CPUMASK_VAR(nodemask, allmasks);
7524 SCHED_CPUMASK_VAR(domainspan, allmasks);
7525 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007526 int j;
7527
Mike Travis7c16ec52008-04-04 18:11:11 -07007528 *nodemask = node_to_cpumask(i);
7529 cpus_clear(*covered);
7530
7531 cpus_and(*nodemask, *nodemask, *cpu_map);
7532 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007533 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007534 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007535 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007536
Mike Travis4bdbaad32008-04-15 16:35:52 -07007537 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007538 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007539
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007540 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007541 if (!sg) {
7542 printk(KERN_WARNING "Can not alloc domain group for "
7543 "node %d\n", i);
7544 goto error;
7545 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007546 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007547 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007548 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007549
John Hawkes9c1cfda2005-09-06 15:18:14 -07007550 sd = &per_cpu(node_domains, j);
7551 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007552 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007553 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007554 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007555 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007556 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007557 prev = sg;
7558
7559 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007560 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007561 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007562 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007563
Mike Travis7c16ec52008-04-04 18:11:11 -07007564 cpus_complement(*notcovered, *covered);
7565 cpus_and(*tmpmask, *notcovered, *cpu_map);
7566 cpus_and(*tmpmask, *tmpmask, *domainspan);
7567 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007568 break;
7569
Mike Travis7c16ec52008-04-04 18:11:11 -07007570 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7571 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007572 continue;
7573
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007574 sg = kmalloc_node(sizeof(struct sched_group),
7575 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007576 if (!sg) {
7577 printk(KERN_WARNING
7578 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007579 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007580 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007581 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007582 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007583 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007584 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007585 prev->next = sg;
7586 prev = sg;
7587 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007589#endif
7590
7591 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007592#ifdef CONFIG_SCHED_SMT
7593 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007594 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7595
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007596 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007597 }
7598#endif
7599#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007600 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007601 struct sched_domain *sd = &per_cpu(core_domains, i);
7602
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007603 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007604 }
7605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007606
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007607 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007608 struct sched_domain *sd = &per_cpu(phys_domains, i);
7609
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007610 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611 }
7612
John Hawkes9c1cfda2005-09-06 15:18:14 -07007613#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007614 for (i = 0; i < MAX_NUMNODES; i++)
7615 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007616
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007617 if (sd_allnodes) {
7618 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007619
Mike Travis7c16ec52008-04-04 18:11:11 -07007620 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7621 tmpmask);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007622 init_numa_sched_groups_power(sg);
7623 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007624#endif
7625
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007627 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628 struct sched_domain *sd;
7629#ifdef CONFIG_SCHED_SMT
7630 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007631#elif defined(CONFIG_SCHED_MC)
7632 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633#else
7634 sd = &per_cpu(phys_domains, i);
7635#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007636 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007638
Mike Travis7c16ec52008-04-04 18:11:11 -07007639 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007640 return 0;
7641
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007642#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007643error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007644 free_sched_groups(cpu_map, tmpmask);
7645 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007646 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648}
Paul Jackson029190c2007-10-18 23:40:20 -07007649
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007650static int build_sched_domains(const cpumask_t *cpu_map)
7651{
7652 return __build_sched_domains(cpu_map, NULL);
7653}
7654
Paul Jackson029190c2007-10-18 23:40:20 -07007655static cpumask_t *doms_cur; /* current sched domains */
7656static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007657static struct sched_domain_attr *dattr_cur; /* attribues of custom domains
7658 in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007659
7660/*
7661 * Special case: If a kmalloc of a doms_cur partition (array of
7662 * cpumask_t) fails, then fallback to a single sched domain,
7663 * as determined by the single cpumask_t fallback_doms.
7664 */
7665static cpumask_t fallback_doms;
7666
Heiko Carstens22e52b02008-03-12 18:31:59 +01007667void __attribute__((weak)) arch_update_cpu_topology(void)
7668{
7669}
7670
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007671/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007672 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007673 * For now this just excludes isolated cpus, but could be used to
7674 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007675 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007676static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007677{
Milton Miller73785472007-10-24 18:23:48 +02007678 int err;
7679
Heiko Carstens22e52b02008-03-12 18:31:59 +01007680 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007681 ndoms_cur = 1;
7682 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7683 if (!doms_cur)
7684 doms_cur = &fallback_doms;
7685 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007686 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007687 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007688 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007689
7690 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007691}
7692
Mike Travis7c16ec52008-04-04 18:11:11 -07007693static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7694 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695{
Mike Travis7c16ec52008-04-04 18:11:11 -07007696 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007697}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007699/*
7700 * Detach sched domains from a group of cpus specified in cpu_map
7701 * These cpus will now be attached to the NULL domain
7702 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007703static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007704{
Mike Travis7c16ec52008-04-04 18:11:11 -07007705 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007706 int i;
7707
Milton Miller6382bc92007-10-15 17:00:19 +02007708 unregister_sched_domain_sysctl();
7709
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007710 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007711 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007712 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007713 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007714}
7715
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007716/* handle null as "default" */
7717static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7718 struct sched_domain_attr *new, int idx_new)
7719{
7720 struct sched_domain_attr tmp;
7721
7722 /* fast path */
7723 if (!new && !cur)
7724 return 1;
7725
7726 tmp = SD_ATTR_INIT;
7727 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7728 new ? (new + idx_new) : &tmp,
7729 sizeof(struct sched_domain_attr));
7730}
7731
Paul Jackson029190c2007-10-18 23:40:20 -07007732/*
7733 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007734 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007735 * doms_new[] to the current sched domain partitioning, doms_cur[].
7736 * It destroys each deleted domain and builds each new domain.
7737 *
7738 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007739 * The masks don't intersect (don't overlap.) We should setup one
7740 * sched domain for each mask. CPUs not in any of the cpumasks will
7741 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007742 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7743 * it as it is.
7744 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007745 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7746 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007747 * failed the kmalloc call, then it can pass in doms_new == NULL,
7748 * and partition_sched_domains() will fallback to the single partition
7749 * 'fallback_doms'.
7750 *
7751 * Call with hotplug lock held
7752 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007753void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7754 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007755{
7756 int i, j;
7757
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007758 lock_doms_cur();
7759
Milton Miller73785472007-10-24 18:23:48 +02007760 /* always unregister in case we don't destroy any domains */
7761 unregister_sched_domain_sysctl();
7762
Paul Jackson029190c2007-10-18 23:40:20 -07007763 if (doms_new == NULL) {
7764 ndoms_new = 1;
7765 doms_new = &fallback_doms;
7766 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007767 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007768 }
7769
7770 /* Destroy deleted domains */
7771 for (i = 0; i < ndoms_cur; i++) {
7772 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007773 if (cpus_equal(doms_cur[i], doms_new[j])
7774 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007775 goto match1;
7776 }
7777 /* no match - a current sched domain not in new doms_new[] */
7778 detach_destroy_domains(doms_cur + i);
7779match1:
7780 ;
7781 }
7782
7783 /* Build new domains */
7784 for (i = 0; i < ndoms_new; i++) {
7785 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007786 if (cpus_equal(doms_new[i], doms_cur[j])
7787 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007788 goto match2;
7789 }
7790 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007791 __build_sched_domains(doms_new + i,
7792 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007793match2:
7794 ;
7795 }
7796
7797 /* Remember the new sched domains */
7798 if (doms_cur != &fallback_doms)
7799 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007800 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007801 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007802 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007803 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007804
7805 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007806
7807 unlock_doms_cur();
Paul Jackson029190c2007-10-18 23:40:20 -07007808}
7809
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007810#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007811int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007812{
7813 int err;
7814
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007815 get_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007816 detach_destroy_domains(&cpu_online_map);
7817 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007818 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007819
7820 return err;
7821}
7822
7823static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7824{
7825 int ret;
7826
7827 if (buf[0] != '0' && buf[0] != '1')
7828 return -EINVAL;
7829
7830 if (smt)
7831 sched_smt_power_savings = (buf[0] == '1');
7832 else
7833 sched_mc_power_savings = (buf[0] == '1');
7834
7835 ret = arch_reinit_sched_domains();
7836
7837 return ret ? ret : count;
7838}
7839
Adrian Bunk6707de002007-08-12 18:08:19 +02007840#ifdef CONFIG_SCHED_MC
7841static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7842{
7843 return sprintf(page, "%u\n", sched_mc_power_savings);
7844}
7845static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7846 const char *buf, size_t count)
7847{
7848 return sched_power_savings_store(buf, count, 0);
7849}
7850static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7851 sched_mc_power_savings_store);
7852#endif
7853
7854#ifdef CONFIG_SCHED_SMT
7855static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7856{
7857 return sprintf(page, "%u\n", sched_smt_power_savings);
7858}
7859static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7860 const char *buf, size_t count)
7861{
7862 return sched_power_savings_store(buf, count, 1);
7863}
7864static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7865 sched_smt_power_savings_store);
7866#endif
7867
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007868int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7869{
7870 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007871
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007872#ifdef CONFIG_SCHED_SMT
7873 if (smt_capable())
7874 err = sysfs_create_file(&cls->kset.kobj,
7875 &attr_sched_smt_power_savings.attr);
7876#endif
7877#ifdef CONFIG_SCHED_MC
7878 if (!err && mc_capable())
7879 err = sysfs_create_file(&cls->kset.kobj,
7880 &attr_sched_mc_power_savings.attr);
7881#endif
7882 return err;
7883}
7884#endif
7885
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007887 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007889 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007890 * which will prevent rebalancing while the sched domains are recalculated.
7891 */
7892static int update_sched_domains(struct notifier_block *nfb,
7893 unsigned long action, void *hcpu)
7894{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895 switch (action) {
7896 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007897 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007899 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007900 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007901 return NOTIFY_OK;
7902
7903 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007904 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007905 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007906 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007908 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007910 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007911 /*
7912 * Fall through and re-initialise the domains.
7913 */
7914 break;
7915 default:
7916 return NOTIFY_DONE;
7917 }
7918
7919 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007920 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921
7922 return NOTIFY_OK;
7923}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007924
7925void __init sched_init_smp(void)
7926{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007927 cpumask_t non_isolated_cpus;
7928
Mike Travis434d53b2008-04-04 18:11:04 -07007929#if defined(CONFIG_NUMA)
7930 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7931 GFP_KERNEL);
7932 BUG_ON(sched_group_nodes_bycpu == NULL);
7933#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007934 get_online_cpus();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007935 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007936 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007937 if (cpus_empty(non_isolated_cpus))
7938 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007939 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940 /* XXX: Theoretical race here - CPU may be hotplugged now */
7941 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007942
7943 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007944 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007945 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007946 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947}
7948#else
7949void __init sched_init_smp(void)
7950{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007951 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007952}
7953#endif /* CONFIG_SMP */
7954
7955int in_sched_functions(unsigned long addr)
7956{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007957 return in_lock_functions(addr) ||
7958 (addr >= (unsigned long)__sched_text_start
7959 && addr < (unsigned long)__sched_text_end);
7960}
7961
Alexey Dobriyana9957442007-10-15 17:00:13 +02007962static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007963{
7964 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007965 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007966#ifdef CONFIG_FAIR_GROUP_SCHED
7967 cfs_rq->rq = rq;
7968#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007969 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007970}
7971
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007972static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7973{
7974 struct rt_prio_array *array;
7975 int i;
7976
7977 array = &rt_rq->active;
7978 for (i = 0; i < MAX_RT_PRIO; i++) {
7979 INIT_LIST_HEAD(array->queue + i);
7980 __clear_bit(i, array->bitmap);
7981 }
7982 /* delimiter for bitsearch: */
7983 __set_bit(MAX_RT_PRIO, array->bitmap);
7984
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007985#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007986 rt_rq->highest_prio = MAX_RT_PRIO;
7987#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007988#ifdef CONFIG_SMP
7989 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007990 rt_rq->overloaded = 0;
7991#endif
7992
7993 rt_rq->rt_time = 0;
7994 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007995 rt_rq->rt_runtime = 0;
7996 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007997
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007998#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007999 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008000 rt_rq->rq = rq;
8001#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008002}
8003
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008004#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008005static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8006 struct sched_entity *se, int cpu, int add,
8007 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008008{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008009 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008010 tg->cfs_rq[cpu] = cfs_rq;
8011 init_cfs_rq(cfs_rq, rq);
8012 cfs_rq->tg = tg;
8013 if (add)
8014 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8015
8016 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008017 /* se could be NULL for init_task_group */
8018 if (!se)
8019 return;
8020
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008021 if (!parent)
8022 se->cfs_rq = &rq->cfs;
8023 else
8024 se->cfs_rq = parent->my_q;
8025
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008026 se->my_q = cfs_rq;
8027 se->load.weight = tg->shares;
8028 se->load.inv_weight = div64_64(1ULL<<32, se->load.weight);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008029 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008030}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008031#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008032
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008033#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008034static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8035 struct sched_rt_entity *rt_se, int cpu, int add,
8036 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008037{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008038 struct rq *rq = cpu_rq(cpu);
8039
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008040 tg->rt_rq[cpu] = rt_rq;
8041 init_rt_rq(rt_rq, rq);
8042 rt_rq->tg = tg;
8043 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008044 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008045 if (add)
8046 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8047
8048 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008049 if (!rt_se)
8050 return;
8051
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008052 if (!parent)
8053 rt_se->rt_rq = &rq->rt;
8054 else
8055 rt_se->rt_rq = parent->my_q;
8056
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008057 rt_se->rt_rq = &rq->rt;
8058 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008059 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008060 INIT_LIST_HEAD(&rt_se->run_list);
8061}
8062#endif
8063
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064void __init sched_init(void)
8065{
Ingo Molnardd41f592007-07-09 18:51:59 +02008066 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008067 unsigned long alloc_size = 0, ptr;
8068
8069#ifdef CONFIG_FAIR_GROUP_SCHED
8070 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8071#endif
8072#ifdef CONFIG_RT_GROUP_SCHED
8073 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8074#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008075#ifdef CONFIG_USER_SCHED
8076 alloc_size *= 2;
8077#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008078 /*
8079 * As sched_init() is called before page_alloc is setup,
8080 * we use alloc_bootmem().
8081 */
8082 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008083 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008084
8085#ifdef CONFIG_FAIR_GROUP_SCHED
8086 init_task_group.se = (struct sched_entity **)ptr;
8087 ptr += nr_cpu_ids * sizeof(void **);
8088
8089 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8090 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008091
8092#ifdef CONFIG_USER_SCHED
8093 root_task_group.se = (struct sched_entity **)ptr;
8094 ptr += nr_cpu_ids * sizeof(void **);
8095
8096 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8097 ptr += nr_cpu_ids * sizeof(void **);
8098#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008099#endif
8100#ifdef CONFIG_RT_GROUP_SCHED
8101 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8102 ptr += nr_cpu_ids * sizeof(void **);
8103
8104 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008105 ptr += nr_cpu_ids * sizeof(void **);
8106
8107#ifdef CONFIG_USER_SCHED
8108 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8109 ptr += nr_cpu_ids * sizeof(void **);
8110
8111 root_task_group.rt_rq = (struct rt_rq **)ptr;
8112 ptr += nr_cpu_ids * sizeof(void **);
8113#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008114#endif
8115 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008116
Gregory Haskins57d885f2008-01-25 21:08:18 +01008117#ifdef CONFIG_SMP
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008118 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008119 init_defrootdomain();
8120#endif
8121
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008122 init_rt_bandwidth(&def_rt_bandwidth,
8123 global_rt_period(), global_rt_runtime());
8124
8125#ifdef CONFIG_RT_GROUP_SCHED
8126 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8127 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008128#ifdef CONFIG_USER_SCHED
8129 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8130 global_rt_period(), RUNTIME_INF);
8131#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008132#endif
8133
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008134#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008135 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008136 INIT_LIST_HEAD(&init_task_group.children);
8137
8138#ifdef CONFIG_USER_SCHED
8139 INIT_LIST_HEAD(&root_task_group.children);
8140 init_task_group.parent = &root_task_group;
8141 list_add(&init_task_group.siblings, &root_task_group.children);
8142#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008143#endif
8144
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008145 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008146 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147
8148 rq = cpu_rq(i);
8149 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008150 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008151 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008152 rq->clock = 1;
Guillaume Chazarain15934a32008-04-19 19:44:57 +02008153 update_last_tick_seen(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02008154 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008155 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008156#ifdef CONFIG_FAIR_GROUP_SCHED
8157 init_task_group.shares = init_task_group_load;
8158 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008159#ifdef CONFIG_CGROUP_SCHED
8160 /*
8161 * How much cpu bandwidth does init_task_group get?
8162 *
8163 * In case of task-groups formed thr' the cgroup filesystem, it
8164 * gets 100% of the cpu resources in the system. This overall
8165 * system cpu resource is divided among the tasks of
8166 * init_task_group and its child task-groups in a fair manner,
8167 * based on each entity's (task or task-group's) weight
8168 * (se->load.weight).
8169 *
8170 * In other words, if init_task_group has 10 tasks of weight
8171 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8172 * then A0's share of the cpu resource is:
8173 *
8174 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8175 *
8176 * We achieve this by letting init_task_group's tasks sit
8177 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8178 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008179 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008180#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008181 root_task_group.shares = NICE_0_LOAD;
8182 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008183 /*
8184 * In case of task-groups formed thr' the user id of tasks,
8185 * init_task_group represents tasks belonging to root user.
8186 * Hence it forms a sibling of all subsequent groups formed.
8187 * In this case, init_task_group gets only a fraction of overall
8188 * system cpu resource, based on the weight assigned to root
8189 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8190 * by letting tasks of init_task_group sit in a separate cfs_rq
8191 * (init_cfs_rq) and having one entity represent this group of
8192 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8193 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008194 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008195 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008196 &per_cpu(init_sched_entity, i), i, 1,
8197 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008198
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008199#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008200#endif /* CONFIG_FAIR_GROUP_SCHED */
8201
8202 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008203#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008204 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008205#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008206 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008207#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008208 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008209 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008210 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008211 &per_cpu(init_sched_rt_entity, i), i, 1,
8212 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008213#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008214#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008215
Ingo Molnardd41f592007-07-09 18:51:59 +02008216 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8217 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008218#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008219 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008220 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008222 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008224 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225 rq->migration_thread = NULL;
8226 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008227 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008229 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008231 }
8232
Peter Williams2dd73a42006-06-27 02:54:34 -07008233 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008234
Avi Kivitye107be32007-07-26 13:40:43 +02008235#ifdef CONFIG_PREEMPT_NOTIFIERS
8236 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8237#endif
8238
Christoph Lameterc9819f42006-12-10 02:20:25 -08008239#ifdef CONFIG_SMP
8240 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
8241#endif
8242
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008243#ifdef CONFIG_RT_MUTEXES
8244 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8245#endif
8246
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247 /*
8248 * The boot idle thread does lazy MMU switching as well:
8249 */
8250 atomic_inc(&init_mm.mm_count);
8251 enter_lazy_tlb(&init_mm, current);
8252
8253 /*
8254 * Make us the idle thread. Technically, schedule() should not be
8255 * called from this thread, however somewhere below it might be,
8256 * but because we are the idle thread, we just pick up running again
8257 * when this runqueue becomes "idle".
8258 */
8259 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008260 /*
8261 * During early bootup we pretend to be a normal task:
8262 */
8263 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008264
8265 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266}
8267
8268#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8269void __might_sleep(char *file, int line)
8270{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008271#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272 static unsigned long prev_jiffy; /* ratelimiting */
8273
8274 if ((in_atomic() || irqs_disabled()) &&
8275 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8276 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8277 return;
8278 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008279 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008280 " context at %s:%d\n", file, line);
8281 printk("in_atomic():%d, irqs_disabled():%d\n",
8282 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008283 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008284 if (irqs_disabled())
8285 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286 dump_stack();
8287 }
8288#endif
8289}
8290EXPORT_SYMBOL(__might_sleep);
8291#endif
8292
8293#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008294static void normalize_task(struct rq *rq, struct task_struct *p)
8295{
8296 int on_rq;
8297 update_rq_clock(rq);
8298 on_rq = p->se.on_rq;
8299 if (on_rq)
8300 deactivate_task(rq, p, 0);
8301 __setscheduler(rq, p, SCHED_NORMAL, 0);
8302 if (on_rq) {
8303 activate_task(rq, p, 0);
8304 resched_task(rq->curr);
8305 }
8306}
8307
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308void normalize_rt_tasks(void)
8309{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008310 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008312 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008314 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008315 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008316 /*
8317 * Only normalize user tasks:
8318 */
8319 if (!p->mm)
8320 continue;
8321
Ingo Molnardd41f592007-07-09 18:51:59 +02008322 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008323#ifdef CONFIG_SCHEDSTATS
8324 p->se.wait_start = 0;
8325 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008326 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008327#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008328 task_rq(p)->clock = 0;
8329
8330 if (!rt_task(p)) {
8331 /*
8332 * Renice negative nice level userspace
8333 * tasks back to 0:
8334 */
8335 if (TASK_NICE(p) < 0 && p->mm)
8336 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008337 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008339
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008340 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008341 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008342
Ingo Molnar178be792007-10-15 17:00:18 +02008343 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008344
Ingo Molnarb29739f2006-06-27 02:54:51 -07008345 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008346 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008347 } while_each_thread(g, p);
8348
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008349 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008350}
8351
8352#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008353
8354#ifdef CONFIG_IA64
8355/*
8356 * These functions are only useful for the IA64 MCA handling.
8357 *
8358 * They can only be called when the whole system has been
8359 * stopped - every CPU needs to be quiescent, and no scheduling
8360 * activity can take place. Using them for anything else would
8361 * be a serious bug, and as a result, they aren't even visible
8362 * under any other configuration.
8363 */
8364
8365/**
8366 * curr_task - return the current task for a given cpu.
8367 * @cpu: the processor in question.
8368 *
8369 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8370 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008371struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008372{
8373 return cpu_curr(cpu);
8374}
8375
8376/**
8377 * set_curr_task - set the current task for a given cpu.
8378 * @cpu: the processor in question.
8379 * @p: the task pointer to set.
8380 *
8381 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008382 * are serviced on a separate stack. It allows the architecture to switch the
8383 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008384 * must be called with all CPU's synchronized, and interrupts disabled, the
8385 * and caller must save the original value of the current task (see
8386 * curr_task() above) and restore that value before reenabling interrupts and
8387 * re-starting the system.
8388 *
8389 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8390 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008391void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008392{
8393 cpu_curr(cpu) = p;
8394}
8395
8396#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008397
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008398#ifdef CONFIG_FAIR_GROUP_SCHED
8399static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008400{
8401 int i;
8402
8403 for_each_possible_cpu(i) {
8404 if (tg->cfs_rq)
8405 kfree(tg->cfs_rq[i]);
8406 if (tg->se)
8407 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008408 }
8409
8410 kfree(tg->cfs_rq);
8411 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008412}
8413
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008414static
8415int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008416{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008417 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008418 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008419 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008420 int i;
8421
Mike Travis434d53b2008-04-04 18:11:04 -07008422 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008423 if (!tg->cfs_rq)
8424 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008425 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008426 if (!tg->se)
8427 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008428
8429 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008430
8431 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008432 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008433
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008434 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8435 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008436 if (!cfs_rq)
8437 goto err;
8438
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008439 se = kmalloc_node(sizeof(struct sched_entity),
8440 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008441 if (!se)
8442 goto err;
8443
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008444 parent_se = parent ? parent->se[i] : NULL;
8445 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008446 }
8447
8448 return 1;
8449
8450 err:
8451 return 0;
8452}
8453
8454static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8455{
8456 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8457 &cpu_rq(cpu)->leaf_cfs_rq_list);
8458}
8459
8460static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8461{
8462 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8463}
8464#else
8465static inline void free_fair_sched_group(struct task_group *tg)
8466{
8467}
8468
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008469static inline
8470int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008471{
8472 return 1;
8473}
8474
8475static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8476{
8477}
8478
8479static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8480{
8481}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008482#endif
8483
8484#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008485static void free_rt_sched_group(struct task_group *tg)
8486{
8487 int i;
8488
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008489 destroy_rt_bandwidth(&tg->rt_bandwidth);
8490
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008491 for_each_possible_cpu(i) {
8492 if (tg->rt_rq)
8493 kfree(tg->rt_rq[i]);
8494 if (tg->rt_se)
8495 kfree(tg->rt_se[i]);
8496 }
8497
8498 kfree(tg->rt_rq);
8499 kfree(tg->rt_se);
8500}
8501
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008502static
8503int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008504{
8505 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008506 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008507 struct rq *rq;
8508 int i;
8509
Mike Travis434d53b2008-04-04 18:11:04 -07008510 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008511 if (!tg->rt_rq)
8512 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008513 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008514 if (!tg->rt_se)
8515 goto err;
8516
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008517 init_rt_bandwidth(&tg->rt_bandwidth,
8518 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008519
8520 for_each_possible_cpu(i) {
8521 rq = cpu_rq(i);
8522
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008523 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8524 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8525 if (!rt_rq)
8526 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008527
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008528 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8529 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8530 if (!rt_se)
8531 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008532
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008533 parent_se = parent ? parent->rt_se[i] : NULL;
8534 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008535 }
8536
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008537 return 1;
8538
8539 err:
8540 return 0;
8541}
8542
8543static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8544{
8545 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8546 &cpu_rq(cpu)->leaf_rt_rq_list);
8547}
8548
8549static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8550{
8551 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8552}
8553#else
8554static inline void free_rt_sched_group(struct task_group *tg)
8555{
8556}
8557
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008558static inline
8559int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008560{
8561 return 1;
8562}
8563
8564static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8565{
8566}
8567
8568static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8569{
8570}
8571#endif
8572
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008573#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008574static void free_sched_group(struct task_group *tg)
8575{
8576 free_fair_sched_group(tg);
8577 free_rt_sched_group(tg);
8578 kfree(tg);
8579}
8580
8581/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008582struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008583{
8584 struct task_group *tg;
8585 unsigned long flags;
8586 int i;
8587
8588 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8589 if (!tg)
8590 return ERR_PTR(-ENOMEM);
8591
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008592 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008593 goto err;
8594
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008595 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008596 goto err;
8597
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008598 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008599 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008600 register_fair_sched_group(tg, i);
8601 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008602 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008603 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008604
8605 WARN_ON(!parent); /* root should already exist */
8606
8607 tg->parent = parent;
8608 list_add_rcu(&tg->siblings, &parent->children);
8609 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008610 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008611
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008612 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008613
8614err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008615 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008616 return ERR_PTR(-ENOMEM);
8617}
8618
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008619/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008620static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008621{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008622 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008623 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008624}
8625
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008626/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008627void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008628{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008629 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008630 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008631
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008632 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008633 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008634 unregister_fair_sched_group(tg, i);
8635 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008636 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008637 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008638 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008639 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008640
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008641 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008642 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008643}
8644
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008645/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008646 * The caller of this function should have put the task in its new group
8647 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8648 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008649 */
8650void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008651{
8652 int on_rq, running;
8653 unsigned long flags;
8654 struct rq *rq;
8655
8656 rq = task_rq_lock(tsk, &flags);
8657
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008658 update_rq_clock(rq);
8659
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008660 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008661 on_rq = tsk->se.on_rq;
8662
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008663 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008664 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008665 if (unlikely(running))
8666 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008667
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008668 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008669
Peter Zijlstra810b3812008-02-29 15:21:01 -05008670#ifdef CONFIG_FAIR_GROUP_SCHED
8671 if (tsk->sched_class->moved_group)
8672 tsk->sched_class->moved_group(tsk);
8673#endif
8674
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008675 if (unlikely(running))
8676 tsk->sched_class->set_curr_task(rq);
8677 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008678 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008679
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008680 task_rq_unlock(rq, &flags);
8681}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008682#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008683
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008684#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008685static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008686{
8687 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008688 int on_rq;
8689
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008690 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008691 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008692 dequeue_entity(cfs_rq, se, 0);
8693
8694 se->load.weight = shares;
8695 se->load.inv_weight = div64_64((1ULL<<32), shares);
8696
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008697 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008698 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008699}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008700
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008701static void set_se_shares(struct sched_entity *se, unsigned long shares)
8702{
8703 struct cfs_rq *cfs_rq = se->cfs_rq;
8704 struct rq *rq = cfs_rq->rq;
8705 unsigned long flags;
8706
8707 spin_lock_irqsave(&rq->lock, flags);
8708 __set_se_shares(se, shares);
8709 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008710}
8711
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008712static DEFINE_MUTEX(shares_mutex);
8713
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008714int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008715{
8716 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008717 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008718
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008719 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008720 * We can't change the weight of the root cgroup.
8721 */
8722 if (!tg->se[0])
8723 return -EINVAL;
8724
8725 /*
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008726 * A weight of 0 or 1 can cause arithmetics problems.
8727 * (The default weight is 1024 - so there's no practical
8728 * limitation from this.)
8729 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008730 if (shares < MIN_SHARES)
8731 shares = MIN_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008732
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008733 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008734 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008735 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008736
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008737 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008738 for_each_possible_cpu(i)
8739 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008740 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008741 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008742
8743 /* wait for any ongoing reference to this group to finish */
8744 synchronize_sched();
8745
8746 /*
8747 * Now we are free to modify the group's share on each cpu
8748 * w/o tripping rebalance_share or load_balance_fair.
8749 */
8750 tg->shares = shares;
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008751 for_each_possible_cpu(i) {
8752 /*
8753 * force a rebalance
8754 */
8755 cfs_rq_set_shares(tg->cfs_rq[i], 0);
8756 set_se_shares(tg->se[i], shares/nr_cpu_ids);
8757 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008758
8759 /*
8760 * Enable load balance activity on this group, by inserting it back on
8761 * each cpu's rq->leaf_cfs_rq_list.
8762 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008763 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008764 for_each_possible_cpu(i)
8765 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008766 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008767 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008768done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008769 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008770 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008771}
8772
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008773unsigned long sched_group_shares(struct task_group *tg)
8774{
8775 return tg->shares;
8776}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008777#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008778
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008779#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008780/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008781 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008782 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008783static DEFINE_MUTEX(rt_constraints_mutex);
8784
8785static unsigned long to_ratio(u64 period, u64 runtime)
8786{
8787 if (runtime == RUNTIME_INF)
8788 return 1ULL << 16;
8789
Peter Zijlstra2692a242008-02-27 12:00:46 +01008790 return div64_64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008791}
8792
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008793#ifdef CONFIG_CGROUP_SCHED
8794static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8795{
8796 struct task_group *tgi, *parent = tg->parent;
8797 unsigned long total = 0;
8798
8799 if (!parent) {
8800 if (global_rt_period() < period)
8801 return 0;
8802
8803 return to_ratio(period, runtime) <
8804 to_ratio(global_rt_period(), global_rt_runtime());
8805 }
8806
8807 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8808 return 0;
8809
8810 rcu_read_lock();
8811 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8812 if (tgi == tg)
8813 continue;
8814
8815 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8816 tgi->rt_bandwidth.rt_runtime);
8817 }
8818 rcu_read_unlock();
8819
8820 return total + to_ratio(period, runtime) <
8821 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8822 parent->rt_bandwidth.rt_runtime);
8823}
8824#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008825static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008826{
8827 struct task_group *tgi;
8828 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008829 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008830 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008831
8832 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008833 list_for_each_entry_rcu(tgi, &task_groups, list) {
8834 if (tgi == tg)
8835 continue;
8836
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008837 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8838 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008839 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008840 rcu_read_unlock();
8841
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008842 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008843}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008844#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008845
Dhaval Giani521f1a242008-02-28 15:21:56 +05308846/* Must be called with tasklist_lock held */
8847static inline int tg_has_rt_tasks(struct task_group *tg)
8848{
8849 struct task_struct *g, *p;
8850 do_each_thread(g, p) {
8851 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8852 return 1;
8853 } while_each_thread(g, p);
8854 return 0;
8855}
8856
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008857static int tg_set_bandwidth(struct task_group *tg,
8858 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008859{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008860 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008861
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008862 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308863 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008864 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308865 err = -EBUSY;
8866 goto unlock;
8867 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008868 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8869 err = -EINVAL;
8870 goto unlock;
8871 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008872
8873 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008874 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8875 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008876
8877 for_each_possible_cpu(i) {
8878 struct rt_rq *rt_rq = tg->rt_rq[i];
8879
8880 spin_lock(&rt_rq->rt_runtime_lock);
8881 rt_rq->rt_runtime = rt_runtime;
8882 spin_unlock(&rt_rq->rt_runtime_lock);
8883 }
8884 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008885 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308886 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008887 mutex_unlock(&rt_constraints_mutex);
8888
8889 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008890}
8891
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008892int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8893{
8894 u64 rt_runtime, rt_period;
8895
8896 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8897 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8898 if (rt_runtime_us < 0)
8899 rt_runtime = RUNTIME_INF;
8900
8901 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8902}
8903
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008904long sched_group_rt_runtime(struct task_group *tg)
8905{
8906 u64 rt_runtime_us;
8907
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008908 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008909 return -1;
8910
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008911 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008912 do_div(rt_runtime_us, NSEC_PER_USEC);
8913 return rt_runtime_us;
8914}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008915
8916int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8917{
8918 u64 rt_runtime, rt_period;
8919
8920 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8921 rt_runtime = tg->rt_bandwidth.rt_runtime;
8922
8923 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8924}
8925
8926long sched_group_rt_period(struct task_group *tg)
8927{
8928 u64 rt_period_us;
8929
8930 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8931 do_div(rt_period_us, NSEC_PER_USEC);
8932 return rt_period_us;
8933}
8934
8935static int sched_rt_global_constraints(void)
8936{
8937 int ret = 0;
8938
8939 mutex_lock(&rt_constraints_mutex);
8940 if (!__rt_schedulable(NULL, 1, 0))
8941 ret = -EINVAL;
8942 mutex_unlock(&rt_constraints_mutex);
8943
8944 return ret;
8945}
8946#else
8947static int sched_rt_global_constraints(void)
8948{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008949 unsigned long flags;
8950 int i;
8951
8952 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8953 for_each_possible_cpu(i) {
8954 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8955
8956 spin_lock(&rt_rq->rt_runtime_lock);
8957 rt_rq->rt_runtime = global_rt_runtime();
8958 spin_unlock(&rt_rq->rt_runtime_lock);
8959 }
8960 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8961
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008962 return 0;
8963}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008964#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008965
8966int sched_rt_handler(struct ctl_table *table, int write,
8967 struct file *filp, void __user *buffer, size_t *lenp,
8968 loff_t *ppos)
8969{
8970 int ret;
8971 int old_period, old_runtime;
8972 static DEFINE_MUTEX(mutex);
8973
8974 mutex_lock(&mutex);
8975 old_period = sysctl_sched_rt_period;
8976 old_runtime = sysctl_sched_rt_runtime;
8977
8978 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8979
8980 if (!ret && write) {
8981 ret = sched_rt_global_constraints();
8982 if (ret) {
8983 sysctl_sched_rt_period = old_period;
8984 sysctl_sched_rt_runtime = old_runtime;
8985 } else {
8986 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8987 def_rt_bandwidth.rt_period =
8988 ns_to_ktime(global_rt_period());
8989 }
8990 }
8991 mutex_unlock(&mutex);
8992
8993 return ret;
8994}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008995
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008996#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008997
8998/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008999static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009000{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009001 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9002 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009003}
9004
9005static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009006cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009007{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009008 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009009
Paul Menage2b01dfe2007-10-24 18:23:50 +02009010 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009011 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009012 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009013 return &init_task_group.css;
9014 }
9015
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009016 parent = cgroup_tg(cgrp->parent);
9017 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009018 if (IS_ERR(tg))
9019 return ERR_PTR(-ENOMEM);
9020
9021 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009022 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009023
9024 return &tg->css;
9025}
9026
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009027static void
9028cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009029{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009030 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009031
9032 sched_destroy_group(tg);
9033}
9034
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009035static int
9036cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9037 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009038{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009039#ifdef CONFIG_RT_GROUP_SCHED
9040 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009041 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009042 return -EINVAL;
9043#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009044 /* We don't support RT-tasks being in separate groups */
9045 if (tsk->sched_class != &fair_sched_class)
9046 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009047#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009048
9049 return 0;
9050}
9051
9052static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009053cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009054 struct cgroup *old_cont, struct task_struct *tsk)
9055{
9056 sched_move_task(tsk);
9057}
9058
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009059#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009060static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009061 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009062{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009063 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009064}
9065
Paul Menagef4c753b2008-04-29 00:59:56 -07009066static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009067{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009068 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009069
9070 return (u64) tg->shares;
9071}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009072#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009073
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009074#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009075static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009076 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009077{
Paul Menage06ecb272008-04-29 01:00:06 -07009078 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009079}
9080
Paul Menage06ecb272008-04-29 01:00:06 -07009081static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009082{
Paul Menage06ecb272008-04-29 01:00:06 -07009083 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009084}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009085
9086static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9087 u64 rt_period_us)
9088{
9089 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9090}
9091
9092static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9093{
9094 return sched_group_rt_period(cgroup_tg(cgrp));
9095}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009096#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009097
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009098static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009099#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009100 {
9101 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009102 .read_u64 = cpu_shares_read_u64,
9103 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009104 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009105#endif
9106#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009107 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009108 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009109 .read_s64 = cpu_rt_runtime_read,
9110 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009111 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009112 {
9113 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009114 .read_u64 = cpu_rt_period_read_uint,
9115 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009116 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009117#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009118};
9119
9120static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9121{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009122 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009123}
9124
9125struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009126 .name = "cpu",
9127 .create = cpu_cgroup_create,
9128 .destroy = cpu_cgroup_destroy,
9129 .can_attach = cpu_cgroup_can_attach,
9130 .attach = cpu_cgroup_attach,
9131 .populate = cpu_cgroup_populate,
9132 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009133 .early_init = 1,
9134};
9135
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009136#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009137
9138#ifdef CONFIG_CGROUP_CPUACCT
9139
9140/*
9141 * CPU accounting code for task groups.
9142 *
9143 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9144 * (balbir@in.ibm.com).
9145 */
9146
9147/* track cpu usage of a group of tasks */
9148struct cpuacct {
9149 struct cgroup_subsys_state css;
9150 /* cpuusage holds pointer to a u64-type object on every cpu */
9151 u64 *cpuusage;
9152};
9153
9154struct cgroup_subsys cpuacct_subsys;
9155
9156/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309157static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009158{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309159 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009160 struct cpuacct, css);
9161}
9162
9163/* return cpu accounting group to which this task belongs */
9164static inline struct cpuacct *task_ca(struct task_struct *tsk)
9165{
9166 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9167 struct cpuacct, css);
9168}
9169
9170/* create a new cpu accounting group */
9171static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309172 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009173{
9174 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9175
9176 if (!ca)
9177 return ERR_PTR(-ENOMEM);
9178
9179 ca->cpuusage = alloc_percpu(u64);
9180 if (!ca->cpuusage) {
9181 kfree(ca);
9182 return ERR_PTR(-ENOMEM);
9183 }
9184
9185 return &ca->css;
9186}
9187
9188/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009189static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309190cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009191{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309192 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009193
9194 free_percpu(ca->cpuusage);
9195 kfree(ca);
9196}
9197
9198/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309199static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009200{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309201 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009202 u64 totalcpuusage = 0;
9203 int i;
9204
9205 for_each_possible_cpu(i) {
9206 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9207
9208 /*
9209 * Take rq->lock to make 64-bit addition safe on 32-bit
9210 * platforms.
9211 */
9212 spin_lock_irq(&cpu_rq(i)->lock);
9213 totalcpuusage += *cpuusage;
9214 spin_unlock_irq(&cpu_rq(i)->lock);
9215 }
9216
9217 return totalcpuusage;
9218}
9219
Dhaval Giani0297b802008-02-29 10:02:44 +05309220static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9221 u64 reset)
9222{
9223 struct cpuacct *ca = cgroup_ca(cgrp);
9224 int err = 0;
9225 int i;
9226
9227 if (reset) {
9228 err = -EINVAL;
9229 goto out;
9230 }
9231
9232 for_each_possible_cpu(i) {
9233 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9234
9235 spin_lock_irq(&cpu_rq(i)->lock);
9236 *cpuusage = 0;
9237 spin_unlock_irq(&cpu_rq(i)->lock);
9238 }
9239out:
9240 return err;
9241}
9242
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009243static struct cftype files[] = {
9244 {
9245 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009246 .read_u64 = cpuusage_read,
9247 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009248 },
9249};
9250
Dhaval Giani32cd7562008-02-29 10:02:43 +05309251static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009252{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309253 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009254}
9255
9256/*
9257 * charge this task's execution time to its accounting group.
9258 *
9259 * called with rq->lock held.
9260 */
9261static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9262{
9263 struct cpuacct *ca;
9264
9265 if (!cpuacct_subsys.active)
9266 return;
9267
9268 ca = task_ca(tsk);
9269 if (ca) {
9270 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9271
9272 *cpuusage += cputime;
9273 }
9274}
9275
9276struct cgroup_subsys cpuacct_subsys = {
9277 .name = "cpuacct",
9278 .create = cpuacct_create,
9279 .destroy = cpuacct_destroy,
9280 .populate = cpuacct_populate,
9281 .subsys_id = cpuacct_subsys_id,
9282};
9283#endif /* CONFIG_CGROUP_CPUACCT */